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

SNMP编程

开发平台:

C/C++

  1. /*$Id: SnmpSet.java,v 1.1 2002/06/15 14:41:18 ram Exp $*/
  2. /*
  3.  * @(#)SnmpSet.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 change the value of sysName in the localhost's RFC1213-MIB using 
  10.  * com.adventnet.snmp.beans package of AdventNetSNMP API.
  11.  *
  12.  */
  13. import com.adventnet.snmp.beans.*;
  14. public class SnmpSet {
  15. public static void main(String args[]) {
  16. // instantiate SNMP target bean 
  17. SnmpTarget target = new SnmpTarget();
  18. // set the host in which the SNMP agent is running
  19. target.setTargetHost("localhost");
  20. // set the OID
  21. target.setObjectID(".1.3.6.1.2.1.1.5")
  22. //load MIBs 
  23. target.loadMibs("RFC-1213MIB");
  24. // perform a SET request
  25. String result = target.snmpSet("testing..");  
  26. if (result == null) 
  27. {
  28.          System.err.println("Request failed or timed out. n"+
  29.                    target.getErrorString());
  30. else 
  31. // print the values
  32.         System.out.println("OBJECT ID: "+target.getObjectID());  System.out.println("Response: "+result);
  33. }
  34. System.exit(0);
  35. }
  36. }