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

SNMP编程

开发平台:

C/C++

  1. /*
  2.  * @(#)Snmpexample1.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 Snmpexample1  {
  11. public static void main(String args[]) {
  12.         
  13. // Start SNMP API
  14.         SnmpAPI api = new SnmpAPI();
  15. api.setDebug(true);
  16. // Open session
  17. SnmpSession session = new SnmpSession(api); 
  18. try {
  19.             session.open();
  20.         } catch (SnmpException e ) {
  21.     System.err.println("Error opening socket: "+e);
  22.    }
  23. // set remote host - make sure your agent is running    
  24. session.setPeername("localhost");
  25. // add OID
  26. SnmpOID oid = new SnmpOID(".1.3.6.1.2.1.1.1.0");
  27. // build GET request
  28. SnmpVar var = null;
  29. try {
  30. var = session.get(oid);
  31. } catch (SnmpException e) {
  32.     System.err.println("Error sending SNMP request: "+e);  
  33.    }    
  34. // print the response pdu
  35. System.out.println(oid.toTagString());
  36. System.out.println(var.toTagString());
  37. // close session
  38. session.close();
  39. //stop api thread
  40. api.close();
  41.  }
  42. }