SnmpGetNext.java.txt
上传用户:aonuowh
上传日期:2021-05-23
资源大小:35390k
文件大小:1k
源码类别:

SNMP编程

开发平台:

C/C++

  1. /*$Id: SnmpGetNext.java,v 1.1 2002/06/15 14:41:18 ram Exp $*/
  2. /*
  3.  * @(#)SnmpGetNext.java
  4.  * Copyright (c) 1996-2001 AdventNet, Inc. All Rights Reserved.
  5.  * Please read the associated COPYRIGHTS file for more details.
  6.  */
  7. /** 
  8.  * This is an example program to explain how to write an application 
  9.  * to retrieve information about the oid next to  
  10.  * sysDescr in the localhost's RFC1213-MIB using 
  11.  * com.adventnet.snmp.beans package of AdventNetSNMP API.
  12.  *
  13.  */
  14. import com.adventnet.snmp.beans.*;
  15. public class SnmpGetNext {
  16. public static void main(String args[]) {
  17. // instantiate SNMP target bean 
  18. SnmpTarget target = new SnmpTarget();
  19. // set the host in which the SNMP agent is running
  20. target.setTargetHost("localhost");
  21. // set the OID
  22. target.setObjectID(".1.3.6.1.2.1.1.1")
  23. // perform a GETNEXT request
  24. String result = target.snmpGetNext();  
  25. if (result == null) 
  26. {
  27.          System.err.println("Request failed or timed out. n"+
  28.                    target.getErrorString());
  29. else 
  30. // print the values
  31.         System.out.println("Response received.  Value:" + result);
  32. }
  33. System.exit(0);
  34. }
  35. }