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

SNMP编程

开发平台:

C/C++

  1. /* $Id: count_async_gets.src,v 1.4.2.7 2009/01/28 13:01:35 prathika 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] -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.  *
  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.  * 
  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]  [-pp privProtocol(DES/AES-128/AES-192/AES-256/3DES)] [-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.  * [-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.  * [-pp]<privProtocol> - The privacy Protocol(DES/AES-128/AES-192/AES-256/3DES).
  47.  * [-n] <contextName>  - The contextName to be used for the v3 pdu.
  48.  * [-i] <contextID>    - The contextID to be used for the v3 pdu.
  49.  * host Mandatory      - The RemoteHost (agent).Format (string without double qoutes/IpAddress).
  50.  * OID  Mandatory      - Give multiple no. of Object Identifiers.
  51.  */
  52. import java.lang.*;
  53. import java.util.*;
  54. import java.net.*;
  55. import com.adventnet.snmp.snmp2.*;
  56. import com.adventnet.snmp.mibs.*;
  57. import com.adventnet.snmp.snmp2.usm.*;
  58. public class count_async_gets implements SnmpClient 
  59. {
  60.     public static void main(String args[]) 
  61.     {
  62.         
  63.         // Take care of getting options        
  64.  
  65.         String usage = 
  66.             "ncount_async_gets [-d] [-v version(v1,v2,v3)] [-c community]n"+
  67.             "[-p port] -m [MIB_files] [-u user] [-a auth_protocol]n"+
  68.             "[-w auth_password] [-s priv_password] [-n contextName]n"+
  69.             "[-i contextID][-pp privProtocol(DES/AES-128/AES-192/AES-256/3DES)] host OID [OID] ...";
  70.         String options[] = 
  71.             { 
  72.                 "-d", "-c",  "-wc", "-p", "-r", "-t", "-m", "-v", "-u", "-a", "-w", "-s", "-n", "-i", "-pp"
  73.             };
  74.         String values[] = 
  75.             {
  76.                 "None", null, null, null, null, null, null, null, null, null, null, null, null, null, null 
  77.             };       
  78.         ParseOptions opt = new ParseOptions(args,options,values, usage);
  79.         if (opt.remArgs.length<2) 
  80.         {
  81.             opt.usage_error();
  82.         }   
  83.    
  84.         // Start SNMP API
  85.         SnmpAPI api;
  86.         api = new SnmpAPI();
  87.         
  88.         if (values[0].equals("Set"))
  89.         {
  90.             api.setDebug( true );
  91.         }   
  92.         // Open session 
  93.         SnmpSession session = new SnmpSession(api);
  94.            
  95.        int PORT = 3;
  96.         UDPProtocolOptions ses_opt = new UDPProtocolOptions();
  97.         ses_opt.setRemoteHost(opt.remArgs[0]);
  98.         if(values[PORT] != null)
  99.         {
  100.           try
  101.           {
  102.               ses_opt.setRemotePort(Integer.parseInt(values[PORT]));
  103.           }
  104.           catch(Exception exp)
  105.           {
  106.               System.out.println("Invalid port: " + values[PORT]);
  107.               System.exit(1);
  108.           }
  109.         }
  110.         session.setProtocolOptions(ses_opt);
  111. SetValues setVal = new SetValues( session, values ); 
  112.         if(setVal.usage_error)
  113.         {
  114.             opt.usage_error();
  115.         }
  116.         // Build get request PDU
  117.         SnmpPDU pdu = new SnmpPDU();
  118.         pdu.setCommand( SnmpAPI.GET_REQ_MSG );
  119.         // Loading MIBS 
  120.         MibOperations mibOps = new MibOperations();
  121.         // To load MIBs from compiled file
  122.         mibOps.setLoadFromCompiledMibs(true);
  123.         if (values[6] != null)
  124.         {
  125.             try 
  126.             {
  127.                 System.err.println("Loading MIBs: "+values[6]);
  128.                 mibOps.loadMibModules(values[6]);
  129.             }
  130.             catch (Exception ex) 
  131.             {
  132.                 System.err.println("Error loading MIBs: "+ex);
  133.             }
  134.         }
  135.         
  136.         //add OIDs
  137.         for (int i=1;i<opt.remArgs.length;i++) 
  138.         {
  139.             SnmpOID oid = new SnmpOID(opt.remArgs[i]);
  140.             if (oid.toValue() == null) 
  141.             {
  142.                 System.err.println("Invalid OID argument: " + opt.remArgs[i]);
  143.             }   
  144.             else
  145.             {
  146.                 pdu.addNull(oid);
  147.             }   
  148.         }
  149.     
  150.         try 
  151.         {
  152.             count_async_gets rec = new count_async_gets();
  153.             rec.rlastd = System.currentTimeMillis();
  154.             session.addSnmpClient( rec );
  155.             session.open();
  156.         }
  157.         catch (SnmpException e) 
  158.         {
  159.             System.err.println("Open session: "+e.getMessage());
  160.         }
  161.     
  162.         if(session.getVersion()==SnmpAPI.SNMP_VERSION_3) 
  163.         {
  164.             pdu.setUserName(setVal.userName.getBytes());
  165.             try
  166.             {
  167. USMUtils.init_v3_parameters(
  168. setVal.userName,
  169. null,
  170. setVal.authProtocol,
  171. setVal.authPassword,
  172. setVal.privPassword,
  173. ses_opt,
  174. session,
  175. false,
  176. setVal.privProtocol);
  177.               
  178.             }
  179.             catch(Exception e)
  180.             {
  181.                 System.out.println(e.getMessage());
  182.                 System.exit(0);
  183.             }
  184.             pdu.setContextName(setVal.contextName.getBytes());
  185.             pdu.setContextID(setVal.contextID.getBytes());
  186.         }
  187.         int count=0;
  188.         long lastd = System.currentTimeMillis();
  189.         while (true)
  190.         {
  191.             try 
  192.             {
  193.                 session.send(pdu);
  194.                 if (++count >= 1000) 
  195.                 {
  196.                     long date = System.currentTimeMillis();
  197.                     System.out.println("1,000 Requests Sent at: "
  198.                      + (count*1000/(date-lastd)) + " per second");
  199.                     count = 0;
  200.                     lastd = date;        
  201.                 }
  202.             } 
  203.             catch (SnmpException e) 
  204.             {
  205.                 System.err.println("Sending PDU"+e.getMessage());
  206.             }
  207.         }   
  208.     }
  209.     int rcount=0;
  210.     long rlastd;
  211.     /** The callback for incoming PDUs */
  212.     public boolean callback(SnmpSession session, SnmpPDU npdu, int reqid) 
  213.     {
  214.         if (npdu == null)  // timeout
  215.         { 
  216.             return true;
  217.         }
  218.       if(npdu.getVersion() == SnmpAPI.SNMP_VERSION_1) {
  219.           
  220.         if (npdu.getErrstat() == 0)
  221.         {
  222.             rcount++;
  223.         }   
  224.         else
  225.         {
  226.             System.out.println("Error Indication in response: " +
  227.               SnmpException.exceptionString((byte)npdu.getErrstat()) + 
  228.               "nErrindex: " + npdu.getErrindex());
  229.         }         
  230.       } else if((npdu.getVersion() == SnmpAPI.SNMP_VERSION_2C) || (npdu.getVersion() == SnmpAPI.SNMP_VERSION_3)) {
  231.         if (npdu.getErrstat() != 0) 
  232.         {
  233.               System.out.println("Error Indication in response: " +
  234.                   SnmpException.exceptionString((byte)npdu.getErrstat()) + 
  235.                   "nErrindex: " + npdu.getErrindex());
  236.         }         
  237.         else
  238.         {
  239.             rcount++;
  240.         }   
  241.     }
  242.     else
  243.     {
  244.         System.out.println("Invalid Version Number");
  245.     }
  246.      
  247.     if (rcount >= 1000) 
  248.     {
  249.         long date = System.currentTimeMillis();
  250.         System.out.println("1,000 Requests received at: "
  251.                  + (rcount*1000/(date-rlastd)) + " per second");
  252.         rcount = 0;
  253.         rlastd = date;
  254.     }
  255.     return true;
  256. }
  257.     /** We need to implement the other methods in the SnmpClient interface */
  258.     public void debugPrint(String s) 
  259.     {
  260.         System.err.println(s);
  261.     }
  262.   
  263.     public boolean authenticate(SnmpPDU pdu, String community) 
  264.     {
  265.         return (pdu.getCommunity().equals(community));
  266.     }
  267. }