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

SNMP编程

开发平台:

C/C++

  1. /*
  2.  * @(#)Snmpexample2.java
  3.  * Copyright (c) 1996-2003 AdventNet, Inc. All Rights Reserved.
  4.  * Please read the associated COPYRIGHTS file for more details.
  5.  */
  6. import java.lang.*;
  7. import java.util.*;
  8. import java.net.*;
  9. import com.adventnet.snmp.snmp2.*;
  10. public class Snmpexample2 {
  11. public static void main(String args[]) {
  12.         
  13. // Start SNMP API
  14.         SnmpAPI api = new SnmpAPI();
  15.         api.start();
  16. api.setDebug( true );
  17. // Open session
  18. SnmpSession session = new SnmpSession(api); 
  19. try {
  20.             session.open();
  21.         } catch (SnmpException e ) {
  22.     System.err.println("Error opening socket: "+e);
  23.    }
  24.  
  25. // set remote host - make sure your agent is running   
  26. session.setPeername("localhost");
  27. // add OID
  28. SnmpOID oid = new SnmpOID(".1.3.6.1.2.1.1.1.0");
  29. // build GET request pdu
  30. SnmpPDU pdu = new SnmpPDU();
  31. pdu.setCommand( api.GET_REQ_MSG );
  32. pdu.addNull(oid);
  33. try {
  34.      pdu = session.syncSend(pdu);
  35.          } catch (SnmpException e) {
  36.      System.err.println("Error sending SNMP request: "+e);
  37.    }    
  38. // print the response pdu
  39. System.out.println(pdu.printVarBinds());
  40. // close session
  41. session.close();
  42. // stop api thread
  43. api.close();
  44.  }
  45. }