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

SNMP编程

开发平台:

C/C++

  1. /*$Id: snmpgetbulk.src,v 1.3.2.4 2009/01/28 12:45:56 prathika Exp $*/
  2. /*
  3.  * @(#)snmpgetbulk.java
  4.  * Copyright (c) 1996-2009 AdventNet, Inc. All Rights Reserved.
  5.  * Please read the associated COPYRIGHTS file for more details.
  6.  */
  7. /** 
  8.  *  Do an SNMP Getbulk based on command line arguments.  Loads MIBs 
  9.  *  as specified, and converts to/from names for loaded MIB data. 
  10.  *
  11.  * [-d]                - Debug output. By default off.
  12.  * [-c] <community>    - community String. By default "public".
  13.  * [-p] <port>         - remote port no. By default 161.
  14.  * [-t] <Timeout>      - Timeout. By default 5000ms.
  15.  * [-r] <Retries>      - Retries. By default 0. 
  16.  * [-m] <mibs>           - The mibs to be loaded.
  17.  * <nr>                 - non-repeaters.
  18.  * <mr>                 - max-repetitions.
  19.  * [-u] <username>     - The v3 principal/userName
  20.  * [-a] <autProtocol>  - The authProtocol(MD5/SHA). Mandatory if authPassword is specified
  21.  * [-w] <authPassword> - The authentication password.
  22.  * [-s] <privPassword> - The privacy protocol password. Must be accompanied with auth password and authProtocol fields.
  23.  * [-n] <contextName>  - The snmpv3 contextName to be used.
  24.  * [-i] <contextID>    - The snmpv3 contextID to be used.
  25.  * [-pp] <privProtocol> - The privacy protocol . Must be accompanied with auth,priv password and authProtocol fields.
  26.  * <host> Mandatory    - The RemoteHost (agent).Format (string without double qoutes/IpAddress).
  27.  * <OID>  Mandatory    - Give only one Object Identifier.
  28.  */
  29. import com.adventnet.snmp.beans.*;
  30. import com.adventnet.snmp.snmp2.*;
  31. public class snmpgetbulk {
  32.     
  33.     private static final int VERSION = 0;
  34.     private static final int COMMUNITY = 1;
  35.     private static final int PORT = 2;
  36.     private static final int RETRIES = 3;
  37.     private static final int TIMEOUT = 4;
  38.     private static final int DEBUG = 5;
  39.     private static final int MIBS = 6;
  40.     private static final int NON_REPETERS = 7;
  41.     private static final int MAX_REPETITIONS = 8;
  42.     private static final int USER_NAME = 9;
  43.     private static final int AUTH_PROTOCOL = 10;
  44.     private static final int AUTH_PASSWORD = 11;
  45.     private static final int PRIV_PASSWORD = 12;
  46. private static final int CONTEXT_NAME = 13;
  47. private static final int CONTEXT_ID = 14;
  48.   private static final int PRIV_PROTOCOL = 15;
  49.     public static void main(String args[]) {
  50.     // Take care of getting options
  51.     String usage = "snmpgetbulk [-v version(v2,v3)] [-m MIB_files] [-c community] [-p port] [-t timeout] [-r retries] [-d debug] [-nr non-repeaters] [-mr max-repetitions] [-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) ] host OID [OID] ...";
  52.     String options[] = { "-v", "-c", "-p", "-r", "-t", "-d", "-m", "-nr", "-mr", "-u", "-a", "-w", "-s", "-n", "-i", "-pp" };
  53.     String values[] = { null, null, null, null, null, "None", null, null, null, null, null, null, null, null, null, null};
  54.     String authProtocol = new String("NO_AUTH");
  55.     ParseOptions opt = new ParseOptions(args,options,values, usage);
  56.     // check for at least hostname and one OID in remaining arguments
  57.     if (opt.remArgs.length<2) opt.usage_error();
  58.  if(values[VERSION] != null)
  59.   {        
  60.  if ((values[VERSION].equals("v3")) && (values[USER_NAME] == null)) opt.usage_error();
  61. }
  62.     // Use an SNMP target bean to perform SNMP operations
  63.     SnmpTarget target = new SnmpTarget();
  64.  //To load MIBs from compiled file
  65.  target.setLoadFromCompiledMibs(true);
  66.  
  67.  if(values[DEBUG].equals("Set"))
  68.  target.setDebug(true);
  69.     target.setSnmpVersion( SnmpTarget.VERSION2C ) ;
  70.     int nonRepeaters = 0; // we need this for printing
  71.     if(values[VERSION] != null) { // if SNMP version is specified, set it
  72.         if(values[VERSION].equals("v2"))
  73.             target.setSnmpVersion( SnmpTarget.VERSION2C ) ;
  74.         else if(values[VERSION].equals("v3"))
  75.             target.setSnmpVersion( SnmpTarget.VERSION3 ) ;
  76.         else {
  77.             System.out.println("Invalid Version Number"); 
  78.             System.exit(1);
  79.         }
  80.     }
  81.     else 
  82.         target.setSnmpVersion( SnmpTarget.VERSION2C ) ;
  83.     target.setTargetHost( opt.remArgs[0] );  // set the agent hostname
  84.     if (values[COMMUNITY] != null) // set the community if specified
  85.         target.setCommunity( values[COMMUNITY] );
  86.     try { // set the timeout/retries/port parameters, if specified
  87.         if (values[PORT] != null) 
  88.             target.setTargetPort( Integer.parseInt(values[PORT]) );
  89.         if (values[RETRIES] != null) 
  90.             target.setRetries( Integer.parseInt(values[RETRIES]) );
  91.         if (values[TIMEOUT] != null) 
  92.             target.setTimeout( Integer.parseInt(values[TIMEOUT]) );
  93.         if (values[NON_REPETERS] != null) 
  94.             nonRepeaters = Integer.parseInt(values[NON_REPETERS]);
  95.         target.setNonRepeaters( nonRepeaters );
  96.         if (values[MAX_REPETITIONS] != null) 
  97.             target.setMaxRepetitions( Integer.parseInt(values[MAX_REPETITIONS]) );
  98.     } catch (NumberFormatException ex) {
  99.         System.err.println("Invalid Integer Argument "+ex);
  100.     }
  101.     if(target.getSnmpVersion() == target.VERSION3) {
  102.         if (values[USER_NAME] != null) 
  103.             target.setPrincipal(values[USER_NAME]);
  104.         if (values[AUTH_PROTOCOL] != null) {
  105.         //System.out.println("authProtocol = " + authProtocol);
  106.         authProtocol = values[AUTH_PROTOCOL];
  107.         }
  108.         if(authProtocol.equals("SHA"))
  109.             target.setAuthProtocol(target.SHA_AUTH);
  110.         else if(authProtocol.equals("MD5"))
  111.             target.setAuthProtocol(target.MD5_AUTH);
  112.         else
  113.             target.setAuthProtocol(target.NO_AUTH);
  114.         if (values[AUTH_PASSWORD] != null) 
  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.                       
  138.                     else if(values[PRIV_PROTOCOL].equals("DES"))
  139.                     {
  140.                        target.setPrivProtocol(target.CBC_DES);
  141.                     }
  142.                     else
  143.                     {
  144.                      System.out.println(" Invalid PrivProtocol "+values[PRIV_PROTOCOL]);
  145.                      opt.usage_error();
  146.                     }
  147.             }
  148.         }
  149. if(values[CONTEXT_NAME]!= null)
  150. target.setContextName(values[CONTEXT_NAME]);
  151. if(values[CONTEXT_ID]!= null)
  152. target.setContextID(values[CONTEXT_ID]);
  153.     }
  154.     if (values[MIBS] != null) try { // Load the MIB files 
  155.         System.err.println("Loading MIBs: "+values[MIBS]);
  156.         target.loadMibs(values[MIBS]);
  157.     } catch (Exception ex) {
  158.         System.err.println("Error loading MIBs: "+ex);
  159.     }
  160. if(target.getSnmpVersion() == target.VERSION3){
  161. target.create_v3_tables();
  162. }
  163.     // create OID array from command line arguments
  164.     String oids[] = new String[opt.remArgs.length-1];
  165.     for (int i=1;i<opt.remArgs.length;i++) oids[i-1] = opt.remArgs[i];
  166.     
  167.     // Set the OID List on the SnmpTarget instance
  168.     target.setObjectIDList(oids);
  169.     SnmpVarBind result[][] = target.snmpGetBulkVariableBindings(); // do a getbulk request
  170.     
  171.     if (result == null) {
  172.         System.err.println("Request failed or timed out. n"+
  173.                    target.getErrorString());
  174.     } else { // print the values
  175.         System.out.println("Response received.  Values:n");
  176.         for (int i=0;i<nonRepeaters;i++)
  177.         System.out.println(target.getMibOperations().toString(result[i][0]));
  178.         
  179.         StringBuffer sb = new StringBuffer("nRepeaters:n");
  180.         
  181.         for (int j=0;j<result[0].length;j++) {
  182.             for (int i=nonRepeaters;i<oids.length;i++) { 
  183.                 sb.append(target.getMibOperations().toString(result[i][j])
  184.                   + " t ");
  185.         }
  186.             sb.append("n");
  187.         }
  188.         System.out.println(sb.toString());
  189.     }
  190.     System.exit(0);
  191.     }
  192. }