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

SNMP编程

开发平台:

C/C++

  1. /* $Id: corbagetnext.src,v 1.3 2002/09/09 05:45:01 tonyjpaul Exp $ */
  2. /*
  3.  * @(#)corbagetnext.java
  4.  * Copyright (c) 1996-2002 AdventNet, Inc. All Rights Reserved.
  5.  * Please read the associated COPYRIGHTS file for more details.
  6.  */
  7. /**
  8.  * This is an example program to explain how to write an application to do
  9.  * the basic SNMP operation GETNEXT using com.adventnet.snmp.corba of AdventNetSNMP2 api.
  10.  * The user could run this application by giving any one of the following usage.
  11.  *  
  12.  * java corbagetnext [options] hostname oid ...
  13.  *
  14.  *<img SRC="images/v3only.jpg" ALT="v3 only"> v3 request:
  15.  * java corbagetnext [-SnmpServer hostName] [-ORBInitialPort orbPort] [-ORBInitialHost orbHost] [-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 context_id] [-n contextName] host OID [OID] ...
  16.  * e.g. 
  17.  * java corbagetnext -v v3  -a MD5 -w passwd -u username -p 2000 -c public -m ....mibsrfc1213-mib adventnet 1.1.0 1.2.0
  18.  *
  19.  *<img SRC="images/v2candv3only.jpg" ALT="v2c and v3 only"> v2c request:
  20.  * java corbagetnext [-SnmpServer hostName] [-ORBInitialPort orbPort] [-ORBInitialHost orbHost] [-v version(v1,v2)] [-m MIB_files] [-c community] [-p port] [-t timeout] [-r retries] host OID [OID] ...
  21.  * e.g. For v1 request give -v v1 or drop the option -v 
  22.  * java corbagetnext -p 161 -v v2 -c public -m ....mibsrfc1213-mib adventnet 1.1.0 1.2.0
  23.  * 
  24.  * v1 request:
  25.  * java corbagetnext [-SnmpServer hostName] [-ORBInitialPort orbPort] [-ORBInitialHost orbHost] [-m MIB_files] [-c community] [-p port] [-t timeout] [-r retries] host OID [OID] ...
  26.  * e.g.
  27.  * java corbagetnext -m -c public -m ....mibsrfc1213-mib adventnet 1.1.0 1.2.0
  28.  * 
  29.  *
  30.  * Options:
  31.  * [-SnmpServer ] <hostName>      - SnmpServer SERVER option to specify the
  32. CORBA server host.
  33.  * [-ORBInitialPort ] <orbPort>   - port on which transient name server is running
  34.  * [-ORBInitialHost ] <orbHost>   - host name of transient name server
  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 org.omg.CosNaming.*;
  51. import java.io.*;
  52. import org.omg.CORBA.*;
  53. import com.adventnet.snmp.corba.*;
  54. import ParseOptions;
  55. public class corbagetnext
  56. {
  57.     public static void main( String[] args )
  58.      {
  59.         // Take care of getting options
  60.         String usage = "corbagetnext [-SnmpServer hostName] [-ORBInitialPort orbPort] [-ORBInitialHost orbHost] [-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 context_id] [-n context_name] host OID [OID] ...";
  61.         String options[] = { "-SnmpServer", "-ORBInitialPort", "-ORBInitialHost", "-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,null,null};
  63.     
  64.         String userName = new String("");
  65.         String authProtocol = new String("NO_AUTH");
  66.         String authPassword = new String ("");
  67.         String privPassword = new String ("");
  68.         String contextID = new String ("");
  69.         String contextName = new String ("");
  70. final int USM_SECURITY_MODEL = 3;
  71.         ParseOptions opt = new ParseOptions(args,options,values, usage);
  72.         // check for at least hostname and one OID in remaining arguments
  73.         if (opt.remArgs.length<2) opt.usage_error();
  74.         try
  75.         {
  76.             // Initialise the ORB
  77.             System.out.println( "Initialising the ORB" );
  78.             org.omg.CORBA.ORB orb = org.omg.CORBA.ORB.init( args, null );
  79.             // Use Naming Service
  80.             org.omg.CORBA.Object objRef = orb.resolve_initial_references( 
  81.                                                                         "NameService" ); 
  82.             System.out.println( "Resolved NameService" );
  83.             NamingContext ncRef = NamingContextHelper.narrow( objRef ); 
  84.             // bind the Object Reference in Naming
  85.             NameComponent nc = new NameComponent( "AdventnetSnmpFactory" , "" );
  86.             NameComponent[] path = { nc };
  87.             
  88.             // Bind to the SnmpTarget object 
  89.             //System.out.println( "Binding to the Factory object" );
  90.             //CORBAsnmp.SnmpTargetFactory factory = CORBAsnmp.SnmpTargetFactoryHelper.
  91.                             //bind( orb, "AdventnetSnmpTargetFactory" );
  92.             System.out.println( "Binding to the Factory object" );
  93.             com.adventnet.snmp.corba.SnmpFactory factory = com.adventnet.snmp.corba.SnmpFactoryHelper.narrow( ncRef.resolve( path ) );
  94.             System.out.println( "Bound to the Factory object" );
  95.             // Get a Target object
  96.             com.adventnet.snmp.corba.SnmpTarget target = factory.createTarget();
  97.             System.out.println( "Got the SnmpTarget object" );
  98.             //call SNMP methods from client
  99.             if(values[8] != null)
  100.             {  // if SNMP version is specified, set it
  101.                 if(values[8].equals("v1"))
  102.                     target.setSnmpVersion( com.adventnet.snmp.beans.SnmpTarget.VERSION1 ) ;
  103.                 else if(values[8].equals("v2"))
  104.                     target.setSnmpVersion( com.adventnet.snmp.beans.SnmpTarget.VERSION2C );            
  105.                 else if(values[8].equals("v3"))
  106.                     target.setSnmpVersion( com.adventnet.snmp.beans.SnmpTarget.VERSION3 );
  107.                 else
  108.                 {
  109.                     System.out.println("Invalid Version Number");
  110.                     System.exit(1);
  111.                 }
  112.             }
  113.             else
  114.                 target.setSnmpVersion( com.adventnet.snmp.beans.SnmpTarget.VERSION1 );
  115.             target.setTargetHost( opt.remArgs[0] );  // set the agent hostname
  116.             if (values[3] != null) // set the community if specified
  117.                 target.setCommunity( values[3] );
  118.             // set the timeout/retries/port parameters, if specified
  119.             if (values[4] != null)
  120.                 target.setTargetPort( Integer.parseInt(values[4]) );
  121.             if (values[5] != null)
  122.                 target.setRetries( Integer.parseInt(values[5]) );
  123.             if (values[6] != null)
  124.                 target.setTimeout( Integer.parseInt(values[6]) );
  125.             if (values[9] != null)
  126.                 userName = values[9];
  127.             if (values[10] != null) 
  128.                 authProtocol = values[10];
  129.             if (values[11] != null)
  130.                 authPassword = values[11];
  131.             if (values[12] != null) 
  132.                 privPassword = values[12];
  133.             if (values[13] != null) 
  134.                 contextID = values[13];
  135.             if (values[14] != null) 
  136.                 contextName = values[14];
  137.             
  138.             
  139.             if(target.getSnmpVersion() == com.adventnet.snmp.beans.SnmpTarget.VERSION3) 
  140.             {
  141.                 target.setPrincipal(userName);
  142.                 target.setAuthPassword(authPassword);
  143.                 target.setPrivPassword(privPassword);
  144.                 target.setContextID(contextID);
  145.                 target.setContextName(contextName);
  146.                 if(authProtocol.equals("SHA"))
  147. {
  148.                   target.setAuthProtocol(com.adventnet.snmp.beans.SnmpTarget.SHA_AUTH);
  149. }
  150.                 else
  151. {
  152.                   target.setAuthProtocol(com.adventnet.snmp.beans.SnmpTarget.MD5_AUTH);
  153. }
  154. target.create_v3_tables();
  155.             }
  156.             if (values[7] != null) 
  157.                 // Load the MIB files 
  158.             {
  159.             System.err.println("Loading MIBs: "+values[7]);
  160.             target.loadMibs(values[7]);
  161.             }    
  162.             // create OID array from command line arguments
  163.             String oids[] = new String[opt.remArgs.length-1];
  164.             for (int i=1;i<opt.remArgs.length;i++) oids[i-1] = opt.remArgs[i];
  165.             
  166.             // Set the OID List on the SnmpTarget instance
  167.             target.setObjectIDList(oids);
  168.             String[] resultSeq = target.snmpGetNextList( );// do a getnext request
  169.             
  170.             if (resultSeq == null) 
  171.             {
  172.                 System.err.println("Request failed or timed out. n" );
  173.             } else 
  174.             { // print the values
  175.                 System.out.println("Response received.  Values:");
  176.                 String result = null;
  177.                 for (int i=0;i<oids.length;i++) 
  178.                 { 
  179.                     result = target.getObjectID( i );
  180.                     System.out.println( result  + ": " + resultSeq[i]);
  181.                 }
  182.             }
  183.             // All done; destroy the server-side Target object
  184.             factory.destroyTarget( target.getName() );
  185.         }
  186.         catch (com.adventnet.snmp.corba.SnmpException ex){
  187.             System.err.println("Error loading MIBs: " + ex.reason );
  188.         }
  189.         catch (NumberFormatException ex) {
  190.             System.err.println("Invalid Integer Argument "+ex);
  191.         }
  192.         
  193.         catch( org.omg.CORBA.SystemException e )
  194.         {
  195.             System.err.println( "Exception:" + e );
  196.         }
  197.         catch( Exception e )
  198.         {
  199.             System.err.println( "Exception:" + e );
  200.         }
  201.     }
  202. }