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

SNMP编程

开发平台:

C/C++

  1. /* $Id: sendinform.src,v 1.3 2002/09/09 05:36:28 tonyjpaul Exp $ */
  2. /*
  3.  * @(#)sendinform.java
  4.  * Copyright (c) 1996-2003 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.  * [-i] <contextName>  - Context Name.
  37.  * <host> Mandatory    - The RemoteHost (agent).Format (string without double qoutes/IpAddress).
  38.  * <timeticks> Mandatory - the value of object sysUpTime when the event occurred
  39.  * <OID-value> Mandatory - Object Identifier  
  40.  * <OID>  Mandatory    - Give multiple no. of Object Identifiers.
  41.  */
  42. import java.lang.*;
  43. import java.util.*;
  44. import java.net.*;
  45. import com.adventnet.snmp.beans.*;
  46. public class sendinform {
  47.     private static final int VERSION = 4;
  48.     private static final int USER_NAME = 5;
  49.     private static final int AUTH_PROTOCOL = 6;
  50.     private static final int AUTH_PASSWORD = 7;
  51.     private static final int PRIV_PASSWORD = 8;
  52.     private static final int CONTEXT_NAME = 9;
  53.     
  54.     private static final int COMMUNITY = 1;
  55.     private static final int PORT = 2;
  56.     private static final int MIBS = 3;
  57.     private static final int DEBUG = 0;
  58.     public static void main(String args[]) {
  59.     // Take care of getting options
  60.     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] [-i contextName] [-m MIB_file] host TimeTicksvalue trapOID [OID value] ...";
  61.     String options[] = { "-d", "-c", "-p", "-m", "-v", "-u", "-a", "-w", "-s", "-i" };
  62.     String values[] = { "None", null, null, null,null, null, null, null, null, null};
  63.     long upTime=0;
  64.     ParseOptions opt = new ParseOptions(args,options,values, usage);
  65.     if (opt.remArgs.length<3) opt.usage_error();
  66.     // Use an SNMP target bean to perform SNMP operations
  67.     SnmpTarget target = new SnmpTarget();
  68.  //To load MIBs from compiled file
  69.  target.setLoadFromCompiledMibs(true);
  70.     // Set Debug mode
  71.     if (values[DEBUG].equals("Set")) target.setDebug(true);
  72.     target.setTargetHost( opt.remArgs[0] );  // set destination hostname
  73.     
  74.     //Assign the port for sending the trap.
  75.     target.setTargetPort(162);
  76.     if(values[PORT]!=null) {
  77.         try {
  78.             target.setTargetPort(Integer.parseInt(values[PORT]));
  79.         }
  80.         catch(NumberFormatException e) {
  81.             System.err.println("Sending trap to port 162");
  82.         }
  83.     }
  84.     try {
  85.         upTime = Long.parseLong(opt.remArgs[1]);
  86.     } catch (NumberFormatException ex) {
  87.         System.err.println("Invalid Integer Argument for upTime "+ex);
  88.         opt.usage_error();
  89.     }
  90.     
  91.     target.setSnmpVersion(target.VERSION2C);
  92.     if (values[VERSION] != null) {// set the version if specified
  93.         if(values[VERSION].equals("v3"))
  94.             target.setSnmpVersion(target.VERSION3);
  95.         else if(values[VERSION].equals("v2"))
  96. target.setSnmpVersion(target.VERSION2C);
  97. else
  98. System.out.println("Invalid Version Number "+values[VERSION]);     
  99. }
  100.     if(target.getSnmpVersion()== target.VERSION3) {
  101.         if (values[USER_NAME] != null) {
  102.             target.setPrincipal(values[USER_NAME]);
  103.         
  104.         if ((values[AUTH_PROTOCOL] != null) && (values[AUTH_PASSWORD] != null)) {
  105.             if(values[AUTH_PROTOCOL].equals("SHA"))
  106.                 target.setAuthProtocol(target.SHA_AUTH);
  107.             else if(values[AUTH_PROTOCOL].equals("MD5"))
  108.                 target.setAuthProtocol(target.MD5_AUTH);
  109.             else
  110.                 target.setAuthProtocol(target.NO_AUTH);            
  111.             target.setAuthPassword(values[AUTH_PASSWORD]);
  112.             if (values[PRIV_PASSWORD] != null) 
  113.                 target.setPrivPassword(values[PRIV_PASSWORD]);
  114.         }
  115.         else if ((values[AUTH_PROTOCOL] != null) || (values[AUTH_PASSWORD] != null) || (values[PRIV_PASSWORD] != null)) {
  116.             opt.usage_error();
  117.         }
  118.         }
  119.         else {
  120.             System.err.println("UserName Missing");
  121.             opt.usage_error();
  122.         }
  123.     }
  124. if(values[COMMUNITY] != null)
  125.          target.setCommunity( values[COMMUNITY]);
  126.     if (values[MIBS] != null) try {  // Load the MIB files 
  127.         System.err.println("Loading MIBs: "+values[MIBS]);
  128.         target.loadMibs(values[MIBS]);
  129.         System.err.println("Done.");
  130.     } catch (Exception ex) {
  131.         System.err.println("Error loading MIBs: "+ex);
  132. System.exit(1);
  133.     }
  134. if(target.getSnmpVersion()== target.VERSION3) {
  135. target.create_v3_tables();
  136. }
  137.     // Put together OID and variable value lists from command line
  138.     String oids[] = null, var_values[] = null;  // trap oids and values
  139.     int num_varbinds = 0;
  140.     for (int i=3;i<opt.remArgs.length;i+=2) { // add Variable Bindings
  141.         if (opt.remArgs.length < i+2) //need "{OID type value}"
  142.            opt.usage_error(); 
  143.         num_varbinds++;
  144.     }
  145.     oids = new String[num_varbinds];
  146.     var_values = new String[num_varbinds];
  147.     for (int i=0;i<num_varbinds;i++) { // add Variable Bindings
  148.         oids[i] = opt.remArgs[(2*i)+3];
  149.         var_values[i] = opt.remArgs[(2*i)+4];
  150.      }
  151. String result[] = null;
  152.     try {  // use SnmpTarget methods to send trap w/ specified OIDs/values
  153.         target.setObjectIDList(oids);
  154.         result = target.snmpSendInformRequest(upTime, opt.remArgs[2], 
  155. var_values);
  156.     } catch (Exception e) {
  157.         System.err.println("Error Sending Trap: "+e.getMessage());
  158.     }
  159.     if(result == null){
  160. System.err.println("inform Request failed or timed out.");
  161. }
  162. else{
  163. System.out.println("Response received.  Values:");
  164. for (int i=0;i<oids.length;i++) {
  165. System.out.println(target.getObjectID(i) + ": " + result[i]);
  166. }
  167. }
  168.     System.exit(0);
  169.     
  170.     }
  171. }