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

SNMP编程

开发平台:

C/C++

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