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

SNMP编程

开发平台:

C/C++

  1. /* $Id: rmitable.src,v 1.2 2001/10/04 12:42:37 ram Exp $ */
  2. /*
  3.  * @(#)rmitable.java
  4.  * Copyright (c) 1998 AdventNet, Inc. All Rights Reserved.
  5.  * Please read the 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.  * java rmitable [options] host tableoid ...
  14.  *<img SRC="images/v3only.jpg" ALT="v3 only"> v3 request:
  15.  * java rmitable [-SnmpServer hostName] [-v version(v1,v2,v3)] [-m MIB_files] [-c community] [-p port] [-t timeout] [-r retries] [-u user] [-a auth_protocol] [-w auth_password] [-s priv_password] [-i contextID] [-n contextName] host tableOID ...
  16.  * e.g. 
  17.  * java rmitable -v v3 -m ....mibsrfc1213-MIB -u user -a MD5 -w passwd localhost tcpConnTable
  18.  *
  19.  *<img SRC="images/v2candv3only.jpg" ALT="v2c and v3 only"> v2c request:
  20.  * java rmitable [-SnmpServer hostName] [-v version(v1,v2)] [-m MIB_files] [-c community] [-p port] [-t timeout] [-r retries] host OID [OID] ...
  21.  * e.g. 
  22.  * java rmitable -v v2 -m ....mibsrfc1213-MIB localhost tcpConnTable
  23.  *
  24.  * v1 request:
  25.  * java rmitable [-SnmpServer hostName] [-m MIB_files] [-c community] [-p port] [-t timeout] [-r retries] host OID [OID] ...
  26.  * e.g. 
  27.  * java rmitable -m ....mibsrfc1213-MIB localhost tcpConnTable
  28.  *
  29.  * Options:
  30.  * [-SnmpServer ] <hostName>      - SnmpServer SERVER option to specify the RMI server host.
  31.  * [-c] <community>    - community String. By default "public".
  32.  * [-p] <port>         - remote port no. By default 161.
  33.  * [-t] <Timeout>      - Timeout. By default 5000ms.
  34.  * [-r] <Retries>      - Retries. By default 0. 
  35.  * [-m] <MIBfile>      - MIB files.To load multiple mibs give within double quotes files seperated by a blank space.       
  36.  *<img SRC="images/v3only.jpg" ALT="v3 only"> [-v] <version>      - version(v1 / v2 / v3). By default v1.
  37.  * [-u] <username>     - The v3 principal/userName
  38.  * [-a] <autProtocol>  - The authProtocol(MD5/SHA). Mandatory if authPassword is specified
  39.  * [-w] <authPassword> - The authentication password.
  40.  * [-s] <privPassword> - The privacy protocol password. Must be accompanied with auth password and authProtocol fields.
  41.  * [-n] <contextName>  - The context to be used for the v3 pdu.
  42.  * [-i] <contextID>    - The contextID to be used for the v3 pdu.
  43.  * host Mandatory      - The RemoteHost (agent).Format (string without double qoutes/IpAddress).
  44.  * tableOID  Mandatory      - Give multiple no. of table Object Identifiers.
  45.  **/
  46. import com.adventnet.snmp.rmi.*;
  47. import com.adventnet.snmp.mibs.*;
  48. import com.adventnet.snmp.snmp2.*;
  49. import java.rmi.*;
  50. import java.util.*;
  51. public class rmitable implements SnmpTableListener {
  52.     static SnmpTable table;    static final int USM_SECURITY_MODEL = 3;
  53.     public static void main(String args[]) {
  54.     // Take care of getting options
  55.         String usage = "rmitable [-SnmpServer hostName] [-v version(v1,v2,v3)] [-m MIB_files] [-c community] [-p port] [-t timeout] [-r retries] [-u user] [-a auth_protocol] [-w auth_password] [-s priv_password] [-i contextID] [-n contextName] host tableOID ...";
  56.         String options[] = { "-SnmpServer", "-c", "-p", "-r", "-t", "-m", "-v", "-u", "-a", "-w", "-s" ,"-i","-n"};
  57.         String values[] = { null, null, null, null, null, null, null, null,null,null,null,null,null};
  58.         String userName = new String("");
  59.         String authProtocol = new String("NO_AUTH");
  60.         String authPassword = new String ("");
  61.         String privPassword = new String ("");
  62.         String contextName = new String ("");
  63.         String contextID = new String ("");
  64.     ParseOptions opt = new ParseOptions(args,options,values, usage);
  65.     // check for at least hostname and one OID in remaining arguments
  66.     if (opt.remArgs.length<2) opt.usage_error();
  67.     com.adventnet.snmp.rmi.SnmpFactory factory = null;
  68.     com.adventnet.snmp.rmi.SnmpTarget target = null;
  69.     try {
  70.         System.out.println( "Performing lookup with RMI Registry ... " );
  71.         if(values[0] != null)   
  72.         factory = (com.adventnet.snmp.rmi.SnmpFactory) 
  73.             Naming.lookup( "rmi://" + values[0] + "/AdventnetSnmpFactory" );
  74.         else 
  75.         factory = (com.adventnet.snmp.rmi.SnmpFactory) 
  76.             Naming.lookup( "rmi:///AdventnetSnmpFactory" );
  77.         System.out.println( "Lookup succeeded " );
  78.         // Get a SnmpTable object
  79.         table = factory.createTable();
  80.         if(values[6] != null) {  // if SNMP version is specified, set it
  81.         if(values[6].equals("v1"))
  82.             table.setSnmpVersion( com.adventnet.snmp.beans.SnmpTarget.VERSION1 ) ;
  83.         else if(values[6].equals("v2"))
  84.             table.setSnmpVersion( com.adventnet.snmp.beans.SnmpTarget.VERSION2C );
  85.         else if(values[6].equals("v3"))
  86.             table.setSnmpVersion( com.adventnet.snmp.beans.SnmpTarget.VERSION3 );
  87.         else {
  88.             System.out.println("Invalid Version Number"); 
  89.             System.exit(1);
  90.         }
  91.         }
  92.         table.setTargetHost( opt.remArgs[0] );  // set the agent hostname
  93.         if (values[1] != null) // set the community if specified
  94.         table.setCommunity( values[1] );
  95.         try { // set the timeout/retries/port parameters, if specified
  96.         if (values[2] != null)
  97.             table.setTargetPort( Integer.parseInt(values[2]) );
  98.         if (values[3] != null)
  99.             table.setRetries( Integer.parseInt(values[3]) );
  100.         if (values[4] != null)
  101.             table.setTimeout( Integer.parseInt(values[4]) );
  102.         if (values[7] != null)
  103.             userName = values[7];
  104.         if (values[8] != null) 
  105.             authProtocol = values[8];
  106.         if (values[9] != null)
  107.         authPassword = values[9];
  108.         if (values[10] != null) 
  109.         privPassword = values[10];
  110.         if (values[11] != null) 
  111.         contextID  = values[11];
  112.         if (values[12] != null) 
  113.         contextName  = values[12];
  114.                 } catch (NumberFormatException ex) {
  115.         System.err.println("Invalid Integer Argument "+ex);
  116.         }
  117.         if(table.getSnmpVersion() == com.adventnet.snmp.beans.SnmpTarget.VERSION3) {        
  118.         table.setPrincipal(userName);
  119.         table.setAuthPassword(authPassword);
  120.         table.setPrivPassword(privPassword);
  121.         if(authProtocol.equals("SHA"))
  122.         table.setAuthProtocol(com.adventnet.snmp.beans.SnmpTarget.SHA_AUTH);
  123.         else
  124.         table.setAuthProtocol(com.adventnet.snmp.beans.SnmpTarget.MD5_AUTH);
  125. table.setContextName(contextName);
  126. table.setContextID(contextID); // Create the SNMPv3 tables.
  127. table.create_v3_tables();
  128. }
  129.         if (values[5] != null)     try { // Load the MIB files 
  130.         System.out.println("Loading MIBs: "+values[5]);
  131.         table.loadMibs(values[5]);
  132.         System.out.println("Done.");
  133.         } catch (Exception ex) {
  134.         System.err.println("Error loading MIBs: "+ex);
  135.         }
  136.    
  137.         // instantiate this class to receive table events, and register it
  138.         rmitable gettable = new rmitable();
  139.         java.rmi.server.UnicastRemoteObject.exportObject(gettable);
  140.         table.addSnmpTableListener(gettable);
  141.         // Set the table OID in SnmpTable.  Once specified,
  142.         // SnmpTable will automatically get the data and send table events 
  143.         try { 
  144.         table.setTableOID( opt.remArgs[1] );
  145.         } catch (Exception ex) {
  146.         System.err.println("Invalid table OID: "+ex);
  147.         System.exit(1);
  148.         }
  149.         System.out.println("Getting table.  Table items:");
  150.         try { Thread.sleep(30000); }  // allow some time to get all rows
  151.         catch (InterruptedException ex) {}  
  152.     } catch (Exception ex) {
  153.         System.err.println("Failed: "+ ex);
  154.         ex.printStackTrace();
  155.     }
  156.     System.exit(0);
  157.     }
  158.     /* This is the listener method which is notified of table changes **/
  159.     public void tableChanged(com.adventnet.snmp.beans.SnmpTableEvent e) {
  160.     try {
  161.         StringBuffer sb = new StringBuffer();
  162.         
  163.         if (e.getFirstRow() == 0) {  // we're being notified of first row
  164.         for (int i=0;i<table.getColumnCount();i++)  // print column names
  165.             sb.append(table.getColumnName(i)+" t");
  166.         System.out.println(sb.toString());
  167.         }
  168.         if (table.getRowCount() == 0) { // no rows and we're being notified
  169.         System.err.println("Request failed or timed out. n"+
  170.                    table.getErrorString());
  171.         } else { // print the rows we're getting
  172.         sb = new StringBuffer();
  173.         for (int j=e.getFirstRow();j<=e.getLastRow();j++) { 
  174.             for (int i=0;i<table.getColumnCount();i++) 
  175.             sb.append(table.getValueAt(j,i)+" t");
  176.         }
  177.         System.out.println(sb.toString());
  178.         }
  179.     } catch (Exception ex) {
  180.         System.err.println("Failed: "+ ex);
  181.         ex.printStackTrace();
  182.     }
  183.     }
  184. }