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

SNMP编程

开发平台:

C/C++

  1. /* $Id: corbaset.src,v 1.3 2002/09/09 05:45:01 tonyjpaul Exp $ */
  2. /*
  3.  * @(#)corbaset.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 SET 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 corbaset [options] hostname oid value...
  13.  *
  14.  *<img SRC="images/v3only.jpg" ALT="v3 only"> v3 request:
  15.  * java corbaset [-SnmpServer hostName] [-ORBInitialPort orbPort] [-ORBInitialHost orbHost] [-v version(v1,v2,v3)]  [-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] -m MIB_files host OID value ...
  16.  * e.g. 
  17.  * java corbaset -v v3  -a MD5 -w passwd -u username -p 2000 -c public -m ....mibsrfc1213-mib adventnet 1.1.0 1.5.0  string
  18.  *
  19.  *<img SRC="images/v2candv3only.jpg" ALT="v2c and v3 only"> v2c request:
  20.  * java corbaset [-SnmpServer hostName] [-ORBInitialPort orbPort] [-ORBInitialHost orbHost] [-v version(v1,v2)]  [-c community] [-p port] [-t timeout] [-r retries] -m MIB_files host OID value ...
  21.  * e.g.
  22.  * java corbaset -p 161 -v v2 -c public -m ....mibsrfc1213-mib adventnet 1.1.0 1.5.0 string
  23.  * 
  24.  * v1 request:
  25.  * java corbaset [-SnmpServer hostName] [-ORBInitialPort orbPort] [-ORBInitialHost orbHost]  [-c community] [-p port] [-t timeout] [-r retries] -m MIB_files host OID value ...
  26.  * e.g.
  27.  * java corbaset -m -c public -m ....mibsrfc1213-mib adventnet 1.1.0 1.5.0 string
  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.  * value Mandatory     - the value for oid to be set.
  50.  */
  51. import org.omg.CosNaming.*;
  52. import java.lang.*;
  53. import java.util.*;
  54. import java.net.*;
  55. import org.omg.CORBA.*;
  56. import com.adventnet.snmp.corba.*;
  57. import ParseOptions;
  58. /** 
  59.  *  Use CORBA to do an SNMP Set based on command line arguments.  Loads MIBs 
  60.  *  as specified, and converts to/from names for loaded MIB data.
  61.  *  The CORBA server is specified with the -SnmpServer option
  62.  *  and defaults to localhost if not specified.
  63.  *  Since we do not ask user for variable type, in order to
  64.  *  convert set value strings to the correct variable type, the  
  65.  *  MIB corresponding to any object must be loaded.  
  66.  *  Once a MIB is loaded on the server, susequent uses of
  67.  *  This program will have the MIB available for SNMP operations.
  68.  **/
  69. public class corbaset {
  70.     public static void main( String[] args )
  71.      {
  72.         // Take care of getting options
  73.         String usage = "corbaset [-SnmpServer hostName] [-ORBInitialPort orbPort] [-ORBInitialHost orbHost] [-v version(v1,v2,v3)]  [-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] -m MIB_files host OID value ...";
  74.         String options[] = { "-SnmpServer", "-ORBInitialPort", "-ORBInitialHost", "-c", "-p", "-r", "-t", "-m","-v", "-u", "-a", "-w", "-s", "-i", "-n"};
  75.         String values[] = {  null, null, null, null, null, null, null, null,null,null,null,null,null,null,null};
  76.     
  77.         String userName = new String("");
  78.         String authProtocol = new String("NO_AUTH");
  79.         String authPassword = new String ("");
  80.         String privPassword = new String ("");
  81.         String contextName = new String ("");
  82.         String contextID = new String ("");
  83. final int USM_SECURITY_MODEL = 3;
  84.         ParseOptions opt = new ParseOptions(args,options,values, usage);
  85.         // check for at least hostname and one OID in remaining arguments
  86.         if (opt.remArgs.length<3) opt.usage_error();
  87.         try
  88.         {
  89.             // Initialise the ORB
  90.             System.out.println( "Initialising the ORB" );
  91.             org.omg.CORBA.ORB orb = org.omg.CORBA.ORB.init( args, null );
  92.             // Use Naming Service
  93.             org.omg.CORBA.Object objRef = orb.resolve_initial_references( 
  94.                                                                         "NameService" ); 
  95.             System.out.println( "Resolved NameService" );
  96.             NamingContext ncRef = NamingContextHelper.narrow( objRef ); 
  97.             // bind the Object Reference in Naming
  98.             NameComponent nc = new NameComponent( "AdventnetSnmpFactory" , "" );
  99.             NameComponent[] path = { nc };
  100.             
  101.             // Bind to the SnmpTarget object 
  102.             //System.out.println( "Binding to the Factory object" );
  103.             //CORBAsnmp.SnmpTargetFactory factory = CORBAsnmp.SnmpTargetFactoryHelper.
  104.                             //bind( orb, "AdventnetSnmpTargetFactory" );
  105.             System.out.println( "Binding to the Factory object" );
  106.             com.adventnet.snmp.corba.SnmpFactory factory = com.adventnet.snmp.corba.SnmpFactoryHelper.narrow( ncRef.resolve( path ) );
  107.             System.out.println( "Bound to the Factory object" );
  108.             // Get a Target object
  109.             com.adventnet.snmp.corba.SnmpTarget target = factory.createTarget();
  110.             System.out.println( "Got the SnmpTarget object" );
  111.             //call SNMP methods from client
  112.             if(values[8] != null)
  113.             {  // if SNMP version is specified, set it
  114.                 if(values[8].equals("v1"))
  115.                     target.setSnmpVersion( com.adventnet.snmp.beans.SnmpTarget.VERSION1 ) ;
  116.                 else if(values[8].equals("v2"))
  117.                     target.setSnmpVersion( com.adventnet.snmp.beans.SnmpTarget.VERSION2C );            
  118.                 else if(values[8].equals("v3"))
  119.                     target.setSnmpVersion( com.adventnet.snmp.beans.SnmpTarget.VERSION3 );
  120.                 else
  121.                 {
  122.                     System.out.println("Invalid Version Number");
  123.                     System.exit(1);
  124.                 }
  125.             }
  126.             else
  127.                 target.setSnmpVersion( com.adventnet.snmp.beans.SnmpTarget.VERSION1 );
  128.             target.setTargetHost( opt.remArgs[0] );  // set the agent hostname
  129.             if (values[3] != null) // set the community if specified
  130.                 target.setCommunity( values[3] );
  131.             // set the timeout/retries/port parameters, if specified
  132.             if (values[4] != null)
  133.                 target.setTargetPort( Integer.parseInt(values[4]) );
  134.             if (values[5] != null)
  135.                 target.setRetries( Integer.parseInt(values[5]) );
  136.             if (values[6] != null)
  137.                 target.setTimeout( Integer.parseInt(values[6]) );
  138.             if (values[9] != null)
  139.                 userName = values[9];
  140.             if (values[10] != null) 
  141.                 authProtocol = values[10];
  142.             if (values[11] != null)
  143.                 authPassword = values[11];
  144.             if (values[12] != null) 
  145.                 privPassword = values[12];
  146.             if (values[13] != null) 
  147.                 contextID = values[13];
  148.             if (values[14] != null) 
  149.                 contextName = values[14];
  150.             
  151.             
  152.             if(target.getSnmpVersion() == com.adventnet.snmp.beans.SnmpTarget.VERSION3) 
  153.             {
  154.                 target.setPrincipal(userName);
  155.                 target.setAuthPassword(authPassword);
  156.                 target.setPrivPassword(privPassword);
  157.                 target.setContextID(contextID);
  158.                 target.setContextName(contextName);
  159.                 if(authProtocol.equals("SHA"))
  160. {
  161.                   target.setAuthProtocol(com.adventnet.snmp.beans.SnmpTarget.SHA_AUTH);
  162. }
  163.                 else
  164. {
  165.                   target.setAuthProtocol(com.adventnet.snmp.beans.SnmpTarget.MD5_AUTH);
  166.  }
  167.  target.create_v3_tables();
  168.             }
  169.             if (values[7] != null) 
  170.                 // Load the MIB files 
  171.             {
  172.                 System.err.println("Loading MIBs: "+values[7]);
  173.                 target.loadMibs(values[7]);
  174.             }
  175.             else
  176.                 opt.usage_error();
  177.             // Put together OID and variable value lists from command line
  178.             String oids[] = null, var_values[] = null;  // trap oids and values
  179.             int num_varbinds = 0;
  180.             for (int i=1;i<opt.remArgs.length;i+=2) { // add Variable Bindings
  181.                 if (opt.remArgs.length < i+2) //need "{OID type value}"
  182.                     opt.usage_error(); // unmatched arguments for name-value pairs
  183.                 num_varbinds++;
  184.             }
  185.             oids = new String[num_varbinds];
  186.             var_values = new String[num_varbinds];
  187.             for (int i=0;i<num_varbinds;i++) { // add Variable Bindings
  188.                 oids[i] = opt.remArgs[(2*i)+1];
  189.                 var_values[i] = opt.remArgs[(2*i)+2];
  190.             }
  191.             target.setObjectIDList(oids);  // set OID list on SnmpTarget
  192.             String result[] = target.snmpSetList(var_values);
  193.             if (result == null) {
  194.                 System.err.println("Request failed or timed out. n"+
  195.                     target.getErrorString());
  196.             } else { // print response
  197.                 System.out.println("Set OK.  Return values:");
  198.                 for (int i=0;i<oids.length;i++) { 
  199.                     System.out.println(target.getObjectID(i) +": "+result[i]);
  200.                 }
  201.             }
  202.             // All done; destroy the server-side Target object
  203.             factory.destroyTarget( target.getName() );
  204.     } catch( Exception e ){
  205.         System.err.println( "Exception:" + e );
  206.         e.printStackTrace();
  207.     }
  208.     System.exit(0);
  209.     
  210.     }
  211. }