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

SNMP编程

开发平台:

C/C++

  1. /* $Id: sendinform.src,v 1.3.2.3 2009/01/28 12:45:56 prathika Exp $ */
  2. /*
  3.  * @(#)sendinform.java
  4.  * Copyright (c) 1996-2009 AdventNet, Inc. All Rights Reserved.
  5.  * Please read the associated COPYRIGHTS file for more details.
  6.  */
  7. /** 
  8.  *  Send SNMP inform based on command line arguments.  Loads MIBs 
  9.  *  as specified, and converts to/from names for loaded MIB data. 
  10.  *  Since variable types are not input, MIBs have to be loaded for
  11.  *  any variables being used in inform PDU.
  12.  *
  13.  * This is an example program to explain how to write an application to send a
  14.  * inform message using com.adventnet.snmp.beans package of AdventNetSNMP api.
  15.  * The user could run this application by giving any one of the following usage.
  16.  *  
  17.  * Note: Refer README file  
  18.  *
  19.  * If the oid is not starting with a dot (.) it will be prefixed by .1.3.6.1.2.1 .
  20.  * So the entire OID of 1.1.0 will become .1.3.6.1.2.1.1.1.0 . You can also
  21.  * give the entire OID .
  22.  * 
  23.  * If the mib is loaded you can also give string oids in the following formats
  24.  * .iso.org.dod.internet.mgmt.mib-2.system.sysDescr.0 or system.sysDescr.0 or
  25.  * sysDescr.0 .
  26.  *
  27.  * [-d]                - Debug output. By default off.
  28.  * [-c] <community>    - community String. By default "public".
  29.  * [-p] <port>         - remote port no. By default 161.
  30.  * [-m] <mibs>         - The mibs to be loaded. 
  31.  * [-v] <version>      - version(v2 / v3). By default v2.
  32.  * [-u] <username>     - The v3 principal/userName
  33.  * [-a] <autProtocol>  - The authProtocol(MD5/SHA). Mandatory if authPassword is specified
  34.  * [-w] <authPassword> - The authentication password.
  35.  * [-s] <privPassword> - The privacy protocol password. Must be accompanied with auth password and authProtocol fields.
  36.  * [-n] <contextName>  - The snmpv3 contextName to be used.
  37.  * [-i] <contextID>    - The snmpv3 contextID to be used.
  38.  * [-pp] <privProtocol> - The privacy protocol. Must be accompanied with auth,priv password and authProtocol fields.
  39.  * <host> Mandatory    - The RemoteHost (agent).Format (string without double qoutes/IpAddress).
  40.  * <timeticks> Mandatory - the value of object sysUpTime when the event occurred
  41.  * <OID-value> Mandatory - Object Identifier  
  42.  * <OID>  Mandatory    - Give multiple no. of Object Identifiers.
  43.  */
  44. import java.lang.*;
  45. import java.util.*;
  46. import java.net.*;
  47. import com.adventnet.snmp.beans.*;
  48. public class sendinform {
  49.     private static final int VERSION = 4;
  50.     private static final int USER_NAME = 5;
  51.     private static final int AUTH_PROTOCOL = 6;
  52.     private static final int AUTH_PASSWORD = 7;
  53.     private static final int PRIV_PASSWORD = 8;
  54.     private static final int CONTEXT_NAME = 9;
  55.     private static final int CONTEXT_ID= 10;
  56.     private static final int PRIV_PROTOCOL = 11;
  57.     
  58.     private static final int COMMUNITY = 1;
  59.     private static final int PORT = 2;
  60.     private static final int MIBS = 3;
  61.     private static final int DEBUG = 0;
  62.     public static void main(String args[]) {
  63.     // Take care of getting options
  64.     String usage = "sendinform [-d Debug][-v version(v2,v3)] [-c community] [-p port] [-u user] [-a auth_protocol(MD5/SHA)] [-w auth_password] [-s priv_password] [-n contextName] [-i contextID ] [ -pp priv_protocol (DES/AES-128/AES-192/AES-256/3DES) ] [-m MIB_file] host TimeTicksvalue trapOID [OID value] ...";
  65.     String options[] = { "-d", "-c", "-p", "-m", "-v", "-u", "-a", "-w", "-s", "-n", "-i","-pp" };
  66.     String values[] = { "None", null, null, null,null, null, null, null, null, null , null ,null};
  67.     long upTime=0;
  68.     ParseOptions opt = new ParseOptions(args,options,values, usage);
  69.     if (opt.remArgs.length<3) opt.usage_error();
  70.     // Use an SNMP target bean to perform SNMP operations
  71.     SnmpTarget target = new SnmpTarget();
  72.  //To load MIBs from compiled file
  73.  target.setLoadFromCompiledMibs(true);
  74.     // Set Debug mode
  75.     if (values[DEBUG].equals("Set")) target.setDebug(true);
  76.     target.setTargetHost( opt.remArgs[0] );  // set destination hostname
  77.     
  78.     //Assign the port for sending the trap.
  79.     target.setTargetPort(162);
  80.     if(values[PORT]!=null) {
  81.         try {
  82.             target.setTargetPort(Integer.parseInt(values[PORT]));
  83.         }
  84.         catch(NumberFormatException e) {
  85.             System.err.println("Sending trap to port 162");
  86.         }
  87.     }
  88.     try {
  89.         upTime = Long.parseLong(opt.remArgs[1]);
  90.     } catch (NumberFormatException ex) {
  91.         System.err.println("Invalid Integer Argument for upTime "+ex);
  92.         opt.usage_error();
  93.     }
  94.     
  95.     target.setSnmpVersion(target.VERSION2C);
  96.     if (values[VERSION] != null) {// set the version if specified
  97.         if(values[VERSION].equals("v3"))
  98.             target.setSnmpVersion(target.VERSION3);
  99.         else if(values[VERSION].equals("v2"))
  100. target.setSnmpVersion(target.VERSION2C);
  101. else
  102. System.out.println("Invalid Version Number "+values[VERSION]);     
  103. }
  104.     if(target.getSnmpVersion()== target.VERSION3) {
  105.         if (values[USER_NAME] != null) {
  106.             target.setPrincipal(values[USER_NAME]);
  107.         
  108.         if ((values[AUTH_PROTOCOL] != null) && (values[AUTH_PASSWORD] != null)) {
  109.             if(values[AUTH_PROTOCOL].equals("SHA"))
  110.                 target.setAuthProtocol(target.SHA_AUTH);
  111.             else if(values[AUTH_PROTOCOL].equals("MD5"))
  112.                 target.setAuthProtocol(target.MD5_AUTH);
  113.             else
  114.                 target.setAuthProtocol(target.NO_AUTH);            
  115.             target.setAuthPassword(values[AUTH_PASSWORD]);
  116.             if (values[PRIV_PASSWORD] != null) 
  117.             {
  118.                 target.setPrivPassword(values[PRIV_PASSWORD]);
  119.                 if(values[PRIV_PROTOCOL] != null)
  120.                 {
  121.                     if(values[PRIV_PROTOCOL].equals("AES-128"))
  122.                     {
  123.                        target.setPrivProtocol(target.CFB_AES_128);
  124.                     }
  125.     else if(values[PRIV_PROTOCOL].equals("AES-192"))
  126.                     {
  127.                        target.setPrivProtocol(target.CFB_AES_192);
  128.                     }
  129.     else if(values[PRIV_PROTOCOL].equals("AES-256"))
  130.                     {
  131.                        target.setPrivProtocol(target.CFB_AES_256);
  132.                     }
  133.     else if(values[PRIV_PROTOCOL].equals("3DES"))
  134.                     {
  135.                        target.setPrivProtocol(target.CBC_3DES);
  136.                     }
  137.                     else if(values[PRIV_PROTOCOL].equals("DES"))
  138.                     {
  139.                        target.setPrivProtocol(target.CBC_DES);
  140.                     }
  141.                     else
  142.                     {
  143.                      System.out.println(" Invalid PrivProtocol "+values[PRIV_PROTOCOL]);
  144.                      opt.usage_error();
  145.                     }
  146.                 }
  147.             }
  148.          if(values[CONTEXT_NAME]!= null)
  149.         target.setContextName(values[CONTEXT_NAME]);
  150.         if(values[CONTEXT_ID]!= null)
  151.        target.setContextID(values[CONTEXT_ID]);
  152.         }
  153.         else if ((values[AUTH_PROTOCOL] != null) || (values[AUTH_PASSWORD] != null) || (values[PRIV_PASSWORD] != null)) {
  154.             opt.usage_error();
  155.         }
  156.         }
  157.         else {
  158.             System.err.println("UserName Missing");
  159.             opt.usage_error();
  160.         }
  161.     }
  162. if(values[COMMUNITY] != null)
  163.          target.setCommunity( values[COMMUNITY]);
  164.     if (values[MIBS] != null) try {  // Load the MIB files 
  165.         System.err.println("Loading MIBs: "+values[MIBS]);
  166.         target.loadMibs(values[MIBS]);
  167.         System.err.println("Done.");
  168.     } catch (Exception ex) {
  169.         System.err.println("Error loading MIBs: "+ex);
  170. System.exit(1);
  171.     }
  172. if(target.getSnmpVersion()== target.VERSION3) {
  173. target.create_v3_tables();
  174. }
  175.     // Put together OID and variable value lists from command line
  176.     String oids[] = null, var_values[] = null;  // trap oids and values
  177.     int num_varbinds = 0;
  178.     for (int i=3;i<opt.remArgs.length;i+=2) { // add Variable Bindings
  179.         if (opt.remArgs.length < i+2) //need "{OID type value}"
  180.            opt.usage_error(); 
  181.         num_varbinds++;
  182.     }
  183.     oids = new String[num_varbinds];
  184.     var_values = new String[num_varbinds];
  185.     for (int i=0;i<num_varbinds;i++) { // add Variable Bindings
  186.         oids[i] = opt.remArgs[(2*i)+3];
  187.         var_values[i] = opt.remArgs[(2*i)+4];
  188.      }
  189. String result[] = null;
  190.     try {  // use SnmpTarget methods to send trap w/ specified OIDs/values
  191.         target.setObjectIDList(oids);
  192.         result = target.snmpSendInformRequest(upTime, opt.remArgs[2], 
  193. var_values);
  194.     } catch (Exception e) {
  195.         System.err.println("Error Sending Trap: "+e.getMessage());
  196.     }
  197.     if(result == null){
  198. System.err.println("inform Request failed or timed out.");
  199. }
  200. else{
  201. System.out.println("Response received.  Values:");
  202. for (int i=0;i<oids.length;i++) {
  203. System.out.println(target.getObjectID(i) + ": " + result[i]);
  204. }
  205. }
  206.     System.exit(0);
  207.     
  208.     }
  209. }