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

SNMP编程

开发平台:

C/C++

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