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

SNMP编程

开发平台:

C/C++

  1. /* $Id: rmiset.src,v 1.3 2002/09/09 05:41:24 tonyjpaul Exp $ */
  2. /*
  3.  * @(#)rmiset.java
  4.  * Copyright (c) 1996-2002 AdventNet, Inc. All Rights Reserved.
  5.  * Please read the COPYRIGHTS file for more details.
  6.  */
  7. /** 
  8.  *  Use RMI to do an SNMP Set based on command line arguments.  Loads MIBs 
  9.  *  as specified, and converts to/from names for loaded MIB data.
  10.  *  The RMI server is specified with the -SnmpServer option
  11.  *  and defaults to localhost if not specified.
  12.  *  Since we do not ask user for variable type, in order to
  13.  *  convert set value strings to the correct variable type, the  
  14.  *  MIB corresponding to any object must be loaded.  
  15.  *  Once a MIB is loaded on the server, susequent uses of
  16.  *  This program will have the MIB available for SNMP operations.
  17.  *
  18.  * java rmiset [options] host oid ...
  19.  *
  20.  *<img SRC="images/v3only.jpg" ALT="v3 only"> v3 request:
  21.  * java rmiset [-SnmpServer hostName] [-v version(v1,v2,v3)]  [-c community] [-p port] [-t timeout] [-r retries] [-u user] [-a auth_protocol] [-w auth_password] [-s priv_password] [-i contextID] [-n contextName] -m MIB_files host OID value ...
  22.  * e.g. 
  23.  * java rmiset -v v3 -m ....mibsrfc1213-MIB -u user -a MD5 -w passwd localhost 1.2.0 string
  24.  *
  25.  *<img SRC="images/v2candv3only.jpg" ALT="v2c and v3 only"> v2c request:
  26.  * java rmiset [-SnmpServer hostName] [-v version(v1,v2)]  [-c community] [-p port] [-t timeout] [-r retries] -m MIB_files host OID value ...
  27.  * e.g. 
  28.  * java rmiset -v v2 -m ....mibsrfc1213-MIB localhost 1.2.0 string
  29.  *
  30.  * v1 request:
  31.  * java rmiset [-SnmpServer hostName]  [-c community] [-p port] [-t timeout] [-r retries] -m MIB_files host OID value ...
  32.  * e.g. 
  33.  * java rmiset -m ....mibsrfc1213-MIB localhost 1.5.0 string
  34.  *
  35.  * Options:
  36.   * [-SnmpServer ] <hostName>      - SnmpServer SERVER option to specify the RMI server host.
  37.  * [-ORBInitialPort ] <orbPort>   - port on which transient name server is running
  38.  * [-ORBInitialHost ] <orbHost>   - host name of transient name server
  39.  * [-c] <community>    - community String. By default "public".
  40.  * [-p] <port>         - remote port no. By default 161.
  41.  * [-t] <Timeout>      - Timeout. By default 5000ms.
  42.  * [-r] <Retries>      - Retries. By default 0. 
  43.  * [-m] <MIBfile>      - MIB files.To load multiple mibs give within double quotes files seperated by a blank space.       
  44.  *<img SRC="images/v3only.jpg" ALT="v3 only"> [-v] <version>      - version(v1 / v2 / v3). By default v1.
  45.  * [-u] <username>     - The v3 principal/userName
  46.  * [-a] <autProtocol>  - The authProtocol(MD5/SHA). Mandatory if authPassword is specified
  47.  * [-w] <authPassword> - The authentication password.
  48.  * [-s] <privPassword> - The privacy protocol password. Must be accompanied with auth password and authProtocol fields.
  49.  * [-n] <contextName>  - The context to be used for the v3 pdu.
  50.  * [-i] <contextID>    - The contextID to be used for the v3 pdu.
  51.  * host Mandatory      - The RemoteHost (agent).Format (string without double qoutes/IpAddress).
  52.  * OID  Mandatory      - Give multiple no. of Object Identifiers.
  53.  * value Mandatory     - value to be set
  54.  */
  55. import java.lang.*;
  56. import java.util.*;
  57. import java.net.*;
  58. import java.rmi.*;
  59. public class rmiset {
  60. static final int USM_SECURITY_MODEL = 3;
  61.     public static void main(String args[]) {
  62.     // Take care of getting options
  63.         String usage = "rmiset [-SnmpServer hostName] [-v version(v1,v2,v3)]  [-c community] [-p port] [-t timeout] [-r retries] [-u user] [-a auth_protocol] [-w auth_password] [-s priv_password] [-i contextID] [-n contextName] -m MIB_files host OID value ...";
  64.         String options[] = { "-SnmpServer", "-c", "-p", "-r", "-t", "-m", "-v", "-u", "-a", "-w", "-s" ,"-i","-n"};
  65.         String values[] = { null, null, null, null, null, null, null, null,null,null,null,null,null};
  66.         String userName = new String("");
  67.         String authProtocol = new String("NO_AUTH");
  68.         String authPassword = new String ("");
  69.         String privPassword = new String ("");
  70.         String contextName = new String ("");
  71.         String contextID = new String ("");
  72.       
  73.     ParseOptions opt = new ParseOptions(args,options,values, usage);
  74.     
  75.     // check for at least hostname and one OID in remaining arguments
  76.     if (opt.remArgs.length<3) opt.usage_error();
  77.     com.adventnet.snmp.rmi.SnmpFactory factory = null;
  78.     com.adventnet.snmp.rmi.SnmpTarget target = null;
  79.     try {
  80.         System.out.println( "Performing lookup with RMI Registry ... " );
  81.             if(values[0] != null)
  82.         factory = (com.adventnet.snmp.rmi.SnmpFactory) 
  83.                     Naming.lookup( "rmi://" + values[0] + "/AdventnetSnmpFactory" );
  84.         else 
  85.         factory = (com.adventnet.snmp.rmi.SnmpFactory) 
  86.             Naming.lookup( "rmi:///AdventnetSnmpFactory" );
  87.         System.out.println( "Lookup succeeded " );
  88.         // Get a Target object
  89.         target = factory.createTarget();
  90.         if(values[6] != null) {  // if SNMP version is specified, set it
  91.         if(values[6].equals("v1"))
  92.             target.setSnmpVersion( com.adventnet.snmp.beans.SnmpTarget.VERSION1 ) ;
  93.         else if(values[6].equals("v2"))
  94.             target.setSnmpVersion( com.adventnet.snmp.beans.SnmpTarget.VERSION2C );
  95.         else if(values[6].equals("v3"))
  96.             target.setSnmpVersion( com.adventnet.snmp.beans.SnmpTarget.VERSION3 );
  97.         else {
  98.             System.out.println("Invalid Version Number");
  99.             System.exit(1);
  100.         }
  101.         }
  102.         target.setTargetHost( opt.remArgs[0] );  // set the agent hostname
  103.         if (values[1] != null) // set the community if specified
  104.         target.setCommunity( values[1] );
  105.         try { // set the timeout/retries/port parameters, if specified
  106.         if (values[2] != null)
  107.             target.setTargetPort( Integer.parseInt(values[2]) );
  108.         if (values[3] != null)
  109.             target.setRetries( Integer.parseInt(values[3]) );
  110.         if (values[4] != null)
  111.             target.setTimeout( Integer.parseInt(values[4]) );
  112.         if (values[7] != null)
  113.             userName = values[7];
  114.         if (values[8] != null) 
  115.             authProtocol = values[8];
  116.         if (values[9] != null)
  117.         authPassword = values[9];
  118.         if (values[10] != null) 
  119.         privPassword = values[10];
  120.   if (values[11] != null)
  121.   contextID = values[11];
  122.   if (values[12] != null)
  123.   contextName = values[12];
  124.         } catch (NumberFormatException ex) {
  125.         System.err.println("Invalid Integer Argument "+ex);
  126.         }
  127.         if(target.getSnmpVersion() == target.VERSION3) {
  128.         target.setPrincipal(userName);
  129.         target.setAuthPassword(authPassword);
  130.         target.setPrivPassword(privPassword);
  131.         if(authProtocol.equals("SHA"))
  132.         target.setAuthProtocol(target.SHA_AUTH);
  133.         else
  134.         target.setAuthProtocol(target.MD5_AUTH);
  135. target.setContextName(contextName);
  136. target.setContextID(contextID);
  137. // Create the SNMPv3 tables.
  138.   target.create_v3_tables();
  139. }
  140.   
  141.         if (values[5] != null) try  {     // Load the MIB files
  142.         System.err.println("Loading MIBs: "+values[5]);
  143.         target.loadMibs(values[5]);
  144.         } catch (Exception ex) {
  145.         System.err.println("Error loading MIBs: "+ex);
  146.         }
  147.         else
  148.             opt.usage_error();    
  149.         // Put together OID and variable value lists from command line
  150.         String oids[] = null, var_values[] = null;  // trap oids and values
  151.         int num_varbinds = 0;
  152.         for (int i=1;i<opt.remArgs.length;i+=2) { // add Variable Bindings
  153.         if (opt.remArgs.length < i+2) //need "{OID type value}"
  154.             opt.usage_error(); // unmatched arguments for name-value pairs
  155.         num_varbinds++;
  156.         }
  157.         oids = new String[num_varbinds];
  158.         var_values = new String[num_varbinds];
  159.         for (int i=0;i<num_varbinds;i++) { // add Variable Bindings
  160.         oids[i] = opt.remArgs[(2*i)+1];
  161.         var_values[i] = opt.remArgs[(2*i)+2];
  162.         }
  163.         target.setObjectIDList(oids);  // set OID list on SnmpTarget
  164.         String result[] = target.snmpSetList(var_values);
  165.         if (result == null) {
  166.             System.err.println("Request failed or timed out. n"+
  167.                    target.getErrorString());
  168.         } else { // print response
  169.             System.out.println("Set OK.  Return values:");
  170.         for (int i=0;i<oids.length;i++) { 
  171.             System.out.println(target.getObjectID(i) +": "+result[i]);
  172.         }
  173.         }
  174.     } catch( Exception e ){
  175.         System.err.println( "Exception:" + e );
  176.         e.printStackTrace();
  177.     }
  178.     System.exit(0);
  179.     
  180.     }
  181. }