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

SNMP编程

开发平台:

C/C++

  1. /*$Id: gettable.src,v 1.3 2002/09/09 05:36:28 tonyjpaul Exp $*/
  2. /*
  3.  * @(#)gettable.java
  4.  * Copyright (c) 1996-2003 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.  *<img SRC="images/v3only.jpg" ALT="v3 only"> [-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.  * host Mandatory      - The RemoteHost (agent).Format (string without double qoutes/IpAddress).
  30.  * tableOID  Mandatory - Give the Object Identifier of a Table.
  31.  * mibs           - The mibs to be loaded.Mandatory.
  32.  */
  33. import com.adventnet.snmp.beans.*;
  34. import com.adventnet.snmp.mibs.*;
  35. import com.adventnet.snmp.snmp2.*;
  36. import java.util.*;
  37. public class gettable {
  38.     private static final int COMMUNITY = 1;
  39.     private static final int PORT = 2;
  40.     private static final int RETRIES = 3;
  41.     private static final int TIMEOUT = 4;
  42.     private static final int VERSION = 0;
  43.     private static final int USER_NAME = 5;
  44.     private static final int AUTH_PROTOCOL = 6;
  45.     private static final int AUTH_PASSWORD = 7;
  46.     private static final int PRIV_PASSWORD = 8;
  47. private static final int CONTEXT_NAME = 9;
  48. private static final int CONTEXT_ID = 10;
  49.     private static final int DEBUG = 11;
  50.     public static void main(String args[]) {
  51.     // Take care of getting options
  52.     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] host tableOID MIB_files";
  53.     String options[] = { "-v", "-c", "-p", "-r", "-t", "-u", "-a", "-w", "-s", "-n", "-i", "-d" };
  54.     String values[] = { null, null, null, null, null, null, null, null, null, null, null, "None"};
  55.     String authProtocol = new String("NO_AUTH");
  56.           
  57.     ParseOptions opt = new ParseOptions(args,options,values, usage);
  58.     // check for at least hostname and one OID in remaining arguments
  59.     if (opt.remArgs.length<3) opt.usage_error();
  60.     if ((values[VERSION] == "v3") && (values[USER_NAME] == null)) opt.usage_error();
  61.     // Use an SNMP target bean to perform SNMP operations
  62.     SnmpTarget target = new SnmpTarget();
  63.  //To load MIBs from compiled file
  64.  target.setLoadFromCompiledMibs(true);
  65.         if(values[VERSION] != null) {  // if SNMP version is specified, set it
  66.             if(values[VERSION].equals("v2"))
  67.                 target.setSnmpVersion( SnmpTarget.VERSION2C ) ;
  68.             else if(values[VERSION].equals("v1"))
  69.                 target.setSnmpVersion( SnmpTarget.VERSION1 );
  70.             else if(values[VERSION].equals("v3"))
  71.                 target.setSnmpVersion( SnmpTarget.VERSION3 );
  72.             else {
  73.                 System.out.println("Invalid Version Number"); 
  74.                 System.exit(1);
  75.             }
  76.         }
  77.     target.setTargetHost( opt.remArgs[0] );  // set the agent hostname
  78.     if (values[COMMUNITY] != null) // set the community if specified
  79.         target.setCommunity( values[COMMUNITY] );
  80.     try { // set the timeout/retries/port parameters, if specified
  81.         if (values[PORT] != null) 
  82.             target.setTargetPort( Integer.parseInt(values[PORT]) );
  83.         if (values[RETRIES] != null) 
  84.             target.setRetries( Integer.parseInt(values[RETRIES]) );
  85.         if (values[TIMEOUT] != null) 
  86.             target.setTimeout( Integer.parseInt(values[TIMEOUT]) );
  87.     } catch (NumberFormatException ex) {
  88.         System.err.println("Invalid Integer Argument "+ex);
  89.     }
  90.     if(target.getSnmpVersion() == target.VERSION3) {
  91.         if (values[USER_NAME] != null) 
  92.             target.setPrincipal(values[USER_NAME]);
  93.         if (values[AUTH_PROTOCOL] != null) {
  94.             //System.out.println("authProtocol = " + authProtocol);
  95.             authProtocol = values[AUTH_PROTOCOL];
  96.         }
  97.         if(authProtocol.equals("SHA"))
  98.             target.setAuthProtocol(target.SHA_AUTH);
  99.         else if(authProtocol.equals("MD5"))
  100.             target.setAuthProtocol(target.MD5_AUTH);
  101.         else 
  102.             target.setAuthProtocol(target.NO_AUTH);
  103.         if (values[AUTH_PASSWORD] != null) 
  104.             target.setAuthPassword(values[AUTH_PASSWORD]);
  105.         if (values[PRIV_PASSWORD] != null) 
  106.             target.setPrivPassword(values[PRIV_PASSWORD]);
  107. if(values[CONTEXT_NAME]!= null)
  108. target.setContextName(values[CONTEXT_NAME]);
  109. if(values[CONTEXT_ID]!= null)
  110. target.setContextID(values[CONTEXT_ID]);
  111.     }
  112.     if (opt.remArgs[2] != null) try { // Load the MIB files 
  113.         System.out.println("Loading MIBs: "+opt.remArgs[2]);
  114.         target.loadMibs(opt.remArgs[2]);
  115.         System.out.println("Done.");
  116.     } catch (Exception ex) {
  117.         System.err.println("Error loading MIBs: "+ex);
  118.     }
  119. if(target.getSnmpVersion() == target.VERSION3){
  120. target.create_v3_tables();
  121. }
  122. if (values[DEBUG].equals("Set"))
  123.     {
  124.         target.setDebug(true);
  125.     }  
  126.     // get a reference to the MIB operations instance
  127.     MibOperations mibOps = target.getMibOperations();
  128.     SnmpOID tableOID = mibOps.getSnmpOID(opt.remArgs[1]); // get table OID
  129.     MibNode tableNode = mibOps.getMibNode(tableOID); // get table MIB node
  130.     if (tableNode == null) { // could not get table MIB node
  131.       System.err.println("Cannot find MIB node for table.  Correct MIB must be loaded: "+opt.remArgs[1]);  
  132.       System.exit(1);
  133.     } 
  134.     Vector columns = tableNode.getTableItems();
  135.     if ( (columns == null) || (columns.size() == 0) ) {
  136.       System.err.println("Not a table.  No columns: "+opt.remArgs[1]);  
  137.       System.exit(1);
  138.     } 
  139.     // We need to confirm the first column is read-accessible
  140.     while (columns.size() > 0) {
  141.       SnmpOID firstOID = mibOps.getSnmpOID((String)columns.elementAt(0));
  142.       MibNode firstNode = mibOps.getMibNode(firstOID);
  143.       if ( (firstNode.getAccess() != SnmpAPI.RONLY) &&
  144.            (firstNode.getAccess() != SnmpAPI.RWRITE) ) {
  145.           System.err.println("Column inaccessible.  Drop: "+firstNode); 
  146.           columns.removeElementAt(0);
  147.       } else break;
  148.     }
  149.       
  150.     // create OID array from table columns
  151.     String oids[] = new String[columns.size()];
  152.     for (int i=0;i<oids.length;i++) oids[i] = (String)columns.elementAt(i);
  153.     
  154.     target.setObjectIDList(oids); 
  155.     // get entire table by doing successive get nexts
  156.     String result[][] = target.snmpGetAllList();  
  157.     
  158.     if (result == null) {
  159.         System.err.println("Request failed or timed out. n"+
  160.                    target.getErrorString());
  161.     } else { // print the table
  162.         System.out.println("Response received.  Table items:");
  163.         StringBuffer sb = new StringBuffer();
  164.         // first print the column names
  165.         for (int i=0;i<oids.length;i++) sb.append(oids[i]+" t");
  166.         sb.append("n");
  167.         // next pront each table item
  168.         for (int j=0;j<result.length;j++) { // for each row
  169.           for (int i=0;i<result[j].length;i++) // for each column
  170.               sb.append(result[j][i]+" t");
  171.           sb.append("n");
  172.         }
  173.         System.out.println(sb.toString());
  174.     }
  175.     System.exit(0);
  176.     }
  177. }