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

SNMP编程

开发平台:

C/C++

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