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

SNMP编程

开发平台:

C/C++

  1. /* $Id: count_async_gets.src,v 1.4 2002/09/09 05:36:52 parasuraman 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] host OID [OID] ...
  17.  * e.g. 
  18.  * java count_async_gets -p 161 -c public 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] 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 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] [-u user] [-a auth_protocol] [-w auth_password] [-s priv_password] [-i contextName] host OID [OID] ...
  27.  * e.g.
  28.  * java count_async_gets -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.  *<img SRC="images/v3only.jpg" ALT="v3 only"> [-v] <version>      - version(v1 / v2 / v3). By default v1.
  41.  * [-u] <username>     - The v3 principal/userName
  42.  * [-a] <autProtocol>  - The authProtocol(MD5/SHA). Mandatory if authPassword is specified
  43.  * [-w] <authPassword> - The authentication password.
  44.  * [-s] <privPassword> - The privacy protocol password. Must be accompanied with auth password and authProtocol fields.
  45.  * [-n] <contextName>  - The contextName to be used for the v3 pdu.
  46.  * [-i] <contextID>    - The contextID to be used for the v3 pdu.
  47.  * host Mandatory      - The RemoteHost (agent).Format (string without double qoutes/IpAddress).
  48.  * OID  Mandatory      - Give multiple no. of Object Identifiers.
  49.  */
  50. import java.lang.*;
  51. import java.util.*;
  52. import java.net.*;
  53. import com.adventnet.snmp.snmp2.*;
  54. import com.adventnet.snmp.snmp2.usm.*;
  55. public class count_async_gets implements SnmpClient {
  56.     public static void main(String args[]) {
  57.         
  58.         // Take care of getting options
  59.         String usage = "count_async_gets [-d] [-v version(v1,v2,v3)] [-c community] [-p port] [-u user] [-a auth_protocol] [-w auth_password] [-s priv_password] [-n contextName] [-i contextID] host OID [OID] ...";
  60.         String options[] = { "-d", "-c", "-p", "-v", "-u", "-a", "-w", "-s", "-n", "-i"};
  61.         String values[] = { "None", null, null, null, null, null, "None", null, null, null, null, null, null, null };       
  62.         ParseOptions opt = new ParseOptions(args,options,values, usage);
  63.         if (opt.remArgs.length<2) opt.usage_error();
  64.    
  65.         // Start SNMP API
  66.         SnmpAPI api;
  67.         api = new SnmpAPI();
  68.         if (values[0].equals("Set")) api.setDebug( true );
  69.         // Open session and set remote host & port if needed,
  70.         SnmpSession session = new SnmpSession(api);
  71.         // set remote Host 
  72.         session.setPeername( opt.remArgs[0] );
  73.          SetValues setVal = new SetValues( session, values ); 
  74.         if(setVal.usage_error) opt.usage_error();
  75.        
  76.         // Build get request PDU
  77.         SnmpPDU pdu = new SnmpPDU();
  78.         pdu.setCommand( SnmpAPI.GET_REQ_MSG );
  79.         //add OIDs
  80.         for (int i=1;i<opt.remArgs.length;i++) {
  81.             SnmpOID oid = new SnmpOID(opt.remArgs[i]);
  82.             if (oid.toValue() == null) { 
  83.                 System.err.println("Invalid OID argument: " + opt.remArgs[i]);
  84. System.exit(1);
  85. }
  86.             else {
  87.     pdu.addNull(oid);
  88. }
  89.         }
  90.     
  91.         try {
  92.             count_async_gets rec = new count_async_gets();
  93.             rec.rlastd = System.currentTimeMillis();
  94.             session.addSnmpClient( rec );
  95.             session.open();
  96.         } catch (SnmpException e) {
  97.             System.err.println("Open session: "+e.getMessage());
  98. System.exit(1);
  99.         }
  100.     
  101.         if(session.getVersion()==SnmpAPI.SNMP_VERSION_3) {
  102. pdu.setUserName(setVal.userName.getBytes());
  103.             USMUtils.init_v3_params(setVal.userName, setVal.authProtocol, setVal.authPassword, setVal.privPassword, session.getPeername(),session.getRemotePort(),session);
  104.             pdu.setContextName(setVal.contextName.getBytes());
  105.             pdu.setContextID(setVal.contextID.getBytes());
  106.         }
  107.         int count=0;
  108.         long lastd = System.currentTimeMillis();
  109.         while (true)
  110.             try {
  111.             session.send(pdu);
  112.             if (++count >= 1000) {
  113.                 long date = System.currentTimeMillis();
  114.                 System.out.println("1,000 Requests Sent at: "
  115.                  + (count*1000/(date-lastd)) + " per second");
  116.             count = 0;
  117.             lastd = date;        
  118.             }
  119.             } catch (SnmpException e) {
  120.             System.err.println("Sending PDU"+e.getMessage());
  121. System.exit(1);
  122.             }
  123.         }
  124.   int rcount=0;
  125.   long rlastd;
  126. /** The callback for incoming PDUs */
  127.   public boolean callback(SnmpSession session, SnmpPDU npdu, int reqid) {
  128.     
  129.       if (npdu == null) {  // timeout
  130.           return true;
  131.       }
  132.       if(npdu.getVersion() == SnmpAPI.SNMP_VERSION_1) {
  133.           if (npdu.getErrstat() == 0) rcount++;
  134.           else  System.out.println("Error Indication in response: " +
  135.               SnmpException.exceptionString((byte)npdu.getErrstat()) + 
  136.               "nErrindex: " + npdu.getErrindex());
  137.       } else if((npdu.getVersion() == SnmpAPI.SNMP_VERSION_2C) || (npdu.getVersion() == SnmpAPI.SNMP_VERSION_3)) {
  138.           if (npdu.getErrstat() != 0) 
  139.               System.out.println("Error Indication in response: " +
  140.                   SnmpException.exceptionString((byte)npdu.getErrstat()) + 
  141.                   "nErrindex: " + npdu.getErrindex());
  142.           else rcount++;
  143.      } else System.out.println("Invalid Version Number");
  144.      if (rcount >= 1000) {
  145.         long date = System.currentTimeMillis();
  146.         System.out.println("1,000 Requests received at: "
  147.                  + (rcount*1000/(date-rlastd)) + " per second");
  148.         rcount = 0;
  149.         rlastd = date;
  150.     }
  151.     return true;
  152.   }
  153.  /** We need to implement the other methods in the SnmpClient interface */
  154.   public void debugPrint(String s) {
  155.       System.err.println(s);
  156.   }
  157.   
  158.   public boolean authenticate(SnmpPDU pdu, String community) {
  159.       return (pdu.getCommunity().equals(community));
  160.   }
  161. }