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

SNMP编程

开发平台:

C/C++

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