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

SNMP编程

开发平台:

C/C++

  1. /* $Id: snmpset.src,v 1.4.2.9 2009/01/28 13:01:35 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 and
  10.  * com.adventnet.snmp.mibs packages of 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] MIB_files host [OID value] ...
  17.  * e.g. 
  18.  * java snmpset -p 161 -c public  ../../../mibs/RFC1213-MIB 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] MIB_files host [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 ../../../mibs/RFC1213-MIB 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 contextID] MIB_File host [OID value] ...
  27.  * e.g.
  28.  * java snmpset  ../../../mibs/RFC1213-MIB -v v3 -u initial2 -w initial2Pass -a MD5 10.3.2.120 1.5.0 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.  * If the mib is loaded you can also give string oids in the following formats
  35.  * .iso.org.dod.internet.mgmt.mib-2.system.sysDescr.0 or system.sysDescr.0 or
  36.  * sysDescr.0 .
  37.  * 
  38.  * Options:
  39.  * [-d]                - Debug output. By default off.
  40.  * [-c] <community>    - community String. By default "public".
  41.  * [-wc]<write community> - write community String. By default "public".
  42.  * [-p] <port>         - remote port no. By default 161.
  43.  * [-t] <Timeout>      - Timeout. By default 5000ms.
  44.  * [-r] <Retries>      - Retries. By default 0. 
  45.  * [-v] <version>      - version(v1 / v2 / v3). By default v1.
  46.  * [-u] <username>     - The v3 principal/userName
  47.  * [-a] <autProtocol>  - The authProtocol(MD5/SHA). Mandatory if authPassword is specified
  48.  * [-w] <authPassword> - The authentication password.
  49.  * [-s] <privPassword> - The privacy protocol password. Must be accompanied with auth password and authProtocol fields.
  50.  * [-pp]<privProtocol> - The privacy protocol(DES/AES-128/AES-192/AES-256/3DES).
  51.  * [-i] <contextName>  - The contextName to be used for the v3 pdu.
  52.  * [-n] <contextID>    - The contextID to be used for the v3 pdu.
  53.  * <MIBfile> Mandatory - MIB files.To load multiple mibs give within double quotes files seperated by a blank space.       
  54.  * <host>  Mandatory   - The RemoteHost (agent).Format (string without double qoutes/IpAddress).
  55.  * <OID>   Mandatory   - Object Identifier.
  56.  * <value> Mandatory   - The object instance value to be set .
  57.  */
  58. import java.lang.*;
  59. import java.util.*;
  60. import java.net.*;
  61. import com.adventnet.snmp.snmp2.*;
  62. import com.adventnet.snmp.mibs.*;
  63. import com.adventnet.snmp.snmp2.usm.*;
  64. public class snmpset {
  65.     private static final int DEBUG = 0;
  66.     
  67.     
  68.     public static void main(String args[]) {
  69.     // Take care of getting options
  70.     
  71.     String usage = 
  72.         "nsnmpset [-d] [-v version(v1,v2,v3)] [-c community]n"+
  73.         "[-wc writeCommunity] [-p port] [-r retries] [-t timeout]n"+
  74.         "[-u user] [-a auth_protocol] [-w auth_password] n"+
  75.         "[-s priv_password] [-n contextName] [-i contextID][-pp privProtocol(DES/AES-128/AES-192/AES-256/3DES)]n"+
  76.         "MIB_files host OID value [OID value] ...";
  77.     String options[] = 
  78.         { 
  79.             "-d", "-c", "-wc", "-p", "-r", "-t","-m", "-v", "-u", "-a", "-w", "-s", "-n", "-i","-pp"
  80.         };
  81.     String values[] = 
  82.         {
  83.             "None", null, null, null, null, null, null, null,null, null, null, null, null, null,null 
  84.         };
  85.     ParseOptions opt = new ParseOptions(args,options,values,usage);
  86.     if (opt.remArgs.length<4) opt.usage_error();
  87.     // Start SNMP API
  88.     SnmpAPI api;
  89.     api = new SnmpAPI();
  90.     if (values[DEBUG].equals("Set"))
  91.     {
  92.         api.setDebug( true );
  93.     }   
  94.     
  95.     // Open session
  96.     SnmpSession session = new SnmpSession(api);
  97.  
  98.    
  99.    int PORT = 3;
  100.         UDPProtocolOptions ses_opt = new UDPProtocolOptions();
  101.         ses_opt.setRemoteHost(opt.remArgs[1]);
  102.         if(values[PORT] != null)
  103.         {
  104.           try
  105.           {
  106.               ses_opt.setRemotePort(Integer.parseInt(values[PORT]));
  107.           }
  108.           catch(Exception exp)
  109.           {
  110.               System.out.println("Invalid port: " + values[PORT]);
  111.               System.exit(1);
  112.           }
  113.         }
  114.         session.setProtocolOptions(ses_opt);
  115.    
  116.     // set values
  117.     SetValues setVal = new SetValues(session, values);
  118.     if(setVal.usage_error)
  119.     {
  120.         opt.usage_error();
  121.     }   
  122.     // Loading MIBS
  123.     MibOperations mibOps = new MibOperations();
  124.      
  125.     // To load MIBs from compiled file
  126.      mibOps.setLoadFromCompiledMibs(true);
  127.     if (opt.remArgs[0] != null)
  128.     {
  129.         try
  130.         {
  131.             System.err.println("Loading MIBs: "+opt.remArgs[0]);
  132.             mibOps.loadMibModules(opt.remArgs[0]);
  133.         }
  134.         catch (Exception ex) 
  135.         {
  136.             System.err.println("Error loading MIBs: "+ex.getMessage());
  137.             System.exit(1);
  138.         }
  139.     }
  140.     // Build set request PDU 
  141.     SnmpPDU pdu = new SnmpPDU();
  142.     pdu.setCommand( api.SET_REQ_MSG );
  143.    
  144.     // add Variable Bindings
  145.     for (int i=2;i<opt.remArgs.length;) 
  146.     { 
  147.         if (opt.remArgs.length < i+2)
  148.         {
  149.             opt.usage_error(); //need "{OID value}"
  150.         }   
  151.         SnmpOID oid = mibOps.getSnmpOID(opt.remArgs[i++]);
  152.         if (oid == null) 
  153.         {
  154.             System.exit(1);
  155.         }   
  156.         else
  157.         {
  158.             // Get the MibNode for this SnmpOID instance if found 
  159.             MibNode node = mibOps.getMibNode(oid);
  160.             if (node == null) 
  161.             {
  162.                 System.err.println("Failed. MIB node unavailable for OID.");
  163.             }   
  164.             else
  165.             {
  166.                 // Get the syntax associated with this node
  167.                 if (node.getSyntax() == null) 
  168.                 {
  169.                     System.err.println("Failed. OID not a leaf node or.");
  170.                 }   
  171.                 else
  172.                 {
  173.                     SnmpVarBind varbind = null;
  174.                     try 
  175.                     {
  176.                         // Get the SnmpVar instance for the value
  177.                         SnmpVar var = node.getSyntax().createVariable(opt.remArgs[i++]);
  178.                         // Create SnmpVarBind instance 
  179.                         varbind = new SnmpVarBind(oid,var);
  180.                     } 
  181.                     catch (SnmpException ex) 
  182.                     { 
  183.                         System.err.println("Error creating variable."); 
  184.                     }
  185.                     // Add the variable-bindings to the PDU
  186.                     pdu.addVariableBinding(varbind);      
  187.                 }
  188.             }
  189.         }
  190.     } // end of add variable bindings
  191.     try 
  192.     {
  193.         session.open();        // Send PDU
  194.     } 
  195.     catch (SnmpException e) 
  196.     { 
  197.         System.err.println("Error opening seesion");
  198.         System.exit(1);
  199.     }
  200.     
  201.     if(session.getVersion()==SnmpAPI.SNMP_VERSION_3) 
  202.     {
  203.         pdu.setUserName(setVal.userName.getBytes());
  204.         try
  205.         {
  206.             USMUtils.init_v3_parameters(
  207. setVal.userName,
  208. null,
  209. setVal.authProtocol,
  210. setVal.authPassword,
  211. setVal.privPassword,
  212. ses_opt,
  213. session,
  214. false,
  215. setVal.privProtocol);
  216.         }
  217.         catch(Exception e)
  218.         {
  219.             System.out.println(e.getMessage());
  220.             System.exit(0);
  221.         }
  222.         pdu.setContextName(setVal.contextName.getBytes());
  223.         pdu.setContextID(setVal.contextID.getBytes());
  224.     }
  225.     SnmpPDU res_pdu = null;
  226.     try 
  227.     {
  228.         // Send PDU
  229.         res_pdu = session.syncSend(pdu);
  230.     }
  231.     catch (SnmpException e) 
  232.     {
  233.         System.err.println("Sending PDU"+e.getMessage());
  234.         System.exit(1);
  235.     }
  236.     if (res_pdu == null) 
  237.     {
  238.         // timeout
  239.         System.out.println("Request timed out to: " + opt.remArgs[0] );
  240.         System.exit(1);
  241.     }
  242.     // print and exit
  243.     System.out.println("Response Received from "+ res_pdu.getProtocolOptions().getSessionId());
  244.     // Check for error in response
  245.     if (res_pdu.getErrstat() != 0) 
  246.     {
  247.         System.err.println("Error in response: " + mibOps.getErrorString(res_pdu));
  248.     }   
  249.     else 
  250.     {
  251.         // print the response pdu varbinds
  252.         System.out.println(mibOps.varBindsToString(res_pdu));
  253.         // print the response pdu
  254.         System.out.println(mibOps.toString(res_pdu));
  255.     }
  256.     // close session
  257.     session.close();
  258.     // stop api thread
  259.     api.close();
  260.     
  261.     System.exit(0);
  262.   }
  263. }