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

SNMP编程

开发平台:

C/C++

  1. /* $Id: snmpset.src,v 1.4.2.5 2009/01/28 13:29:38 prathika Exp $ */
  2. /*
  3.  * @(#)snmpset.java
  4.  * Copyright (c) 1996-2009 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.  *
  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.  * 
  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] [-pp privProtocol(DES/AES-128/AES-192/AES-256/3DES)] [-n contextName] [-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.  * [-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.  * [-pp]<privProtocol> -(DES/AES-128/AES-192/AES-256/3DES)
  48.  * [-i] <contextID>    - The contextID to be used for the v3 pdu.
  49.  * <host> Mandatory    - The RemoteHost (agent).Format (string without double qoutes/IpAddress).
  50.  * <OID>  Mandatory    - Give multiple no. of Object Identifiers with type and value.
  51.  * <type> Mandatory    - object type
  52.  * <value> Mandatory   - The object instance value to be set .
  53.  */
  54. import java.lang.*;
  55. import java.util.*;
  56. import java.net.*;
  57. import com.adventnet.snmp.snmp2.*;
  58. import com.adventnet.snmp.snmp2.usm.*;
  59.  
  60. public class snmpset {
  61.     public static void main(String args[]) {        
  62.         
  63.         // Take care of getting options
  64.         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][-pp privProtocol(DES/AES-128/AES-192/AES-256/3DES)] host [OID {INTEGER | STRING | GAUGE | TIMETICKS | OPAQUE | IPADDRESS | COUNTER | OID } value] ...";
  65.         String options[] = { "-d", "-c", "-wc", "-p", "-r", "-t", "-m", "-v", "-u", "-a", "-w", "-s", "-n", "-i","-pp"};
  66.         String values[] = { "None", null, null, null, null, null, "None", null, null, null, null, null, null, null,null };
  67.         ParseOptions opt = new ParseOptions(args,options,values,usage);
  68.         if (opt.remArgs.length<1) opt.usage_error();
  69.         // Start SNMP API
  70.         SnmpAPI api;
  71.         api = new SnmpAPI();
  72.         if (values[0].equals("Set")) api.setDebug( true );
  73.         // Open session 
  74.         SnmpSession session = new SnmpSession(api);
  75.         session.setTransportProvider("com.adventnet.snmp.snmp2.TcpTransportImpl");
  76.         
  77.         // set values
  78.         SetValues setVal = new SetValues(session, values);
  79.         if(setVal.usage_error) opt.usage_error();
  80.         ProtocolOptions params = null;
  81.         if(values[3] != null)   {
  82.             params = new TcpProtocolOptionsImpl(opt.remArgs[0], Integer.parseInt( values[3] ), -1);
  83.         }
  84.         else    {
  85.             params = new TcpProtocolOptionsImpl(opt.remArgs[0], 161, -1);       
  86.         }       
  87.         session.setProtocolOptions(params);
  88.         // Build set request PDU
  89.         SnmpPDU pdu = new SnmpPDU();
  90.         pdu.setCommand( api.SET_REQ_MSG );
  91.         // add Variable Bindings
  92.         for (int i=1;i<opt.remArgs.length;) { 
  93.             if (opt.remArgs.length < i+3) opt.usage_error(); //need "{OID type value}"
  94.             SnmpOID oid = new SnmpOID(opt.remArgs[i++]);
  95.             if (oid.toValue() == null)
  96.                 System.err.println("Invalid OID argument: " + opt.remArgs[i]);
  97.             else {
  98.                 addvarbind(pdu, oid, opt.remArgs[i++], opt.remArgs[i++]);          
  99.             }
  100.         } // end of add variable bindings
  101.         try {
  102.             //open session
  103.             session.open();
  104.         } catch (SnmpException e) { 
  105.             System.err.println("Sending PDU"+e.getMessage());
  106.         } 
  107.         if(session.getVersion()==SnmpAPI.SNMP_VERSION_3) {
  108.             pdu.setUserName(setVal.userName.getBytes());
  109.             try
  110.             {
  111.                 
  112. USMUtils.init_v3_parameters(
  113. setVal.userName,
  114.          null,
  115. setVal.authProtocol,
  116. setVal.authPassword,
  117. setVal.privPassword,
  118. params,
  119. session,
  120. false,
  121. setVal.privProtocol);
  122.             }
  123.             catch(Exception exp)
  124.             {
  125.                 System.out.println(exp.getMessage());
  126.                 System.exit(1);
  127.             }
  128.             pdu.setContextName(setVal.contextName.getBytes());
  129.             pdu.setContextID(setVal.contextID.getBytes());
  130.         }
  131.         try {        // Send PDU receive response PDU
  132.              pdu = session.syncSend(pdu); 
  133.         } catch (SnmpException e) {
  134.         System.err.println("Sending PDU"+e.getMessage());
  135.             session.close();
  136.             api.close();         
  137.     System.exit(1);
  138.         }
  139.     
  140.         if (pdu == null) {
  141.             // timeout
  142.             System.out.println("Request timed out to: " + opt.remArgs[0] );
  143.             session.close();
  144.             api.close();             
  145.         System.exit(1);
  146.         }
  147.         // print and exit
  148.         System.out.println("Response PDU received from " +((TcpProtocolOptionsImpl)(pdu.getProtocolOptions())).getRemoteHost()+
  149.                ", community: " + pdu.getCommunity());
  150.     
  151.         // Check for error in response
  152.         if (pdu.getErrstat() != 0)
  153.             System.err.println(pdu.getError());
  154.         else
  155.             // print the response pdu varbinds
  156.             System.out.println(pdu.printVarBinds());
  157.         // close session
  158.         session.close();
  159.         // stop api thread
  160.         api.close();
  161.         
  162.         System.exit(0);
  163.     }
  164.     /** adds the varbind  with specified oid, type and value to the pdu */
  165.     static void addvarbind(SnmpPDU pdu, SnmpOID oid, String type, String value)
  166.     {        
  167.         byte dataType ;
  168.         if (type.equals("INTEGER")) {
  169.             dataType = SnmpAPI.INTEGER;
  170.         } else if (type.equals("STRING")) {
  171.             dataType = SnmpAPI.STRING;
  172.         } else if (type.equals("GAUGE")) {
  173.             dataType = SnmpAPI.GAUGE;
  174.         } else if (type.equals("TIMETICKS")) {
  175.             dataType = SnmpAPI.TIMETICKS;
  176.         } else if (type.equals("OPAQUE")) {
  177.             dataType = SnmpAPI.OPAQUE;
  178.         } else if (type.equals("IPADDRESS")) {
  179.             dataType = SnmpAPI.IPADDRESS;
  180.         } else if (type.equals("COUNTER")) {
  181.             dataType = SnmpAPI.COUNTER;
  182.         } else if (type.equals("OID")) { 
  183.             dataType = SnmpAPI.OBJID;
  184.         } else if (type.equals("BITS")) { 
  185.             dataType = SnmpAPI.STRING;
  186.         } else { 
  187.             System.err.println("Invalid variable type: " + type);
  188.             return;
  189.         }
  190.         SnmpVar var = null;
  191.         try {
  192.             // create SnmpVar instance for the value and the type
  193.             var = SnmpVar.createVariable( value, dataType );
  194.         }
  195.         catch(SnmpException e){
  196.             System.err.println("Cannot create variable: " + oid + " with value: " + value);
  197.             return;
  198.         }
  199.         //create varbind
  200.         SnmpVarBind varbind = new SnmpVarBind(oid, var);
  201.         // add variable binding
  202.         pdu.addVariableBinding(varbind);
  203.     }
  204. }