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

SNMP编程

开发平台:

C/C++

  1. /*$Id: snmpget_by_index.src,v 1.3.2.4 2009/01/28 12:45:56 prathika Exp $*/
  2. /*
  3.  * @(#)snmpget_by_index.java
  4.  * Copyright (c) 1996-2009 AdventNet, Inc. All Rights Reserved.
  5.  * Please read the COPYRIGHTS file for more details.
  6.  */
  7. /** 
  8.  *  Get SNMP data 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.  * [-v] <version>      - version(v1 / v2 / v3). By default v1.
  17.  * [-u] <username>     - The v3 principal/userName
  18.  * [-a] <autProtocol>  - The authProtocol(MD5/SHA). Mandatory if authPassword is specified
  19.  * [-w] <authPassword> - The authentication password.
  20.  * [-s] <privPassword> - The privacy protocol password. Must be accompanied with auth password and authProtocol fields.
  21.  * [-n] <contextName>  - The snmpv3 contextName to be used.
  22.  * [-i] <contextID>    - The snmpv3 contextID to be used.
  23.  * [-s] <privProtocol> - The privacy protocol. Must be accompanied with auth,priv password and authProtocol fields.
  24.  * host Mandatory      - The RemoteHost (agent).Format (string without double qoutes/IpAddress).
  25.  * mib  Mandatory      - The mib to be loaded.
  26.  * OID  Mandatory      - Give multiple no. of Object Identifiers.
  27.  * index Mandatory     - The INDEX component of the table entry.
  28.  */
  29. import com.adventnet.snmp.beans.*;
  30. import com.adventnet.snmp.snmp2.*;
  31. public class snmpget_by_index {
  32.     private static final int COMMUNITY = 1;
  33.     private static final int PORT = 2;
  34.     private static final int RETRIES = 3;
  35.     private static final int TIMEOUT = 4;
  36.     
  37.     private static final int VERSION = 0;
  38.     private static final int USER_NAME = 5;
  39.     private static final int AUTH_PROTOCOL = 6;
  40.     private static final int AUTH_PASSWORD = 7;
  41.     private static final int PRIV_PASSWORD = 8;
  42. private static final int CONTEXT_NAME = 9;
  43. private static final int CONTEXT_ID = 10;
  44.     private static final int DEBUG = 11;
  45.     private static final int PRIV_PROTOCOL = 12;
  46.     public static void main(String args[]) {
  47.     // Take care of getting options
  48.     String usage = "snmpget_by_index [-v version(v1,v2,v3)] [-c community] [-p port] [-t timeout] [-r retries] [-u user] [-a auth_protocol(MD5/SHA)] [-w auth_password] [-s priv_password] [-n contextName] [-i contextID] [-d debug] [ -pp priv_protocol (DES/AES-128/AES-192/AES-256/3DES) ] host MIB_File OID index [index] ...";
  49.     String options[] = { "-v", "-c", "-p", "-r", "-t", "-u", "-a", "-w", "-s", "-n", "-i", "-d", "-pp" };
  50.     String values[] = { null, null, null, null, null, null, null, null, null, null, null, "None", null};
  51.     String authProtocol = new String("NO_AUTH");
  52.     ParseOptions opt = new ParseOptions(args,options,values, usage);
  53.     // check for hostname, index, and one OID in remaining arguments
  54.     if (opt.remArgs.length<4) opt.usage_error();
  55.     if(values[VERSION] != null)
  56.     {      
  57.     if ((values[VERSION].equals("v3")) && (values[USER_NAME] == null)) opt.usage_error();
  58.   }
  59.     // Use an SNMP target bean to perform SNMP operations
  60.     SnmpTarget target = new SnmpTarget();
  61.     if (values[DEBUG].equals("Set")) target.setDebug(true);
  62.  //To load MIBs from compiled file
  63.  target.setLoadFromCompiledMibs(true);
  64.         if(values[VERSION] != null) {  // if SNMP version is specified, set it
  65.             if(values[VERSION].equals("v2"))
  66.                 target.setSnmpVersion( SnmpTarget.VERSION2C ) ;
  67.             else if(values[VERSION].equals("v1"))
  68.                 target.setSnmpVersion( SnmpTarget.VERSION1 );
  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.     target.setTargetHost( opt.remArgs[0] );  // set the agent hostname
  77.     if (values[COMMUNITY] != null) // set the community if specified
  78.         target.setCommunity( values[COMMUNITY] );
  79.     try { // set the timeout/retries/port parameters, if specified
  80.         if (values[PORT] != null) 
  81.              target.setTargetPort( Integer.parseInt(values[PORT]) );
  82.         if (values[RETRIES] != null) 
  83.             target.setRetries( Integer.parseInt(values[RETRIES]) );
  84.         if (values[TIMEOUT] != null) 
  85.             target.setTimeout( Integer.parseInt(values[TIMEOUT]) );
  86.     } catch (NumberFormatException ex) {
  87.         System.err.println("Invalid Integer Argument "+ex);
  88.     }
  89.     if(target.getSnmpVersion() == target.VERSION3) {
  90.         if (values[USER_NAME] != null) 
  91.             target.setPrincipal(values[USER_NAME]);
  92.         if (values[AUTH_PROTOCOL] != null) {
  93.             //System.out.println("authProtocol = " + authProtocol);
  94.             authProtocol = values[AUTH_PROTOCOL];
  95.         }
  96.         if(authProtocol.equals("SHA"))
  97.             target.setAuthProtocol(target.SHA_AUTH);
  98.         else if(authProtocol.equals("MD5"))
  99.             target.setAuthProtocol(target.MD5_AUTH);
  100.         else
  101.             target.setAuthProtocol(target.NO_AUTH);            
  102.         if (values[AUTH_PASSWORD] != null) 
  103.             target.setAuthPassword(values[AUTH_PASSWORD]);
  104.         if (values[PRIV_PASSWORD] != null) 
  105.          {
  106.             target.setPrivPassword(values[PRIV_PASSWORD]);
  107.             if(values[PRIV_PROTOCOL] != null)
  108.             {
  109.                     if(values[PRIV_PROTOCOL].equals("AES-128"))
  110.                     {
  111.                        target.setPrivProtocol(target.CFB_AES_128);
  112.                     }
  113.     else if(values[PRIV_PROTOCOL].equals("AES-192"))
  114.                     {
  115.                        target.setPrivProtocol(target.CFB_AES_192);
  116.                     }
  117.     else if(values[PRIV_PROTOCOL].equals("AES-256"))
  118.                     {
  119.                        target.setPrivProtocol(target.CFB_AES_256);
  120.                     }
  121.     else if(values[PRIV_PROTOCOL].equals("3DES"))
  122.                     {
  123.                       target.setPrivProtocol(target.CBC_3DES);
  124.                     }
  125.                     else if(values[PRIV_PROTOCOL].equals("DES"))
  126.                     {
  127.                        target.setPrivProtocol(target.CBC_DES);
  128.                     }
  129.                     else
  130.                     {
  131.                      System.out.println(" Invalid PrivProtocol "+values[PRIV_PROTOCOL]);
  132.                      opt.usage_error();
  133.                     }
  134.             }
  135.         }
  136. if(values[CONTEXT_NAME]!= null)
  137. target.setContextName(values[CONTEXT_NAME]);
  138. if(values[CONTEXT_ID]!= null)
  139. target.setContextID(values[CONTEXT_ID]);
  140.     }
  141.     if (opt.remArgs[1] != null) try { // Load the MIB files 
  142.         System.err.println("Loading MIBs: "+opt.remArgs[1]);
  143.         target.loadMibs(opt.remArgs[1]);
  144.     } catch (Exception ex) {
  145.         System.err.println("Error loading MIBs: "+ex);
  146.     }
  147.     
  148. if(target.getSnmpVersion() == target.VERSION3){
  149. target.create_v3_tables();
  150. }
  151.     
  152.     try { 
  153.       // create OID and index array from command line arguments
  154.       String oid = opt.remArgs[2];
  155.       String indexes[] = new String[opt.remArgs.length-3];
  156.       for (int i=3;i<opt.remArgs.length;i++)
  157.           indexes[i-3] = opt.remArgs[i];
  158.     
  159.       SnmpVarBind varb = 
  160.         target.getMibOperations().createVariableBinding(oid, indexes, null);
  161.       // Set the OID List on the SnmpTarget instance
  162.       target.setSnmpOID(varb.getObjectID());
  163.     } catch (Exception ex) {
  164.         System.err.println("Error Setting OID: "+ex);
  165.     }
  166.     String result[] = target.snmpGetList();  // do a get request
  167.     
  168.     if (result == null) {
  169.         System.err.println("Request failed or timed out. n"+
  170.                    target.getErrorString());
  171.     } else { // print the values
  172.         System.out.println("Response received.  Values:");
  173.         System.out.println(target.getObjectID(0) + ": " + result[0]);
  174.     }
  175.     System.exit(0);
  176.     }
  177. }