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

SNMP编程

开发平台:

C/C++

  1. /*$Id: snmpwalk.src,v 1.4 2002/09/09 05:36:28 tonyjpaul Exp $*/
  2. /*
  3.  * @(#)snmpwalk.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 walk based on command line arguments.  Loads MIBs 
  9.  *  as specified, and converts to/from names for loaded MIB data.
  10.  *  Multiple OIDs are ok, but checking for when to stop
  11.  *  is based on first OID. 
  12.  *
  13.  * [-d]                - Debug output. By default off.
  14.  * [-c] <community>    - community String. By default "public".
  15.  * [-p] <port>         - remote port no. By default 161.
  16.  * [-t] <Timeout>      - Timeout. By default 5000ms.
  17.  * [-r] <Retries>      - Retries. By default 0.      
  18.  * [-m] <mibs>           - The mibs to be loaded.
  19.  *<img SRC="images/v3only.jpg" ALT="v3 only"> [-v] <version>      - version(v1 / v2 / v3). By default v1.
  20.  * [-u] <username>     - The v3 principal/userName
  21.  * [-a] <autProtocol>  - The authProtocol(MD5/SHA). Mandatory if authPassword is specified
  22.  * [-w] <authPassword> - The authentication password.
  23.  * [-s] <privPassword> - The privacy protocol password. Must be accompanied with auth password and authProtocol fields.
  24.  * [-n] <contextName>  - The snmpv3 contextName to be used.
  25.  * [-i] <contextID>    - The snmpv3 contextID to be used.
  26.  * <host> Mandatory    - The RemoteHost (agent).Format (string without double qoutes/IpAddress).
  27.  * <OID>  Mandatory    - Give multiple no. of Object Identifiers.
  28.  */
  29. import com.adventnet.snmp.beans.*;
  30. import com.adventnet.snmp.snmp2.*;
  31. public class snmpwalk {
  32.     
  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 MIBS = 5;
  38.     private static final int VERSION = 0;
  39.     private static final int USER_NAME = 6;
  40.     private static final int AUTH_PROTOCOL = 7;
  41.     private static final int AUTH_PASSWORD = 8;
  42.     private static final int PRIV_PASSWORD = 9;
  43. private static final int CONTEXT_NAME = 10;
  44. private static final int CONTEXT_ID = 11;
  45.     private static final int DEBUG = 12;
  46.     public static void main(String args[]) {
  47.         // Take care of getting options
  48.     String usage = "snmpwalk [-v version(v1,v2,v3)] [-m MIB_files] [-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 OID";
  49.     String options[] = { "-v", "-c", "-p", "-r", "-t", "-m" , "-u", "-a", "-w", "-s", "-n", "-i", "-d" };
  50.     String values[] = { null, null, null, null, null, null, null, null, null, null, null, null, "None"};
  51.     String authProtocol = new String("NO_AUTH");
  52.     ParseOptions opt = new ParseOptions(args,options,values, usage);
  53.     // check for at least hostname and one OID in remaining arguments
  54.     if (opt.remArgs.length != 2) opt.usage_error();
  55.     if ((values[VERSION] == "v3") && (values[USER_NAME] == null)) opt.usage_error();
  56.     // Use an SNMP target bean to perform SNMP operations
  57.     SnmpTarget target = new SnmpTarget();
  58.  //To load MIBs from compiled file
  59.  target.setLoadFromCompiledMibs(true);
  60.     if (values[DEBUG].equals("Set")) target.setDebug(true);
  61.         if(values[VERSION] != null) {  // if SNMP version is specified, set it
  62.             if(values[VERSION].equals("v2"))
  63.                 target.setSnmpVersion( SnmpTarget.VERSION2C ) ;
  64.             else if(values[VERSION].equals("v1"))
  65.                 target.setSnmpVersion( SnmpTarget.VERSION1 );
  66.             else if(values[VERSION].equals("v3"))
  67.                 target.setSnmpVersion( SnmpTarget.VERSION3 );
  68.             else {
  69.             System.out.println("Invalid Version Number"); 
  70.             System.exit(1);
  71.             }
  72.         }
  73.     target.setTargetHost( opt.remArgs[0] );  // set the agent hostname
  74.     if (values[COMMUNITY] != null) // set the community if specified
  75.         target.setCommunity( values[COMMUNITY] );
  76.     try { // set the timeout/retries/port parameters, if specified
  77.         if (values[PORT] != null) 
  78.             target.setTargetPort( Integer.parseInt(values[PORT]) );
  79.         if (values[RETRIES] != null) 
  80.             target.setRetries( Integer.parseInt(values[RETRIES]) );
  81.         if (values[TIMEOUT] != null) 
  82.             target.setTimeout( Integer.parseInt(values[TIMEOUT]) );
  83.     } catch (NumberFormatException ex) {
  84.         System.err.println("Invalid Integer Argument "+ex);
  85.     }
  86.     if(target.getSnmpVersion() == target.VERSION3) {
  87.         if (values[USER_NAME] != null) 
  88.             target.setPrincipal(values[USER_NAME]);
  89.         if (values[AUTH_PROTOCOL] != null) {
  90.             //System.out.println("authProtocol = " + authProtocol);
  91.             authProtocol = values[AUTH_PROTOCOL];
  92.         }
  93.         if(authProtocol.equals("SHA"))
  94.             target.setAuthProtocol(target.SHA_AUTH);
  95.         else if(authProtocol.equals("MD5"))
  96.             target.setAuthProtocol(target.MD5_AUTH);
  97.         else
  98.             target.setAuthProtocol(target.NO_AUTH);
  99.         if (values[AUTH_PASSWORD] != null) 
  100.             target.setAuthPassword(values[AUTH_PASSWORD]);
  101.         if (values[PRIV_PASSWORD] != null) 
  102.             target.setPrivPassword(values[PRIV_PASSWORD]);
  103. if(values[CONTEXT_NAME]!= null)
  104. target.setContextName(values[CONTEXT_NAME]);
  105. if(values[CONTEXT_ID]!= null)
  106. target.setContextID(values[CONTEXT_ID]);
  107.     }
  108.     if (values[MIBS] != null) try { // Load the MIB files 
  109.         System.err.println("Loading MIBs: "+values[MIBS]);
  110.         target.loadMibs(values[MIBS]);
  111.     } catch (Exception ex) {
  112.         System.err.println("Error loading MIBs: "+ex);
  113.     }
  114. if(target.getSnmpVersion() == target.VERSION3){
  115. target.create_v3_tables();
  116. }
  117.     // Set the OID on the SnmpTarget instance
  118.     target.setObjectID(opt.remArgs[1]);
  119.     int maxtry = 0;
  120.     SnmpOID[] oidList = target.getSnmpOIDList();
  121.     if(oidList == null) {
  122.      System.out.println("Invalid OID has been specified / Check if the OID is present in the MIB loaded if any");
  123.      target.releaseResources();
  124.     }
  125.     else {
  126.     SnmpOID rootoid = oidList[0];
  127.     while ( maxtry++ < 1000) {  // limit the max getnexts to 1000
  128. String result[] = target.snmpGetNextList();
  129. if (result == null) break;
  130. if ( !SnmpTarget.isInSubTree(rootoid,target.getSnmpOID()) )
  131.   break;  // check first column
  132. if (maxtry == 1) System.out.println("Response received: ");
  133. for (int i=0;i<result.length;i++) {  // print the values
  134.     System.out.println(target.getObjectID(i) + ": " + result[i]);
  135. }
  136.     }
  137.     if (maxtry == 1) {  // we did not get a valid row
  138. System.err.println("Request failed, timed out or no available data. n"+
  139.    target.getErrorString());
  140.     } 
  141.     target.releaseResources();
  142. }
  143.     }
  144. }