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

SNMP编程

开发平台:

C/C++

  1. /* $Id: ejbget.src,v 1.3 2002/09/09 05:43:16 tonyjpaul Exp $ */
  2. /*
  3.  * @(#)ejbget.java
  4.  * Copyright (c) 1996-2003 AdventNet, Inc. All Rights Reserved.
  5.  * Please read the associated COPYRIGHTS file for more details.
  6.  */
  7. /**
  8.  *  Use ejb to do a get of SNMP data based on command line arguments.
  9.  *  The ejb server is specified with the -EJBServer option
  10.  *  and defaults to localhost if not specified.
  11.  *  This allows loading MIBs as specified, and converts to/from
  12.  *  names for loaded MIB data.
  13.  *  Once a MIB is loaded on the server, susequent uses of
  14.  *  This program will have the MIB available for SNMP operations.
  15.  *
  16.  * java ejbget [options] host oid ...
  17.  *
  18.  *<img SRC="images/v3only.jpg" ALT="v3 only"> v3 request:
  19.  * java ejbget [-SnmpEJBServer hostName] [-v version(v1,v2,v3)] [-m MIB_files] [-c community] [-p port] [-t timeout] [-r retries] [-u user] [-a auth_protocol] [-w auth_password] [-s priv_password] [-i contextID] [-n contextName] host OID [OID] ...
  20.  * e.g. 
  21.  * java ejbget -v v3 -m ....mibsrfc1213-MIB -u user -a MD5 -w passwd localhost 1.2.0
  22.  *
  23.  *<img SRC="images/v2candv3only.jpg" ALT="v2c and v3 only"> v2c request:
  24.  * java ejbget [-SnmpEJBServer hostName] [-v version(v1,v2)] [-m MIB_files] [-c community] [-p port] [-t timeout] [-r retries] host OID [OID] ...
  25.  * e.g. 
  26.  * java ejbget -v v2 -m ....mibsrfc1213-MIB localhost 1.2.0
  27.  *
  28.  * v1 request:
  29.  * java ejbget [-SnmpEJBServer hostName] [-m MIB_files] [-c community] [-p port] [-t timeout] [-r retries] host OID [OID] ...
  30.  * e.g. 
  31.  * java ejbget -m ....mibsrfc1213-MIB localhost 1.2.0
  32.  *
  33. * Options:
  34.  * [-SnmpEJBServer ] <hostName>      - SnmpEJBServer SERVER option to specify the ejb server host.
  35.  * [-c] <community>    - community String. By default "public".
  36.  * [-p] <port>         - remote port no. By default 161.
  37.  * [-t] <Timeout>      - Timeout. By default 5000ms.
  38.  * [-r] <Retries>      - Retries. By default 0. 
  39.  * [-m] <MIBfile>      - MIB files.To load multiple mibs give within double quotes files seperated by a blank space.       
  40.  *<img SRC="images/v3only.jpg" ALT="v3 only"> [-v] <version>      - version(v1 / v2 / v3). By default v1.
  41.  * [-u] <username>     - The v3 principal/userName
  42.  * [-a] <autProtocol>  - The authProtocol(MD5/SHA). Mandatory if authPassword is specified
  43.  * [-w] <authPassword> - The authentication password.
  44.  * [-s] <privPassword> - The privacy protocol password. Must be accompanied with auth password and authProtocol fields.
  45.  * [-i] <contextID>    - The contextID to be used for the v3 pdu.
  46.  * [-n] <contextName>  - The contextName to be used for the v3 pdu.
  47.  * host Mandatory      - The RemoteHost (agent).Format (string without double qoutes/IpAddress).
  48.  * OID  Mandatory      - Give multiple no. of Object Identifiers.
  49.  **/
  50. import com.adventnet.snmp.ejb.*;
  51. import com.adventnet.snmp.snmp2.*;
  52. import com.adventnet.snmp.mibs.*;
  53. import javax.naming.*;
  54. import weblogic.jndi.*;
  55. import java.util.Hashtable;
  56. public class ejbget  {
  57. static final int USM_SECURITY_MODEL = 3;
  58. public static void main(String args[]) {
  59. // Take care of getting options
  60.         String usage = "ejbget [-SnmpEJBServer hostName] [-v version(v1,v2,v3)] [-m MIB_files] [-c community] [-p port] [-t timeout] [-r retries] [-u user] [-a auth_protocol] [-w auth_password] [-s priv_password] [-i contextID] [-n contextName] host OID [OID] ...";
  61.         String options[] = { "-SnmpEJBServer", "-c", "-p", "-r", "-t", "-m", "-v", "-u", "-a", "-w", "-s" ,"-i" , "-n"};
  62.         String values[] = { null, null, null, null, null, null, null, null,null,null,null,null,null};
  63.         String userName = new String("");
  64.         String authProtocol = new String("NO_AUTH");
  65.         String authPassword = new String ("");
  66.         String privPassword = new String ("");
  67.         String contextName = new String ("");
  68.         String contextID = new String ("");
  69.     ParseOptions opt = new ParseOptions(args,options,values, usage);
  70.     // check for at least hostname and one OID in remaining arguments
  71.     if (opt.remArgs.length<2) opt.usage_error();
  72. //This block performs a lookup on the EJBComponent.
  73. //The lookup is specific to the ApplicationServer used.
  74.  
  75. try {
  76.     Environment env = new Environment();
  77. if(values[0]!=null)
  78.   env.setProviderUrl(values[0]+"/SnmpTargetEJB");
  79. else env.setProviderUrl("t3://localhost:7001/SnmpTargetEJB");
  80.     Context ctx = env.getInitialContext();
  81.  
  82.     SnmpTargetHome home = (SnmpTargetHome) ctx.lookup("SnmpTargetEJB");
  83. SnmpTarget target = (SnmpTarget) home.create();
  84.  
  85.     if(values[6] != null) {  // if SNMP version is specified, set it
  86.         if(values[6].equals("v1"))
  87.       target.setSnmpVersion( com.adventnet.snmp.ejb.SnmpTarget.VERSION1 ) ;
  88.         else if(values[6].equals("v2"))
  89.             target.setSnmpVersion( com.adventnet.snmp.ejb.SnmpTarget.VERSION2C );
  90.         else if(values[6].equals("v3"))
  91.             target.setSnmpVersion( com.adventnet.snmp.ejb.SnmpTarget.VERSION3 );
  92.         else {
  93.             System.out.println("Invalid Version Number");
  94.             System.exit(1);
  95.         }
  96.         }
  97.         target.setTargetHost( opt.remArgs[0] );  // set the agent hostname
  98.         if (values[1] != null) // set the community if specified
  99.         target.setCommunity( values[1] );
  100.         try { // set the timeout/retries/port parameters, if specified
  101.         if (values[2] != null)
  102.             target.setTargetPort( Integer.parseInt(values[2]) );
  103.         if (values[3] != null)
  104.             target.setRetries( Integer.parseInt(values[3]) );
  105.         if (values[4] != null)
  106.             target.setTimeout( Integer.parseInt(values[4]) );
  107.         if (values[7] != null)
  108.             userName = values[7];
  109.         if (values[8] != null) 
  110.             authProtocol = values[8];
  111.         if (values[9] != null)
  112.         authPassword = values[9];
  113.         if (values[10] != null) 
  114.         privPassword = values[10];
  115. if (values[11] != null)
  116. contextID = values[11];
  117. if (values[12] != null)
  118. contextName = values[12];
  119.         } catch (NumberFormatException ex) {
  120.         System.err.println("Invalid Integer Argument "+ex);
  121.         }
  122.         if(target.getSnmpVersion() == target.VERSION3) {
  123.         target.setPrincipal(userName);
  124.         target.setAuthPassword(authPassword);
  125.         target.setPrivPassword(privPassword);
  126.         if(authProtocol.equals("SHA"))
  127.         target.setAuthProtocol(target.SHA_AUTH);
  128.         else
  129.         target.setAuthProtocol(target.MD5_AUTH);
  130.         target.setContextID(contextID);
  131. target.setContextName(contextName);
  132.         // Create the SNMPv3 tables.
  133.  target.create_v3_tables();
  134. }
  135.         if (values[5] != null)     try { // Load the MIB files 
  136.         System.out.println("Loading MIBs: "+values[5]);
  137.         target.loadMibs(values[5]);
  138.         System.out.println("Done.");
  139.         } catch (Exception ex) {
  140.         System.err.println("Error loading MIBs: "+ex);
  141.         }
  142.         // create OID array from command line arguments
  143.         String oids[] = new String[opt.remArgs.length-1];
  144.         for (int i=1;i<opt.remArgs.length;i++) oids[i-1] = opt.remArgs[i];
  145.         
  146.         target.setObjectIDList(oids);
  147. String[] resultSeq = null;//new String[ oids.length ];
  148.         resultSeq = target.snmpGetList( );// do a get request
  149. if (resultSeq == null) {
  150.         System.err.println("Request failed or timed out. "+
  151.                    target.getErrorString() );
  152.         } else { // print the values
  153.         System.out.println("Response received.  Values:");
  154.         String result = null;
  155.         for (int i=0;i<oids.length;i++) {
  156.             result = target.getObjectID( i );
  157.             System.out.println( result  + ": " + resultSeq[i]);
  158.         }  
  159.     }
  160.     } catch( Exception e ){
  161.         System.err.println( "Exception:" + e );
  162.         e.printStackTrace();
  163. }
  164.     }
  165. }