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

SNMP编程

开发平台:

C/C++

  1. /*$Id: snmpgetbulk.src,v 1.3 2002/09/09 05:36:28 tonyjpaul Exp $*/
  2. /*
  3.  * @(#)snmpgetbulk.java
  4.  * Copyright (c) 1996-2003 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.  * <host> Mandatory    - The RemoteHost (agent).Format (string without double qoutes/IpAddress).
  26.  * <OID>  Mandatory    - Give only one Object Identifier.
  27.  */
  28. import com.adventnet.snmp.beans.*;
  29. import com.adventnet.snmp.snmp2.*;
  30. public class snmpgetbulk {
  31.     
  32.     private static final int VERSION = 0;
  33.     private static final int COMMUNITY = 1;
  34.     private static final int PORT = 2;
  35.     private static final int RETRIES = 3;
  36.     private static final int TIMEOUT = 4;
  37.     private static final int DEBUG = 5;
  38.     private static final int MIBS = 6;
  39.     private static final int NON_REPETERS = 7;
  40.     private static final int MAX_REPETITIONS = 8;
  41.     private static final int USER_NAME = 9;
  42.     private static final int AUTH_PROTOCOL = 10;
  43.     private static final int AUTH_PASSWORD = 11;
  44.     private static final int PRIV_PASSWORD = 12;
  45. private static final int CONTEXT_NAME = 13;
  46. private static final int CONTEXT_ID = 14;
  47.     public static void main(String args[]) {
  48.     // Take care of getting options
  49.     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] host OID [OID] ...";
  50.     String options[] = { "-v", "-c", "-p", "-r", "-t", "-d", "-m", "-nr", "-mr", "-u", "-a", "-w", "-s", "-n", "-i" };
  51.     String values[] = { null, null, null, null, null, "None", null, null, null, null, null, null, null, null, null};
  52.     String authProtocol = new String("NO_AUTH");
  53.     ParseOptions opt = new ParseOptions(args,options,values, usage);
  54.     // check for at least hostname and one OID in remaining arguments
  55.     if (opt.remArgs.length<2) opt.usage_error();
  56.     if ((values[VERSION] == "v3") && (values[USER_NAME] == null)) opt.usage_error();
  57.     // Use an SNMP target bean to perform SNMP operations
  58.     SnmpTarget target = new SnmpTarget();
  59.  //To load MIBs from compiled file
  60.  target.setLoadFromCompiledMibs(true);
  61.  
  62.  if(values[DEBUG].equals("Set"))
  63.  target.setDebug(true);
  64.     target.setSnmpVersion( SnmpTarget.VERSION2C ) ;
  65.     int nonRepeaters = 0; // we need this for printing
  66.     if(values[VERSION] != null) { // if SNMP version is specified, set it
  67.         if(values[VERSION].equals("v2"))
  68.             target.setSnmpVersion( SnmpTarget.VERSION2C ) ;
  69.         else if(values[VERSION].equals("v3"))
  70.             target.setSnmpVersion( SnmpTarget.VERSION3 ) ;
  71.         else {
  72.             System.out.println("Invalid Version Number"); 
  73.             System.exit(1);
  74.         }
  75.     }
  76.     else 
  77.         target.setSnmpVersion( SnmpTarget.VERSION2C ) ;
  78.     target.setTargetHost( opt.remArgs[0] );  // set the agent hostname
  79.     if (values[COMMUNITY] != null) // set the community if specified
  80.         target.setCommunity( values[COMMUNITY] );
  81.     try { // set the timeout/retries/port parameters, if specified
  82.         if (values[PORT] != null) 
  83.             target.setTargetPort( Integer.parseInt(values[PORT]) );
  84.         if (values[RETRIES] != null) 
  85.             target.setRetries( Integer.parseInt(values[RETRIES]) );
  86.         if (values[TIMEOUT] != null) 
  87.             target.setTimeout( Integer.parseInt(values[TIMEOUT]) );
  88.         if (values[NON_REPETERS] != null) 
  89.             nonRepeaters = Integer.parseInt(values[NON_REPETERS]);
  90.         target.setNonRepeaters( nonRepeaters );
  91.         if (values[MAX_REPETITIONS] != null) 
  92.             target.setMaxRepetitions( Integer.parseInt(values[MAX_REPETITIONS]) );
  93.     } catch (NumberFormatException ex) {
  94.         System.err.println("Invalid Integer Argument "+ex);
  95.     }
  96.     if(target.getSnmpVersion() == target.VERSION3) {
  97.         if (values[USER_NAME] != null) 
  98.             target.setPrincipal(values[USER_NAME]);
  99.         if (values[AUTH_PROTOCOL] != null) {
  100.         //System.out.println("authProtocol = " + authProtocol);
  101.         authProtocol = values[AUTH_PROTOCOL];
  102.         }
  103.         if(authProtocol.equals("SHA"))
  104.             target.setAuthProtocol(target.SHA_AUTH);
  105.         else if(authProtocol.equals("MD5"))
  106.             target.setAuthProtocol(target.MD5_AUTH);
  107.         else
  108.             target.setAuthProtocol(target.NO_AUTH);
  109.         if (values[AUTH_PASSWORD] != null) 
  110.             target.setAuthPassword(values[AUTH_PASSWORD]);
  111.         if (values[PRIV_PASSWORD] != null)
  112.             target.setPrivPassword(values[PRIV_PASSWORD]);
  113. if(values[CONTEXT_NAME]!= null)
  114. target.setContextName(values[CONTEXT_NAME]);
  115. if(values[CONTEXT_ID]!= null)
  116. target.setContextID(values[CONTEXT_ID]);
  117.     }
  118.     if (values[MIBS] != null) try { // Load the MIB files 
  119.         System.err.println("Loading MIBs: "+values[MIBS]);
  120.         target.loadMibs(values[MIBS]);
  121.     } catch (Exception ex) {
  122.         System.err.println("Error loading MIBs: "+ex);
  123.     }
  124. if(target.getSnmpVersion() == target.VERSION3){
  125. target.create_v3_tables();
  126. }
  127.     // create OID array from command line arguments
  128.     String oids[] = new String[opt.remArgs.length-1];
  129.     for (int i=1;i<opt.remArgs.length;i++) oids[i-1] = opt.remArgs[i];
  130.     
  131.     // Set the OID List on the SnmpTarget instance
  132.     target.setObjectIDList(oids);
  133.     SnmpVarBind result[][] = target.snmpGetBulkVariableBindings(); // do a getbulk request
  134.     
  135.     if (result == null) {
  136.         System.err.println("Request failed or timed out. n"+
  137.                    target.getErrorString());
  138.     } else { // print the values
  139.         System.out.println("Response received.  Values:n");
  140.         for (int i=0;i<nonRepeaters;i++)
  141.         System.out.println(target.getMibOperations().toString(result[i][0]));
  142.         
  143.         StringBuffer sb = new StringBuffer("nRepeaters:n");
  144.         
  145.         for (int j=0;j<result[0].length;j++) {
  146.             for (int i=nonRepeaters;i<oids.length;i++) { 
  147.                 sb.append(target.getMibOperations().toString(result[i][j])
  148.                   + " t ");
  149.         }
  150.             sb.append("n");
  151.         }
  152.         System.out.println(sb.toString());
  153.     }
  154.     System.exit(0);
  155.     }
  156. }