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

SNMP编程

开发平台:

C/C++

  1. /* $Id: corbaget.src,v 1.3 2002/09/09 05:45:01 tonyjpaul Exp $ */
  2. /*
  3.  * @(#)corbaget.java
  4.  * Copyright (c) 1996-2003 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 GET 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 corbaget [options] hostname oid ...
  13.  *
  14.  *<img SRC="images/v3only.jpg" ALT="v3 only"> v3 request:
  15.  * 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] ...
  16.  * e.g. 
  17.  * java corbaget -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 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] ...
  21.  * e.g. For v1 request give -v v1 or drop the option -v .
  22.  * java corbaget -p 161 -v v2 -c public -m ....mibsrfc1213-mib adventnet 1.1.0 1.2.0
  23.  * 
  24.  * v1 request:
  25.  * java corbaget [-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 corbaget -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 corbaget
  56. {
  57.     public static void main( String[] args )
  58.      {
  59.         // Take care of getting options
  60.         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] ...";
  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.                     target.setAuthProtocol(com.adventnet.snmp.beans.SnmpTarget.SHA_AUTH);
  148.                 else
  149.                     target.setAuthProtocol(com.adventnet.snmp.beans.SnmpTarget.MD5_AUTH);
  150. target.create_v3_tables();
  151.             }
  152.             if (values[7] != null) 
  153.                 // Load the MIB files 
  154.                 {
  155.                     System.err.println("Loading MIBs: "+values[7]);
  156.                     target.loadMibs(values[7]);
  157.                 }    
  158.             // create OID array from command line arguments
  159.             String oids[] = new String[opt.remArgs.length-1];
  160.             for (int i=1;i<opt.remArgs.length;i++) oids[i-1] = opt.remArgs[i];
  161.             
  162.             // Set the OID List on the SnmpTarget instance
  163.             target.setObjectIDList(oids);
  164.             String[] resultSeq = target.snmpGetList( );// do a get request
  165.             
  166.             if (resultSeq == null) 
  167.             {
  168.                 System.err.println("Request failed or timed out. n" );
  169.             } else 
  170.             { // print the values
  171.                 System.out.println("Response received.  Values:");
  172.                 String result = null;
  173.                 for (int i=0;i<oids.length;i++) 
  174.                 { 
  175.                     result = target.getObjectID( i );
  176.                     System.out.println( result  + ": " + resultSeq[i]);
  177.                 }
  178.             }
  179.             // All done; destroy the server-side Target object
  180.             factory.destroyTarget( target.getName() );
  181.         }
  182.         catch (com.adventnet.snmp.corba.SnmpException ex){
  183.             System.err.println("Error loading MIBs: " + ex.reason );
  184.         }
  185.         catch (NumberFormatException ex) {
  186.             System.err.println("Invalid Integer Argument "+ex);
  187.         }
  188.         
  189.         catch( org.omg.CORBA.SystemException e )
  190.         {
  191.             System.err.println( "System Exception:" + e );
  192.         }
  193.         catch( Exception e )
  194.         {
  195.             System.err.println( "Exception:" + e );
  196.         }
  197.     }
  198. }