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

SNMP编程

开发平台:

C/C++

  1. /* $Id: ejbset.src,v 1.3 2002/09/09 05:43:16 tonyjpaul Exp $ */
  2. /*
  3.  * @(#)ejbset.java
  4.  * Copyright (c) 1996-2003 AdventNet, Inc. All Rights Reserved.
  5.  * Please read the COPYRIGHTS file for more details.
  6.  */
  7. /** 
  8.  *  Use ejb 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 ejb server is specified with the -SnmpEJBServer 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 ejbset [options] host oid ...
  19.  *
  20.  *<img SRC="images/v3only.jpg" ALT="v3 only"> v3 request:
  21.  * java ejbset [-SnmpEJBServer 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 ejbset -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 ejbset [-SnmpEJBServer hostName] [-v version(v1,v2)]  [-c community] [-p port] [-t timeout] [-r retries] -m MIB_files host OID value ...
  27.  * e.g. 
  28.  * java ejbset -v v2 -m ....mibsrfc1213-MIB localhost 1.2.0 string
  29.  *
  30.  * v1 request:
  31.  * java ejbset [-SnmpEJBServer hostName]  [-c community] [-p port] [-t timeout] [-r retries] -m MIB_files host OID value ...
  32.  * e.g. 
  33.  * java ejbset -m ....mibsrfc1213-MIB localhost 1.5.0 string
  34.  *
  35.  * Options:
  36.   * [-SnmpEJBServer ] <hostName>      - SnmpEJBServer SERVER option to specify the ejb 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 com.adventnet.snmp.ejb.*;
  56. import javax.naming.*;
  57. import weblogic.jndi.*;
  58. public class ejbset  {
  59. static final int USM_SECURITY_MODEL = 3;
  60. public static void main(String args[]) {
  61. // Take care of getting options
  62.         String usage = "ejbset [-SnmpEJBServer 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 ...";
  63.         String options[] = { "-SnmpEJBServer", "-c", "-p", "-r", "-t", "-m", "-v", "-u", "-a", "-w", "-s" ,"-i","-n"};
  64.         String values[] = { null, null, null, null, null, null, null, null,null,null,null,null,null};
  65.         String userName = new String("");
  66.         String authProtocol = new String("NO_AUTH");
  67.         String authPassword = new String ("");
  68.         String privPassword = new String ("");
  69.         String contextName = new String ("");
  70.         String contextID = new String ("");
  71.       
  72.     ParseOptions opt = new ParseOptions(args,options,values, usage);
  73.     
  74.     // check for at least hostname and one OID in remaining arguments
  75.     if (opt.remArgs.length<3) opt.usage_error();
  76.  //This block performs a lookup on the EJBComponent.
  77. //The lookup is specific to the ApplicationServer used.
  78. try {
  79.     Environment env = new Environment();
  80. if(values[0]!=null)
  81.   env.setProviderUrl(values[0]+"/SnmpTargetEJB");
  82. else env.setProviderUrl("t3://localhost:7001/SnmpTargetEJB");
  83.     Context ctx = env.getInitialContext();
  84.     SnmpTargetHome home = (SnmpTargetHome) ctx.lookup("SnmpTargetEJB");
  85. SnmpTarget target = (SnmpTarget) home.create();
  86.     if(values[6] != null) {  // if SNMP version is specified, set it
  87.         if(values[6].equals("v1"))
  88.       target.setSnmpVersion( com.adventnet.snmp.ejb.SnmpTarget.VERSION1 ) ;
  89.         else if(values[6].equals("v2"))
  90.             target.setSnmpVersion( com.adventnet.snmp.ejb.SnmpTarget.VERSION2C );
  91.         else if(values[6].equals("v3"))
  92.             target.setSnmpVersion( com.adventnet.snmp.ejb.SnmpTarget.VERSION3 );
  93.         else {
  94.             System.out.println("Invalid Version Number");
  95.             System.exit(1);
  96.         }
  97.         }
  98.         target.setTargetHost( opt.remArgs[0] );  // set the agent hostname
  99.         if (values[1] != null) // set the community if specified
  100.         target.setCommunity( values[1] );
  101.         try { // set the timeout/retries/port parameters, if specified
  102.         if (values[2] != null)
  103.             target.setTargetPort( Integer.parseInt(values[2]) );
  104.         if (values[3] != null)
  105.             target.setRetries( Integer.parseInt(values[3]) );
  106.         if (values[4] != null)
  107.             target.setTimeout( Integer.parseInt(values[4]) );
  108.         if (values[7] != null)
  109.             userName = values[7];
  110.         if (values[8] != null) 
  111.             authProtocol = values[8];
  112.         if (values[9] != null)
  113.         authPassword = values[9];
  114.         if (values[10] != null) 
  115.         privPassword = values[10];
  116. if (values[11] != null)
  117. contextID = values[11];
  118. if (values[12] != null)
  119. contextName = values[12];
  120.         } catch (NumberFormatException ex) {
  121.         System.err.println("Invalid Integer Argument "+ex);
  122.         }
  123.         if(target.getSnmpVersion() == target.VERSION3) {
  124.         target.setPrincipal(userName);
  125.         target.setAuthPassword(authPassword);
  126.         target.setPrivPassword(privPassword);
  127.         if(authProtocol.equals("SHA"))
  128.         target.setAuthProtocol(target.SHA_AUTH);
  129.         else
  130.         target.setAuthProtocol(target.MD5_AUTH);
  131.         target.setContextID(contextID);
  132. target.setContextName(contextName);
  133.         // Create the SNMPv3 tables.
  134.  target.create_v3_tables();
  135. }
  136.   
  137.         if (values[5] != null) try  {     // Load the MIB files
  138.         System.err.println("Loading MIBs: "+values[5]);
  139.         target.loadMibs(values[5]);
  140. System.err.println("Loaded MIBs: "+ values[5]);
  141.         } catch (Exception ex) {
  142.         System.err.println("Error loading MIBs: "+ex);
  143.         }
  144.         else
  145.             opt.usage_error();    
  146.         // Put together OID and variable value lists from command line
  147.         String oids[] = null, var_values[] = null;  // trap oids and values
  148.         int num_varbinds = 0;
  149.         for (int i=1;i<opt.remArgs.length;i+=2) { // add Variable Bindings
  150.         if (opt.remArgs.length < i+2) //need "{OID type value}"
  151.             opt.usage_error(); // unmatched arguments for name-value pairs
  152.         num_varbinds++;
  153.         }
  154.         oids = new String[num_varbinds];
  155.         var_values = new String[num_varbinds];
  156.         for (int i=0;i<num_varbinds;i++) { // add Variable Bindings
  157.         oids[i] = opt.remArgs[(2*i)+1];
  158.         var_values[i] = opt.remArgs[(2*i)+2];
  159.         }
  160.         target.setObjectIDList(oids);  // set OID list on SnmpTarget
  161.         String result[] = target.snmpSetList(var_values);
  162.         if (result == null) {
  163.             System.err.println("Request failed or timed out. n"+
  164.                    target.getErrorString());
  165.         } else { // print response
  166.             System.out.println("Set OK.  Return values:");
  167.         for (int i=0;i<oids.length;i++) { 
  168.             System.out.println(target.getObjectID(i) +": "+result[i]);
  169.         }
  170.         }
  171.     } catch( Exception e ){
  172.         System.err.println( "Exception:" + e );
  173.         e.printStackTrace();
  174.     }
  175.     System.exit(0);
  176.     
  177.     }
  178. }