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

SNMP编程

开发平台:

C/C++

  1. /*$Id: gettable.src,v 1.3.2.4 2009/01/28 12:45:56 prathika Exp $*/
  2. /*
  3.  * @(#)gettable.java
  4.  * Copyright (c) 1996-2009 AdventNet, Inc. All Rights Reserved.
  5.  * Please read the associated COPYRIGHTS file for more details.
  6.  */
  7. /** 
  8.  *  An example of using the SnmpTarget class to get a table.
  9.  *  A simpler/better approach to looking at table data 
  10.  *  is to use the SnmpTable class, which is
  11.  *  illustrated in the getSnmpTable example.  This example is
  12.  *  to provide another example of using the SnmpTarget class, and
  13.  *  the MibOperations class.
  14.  *
  15.  *  The MIB with the requested table must be loaded for this example.
  16.  *
  17.  * [-d]                - Debug output. By default off.
  18.  * [-c] <community>    - community String. By default "public".
  19.  * [-p] <port>         - remote port no. By default 161.
  20.  * [-t] <Timeout>      - Timeout. By default 5000ms.
  21.  * [-r] <Retries>      - Retries. By default 0.      
  22.  * [-v] <version>      - version(v1 / v2 / v3). By default v1.
  23.  * [-u] <username>     - The v3 principal/userName
  24.  * [-a] <autProtocol>  - The authProtocol(MD5/SHA). Mandatory if authPassword is specified
  25.  * [-w] <authPassword> - The authentication password.
  26.  * [-s] <privPassword> - The privacy protocol password. Must be accompanied with auth password and authProtocol fields.
  27.  * [-n] <contextName>  - The snmpv3 contextName to be used.
  28.  * [-i] <contextID>    - The snmpv3 contextID to be used.
  29.  * [-pp] <privProtocol> - The privacy protocol. Must be accompanied with auth,priv password and authProtocol fields.
  30.  * host Mandatory      - The RemoteHost (agent).Format (string without double qoutes/IpAddress).
  31.  * tableOID  Mandatory - Give the Object Identifier of a Table.
  32.  * mibs           - The mibs to be loaded.Mandatory.
  33.  */
  34. import com.adventnet.snmp.beans.*;
  35. import com.adventnet.snmp.mibs.*;
  36. import com.adventnet.snmp.snmp2.*;
  37. import java.util.*;
  38. public class gettable {
  39.     private static final int COMMUNITY = 1;
  40.     private static final int PORT = 2;
  41.     private static final int RETRIES = 3;
  42.     private static final int TIMEOUT = 4;
  43.     private static final int VERSION = 0;
  44.     private static final int USER_NAME = 5;
  45.     private static final int AUTH_PROTOCOL = 6;
  46.     private static final int AUTH_PASSWORD = 7;
  47.     private static final int PRIV_PASSWORD = 8;
  48. private static final int CONTEXT_NAME = 9;
  49. private static final int CONTEXT_ID = 10;
  50.     private static final int DEBUG = 11;
  51.     private static final int PRIV_PROTOCOL = 12;
  52.     public static void main(String args[]) {
  53.     // Take care of getting options
  54.     String usage = "gettable [-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";
  55.     String options[] = { "-v", "-c", "-p", "-r", "-t", "-u", "-a", "-w", "-s", "-n", "-i", "-d", "-pp" };
  56.     String values[] = { null, null, null, null, null, null, null, null, null, null, null, "None", null};
  57.     String authProtocol = new String("NO_AUTH");
  58.           
  59.     ParseOptions opt = new ParseOptions(args,options,values, usage);
  60.     // check for at least hostname and one OID in remaining arguments
  61.     if (opt.remArgs.length<3) opt.usage_error();
  62.  if(values[VERSION] != null)
  63.   {     
  64.  if ((values[VERSION].equals("v3")) && (values[USER_NAME] == null)) opt.usage_error();
  65. }
  66.     // Use an SNMP target bean to perform SNMP operations
  67.     SnmpTarget target = new SnmpTarget();
  68.  //To load MIBs from compiled file
  69.  target.setLoadFromCompiledMibs(true);
  70.         if(values[VERSION] != null) {  // if SNMP version is specified, set it
  71.             if(values[VERSION].equals("v2"))
  72.                 target.setSnmpVersion( SnmpTarget.VERSION2C ) ;
  73.             else if(values[VERSION].equals("v1"))
  74.                 target.setSnmpVersion( SnmpTarget.VERSION1 );
  75.             else if(values[VERSION].equals("v3"))
  76.                 target.setSnmpVersion( SnmpTarget.VERSION3 );
  77.             else {
  78.                 System.out.println("Invalid Version Number"); 
  79.                 System.exit(1);
  80.             }
  81.         }
  82.     target.setTargetHost( opt.remArgs[0] );  // set the agent hostname
  83.     if (values[COMMUNITY] != null) // set the community if specified
  84.         target.setCommunity( values[COMMUNITY] );
  85.     try { // set the timeout/retries/port parameters, if specified
  86.         if (values[PORT] != null) 
  87.             target.setTargetPort( Integer.parseInt(values[PORT]) );
  88.         if (values[RETRIES] != null) 
  89.             target.setRetries( Integer.parseInt(values[RETRIES]) );
  90.         if (values[TIMEOUT] != null) 
  91.             target.setTimeout( Integer.parseInt(values[TIMEOUT]) );
  92.     } catch (NumberFormatException ex) {
  93.         System.err.println("Invalid Integer Argument "+ex);
  94.     }
  95.     if(target.getSnmpVersion() == target.VERSION3) {
  96.         if (values[USER_NAME] != null) 
  97.             target.setPrincipal(values[USER_NAME]);
  98.         if (values[AUTH_PROTOCOL] != null) {
  99.             //System.out.println("authProtocol = " + authProtocol);
  100.             authProtocol = values[AUTH_PROTOCOL];
  101.         }
  102.         if(authProtocol.equals("SHA"))
  103.             target.setAuthProtocol(target.SHA_AUTH);
  104.         else if(authProtocol.equals("MD5"))
  105.             target.setAuthProtocol(target.MD5_AUTH);
  106.         else 
  107.             target.setAuthProtocol(target.NO_AUTH);
  108.         if (values[AUTH_PASSWORD] != null) 
  109.             target.setAuthPassword(values[AUTH_PASSWORD]);
  110.         if (values[PRIV_PASSWORD] != null) 
  111.          {
  112.             target.setPrivPassword(values[PRIV_PASSWORD]);
  113.             if(values[PRIV_PROTOCOL] != null)
  114.             {
  115.                    if(values[PRIV_PROTOCOL].equals("AES-128"))
  116.                     {
  117.                        target.setPrivProtocol(target.CFB_AES_128);
  118.                     }
  119.     else if(values[PRIV_PROTOCOL].equals("AES-192"))
  120.                     {
  121.                        target.setPrivProtocol(target.CFB_AES_192);
  122.                     }
  123.     else if(values[PRIV_PROTOCOL].equals("AES-256"))
  124.                     {
  125.                        target.setPrivProtocol(target.CFB_AES_256);
  126.                     }
  127.     else if(values[PRIV_PROTOCOL].equals("3DES"))
  128.                     {
  129.                       target.setPrivProtocol(target.CBC_3DES);
  130.                     }
  131.                     else if(values[PRIV_PROTOCOL].equals("DES"))
  132.                     {
  133.                        target.setPrivProtocol(target.CBC_DES);
  134.                     }
  135.                     else
  136.                     {
  137.                      System.out.println(" Invalid PrivProtocol "+values[PRIV_PROTOCOL]);
  138.                      opt.usage_error();
  139.                     }
  140.             }
  141.          }
  142. if(values[CONTEXT_NAME]!= null)
  143. target.setContextName(values[CONTEXT_NAME]);
  144. if(values[CONTEXT_ID]!= null)
  145. target.setContextID(values[CONTEXT_ID]);
  146.     }
  147.     if (opt.remArgs[2] != null) try { // Load the MIB files 
  148.         System.out.println("Loading MIBs: "+opt.remArgs[2]);
  149.         target.loadMibs(opt.remArgs[2]);
  150.         System.out.println("Done.");
  151.     } catch (Exception ex) {
  152.         System.err.println("Error loading MIBs: "+ex);
  153.     }
  154. if(target.getSnmpVersion() == target.VERSION3){
  155. target.create_v3_tables();
  156. }
  157. if (values[DEBUG].equals("Set"))
  158.     {
  159.         target.setDebug(true);
  160.     }  
  161.     // get a reference to the MIB operations instance
  162.     MibOperations mibOps = target.getMibOperations();
  163.     SnmpOID tableOID = mibOps.getSnmpOID(opt.remArgs[1]); // get table OID
  164.     MibNode tableNode = mibOps.getMibNode(tableOID); // get table MIB node
  165.     if (tableNode == null) { // could not get table MIB node
  166.       System.err.println("Cannot find MIB node for table.  Correct MIB must be loaded: "+opt.remArgs[1]);  
  167.       System.exit(1);
  168.     } 
  169.     Vector columns = tableNode.getTableItems();
  170.     if ( (columns == null) || (columns.size() == 0) ) {
  171.       System.err.println("Not a table.  No columns: "+opt.remArgs[1]);  
  172.       System.exit(1);
  173.     } 
  174.     // We need to confirm the first column is read-accessible
  175.     while (columns.size() > 0) {
  176.       SnmpOID firstOID = mibOps.getSnmpOID((String)columns.elementAt(0));
  177.       MibNode firstNode = mibOps.getMibNode(firstOID);
  178.       if ( (firstNode.getAccess() != SnmpAPI.RONLY) &&
  179.            (firstNode.getAccess() != SnmpAPI.RWRITE) && (firstNode.getAccess() !=SnmpAPI.RCREATE)) {
  180.           System.err.println("Column inaccessible.  Drop: "+firstNode); 
  181.           columns.removeElementAt(0);
  182.       } else break;
  183.     }
  184.       
  185.     // create OID array from table columns
  186.     String oids[] = new String[columns.size()];
  187.     for (int i=0;i<oids.length;i++) oids[i] = (String)columns.elementAt(i);
  188.     
  189.     target.setObjectIDList(oids); 
  190.     // get entire table by doing successive get nexts
  191.     String result[][] = target.snmpGetAllList();  
  192.     
  193.     if (result == null) {
  194.         System.err.println("Request failed or timed out. n"+
  195.                    target.getErrorString());
  196.     } else { // print the table
  197.         System.out.println("Response received.  Table items:");
  198.         StringBuffer sb = new StringBuffer();
  199.         // first print the column names
  200.         for (int i=0;i<oids.length;i++) sb.append(oids[i]+" t");
  201.         sb.append("n");
  202.         // next pront each table item
  203.         for (int j=0;j<result.length;j++) { // for each row
  204.           for (int i=0;i<result[j].length;i++) // for each column
  205.               sb.append(result[j][i]+" t");
  206.           sb.append("n");
  207.         }
  208.         System.out.println(sb.toString());
  209.     }
  210.     System.exit(0);
  211.     }
  212. }