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

SNMP编程

开发平台:

C/C++

  1. /*$Id: getSnmpTable.src,v 1.3 2002/09/09 05:36:28 tonyjpaul Exp $*/
  2. /*
  3.  * @(#)getSnmpTable.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.  See the swingapps directory for examples that need
  11.  *  and use swing components.
  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               - The mibs to be loaded.Mandatory.
  28.  */
  29. import com.adventnet.snmp.beans.*;
  30. import com.adventnet.snmp.mibs.*;
  31. import com.adventnet.snmp.snmp2.*;
  32. import java.util.*;
  33. public class getSnmpTable implements SnmpTableListener {
  34.     private static final int COMMUNITY = 1;
  35.     private static final int PORT = 2;
  36.     private static final int RETRIES = 3;
  37.     private static final int TIMEOUT = 4;
  38.     private static final int VERSION = 0;
  39.     private static final int USER_NAME = 5;
  40.     private static final int AUTH_PROTOCOL = 6;
  41.     private static final int AUTH_PASSWORD = 7;
  42.     private static final int PRIV_PASSWORD = 8;
  43. private static final int CONTEXT_NAME = 9;
  44. private static final int CONTEXT_ID = 10;
  45.     private static final int DEBUG = 11;
  46.     public static void main(String args[]) {
  47.     // Take care of getting options
  48.     String usage = "getSnmpTable [-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";
  49.     String options[] = { "-v", "-c", "-p", "-r", "-t", "-u", "-a", "-w", "-s", "-n", "-i", "-d" };
  50.     String values[] = { null, null, null, null, null, null, null, null, null, null, null, "None"};
  51.     String authProtocol = new String("NO_AUTH");
  52.     ParseOptions opt = new ParseOptions(args,options,values, usage);
  53.     // check for at least hostname and one OID in remaining arguments
  54.     if (opt.remArgs.length<3) opt.usage_error();    
  55.     
  56.     
  57.     if ((values[VERSION] == "v3") && (values[USER_NAME] == null)) opt.usage_error();
  58.     // instantiate an SnmpTable instance
  59.     SnmpTable table = new SnmpTable();
  60.  //To load MIBs from compiled file
  61.  table.setLoadFromCompiledMibs(true);
  62.  
  63.  
  64.  if (values[DEBUG].equals("set")) table.setDebug(true);
  65.  
  66.         if(values[VERSION] != null) {  // if SNMP version is specified, set it
  67.             if(values[VERSION].equals("v2"))
  68.                 table.setSnmpVersion( SnmpTarget.VERSION2C ) ;
  69.             else if(values[VERSION].equals("v1"))
  70.                 table.setSnmpVersion( SnmpTarget.VERSION1 );
  71.             else if(values[VERSION].equals("v3"))
  72.                 table.setSnmpVersion( SnmpTarget.VERSION3 );
  73.             else {
  74.                 System.out.println("Invalid Version Number"); 
  75.                 System.exit(1);
  76.             }
  77.         }
  78.     table.setTargetHost( opt.remArgs[0] ); // set the agent hostname
  79.     if (values[COMMUNITY] != null) // set the community if specified
  80.         table.setCommunity( values[COMMUNITY] );
  81.     try { // set the timeout/retries/port parameters, if specified
  82.         if (values[PORT] != null) 
  83.             table.setTargetPort( Integer.parseInt(values[PORT]) );
  84.         if (values[RETRIES] != null) 
  85.             table.setRetries( Integer.parseInt(values[RETRIES]) );
  86.         if (values[TIMEOUT] != null) 
  87.             table.setTimeout( Integer.parseInt(values[TIMEOUT]) );
  88.     } catch (NumberFormatException ex) {
  89.         System.err.println("Invalid Integer Argument "+ex);
  90.     }
  91.     if(table.getSnmpVersion() == table.VERSION3) {
  92.         if (values[USER_NAME] != null) 
  93.             table.setPrincipal(values[USER_NAME]);
  94.         if (values[AUTH_PROTOCOL] != null) {
  95.             //System.out.println("authProtocol = " + authProtocol);
  96.             authProtocol = values[AUTH_PROTOCOL];
  97.         }
  98.         if(authProtocol.equals("SHA"))
  99.             table.setAuthProtocol(SnmpTarget.SHA_AUTH);
  100.         else if(authProtocol.equals("MD5"))
  101.             table.setAuthProtocol(SnmpTarget.MD5_AUTH);
  102.         else
  103.             table.setAuthProtocol(SnmpTarget.NO_AUTH);
  104.         if (values[AUTH_PASSWORD] != null) 
  105.             table.setAuthPassword(values[AUTH_PASSWORD]);
  106.         if (values[PRIV_PASSWORD] != null)
  107.             table.setPrivPassword(values[PRIV_PASSWORD]);
  108. if(values[CONTEXT_NAME]!= null)
  109. table.setContextName(values[CONTEXT_NAME]);
  110. if(values[CONTEXT_ID]!= null)
  111. table.setContextID(values[CONTEXT_ID]);
  112.         }
  113.     if (opt.remArgs[2] != null) try { // Load the MIB files 
  114.         System.out.println("Loading MIBs: "+opt.remArgs[2]);
  115.         table.loadMibs(opt.remArgs[2]);
  116.         System.out.println("Done.");
  117.     } catch (Exception ex) {
  118.         System.err.println("Error loading MIBs: "+ex);
  119.     }
  120. if(table.getSnmpVersion() == table.VERSION3){
  121. table.create_v3_tables();
  122. }
  123. if (values[DEBUG].equals("Set"))
  124.     {
  125.         table.setDebug(true);
  126.     }  
  127.     // instantiate this class to receive table events, and register it
  128.     getSnmpTable gettable = new getSnmpTable();
  129.     table.addSnmpTableListener(gettable);
  130. // Set the table OID in SnmpTable.  Once specified,
  131.     // SnmpTable will automatically get the data and send table events 
  132.     try { 
  133.         table.setTableOID( opt.remArgs[1] );
  134.     } catch (Exception ex) {
  135.         System.err.println("Invalid table OID: "+ex);
  136.         System.exit(1);
  137.     }
  138.     System.out.println("Getting table.  Table items:");
  139.     }
  140.     /* This is the listener method which is notified of table changes **/
  141.     public void tableChanged(SnmpTableEvent e) {
  142.     SnmpTable table = (SnmpTable)e.getSource();
  143.     if( e.isEndOfTable() || e.getType() == 2){
  144.         if (table.getRowCount() == 0)  // no rows and we're being notified
  145.             System.err.println(table.getErrorString());
  146.         return;
  147.     }
  148.     StringBuffer sb = new StringBuffer();
  149.         
  150.     if (e.getFirstRow() == 0) {  // we're being notified of first row
  151.       for (int i=0;i<table.getColumnCount();i++)  // print column names
  152.         sb.append(table.getColumnName(i)+" t");
  153.       System.out.println(sb.toString());
  154.     }
  155.     // print the rows we're getting
  156.     sb = new StringBuffer();
  157.     for (int j=e.getFirstRow();j<=e.getLastRow();j++) { 
  158.         for (int i=0;i<table.getColumnCount();i++) 
  159.             sb.append(table.getValueAt(j,i)+" t");
  160.     }
  161.     System.out.println(sb.toString());
  162.     }
  163. }