corbaget.java
上传用户:aonuowh
上传日期:2021-05-23
资源大小:35390k
文件大小:10k
- /* $Id: corbaget.src,v 1.3 2002/09/09 05:45:01 tonyjpaul Exp $ */
- /*
- * @(#)corbaget.java
- * Copyright (c) 1996-2002 AdventNet, Inc. All Rights Reserved.
- * Please read the associated COPYRIGHTS file for more details.
- */
- /**
- * This is an example program to explain how to write an application to do
- * the basic SNMP operation GET using com.adventnet.snmp.corba of AdventNetSNMP2 api.
- * The user could run this application by giving any one of the following usage.
- *
- * java corbaget [options] hostname oid ...
- *
- *<img SRC="images/v3only.jpg" ALT="v3 only"> v3 request:
- * java corbaget [-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] ...
- * e.g.
- * java corbaget -v v3 -a MD5 -w passwd -u username -p 2000 -c public -m ....mibsrfc1213-mib adventnet 1.1.0 1.2.0
- *
- *<img SRC="images/v2candv3only.jpg" ALT="v2c and v3 only"> v2c request:
- * java corbaget [-SnmpServer hostName] [-ORBInitialPort orbPort] [-ORBInitialHost orbHost] [-v version(v1,v2)] [-m MIB_files] [-c community] [-p port] [-t timeout] [-r retries] host OID [OID] ...
- * e.g. For v1 request give -v v1 or drop the option -v .
- * java corbaget -p 161 -v v2 -c public -m ....mibsrfc1213-mib adventnet 1.1.0 1.2.0
- *
- * v1 request:
- * java corbaget [-SnmpServer hostName] [-ORBInitialPort orbPort] [-ORBInitialHost orbHost] [-m MIB_files] [-c community] [-p port] [-t timeout] [-r retries] host OID [OID] ...
- * e.g.
- * java corbaget -m -c public -m ....mibsrfc1213-mib adventnet 1.1.0 1.2.0
- *
- *
- * Options:
- * [-SnmpServer ] <hostName> - SnmpServer SERVER option to specify the
- CORBA server host.
- * [-ORBInitialPort ] <orbPort> - port on which transient name server is running
- * [-ORBInitialHost ] <orbHost> - host name of transient name server
- * [-c] <community> - community String. By default "public".
- * [-p] <port> - remote port no. By default 161.
- * [-t] <Timeout> - Timeout. By default 5000ms.
- * [-r] <Retries> - Retries. By default 0.
- * [-m] <MIBfile> - MIB files.To load multiple mibs give within double quotes files seperated by a blank space.
- *<img SRC="images/v3only.jpg" ALT="v3 only"> [-v] <version> - version(v1 / v2 / v3). By default v1.
- * [-u] <username> - The v3 principal/userName
- * [-a] <autProtocol> - The authProtocol(MD5/SHA). Mandatory if authPassword is specified
- * [-w] <authPassword> - The authentication password.
- * [-s] <privPassword> - The privacy protocol password. Must be accompanied with auth password and authProtocol fields.
- * [-i] <contextID> - The contextid to be used for the v3 pdu.
- * [-n] <contextName> - The contextName to be used for the v3 pdu.
- * host Mandatory - The RemoteHost (agent).Format (string without double qoutes/IpAddress).
- * OID Mandatory - Give multiple no. of Object Identifiers.
- */
- import org.omg.CosNaming.*;
- import java.io.*;
- import org.omg.CORBA.*;
- import com.adventnet.snmp.corba.*;
- import ParseOptions;
- public class corbaget
- {
- public static void main( String[] args )
- {
- // Take care of getting options
- String usage = "corbaget [-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] ...";
- String options[] = { "-SnmpServer", "-ORBInitialPort", "-ORBInitialHost", "-c", "-p", "-r", "-t", "-m","-v", "-u", "-a", "-w", "-s", "-i", "-n"};
- String values[] = { null, null, null, null, null, null, null, null,null,null,null,null,null,null,null};
-
- String userName = new String("");
- String authProtocol = new String("NO_AUTH");
- String authPassword = new String ("");
- String privPassword = new String ("");
- String contextID = new String ("");
- String contextName = new String ("");
- final int USM_SECURITY_MODEL = 3;
- ParseOptions opt = new ParseOptions(args,options,values, usage);
- // check for at least hostname and one OID in remaining arguments
- if (opt.remArgs.length<2) opt.usage_error();
- try
- {
- // Initialise the ORB
- System.out.println( "Initialising the ORB" );
- org.omg.CORBA.ORB orb = org.omg.CORBA.ORB.init( args, null );
- // Use Naming Service
- org.omg.CORBA.Object objRef = orb.resolve_initial_references(
- "NameService" );
- System.out.println( "Resolved NameService" );
- NamingContext ncRef = NamingContextHelper.narrow( objRef );
- // bind the Object Reference in Naming
- NameComponent nc = new NameComponent( "AdventnetSnmpFactory" , "" );
- NameComponent[] path = { nc };
-
- // Bind to the SnmpTarget object
- //System.out.println( "Binding to the Factory object" );
- //CORBAsnmp.SnmpTargetFactory factory = CORBAsnmp.SnmpTargetFactoryHelper.
- //bind( orb, "AdventnetSnmpTargetFactory" );
- System.out.println( "Binding to the Factory object" );
- com.adventnet.snmp.corba.SnmpFactory factory = com.adventnet.snmp.corba.SnmpFactoryHelper.narrow( ncRef.resolve( path ) );
- System.out.println( "Bound to the Factory object" );
- // Get a Target object
- com.adventnet.snmp.corba.SnmpTarget target = factory.createTarget();
- System.out.println( "Got the SnmpTarget object" );
- //call SNMP methods from client
- if(values[8] != null)
- { // if SNMP version is specified, set it
- if(values[8].equals("v1"))
- target.setSnmpVersion( com.adventnet.snmp.beans.SnmpTarget.VERSION1 ) ;
- else if(values[8].equals("v2"))
- target.setSnmpVersion( com.adventnet.snmp.beans.SnmpTarget.VERSION2C );
- else if(values[8].equals("v3"))
- target.setSnmpVersion( com.adventnet.snmp.beans.SnmpTarget.VERSION3 );
- else
- {
- System.out.println("Invalid Version Number");
- System.exit(1);
- }
- }
- else
- target.setSnmpVersion( com.adventnet.snmp.beans.SnmpTarget.VERSION1 );
- target.setTargetHost( opt.remArgs[0] ); // set the agent hostname
- if (values[3] != null) // set the community if specified
- target.setCommunity( values[3] );
- // set the timeout/retries/port parameters, if specified
- if (values[4] != null)
- target.setTargetPort( Integer.parseInt(values[4]) );
- if (values[5] != null)
- target.setRetries( Integer.parseInt(values[5]) );
- if (values[6] != null)
- target.setTimeout( Integer.parseInt(values[6]) );
- if (values[9] != null)
- userName = values[9];
- if (values[10] != null)
- authProtocol = values[10];
- if (values[11] != null)
- authPassword = values[11];
- if (values[12] != null)
- privPassword = values[12];
- if (values[13] != null)
- contextID = values[13];
- if (values[14] != null)
- contextName = values[14];
-
-
- if(target.getSnmpVersion() == com.adventnet.snmp.beans.SnmpTarget.VERSION3)
- {
- target.setPrincipal(userName);
- target.setAuthPassword(authPassword);
- target.setPrivPassword(privPassword);
- target.setContextID(contextID);
- target.setContextName(contextName);
- if(authProtocol.equals("SHA"))
- target.setAuthProtocol(com.adventnet.snmp.beans.SnmpTarget.SHA_AUTH);
- else
- target.setAuthProtocol(com.adventnet.snmp.beans.SnmpTarget.MD5_AUTH);
-
- target.create_v3_tables();
- }
- if (values[7] != null)
- // Load the MIB files
- {
- System.err.println("Loading MIBs: "+values[7]);
- target.loadMibs(values[7]);
- }
- // create OID array from command line arguments
- String oids[] = new String[opt.remArgs.length-1];
- for (int i=1;i<opt.remArgs.length;i++) oids[i-1] = opt.remArgs[i];
-
- // Set the OID List on the SnmpTarget instance
- target.setObjectIDList(oids);
- String[] resultSeq = target.snmpGetList( );// do a get request
-
- if (resultSeq == null)
- {
- System.err.println("Request failed or timed out. n" );
- } else
- { // print the values
- System.out.println("Response received. Values:");
- String result = null;
- for (int i=0;i<oids.length;i++)
- {
- result = target.getObjectID( i );
- System.out.println( result + ": " + resultSeq[i]);
- }
- }
- // All done; destroy the server-side Target object
- factory.destroyTarget( target.getName() );
- }
- catch (com.adventnet.snmp.corba.SnmpException ex){
- System.err.println("Error loading MIBs: " + ex.reason );
- }
- catch (NumberFormatException ex) {
- System.err.println("Invalid Integer Argument "+ex);
- }
-
- catch( org.omg.CORBA.SystemException e )
- {
- System.err.println( "System Exception:" + e );
- }
- catch( Exception e )
- {
- System.err.println( "Exception:" + e );
- }
- }
- }