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

SNMP编程

开发平台:

C/C++

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