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

SNMP编程

开发平台:

C/C++

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