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

SNMP编程

开发平台:

C/C++

  1. /* $Id: rmiget.src,v 1.3 2002/09/09 05:41:24 tonyjpaul Exp $ */
  2. /*
  3.  * @(#)rmiget.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.  *
  16.  * java rmiget [options] host oid ...
  17.  *
  18.  *<img SRC="images/v3only.jpg" ALT="v3 only"> v3 request:
  19.  * java rmiget [-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] ...
  20.  * e.g. 
  21.  * java rmiget -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 rmiget [-SnmpServer hostName] [-v version(v1,v2)] [-m MIB_files] [-c community] [-p port] [-t timeout] [-r retries] host OID [OID] ...
  25.  * e.g. 
  26.  * java rmiget -v v2 -m ....mibsrfc1213-MIB localhost 1.2.0
  27.  *
  28.  * v1 request:
  29.  * java rmiget [-SnmpServer hostName] [-m MIB_files] [-c community] [-p port] [-t timeout] [-r retries] host OID [OID] ...
  30.  * e.g. 
  31.  * java rmiget -m ....mibsrfc1213-MIB localhost 1.2.0
  32.  *
  33. * Options:
  34.  * [-SnmpServer ] <hostName>      - SnmpServer SERVER option to specify the RMI 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.rmi.*;
  51. import java.io.*;
  52. import java.rmi.*;
  53. class rmiget {
  54. static final int USM_SECURITY_MODEL = 3;
  55.     public static void main( String[] args ) {
  56.     // Take care of getting options
  57.         String usage = "rmiget [-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] ...";
  58.         String options[] = { "-SnmpServer", "-c", "-p", "-r", "-t", "-m", "-v", "-u", "-a", "-w", "-s" ,"-i" , "-n"};
  59.         String values[] = { null, null, null, null, null, null, null, null,null,null,null,null,null};
  60.         String userName = new String("");
  61.         String authProtocol = new String("NO_AUTH");
  62.         String authPassword = new String ("");
  63.         String privPassword = new String ("");
  64.         String contextName = new String ("");
  65.         String contextID = new String ("");
  66.     ParseOptions opt = new ParseOptions(args,options,values, usage);
  67.     // check for at least hostname and one OID in remaining arguments
  68.     if (opt.remArgs.length<2) opt.usage_error();
  69.     com.adventnet.snmp.rmi.SnmpFactory factory = null;
  70.     com.adventnet.snmp.rmi.SnmpTarget target = null;
  71.     try {
  72.         System.out.println( "Performing lookup with RMI Registry ... " );
  73.         if(values[0] != null)
  74.             factory = (com.adventnet.snmp.rmi.SnmpFactory)
  75.                 Naming.lookup( "rmi://" + values[0] + "/AdventnetSnmpFactory" );
  76.         else
  77.             factory = (com.adventnet.snmp.rmi.SnmpFactory)
  78.                 Naming.lookup( "rmi:///AdventnetSnmpFactory" );
  79.         System.out.println( "Lookup succeeded " );
  80.         // Get a Target object
  81.         target = factory.createTarget();
  82.         if(values[6] != null) {  // if SNMP version is specified, set it
  83.         if(values[6].equals("v1"))
  84.             target.setSnmpVersion( com.adventnet.snmp.beans.SnmpTarget.VERSION1 ) ;
  85.         else if(values[6].equals("v2"))
  86.             target.setSnmpVersion( com.adventnet.snmp.beans.SnmpTarget.VERSION2C );
  87.         else if(values[6].equals("v3"))
  88.             target.setSnmpVersion( com.adventnet.snmp.beans.SnmpTarget.VERSION3 );
  89.         else {
  90.             System.out.println("Invalid Version Number");
  91.             System.exit(1);
  92.         }
  93.         }
  94.         target.setTargetHost( opt.remArgs[0] );  // set the agent hostname
  95.         if (values[1] != null) // set the community if specified
  96.         target.setCommunity( values[1] );
  97.         try { // set the timeout/retries/port parameters, if specified
  98.         if (values[2] != null)
  99.             target.setTargetPort( Integer.parseInt(values[2]) );
  100.         if (values[3] != null)
  101.             target.setRetries( Integer.parseInt(values[3]) );
  102.         if (values[4] != null)
  103.             target.setTimeout( Integer.parseInt(values[4]) );
  104.         if (values[7] != null)
  105.             userName = values[7];
  106.         if (values[8] != null) 
  107.             authProtocol = values[8];
  108.         if (values[9] != null)
  109.         authPassword = values[9];
  110.         if (values[10] != null) 
  111.         privPassword = values[10];
  112. if (values[11] != null)
  113. contextID = values[11];
  114. if (values[12] != null)
  115. contextName = values[12];
  116.         } catch (NumberFormatException ex) {
  117.         System.err.println("Invalid Integer Argument "+ex);
  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.setContextID(contextID);
  129. target.setContextName(contextName);
  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.snmpGetList( );// do a get 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. }