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

SNMP编程

开发平台:

C/C++

  1. /* $Id: snmpasyncget.src,v 1.6.2.6 2009/01/28 13:21:12 tmanoj Exp $ */
  2. /*
  3.  * @(#)snmpasyncget.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.  * an asynchronous SNMP GET operation 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 snmpasyncget [options] hostname oid ...
  14.  *
  15.  * v1 request:
  16.  * java snmpasyncget [-d] [-c community] [-p port] [-t timeout] [-r retries] host OID [OID] ...
  17.  * e.g. 
  18.  * java snmpasyncget -p 161 -c public adventnet 1.1.0 1.2.0
  19.  *
  20.  * v2c request:
  21.  * java snmpasyncget [-d] [-v version(v1,v2)] [-c community] [-p port] [-t timeout] [-r retries] host OID [OID] ...
  22.  * e.g. For v1 request give -v v1 or drop the option -v .
  23.  * java snmpasyncget -p 161 -v v2 -c public adventnet 1.1.0 1.2.0
  24.  * 
  25.  * v3 request:
  26.  * java snmpasyncget [-d] [-v version(v1,v2,v3)] [-c community] [-p port] [-r retries] [-t timeout] [-u user] [-a auth_protocol] [-w auth_password] [-s priv_password] [-i context_id] host OID [OID] ...
  27.  * e.g.
  28.  * java snmpasyncget -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.  * [-pp]<privProtocol> - The privProtocol((DES/AES-128/AES-192/AES-256/3DES).
  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.snmp2.usm.*;
  56. public class snmpasyncget implements SnmpClient
  57. {
  58.     SnmpAPI api=null;
  59.     SnmpSession session =null; 
  60.     boolean getFinished = false;
  61.     public static void main(String args[])
  62.     {
  63.         // Take care of getting options
  64.         String usage =
  65.             "snmpasyncget [-d] [-v version(v1,v2,v3)] [-c community]n" +
  66.             "[-p port] [-r retries] [-t timeout] [-u user]n" +
  67.             "[-a auth_protocol] [-w auth_password] [-s priv_password]n" +
  68.             "[-n contextName] [-i contextID]n" +
  69.             "[-DB_driver database_driver]n" +
  70.             "[-DB_url database_url]n" +
  71.             "[-DB_username database_username]n" +
  72.             "[-DB_password database_password]n" +
  73. "[-pp privProtocol(DES/AES-128/AES-192/AES-256/3DES)]n" +
  74. "host OID [OID] ...n";
  75.         String options[] = 
  76.         {
  77.             "-d", "-c",  "-wc", "-p", "-r", "-t", "-m", "-v",
  78.             "-u", "-a", "-w", "-s", "-n", "-i", 
  79.             "-DB_driver", "-DB_url", "-DB_username", "-DB_password", "-pp"
  80.         };
  81.         String values[] = 
  82.         {
  83.             "None", null, null, null, null, null, "None",
  84.             null, null, null, null, null, null, null,
  85.             null, null, null, null, null
  86.         };
  87.         ParseOptions opt = new ParseOptions(args,options,values, usage);
  88.         if (opt.remArgs.length<2)
  89.         {
  90.             opt.usage_error();
  91.         }
  92.         String driver = values[14];
  93.         String url = values[15];
  94.         String username = values[16];
  95.         String password = values[17];
  96.         snmpasyncget snmpobj = new snmpasyncget ();
  97.         // Start SNMP API
  98.         snmpobj.api = new SnmpAPI();
  99.         if (values[0].equals("Set"))
  100.         {
  101.             snmpobj.api.setDebug( true );
  102.         }
  103.         // Open session
  104.         snmpobj.session = new SnmpSession(snmpobj.api);        
  105.         int PORT = 3;
  106.         
  107.         SnmpPDU pdu = new SnmpPDU();
  108.         UDPProtocolOptions ses_opt = new UDPProtocolOptions();
  109.         ses_opt.setRemoteHost(opt.remArgs[0]);
  110.         if(values[PORT] != null)
  111.         {
  112.             try
  113.             {
  114.                 ses_opt.setRemotePort(Integer.parseInt(values[PORT]));
  115.             }
  116.             catch(Exception exp)
  117.             {
  118.                 System.out.println("Invalid port: " + values[PORT]);
  119.                 System.exit(1);
  120.             }
  121.         }
  122.         pdu.setProtocolOptions(ses_opt);
  123.         SetValues setVal = new SetValues( snmpobj.session, values ); 
  124.         if(driver != null || url != null ||
  125.             username != null || password != null)
  126.         {
  127.             if(snmpobj.session.getVersion() != 3)
  128.             {
  129.                 System.out.println(
  130.                     "Database option can be used only for SNMPv3.");
  131.                 System.exit(1);
  132.             }
  133.             if(driver == null)
  134.             {
  135.                 System.out.println(
  136.                     "The Database driver name should be given.");
  137.                 System.exit(1);
  138.             }
  139.             if(url == null)
  140.             {
  141.                 System.out.println("The Database URL should be given.");
  142.                 System.exit(1);
  143.             }
  144.             snmpobj.api.setV3DatabaseFlag(true);
  145.             try
  146.             {
  147.                 snmpobj.api.initJdbcParams(driver, url, username, password);
  148.             }
  149.             catch(Exception exp)
  150.             {
  151.                 System.out.println("Unable to Establish Database Connection.n" +
  152.                     "Please check the driverName and url.");
  153.                 System.exit(1);
  154.             }
  155.         }
  156.         snmpobj.session.addSnmpClient(snmpobj);
  157.         if(setVal.usage_error)
  158.         {
  159.             opt.usage_error();
  160.         }
  161.         // Build Get request PDU
  162.        // SnmpPDU pdu = new SnmpPDU();
  163.         pdu.setCommand( snmpobj.api.GET_REQ_MSG );
  164.         // add OIDs
  165.         for (int i=1;i<opt.remArgs.length;i++)
  166.         {
  167.             SnmpOID oid = new SnmpOID(opt.remArgs[i]);
  168.             if (oid.toValue() == null) 
  169.             {
  170.                 System.err.println("Invalid OID argument: " + opt.remArgs[i]);
  171.             }
  172.             else
  173.             {
  174.                 pdu.addNull(oid);
  175.             }
  176.         }
  177.         try
  178.         {
  179.             //Open session
  180.             snmpobj.session.open();
  181.         }
  182.         catch (SnmpException e)
  183.         {
  184.             System.err.println("Error opening session:"+e.getMessage());
  185.             System.exit(1);
  186.         }
  187.         if(snmpobj.session.getVersion()==SnmpAPI.SNMP_VERSION_3)
  188.         {
  189.             pdu.setUserName(setVal.userName.getBytes());
  190.             try
  191.             {
  192.                 USMUtils.init_v3_parameters(
  193.                 setVal.userName,
  194. null,
  195.                 setVal.authProtocol,
  196.                 setVal.authPassword,
  197.                 setVal.privPassword,
  198.                 ses_opt,
  199.                 snmpobj.session,
  200. false,
  201. setVal.privProtocol);
  202.             }
  203.             catch(Exception exp)
  204.             {
  205.                 System.out.println(exp.getMessage());
  206.                 System.exit(1);
  207.             }
  208.             pdu.setContextName(setVal.contextName.getBytes());
  209.             pdu.setContextID(setVal.contextID.getBytes());
  210.         }
  211.         try
  212.         {
  213.             snmpobj.session.send(pdu);
  214.         }
  215.         catch (SnmpException e)
  216.         {
  217.         }
  218.         while(true)
  219.         {
  220.             try
  221.             {
  222.                 Thread.sleep(100);
  223.             }
  224.             catch(Exception e)
  225.             {
  226.             }
  227.             if(snmpobj.getFinished)
  228.             {
  229.                 System.exit(0);
  230.             }
  231.         }
  232.     }
  233.     
  234.     public boolean authenticate(SnmpPDU pdu, String community)
  235.     {
  236.         if(pdu.getVersion() == 3)
  237.         {
  238.             return !((Snmp3Message)pdu.getMsg()).isAuthenticationFailed();
  239.         }
  240.         else
  241.         {
  242.             return (pdu.getCommunity().equals(community));
  243.         }
  244.     }
  245.     
  246.     private int totalResponses = 1;
  247.     
  248.     /*
  249.      * Callback method that is invoked on receiving an SNMP Inform request message
  250.      */
  251.     public boolean callback(SnmpSession session,SnmpPDU pdu, int requestID)
  252.     {
  253.         // Check if valid PDU
  254.         if (pdu == null)
  255.         {
  256.             System.out.println("Null PDU received :Timeoutn");
  257.             getFinished = true;
  258.         }
  259.         else
  260.         {
  261.             String res = "Response received from: " + pdu.getProtocolOptions().getSessionId() + ".";
  262.             if(pdu.getVersion() < 3)
  263.             {
  264.                 res = res + " Community: " + pdu.getCommunity();
  265.             }
  266.             System.out.println(res);
  267.             // print varbinds
  268.             Enumeration e = pdu.getVariableBindings().elements();
  269.             while(e.hasMoreElements())
  270.             {
  271.                 System.out.println(
  272.                     ((SnmpVarBind) e.nextElement()).toTagString());
  273.             }
  274.             if(pdu.isBroadCastEnabled())
  275.             {
  276.                 System.out.println("This is the response for" +
  277.                     " a broadCast request.");
  278.                 System.out.println("Total Responses received = " +
  279.                     (totalResponses++) + ".");
  280.             }
  281.             else
  282.             {
  283.                 getFinished = true;
  284.             }
  285.         }
  286.         System.out.println(""); 
  287.         return true;
  288.     }
  289.  
  290.     public void debugPrint(String debugOutput)
  291.     {
  292.         System.out.println(debugOutput);
  293.         return;    
  294.     }
  295. }