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

SNMP编程

开发平台:

C/C++

  1. * @(#)ModifyTable.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 application to 
  7.  * modify the column value of the table if the column oids are 
  8.  * .1.3.6.1.4.1.2.2.1.1, .1.3.6.1.4.1.2.2.1.2, .1.3.6.1.4.1.2.2.1.3 
  9.  * by using com.adventnet.snmp.snmp2 package of AdventNetSNMP API.
  10.  *
  11.  * The user could run this application by giving the following usage.
  12.  *  
  13.  * java ModifyTable
  14.  *
  15.  *
  16. import java.lang.*;
  17. import java.util.*;
  18. import java.net.*;
  19. import com.adventnet.snmp.snmp2.*;
  20. public class ModifyTable {
  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 Set request PDU
  35. SnmpPDU pdu = new SnmpPDU();
  36. UDPProtocolOptions option = new UDPProtocolOptions("localhost");
  37. pdu.setProtocolOptions(option); 
  38. pdu.setCommand(SnmpAPI.SET_REQ_MSG);
  39. SnmpOID oid=new SnmpOID(".1.3.6.1.4.1.2.2.1.2.6");
  40. // add varbinds
  41. SnmpVar var = null;
  42. try
  43. {
  44. // create SnmpVar instance for the value and the type
  45. var = SnmpVar.createVariable("value", SnmpAPI.STRING);
  46. }
  47. catch(SnmpException e)
  48. {
  49. System.err.println("Cannot create variable " + oid);
  50. return;
  51. }
  52. // add varbind
  53. SnmpVarBind varbind = new SnmpVarBind(oid, var);
  54. pdu.addVariableBinding(varbind);
  55. // Send PDU and receive response PDU
  56. session.open();
  57. SnmpPDU result = session.syncSend(pdu);
  58. if (result == null)
  59. {
  60. System.out.println("Request timed out!");
  61. }
  62. else
  63. {
  64. if (result.getErrstat()== 0)
  65. {
  66. // print the response pdu varbinds
  67. System.out.println(result.printVarBinds());
  68. }
  69. else
  70. {
  71. System.out.println(result.getError());
  72. }
  73. }
  74. // close session
  75. session.close();
  76. // close api thread
  77. api.close();
  78.  }
  79. }