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

SNMP编程

开发平台:

C/C++

  1. /*$Id: snmpget.java,v 1.1 2002/06/15 14:43:56 ram 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.  * [-sh] - SAS host
  18.  * [-sp] - SAS port
  19.  * [-cb] - codebase url
  20.  * [-db] - documentbase url
  21.  * [-v] <version>      - version(v1 / v2 / v3). By default v1.
  22.  * [-u] <username>     - The v3 principal/userName
  23.  * [-a] <autProtocol>  - The authProtocol(MD5/SHA). Mandatory if authPassword is specified
  24.  * [-w] <authPassword> - The authentication password.
  25.  * [-s] <privPassword> - The privacy protocol password. Must be accompanied with auth password and authProtocol fields.
  26.  * [-n] <contextName>  - The snmpv3 contextName to be used.
  27.  * [-i] <contextID>    - The snmpv3 contextID to be used.
  28.  * host Mandatory      - The RemoteHost (agent).Format (string without double qoutes/IpAddress).
  29.  * OID  Mandatory      - Give multiple no. of Object Identifiers.
  30.  */
  31. import com.adventnet.management.transport.*;
  32. import com.adventnet.snmp.snmp2.*;
  33. import com.adventnet.snmp.beans.*;
  34. import java.net.*;
  35. import java.applet.*;
  36. public class snmpget {
  37.     private static final int COMMUNITY = 1;
  38.     private static final int PORT = 2;
  39.     private static final int RETRIES = 3;
  40.     private static final int TIMEOUT = 4;
  41.     private static final int MIBS = 5; 
  42.     private static final int VERSION = 0;
  43.     private static final int USER_NAME = 6;
  44.     private static final int AUTH_PROTOCOL = 7;
  45.     private static final int AUTH_PASSWORD = 8;
  46.     private static final int PRIV_PASSWORD = 9;
  47. private static final int CONTEXT_NAME = 10;
  48. private static final int CONTEXT_ID = 11;
  49.     private static final int DEBUG = 12;
  50.     private static final int SAS_HOST=13;
  51.     private static final int SAS_PORT=14;
  52.     private static final int CODEBASE=15;
  53.     private static final int DOCBASE=16;
  54.     
  55.     public static void main(String args[]) {
  56.     // Take care of getting options
  57.     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] -sh SAS_Host -sp SAS_Port -cb codebase -db documentbase host OID [OID] ...";
  58.     String options[] = { "-v", "-c", "-p", "-r", "-t", "-m" , "-u", "-a", "-w", "-s", "-n", "-i", "-d", "-sh", "-sp", "-cb", "-db"};
  59.     String values[] = { null, null, null, null, null, null, null, null, null, null, null, null, "None", null, null, null, null};
  60.     String authProtocol = new String("NO_AUTH");
  61.     ParseOptions opt = new ParseOptions(args,options,values, usage);
  62.     // check for at least hostname and one OID in remaining arguments
  63.     if (opt.remArgs.length<2) opt.usage_error();
  64.     if ((values[VERSION] == "v3") && (values[USER_NAME] == null)) opt.usage_error();
  65.     // Proxy code follows
  66.     final Applet applet = new Applet();
  67.     SASAppletStub sasStub = new SASAppletStub();
  68. sasStub.setParameter("TRANSPORT_PROVIDER","com.adventnet.management.transport.TcpClientTransportImpl");   
  69.   // Set the SASAppletStub parameters
  70.     sasStub.setParameter("HOST", values[SAS_HOST]);
  71.     sasStub.setParameter("PORT", values[SAS_PORT]);
  72. sasStub.setParameter("CODEBASE", values[CODEBASE]);
  73. sasStub.setParameter("DOCUMENTBASE", values[DOCBASE]);
  74.     try {
  75. URL codebase = new URL(values[CODEBASE]);
  76.         URL docbase = new URL(values[DOCBASE]);
  77. sasStub.setCodeBase(codebase);
  78.         sasStub.setDocumentBase(docbase);
  79.     } catch (Exception e) {};
  80.     applet.setStub(sasStub);
  81.     
  82.     // Use an SNMP target bean to perform SNMP operations
  83.     SnmpTarget target = new SnmpTarget(applet);
  84.  //To load MIBs from compiled file
  85.  target.setLoadFromCompiledMibs(true);
  86.     if (values[DEBUG].equals("Set")) target.setDebug(true);
  87.     if(values[VERSION] != null) {  // if SNMP version is specified, set it
  88.         if(values[VERSION].equals("v2"))
  89.             target.setSnmpVersion( SnmpTarget.VERSION2C ) ;
  90.         else if(values[VERSION].equals("v1"))
  91.             target.setSnmpVersion( SnmpTarget.VERSION1 );
  92.         else if(values[VERSION].equals("v3"))
  93.             target.setSnmpVersion( SnmpTarget.VERSION3 );
  94.         else {
  95.             System.out.println("Invalid Version Number"); 
  96.             System.exit(1);
  97.         }
  98.     }
  99.     target.setTargetHost( opt.remArgs[0] );  // set the agent hostname
  100.     if (values[COMMUNITY] != null) // set the community if specified
  101.         target.setCommunity( values[COMMUNITY] );
  102.     try { // set the timeout/retries/port parameters, if specified
  103.         if (values[PORT] != null) 
  104.             target.setTargetPort( Integer.parseInt(values[PORT]) );
  105.         if (values[RETRIES] != null) 
  106.             target.setRetries( Integer.parseInt(values[RETRIES]) );
  107.         if (values[TIMEOUT] != null) 
  108.             target.setTimeout( Integer.parseInt(values[TIMEOUT]) );
  109.     } catch (NumberFormatException ex) {
  110.         System.err.println("Invalid Integer Argument "+ex);
  111.     }
  112.         if(target.getSnmpVersion() == target.VERSION3) {
  113.         if (values[USER_NAME] != null) 
  114.             target.setPrincipal(values[USER_NAME]);
  115.         if (values[AUTH_PROTOCOL] != null) {
  116.             //System.out.println("authProtocol = " + authProtocol);
  117.             authProtocol = values[AUTH_PROTOCOL];
  118.         }
  119.            if(authProtocol.equals("SHA"))
  120.             target.setAuthProtocol(target.SHA_AUTH);
  121.         else if(authProtocol.equals("MD5"))
  122.             target.setAuthProtocol(target.MD5_AUTH);
  123.            else
  124.             target.setAuthProtocol(target.NO_AUTH);
  125.         if (values[AUTH_PASSWORD] != null) 
  126.             target.setAuthPassword(values[AUTH_PASSWORD]);
  127.         if (values[PRIV_PASSWORD] != null)
  128.             target.setPrivPassword(values[PRIV_PASSWORD]);
  129. if(values[CONTEXT_NAME]!= null)
  130. target.setContextName(values[CONTEXT_NAME]);
  131. if(values[CONTEXT_ID]!= null)
  132. target.setContextID(values[CONTEXT_ID]);
  133.     }
  134.     if (values[MIBS] != null) try { // Load the MIB files 
  135.         System.err.println("Loading MIBs: "+values[MIBS]);
  136.         target.loadMibs(values[MIBS]);
  137.     } catch (Exception ex) {
  138.         System.err.println("Error loading MIBs: "+ex);
  139.     }
  140. if(target.getSnmpVersion() == target.VERSION3){
  141. target.create_v3_tables();
  142. }
  143.     // create OID array from command line arguments
  144.     String oids[] = new String[opt.remArgs.length-1];
  145.     for (int i=1;i<opt.remArgs.length;i++) oids[i-1] = opt.remArgs[i];
  146.     
  147.     // Set the OID List on the SnmpTarget instance
  148.     target.setObjectIDList(oids);
  149.     String result[] = target.snmpGetList();  // do a get request
  150.     
  151.     if (result == null) {
  152.         System.err.println("Request failed or timed out. n"+
  153.                    target.getErrorString());
  154.     } else { // print the values
  155.         System.out.println("Response received.  Values:");
  156.         for (int i=0;i<oids.length;i++) { 
  157.             System.out.println(target.getObjectID(i) + ": " + result[i]);
  158.         }
  159.     }
  160.     System.exit(0);
  161.     }
  162. }