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

SNMP编程

开发平台:

C/C++

  1. /* $Id: snmpset.src,v 1.4 2002/09/09 05:41:02 parasuraman Exp $ */
  2. /*
  3.  * @(#)snmpset.java
  4.  * Copyright (c) 1996-2003 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 to do
  9.  * the basic SNMP operation SET using com.adventnet.snmp.snmp2 package of
  10.  * AdventNetSNMP2 api.
  11.  * The user could run this application by giving any one of the following usage.
  12.  *  
  13.  * java snmpset [options] hostname oid value [oid value] ...
  14.  *
  15.  * v1 request: 
  16.  * java snmpset [-d] [-c community] [-wc writeCommunity] [-p port] [-t timeout] [-r retries] host [OID {INTEGER | STRING | GAUGE | TIMETICKS | OPAQUE | IPADDRESS | COUNTER | OID } value] ...
  17.  * e.g. 
  18.  * java snmpset -p 161 -c public adventnet 1.1.0 advent-machine 1.4.0 contact-advent
  19.  *<img SRC="images/v2candv3only.jpg" ALT="v2c and v3 only">
  20.  * v2c request:  
  21.  * java snmpset [-d] [-v version(v1,v2)] [-c community] [-wc writeCommunity] [-p port] [-t timeout] [-r retries] host [OID {INTEGER | STRING | GAUGE | TIMETICKS | OPAQUE | IPADDRESS | COUNTER | OID } value] ...
  22.  * e.g. For v1 request give -v v1 or drop the option -v .
  23.  * java snmpset -p 161 -v v2 -c public adventnet 1.7.0 76
  24.  *<img SRC="images/v3only.jpg" ALT="v3 only"> 
  25.  * v3 request:
  26.  * java snmpset [-d] [-v version(v1,v2,v3)] [-c community] [-p port] [-r retries] [-t timeout] [-u user] [-a auth_protocol] [-w auth_password] [-s priv_password] [-i context_id] host [OID {INTEGER | STRING | GAUGE | TIMETICKS | OPAQUE | IPADDRESS | COUNTER | OID } value] ...
  27.  * e.g.
  28.  * java snmpset -v v3 -u initial2 -w initial2Pass -a MD5 10.3.2.120 1.5.0 STRING whatever
  29.  * 
  30.  * If the oid is not starting with a dot (.) it will be prefixed by .1.3.6.1.2.1 .
  31.  * So the entire OID of 1.1.0 will become .1.3.6.1.2.1.1.1.0 . You can also
  32.  * give the entire OID .
  33.  *
  34.  * Options:
  35.  * [-d]                - Debug output. By default off.
  36.  * [-c] <community>    - community String. By default "public".
  37.  * [-wc] <community>   - write community String. By default "public".
  38.  * [-p] <port>         - remote port no. By default 161.
  39.  * [-t] <Timeout>      - Timeout. By default 5000ms.
  40.  * [-r] <Retries>      - Retries. By default 0.      
  41.  *<img SRC="images/v3only.jpg" ALT="v3 only"> [-v] <version>      - version(v1 / v2 / v3). By default v1.
  42.  * [-u] <username>     - The v3 principal/userName
  43.  * [-a] <autProtocol>  - The authProtocol(MD5/SHA). Mandatory if authPassword is specified
  44.  * [-w] <authPassword> - The authentication password.
  45.  * [-s] <privPassword> - The privacy protocol password. Must be accompanied with auth password and authProtocol fields.
  46.  * [-n] <contextName>  - The contextName to be used for the v3 pdu.
  47.  * [-i] <contextID>    - The contextID to be used for the v3 pdu.
  48.  * <host> Mandatory    - The RemoteHost (agent).Format (string without double qoutes/IpAddress).
  49.  * <OID>  Mandatory    - Give multiple no. of Object Identifiers with type and value.
  50.  * <type> Mandatory    - object type
  51.  * <value> Mandatory   - The object instance value to be set .
  52.  */
  53. import java.lang.*;
  54. import java.util.*;
  55. import java.net.*;
  56. import com.adventnet.snmp.snmp2.*;
  57. import com.adventnet.snmp.snmp2.usm.*;
  58.  
  59. public class snmpset {
  60.     public static void main(String args[]) {        
  61.         
  62.         // Take care of getting options
  63.         String usage = "snmpset [-d] [-v version(v1,v2,v3)] [-c community] [-wc writeCommunity] [-p port] [-r retries] [-t timeout] [-u user] [-a auth_protocol] [-w auth_password] [-s priv_password] [-n contextName] [-i contextID] host [OID {INTEGER | STRING | GAUGE | TIMETICKS | OPAQUE | IPADDRESS | COUNTER | OID } value] ...";
  64.         String options[] = { "-d", "-c", "-wc", "-p", "-r", "-t", "-m", "-v", "-u", "-a", "-w", "-s", "-n", "-i"};
  65.         String values[] = { "None", null, null, null, null, null, "None", null, null, null, null, null, null, null };
  66.         ParseOptions opt = new ParseOptions(args,options,values,usage);
  67.         if (opt.remArgs.length<1) opt.usage_error();
  68.         // Start SNMP API
  69.         SnmpAPI api;
  70.         api = new SnmpAPI();
  71.         if (values[0].equals("Set")) api.setDebug( true );
  72.         // Open session 
  73.         SnmpSession session = new SnmpSession(api);
  74. session.setProtocol(session.TRANSPORT_PROVIDER);
  75.         // set values
  76.         SetValues setVal = new SetValues(session, values);
  77.         if(setVal.usage_error) opt.usage_error();
  78. ProtocolOptions params = null;
  79. if(values[3] != null) {
  80. params = new TcpProtocolOptionsImpl(opt.remArgs[0], Integer.parseInt( values[3] ), -1);
  81. }
  82. else {
  83. params = new TcpProtocolOptionsImpl(opt.remArgs[0], 161, -1);
  84. }
  85.         session.setProtocolOptions(params);
  86.         // Build set request PDU
  87.         SnmpPDU pdu = new SnmpPDU();
  88.         pdu.setCommand( api.SET_REQ_MSG );
  89.         // add Variable Bindings
  90.         for (int i=1;i<opt.remArgs.length;) { 
  91.             if (opt.remArgs.length < i+3) opt.usage_error(); //need "{OID type value}"
  92.             SnmpOID oid = new SnmpOID(opt.remArgs[i++]);
  93.             if (oid.toValue() == null)
  94.                 System.err.println("Invalid OID argument: " + opt.remArgs[i]);
  95.             else {
  96.                 addvarbind(pdu, oid, opt.remArgs[i++], opt.remArgs[i++]);          
  97.             }
  98.         } // end of add variable bindings
  99.         try {
  100.             //open session
  101.             session.open();
  102.         } catch (SnmpException e) { 
  103.             System.err.println("Sending PDU"+e.getMessage());
  104.         } 
  105.         if(session.getVersion()==SnmpAPI.SNMP_VERSION_3) {
  106. pdu.setUserName(setVal.userName.getBytes());
  107.             USMUtils.init_v3_params(setVal.userName, setVal.authProtocol, setVal.authPassword, setVal.privPassword, params.getSessionId(), session);
  108.             pdu.setContextName(setVal.contextName.getBytes());
  109.             pdu.setContextID(setVal.contextID.getBytes());
  110.         }
  111.         try {        // Send PDU receive response PDU
  112.              pdu = session.syncSend(pdu); 
  113.         } catch (SnmpException e) {
  114.         System.err.println("Sending PDU"+e.getMessage());
  115.             session.close();
  116.             api.close();         
  117. System.exit(1);
  118.         }
  119.     
  120.         if (pdu == null) {
  121.             // timeout
  122.             System.out.println("Request timed out to: " + opt.remArgs[0] );
  123.             session.close();
  124.             api.close();             
  125.     System.exit(1);
  126.         }
  127.         // print and exit
  128.         System.out.println("Response PDU received from " +((TcpProtocolOptionsImpl)(pdu.getProtocolOptions())).getRemoteHost()+
  129.                ", community: " + pdu.getCommunity());
  130.     
  131.         // Check for error in response
  132.         if (pdu.getErrstat() != 0)
  133.             System.err.println(pdu.getError());
  134.         else
  135.             // print the response pdu varbinds
  136.             System.out.println(pdu.printVarBinds());
  137.         // close session
  138.         session.close();
  139.         // stop api thread
  140.         api.close();
  141.         
  142.         System.exit(0);
  143.     }
  144.     /** adds the varbind  with specified oid, type and value to the pdu */
  145.     static void addvarbind(SnmpPDU pdu, SnmpOID oid, String type, String value)
  146.     {        
  147.         byte dataType ;
  148.         if (type.equals("INTEGER")) {
  149.             dataType = SnmpAPI.INTEGER;
  150.         } else if (type.equals("STRING")) {
  151.             dataType = SnmpAPI.STRING;
  152.         } else if (type.equals("GAUGE")) {
  153.             dataType = SnmpAPI.GAUGE;
  154.         } else if (type.equals("TIMETICKS")) {
  155.             dataType = SnmpAPI.TIMETICKS;
  156.         } else if (type.equals("OPAQUE")) {
  157.             dataType = SnmpAPI.OPAQUE;
  158.         } else if (type.equals("IPADDRESS")) {
  159.             dataType = SnmpAPI.IPADDRESS;
  160.         } else if (type.equals("COUNTER")) {
  161.             dataType = SnmpAPI.COUNTER;
  162.         } else if (type.equals("OID")) { 
  163.             dataType = SnmpAPI.OBJID;
  164.         } else if (type.equals("BITS")) { 
  165.             dataType = SnmpAPI.STRING;
  166.         } else { 
  167.             System.err.println("Invalid variable type: " + type);
  168.             return;
  169.         }
  170.         SnmpVar var = null;
  171.         try {
  172.             // create SnmpVar instance for the value and the type
  173.             var = SnmpVar.createVariable( value, dataType );
  174.         }
  175.         catch(SnmpException e){
  176.             System.err.println("Cannot create variable: " + oid + " with value: " + value);
  177.             return;
  178.         }
  179.         //create varbind
  180.         SnmpVarBind varbind = new SnmpVarBind(oid, var);
  181.         // add variable binding
  182.         pdu.addVariableBinding(varbind);
  183.     }
  184. }