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

SNMP编程

开发平台:

C/C++

  1. * @(#)SnmpGetBulk.java
  2.  * Copyright (c) 1996-2003 AdventNet, Inc. All Rights Reserved.
  3.  * Please read the associated COPYRIGHTS file for more details.
  4.  */
  5. /**
  6.  * This is an example program to explain how to write an 
  7.  * application to retrieve information about the 
  8.  * atTable entries in the localhost's RFC1213-MIB using 
  9.  * com.adventnet.snmp.snmp2 package of AdventNetSNMP API.
  10.  *
  11.  * The user could run this application by giving the following usage.
  12.  *  
  13.  * java SnmpGetBulk
  14.  *
  15.  *
  16. import java.lang.*;
  17. import java.util.*;
  18. import java.net.*;
  19. import com.adventnet.snmp.snmp2.*;
  20. public class SnmpGetBulk {
  21. public static void main(String args[]) {
  22.  // Start SNMP API
  23.         SnmpAPI api = new SnmpAPI();
  24. // Open session
  25. SnmpSession session = new SnmpSession(api); 
  26. try 
  27. {
  28. session.open();
  29. }
  30. catch (SnmpException e )
  31. {
  32. System.err.println("Error opening socket: "+e);
  33. }
  34. // Build GetBulk request PDU
  35. SnmpPDU pdu = new SnmpPDU();
  36. UDPProtocolOptions option = new UDPProtocolOptions("localhost");
  37. pdu.setProtocolOptions(option); 
  38. pdu.setCommand(SnmpAPI.GETBULK_REQ_MSG );
  39. pdu.setMaxRepetitions(10);
  40. pdu.setNonRepeaters(0);
  41. // Provide the OID .1.3.6.1.2.1.3.1
  42. SnmpOID oid = new SnmpOID("1.3.1");
  43. pdu.addNull(oid);
  44. // Send PDU and receive response PDU
  45. SnmpPDU result = session.syncSend(pdu);
  46. if (result == null)
  47. {
  48. System.out.println("Request timed out!");
  49. }
  50. else
  51. {
  52. if (result.getErrstat()== 0)
  53. {
  54. // print the response pdu varbinds
  55. System.out.println(result.printVarBinds());
  56. }
  57. else
  58. {
  59. System.out.println(result.getError());
  60. }
  61. }
  62.  // close session
  63. session.close();
  64. // close api thread
  65. api.close();
  66.  }
  67. }