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

SNMP编程

开发平台:

C/C++

  1. /* $Id: count_async_gets.src,v 1.4.2.5 2009/01/28 13:20:25 tmanoj Exp $ */
  2. /*
  3.  * @(#)count_async_gets.java
  4.  * Copyright (c) 1996-2009 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.  *
  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.  * 
  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.  * [-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. {
  57.     public static void main(String args[])
  58.     {
  59.         // Take care of getting options
  60.         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] [-pp privProtocol(DES/AES-128/AES-192/AES-256/3DES)] [-n contextName] [-i contextID] host OID [OID] ...";
  61.         String options[] = {"-d", "-c",  "-wc", "-p", "-r", "-t", "-m", "-v",
  62.             "-u", "-a", "-w", "-s", "-n", "-i", 
  63.             "-DB_driver", "-DB_url", "-DB_username", "-DB_password", "-pp"};
  64.         String values[] = { "None", null, null, null, null, null, "None",
  65.             null, null, null, null, null, null, null,
  66.             null, null, null, null, null  };       
  67.         ParseOptions opt = new ParseOptions(args,options,values, usage);
  68.         if (opt.remArgs.length<2)
  69.         {
  70.             opt.usage_error();
  71.         }
  72.         // Start SNMP API
  73.         SnmpAPI api = new SnmpAPI();
  74.         if (values[0].equals("Set"))
  75.         {
  76.             api.setDebug( true );
  77.         }
  78.         // Open session and set remote host & port if needed,
  79.         SnmpSession session = new SnmpSession(api);
  80.         
  81.         int PORT = 3;
  82.                 
  83.                 SnmpPDU pdu = new SnmpPDU();
  84.                 UDPProtocolOptions ses_opt = new UDPProtocolOptions();
  85.                 ses_opt.setRemoteHost(opt.remArgs[0]);
  86.                 if(values[PORT] != null)
  87.                 {
  88.                     try
  89.                     {
  90.                         ses_opt.setRemotePort(Integer.parseInt(values[PORT]));
  91.                     }
  92.                     catch(Exception exp)
  93.                     {
  94.                         System.out.println("Invalid port: " + values[PORT]);
  95.                         System.exit(1);
  96.                     }
  97.                 }
  98.         pdu.setProtocolOptions(ses_opt);
  99.         SetValues setVal = new SetValues( session, values ); 
  100.         if(setVal.usage_error)
  101.         {
  102.             opt.usage_error();
  103.         }
  104.        
  105.         
  106.         // Build get request PDU
  107.         // SnmpPDU pdu = new SnmpPDU();
  108.         pdu.setCommand( SnmpAPI.GET_REQ_MSG );
  109.         //add OIDs
  110.         for (int i=1;i<opt.remArgs.length;i++)
  111.         {
  112.             SnmpOID oid = new SnmpOID(opt.remArgs[i]);
  113.             if (oid.toValue() == null)
  114.             { 
  115.                 System.err.println("Invalid OID argument: " + opt.remArgs[i]);
  116.                 System.exit(1);
  117.             }
  118.             else
  119.             {
  120.                 pdu.addNull(oid);
  121.             }
  122.         }
  123.     
  124.         try
  125.         {
  126.             count_async_gets rec = new count_async_gets();
  127.             rec.rlastd = System.currentTimeMillis();
  128.             session.addSnmpClient( rec );
  129.             session.open();
  130.         }
  131.         catch (SnmpException e)
  132.         {
  133.             System.err.println("Open session: "+e.getMessage());
  134.             System.exit(1);
  135.         }
  136.     
  137.         if(session.getVersion()==SnmpAPI.SNMP_VERSION_3)
  138.         {
  139.             pdu.setUserName(setVal.userName.getBytes());
  140.             try
  141.             {
  142.                 USMUtils.init_v3_parameters(
  143.                     setVal.userName,
  144.     null,
  145.                     setVal.authProtocol,
  146.                     setVal.authPassword,
  147.                     setVal.privPassword,
  148.                     ses_opt,
  149.                     session,
  150.     false,
  151.     setVal.privProtocol);
  152.             }
  153.             catch(Exception exp)
  154.             {
  155.                 System.out.println(exp.getMessage());
  156.                 System.exit(1);
  157.             }
  158.             pdu.setContextName(setVal.contextName.getBytes());
  159.             pdu.setContextID(setVal.contextID.getBytes());
  160.         }
  161.         int count=0;
  162.         long lastd = System.currentTimeMillis();
  163.         while (true)
  164.         {
  165.             try
  166.             {
  167.                 session.send(pdu);
  168.                 if (++count >= 1000)
  169.                 {
  170.                     long date = System.currentTimeMillis();
  171.                     System.out.println("1,000 Requests Sent at: "
  172.                     + (count*1000/(date-lastd)) + " per second");
  173.                     count = 0;
  174.                     lastd = date;        
  175.                 }
  176.             }
  177.             catch (SnmpException e)
  178.             {
  179.                 System.err.println("Sending PDU"+e.getMessage());
  180.                 System.exit(1);
  181.             }
  182.         }
  183.     }
  184.     int rcount=0;
  185.     long rlastd;
  186. /** The callback for incoming PDUs */
  187.     public boolean callback(SnmpSession session, SnmpPDU npdu, int reqid)
  188.     {
  189.         if (npdu == null)  // timeout
  190.         {
  191.             return true;
  192.         }
  193.         if(npdu.getVersion() == SnmpAPI.SNMP_VERSION_1)
  194.         {
  195.             if (npdu.getErrstat() == 0)
  196.             {
  197.                 rcount++;
  198.             }
  199.             else
  200.             {
  201.                 System.out.println("Error Indication in response: " +
  202.                 SnmpException.exceptionString((byte)npdu.getErrstat()) + 
  203.                 "nErrindex: " + npdu.getErrindex());
  204.             }
  205.         }
  206.         else if((npdu.getVersion() == SnmpAPI.SNMP_VERSION_2C) || (npdu.getVersion() == SnmpAPI.SNMP_VERSION_3))
  207.         {
  208.             if (npdu.getErrstat() != 0) 
  209.             {
  210.                 System.out.println("Error Indication in response: " +
  211.                 SnmpException.exceptionString((byte)npdu.getErrstat()) + 
  212.                 "nErrindex: " + npdu.getErrindex());
  213.             }
  214.             else
  215.             {
  216.                 rcount++;
  217.             }
  218.         }
  219.         else
  220.         {
  221.             System.out.println("Invalid Version Number");
  222.         }
  223.         if (rcount >= 1000)
  224.         {
  225.             long date = System.currentTimeMillis();
  226.             System.out.println("1,000 Requests received at: "
  227.                         + (rcount*1000/(date-rlastd)) + " per second");
  228.             rcount = 0;
  229.             rlastd = date;
  230.         }
  231.         return true;
  232.     }
  233.     /** We need to implement the other methods in the SnmpClient interface */
  234.     public void debugPrint(String s)
  235.     {
  236.         System.err.println(s);
  237.     }
  238.   
  239.     public boolean authenticate(SnmpPDU pdu, String community)
  240.     {
  241.         return (pdu.getCommunity().equals(community));
  242.     }
  243. }