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

SNMP编程

开发平台:

C/C++

  1. /* $Id: count_async_gets.src,v 1.4 2002/09/09 05:43:43 pushpar Exp $ */
  2. /*
  3.  * @(#)count_async_gets.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 program to explain how to write an application to do
  9.  * the basic SNMP operation GET using com.adventnet.snmp.snmp2 package of
  10.  * AdventNetSNMP2 api.
  11.  * The user could run this application by giving any one of the following usage.
  12.  *  
  13.  * java count_async_gets [options] hostname oid ...
  14.  *
  15.  * v1 request:
  16.  * java count_async_gets [-d] [-c community] [-p port] -m [MIB_files] host OID [OID] ...
  17.  * e.g. 
  18.  * java count_async_gets -p 161 -c public -m ../../../mibs/RFC1213-MIB adventnet 1.1.0 1.2.0
  19.  *<img SRC="images/v2candv3only.jpg" ALT="v2c and v3 only">
  20.  * v2c request:
  21.  * java count_async_gets [-d] [-v version(v1,v2)] [-c community] [-p port] -m [MIB_files] host OID [OID] ...
  22.  * e.g. For v1 request give -v v1 or drop the option -v .
  23.  * java count_async_gets -p 161 -v v2 -c public -m ../../../RFC1213-MIB adventnet 1.1.0 1.2.0
  24.  *<img SRC="images/v3only.jpg" ALT="v3 only"> 
  25.  * v3 request:
  26.  * java count_async_gets [-d] [-v version(v1,v2,v3)] [-c community] [-p port] -m [MIB_files] [-u user] [-a auth_protocol] [-w auth_password] [-s priv_password] [-n contextName] [-i contextID] host OID [OID] ...
  27.  * e.g.
  28.  * java count_async_gets -m ../../../mibs/RFC1213-MIB -v v3 -u initial2 -w initial2Pass -a MD5 10.3.2.120 1.2.0 
  29.  * 
  30.  * If the oid is not starting with a dot (.) it will be prefixed by .1.3.6.1.2.1 .
  31.  * So the entire OID of 1.1.0 will become .1.3.6.1.2.1.1.1.0 . You can also
  32.  * give the entire OID .
  33.  *
  34.  * Options:
  35.  * [-d]                - Debug output. By default off.
  36.  * [-c] <community>    - community String. By default "public".
  37.  * [-p] <port>         - remote port no. By default 161.
  38.  * [-t] <Timeout>      - Timeout. By default 5000ms.
  39.  * [-r] <Retries>      - Retries. By default 0.
  40.  * [-m] <MIBfile>      - MIB files.To load multiple mibs give within double quotes files seperated by a blank space.             
  41.  *<img SRC="images/v3only.jpg" ALT="v3 only"> [-v] <version>      - version(v1 / v2 / v3). By default v1.
  42.  * [-u] <username>     - The v3 principal/userName
  43.  * [-a] <autProtocol>  - The authProtocol(MD5/SHA). Mandatory if authPassword is specified
  44.  * [-w] <authPassword> - The authentication password.
  45.  * [-s] <privPassword> - The privacy protocol password. Must be accompanied with auth password and authProtocol fields.
  46.  * [-n] <contextName>  - The contextName to be used for the v3 pdu.
  47.  * [-i] <contextID>    - The contextID to be used for the v3 pdu.
  48.  * host Mandatory      - The RemoteHost (agent).Format (string without double qoutes/IpAddress).
  49.  * OID  Mandatory      - Give multiple no. of Object Identifiers.
  50.  */
  51. import java.lang.*;
  52. import java.util.*;
  53. import java.net.*;
  54. import com.adventnet.snmp.snmp2.*;
  55. import com.adventnet.snmp.mibs.*;
  56. import com.adventnet.snmp.snmp2.usm.*;
  57. public class count_async_gets implements SnmpClient {
  58.     public static void main(String args[]) {
  59.         
  60.         // Take care of getting options        
  61.         String usage = "count_async_gets [-d] [-v version(v1,v2,v3)] [-c community] [-p port] -m [MIB_files] [-u user] [-a auth_protocol] [-w auth_password] [-s priv_password] [-n contextName] [-i contextID] host OID [OID] ...";
  62.         String options[] = { "-d", "-c",  "-wc", "-p", "-r", "-t", "-m", "-v", "-u", "-a", "-w", "-s", "-n", "-i"};
  63.         String values[] = { "None", null, null, null, null, null, null, null, null, null, null, null, null, null };       
  64.         ParseOptions opt = new ParseOptions(args,options,values, usage);
  65.         if (opt.remArgs.length<2) opt.usage_error();
  66.    
  67.         // Start SNMP API
  68.         SnmpAPI api;
  69.         api = new SnmpAPI();
  70.         if (values[0].equals("Set")) api.setDebug( true );
  71.         // Open session and set remote host & port if needed,
  72.         SnmpSession session = new SnmpSession(api);
  73.         // set remote Host 
  74.         session.setPeername( opt.remArgs[0] );
  75.         SetValues setVal = new SetValues( session, values ); 
  76.         if(setVal.usage_error) opt.usage_error();
  77.        
  78.         // Build get request PDU
  79.         SnmpPDU pdu = new SnmpPDU();
  80.         pdu.setCommand( SnmpAPI.GET_REQ_MSG );
  81.         // Loading MIBS 
  82.         MibOperations mibOps = new MibOperations();
  83.   // To load MIBs from compiled file
  84.   mibOps.setLoadFromCompiledMibs(true);
  85.         if (values[6] != null) try {
  86.             System.err.println("Loading MIBs: "+values[6]);
  87.             mibOps.loadMibModules(values[6]);
  88.         } catch (Exception ex) {
  89.             System.err.println("Error loading MIBs: "+ex);
  90.         }
  91.         //add OIDs
  92.         for (int i=1;i<opt.remArgs.length;i++) {
  93.             SnmpOID oid = new SnmpOID(opt.remArgs[i]);
  94.             if (oid.toValue() == null) 
  95.                 System.err.println("Invalid OID argument: " + opt.remArgs[i]);
  96.              else pdu.addNull(oid);
  97.         }
  98.     
  99.         try {
  100.             count_async_gets rec = new count_async_gets();
  101.             rec.rlastd = System.currentTimeMillis();
  102.             session.addSnmpClient( rec );
  103.             session.open();
  104.         } catch (SnmpException e) {
  105.             System.err.println("Open session: "+e.getMessage());
  106.         }
  107.     
  108.         if(session.getVersion()==SnmpAPI.SNMP_VERSION_3) {
  109. pdu.setUserName(setVal.userName.getBytes());
  110.             USMUtils.init_v3_params(setVal.userName, setVal.authProtocol, setVal.authPassword, setVal.privPassword, session.getPeername(),session.getRemotePort(),session);
  111.             pdu.setContextName(setVal.contextName.getBytes());
  112.             pdu.setContextID(setVal.contextID.getBytes());
  113.         }
  114.         int count=0;
  115.         long lastd = System.currentTimeMillis();
  116.         while (true)
  117.             try {
  118.             session.send(pdu);
  119.             if (++count >= 1000) {
  120.                 long date = System.currentTimeMillis();
  121.                 System.out.println("1,000 Requests Sent at: "
  122.                  + (count*1000/(date-lastd)) + " per second");
  123.             count = 0;
  124.             lastd = date;        
  125.             }
  126.             } catch (SnmpException e) {
  127.             System.err.println("Sending PDU"+e.getMessage());
  128.             }
  129.         }
  130.   int rcount=0;
  131.   long rlastd;
  132. /** The callback for incoming PDUs */
  133.   public boolean callback(SnmpSession session, SnmpPDU npdu, int reqid) {
  134.     
  135.       if (npdu == null) {  // timeout
  136.           return true;
  137.       }
  138.       if(npdu.getVersion() == SnmpAPI.SNMP_VERSION_1) {
  139.           if (npdu.getErrstat() == 0) rcount++;
  140.           else  System.out.println("Error Indication in response: " +
  141.               SnmpException.exceptionString((byte)npdu.getErrstat()) + 
  142.               "nErrindex: " + npdu.getErrindex());
  143.       } else if((npdu.getVersion() == SnmpAPI.SNMP_VERSION_2C) || (npdu.getVersion() == SnmpAPI.SNMP_VERSION_3)) {
  144.           if (npdu.getErrstat() != 0) 
  145.               System.out.println("Error Indication in response: " +
  146.                   SnmpException.exceptionString((byte)npdu.getErrstat()) + 
  147.                   "nErrindex: " + npdu.getErrindex());
  148.           else rcount++;
  149.      } else System.out.println("Invalid Version Number");
  150.      if (rcount >= 1000) {
  151.         long date = System.currentTimeMillis();
  152.         System.out.println("1,000 Requests received at: "
  153.                  + (rcount*1000/(date-rlastd)) + " per second");
  154.         rcount = 0;
  155.         rlastd = date;
  156.     }
  157.     return true;
  158.   }
  159.  /** We need to implement the other methods in the SnmpClient interface */
  160.   public void debugPrint(String s) {
  161.       System.err.println(s);
  162.   }
  163.   
  164.   public boolean authenticate(SnmpPDU pdu, String community) {
  165.       return (pdu.getCommunity().equals(community));
  166.   }
  167. }