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

SNMP编程

开发平台:

C/C++

  1. /* $Id: snmpgetnext.src,v 1.5.2.6 2009/01/28 13:22:14 tmanoj Exp $ */
  2. /*
  3.  * @(#)snmpgetnext.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 GETNEXT 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 snmpgetnext [options] hostname oid ...
  14.  *
  15.  * v1 request: 
  16.  * java snmpgetnext [-d] [-c community] [-p port] [-t timeout] [-r retries] host OID [OID] ...
  17.  * e.g. 
  18.  * java snmpgetnext -p 161 -c public adventnet 1.1.0 1.2.0
  19.  *
  20.  * v2c request: 
  21.  * java snmpgetnext [-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 snmpgetnext -p 161 -v v2 -c public adventnet 1.1.0 1.2.0
  24.  * 
  25.  * v3 request:
  26.  * java snmpgetnext [-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] [-pp privProtocol(DES/AES-128/AES-192/AES-256/3DES)] host OID [OID] ...
  27.  * e.g.
  28.  * java snmpgetnext -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 (AES/DES).
  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 snmpgetnext
  57. {
  58.     public static void main(String args[])
  59.     {
  60.         // Take care of getting options
  61.         String usage =
  62.             "snmpgetnext [-d] [-v version(v1,v2,v3)] n" +
  63.             "[-c community] [-p port] [-r retries] n" +
  64.             "[-t timeout] [-u user] [-a auth_protocol] n" +
  65.             "[-w auth_password] [-s priv_password] n" +
  66.             "[-n contextName] [-i contextID] n" +
  67.             "[-DB_driver database_driver]n" +
  68.             "[-DB_url database_url]n" +
  69.             "[-DB_username database_username]n" +
  70.             "[-DB_password database_password]n" +
  71. "[-pp privProtocol(DES/AES-128/AES-192/AES-256/3DES)]n" +
  72.             "host OID [OID] ...n";
  73.         
  74.         String options[] =
  75.         {
  76.             "-d", "-c", "-wc", "-p", "-r", "-t", "-m",
  77.             "-v", "-u", "-a",  "-w", "-s", "-n", "-i",
  78.             "-DB_driver", "-DB_url", "-DB_username", "-DB_password","-pp"
  79. };
  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.  
  93.         // Start SNMP API
  94.         SnmpAPI api;
  95.         api = new SnmpAPI();
  96.         if (values[0].equals("Set"))
  97.         {
  98.             api.setDebug( true );    
  99.         }
  100.         // Open session 
  101.         SnmpSession session = new SnmpSession(api);
  102.         int PORT = 3;
  103.         
  104.         SnmpPDU pdu = new SnmpPDU();
  105.         UDPProtocolOptions ses_opt = new UDPProtocolOptions();
  106.         ses_opt.setRemoteHost(opt.remArgs[0]);
  107.         if(values[PORT] != null)
  108.         {
  109.             try
  110.             {
  111.                 ses_opt.setRemotePort(Integer.parseInt(values[PORT]));
  112.             }
  113.             catch(Exception exp)
  114.             {
  115.                 System.out.println("Invalid port: " + values[PORT]);
  116.                 System.exit(1);
  117.             }
  118.         }
  119.         pdu.setProtocolOptions(ses_opt);
  120.         //set the values
  121.         SetValues setVal = new SetValues(session, values);
  122.         if(setVal.usage_error)
  123.         {
  124.             opt.usage_error(); 
  125.         }
  126.         String driver = values[14];
  127.         String url = values[15];
  128.         String username = values[16];
  129.         String password = values[17];
  130.         if(driver != null || url != null ||
  131.             username != null || password != null)
  132.         {
  133.             if(session.getVersion() != 3)
  134.             {
  135.                 System.out.println(
  136.                     "Database option can be used only for SNMPv3.");
  137.                 System.exit(1);
  138.             }
  139.             if(driver == null)
  140.             {
  141.                 System.out.println(
  142.                     "The Database driver name should be given.");
  143.                 System.exit(1);
  144.             }
  145.             if(url == null)
  146.             {
  147.                 System.out.println("The Database URL should be given.");
  148.                 System.exit(1);
  149.             }
  150.             try
  151.             {
  152.                 api.setV3DatabaseFlag(true);
  153.                 api.initJdbcParams(driver, url, username, password);
  154.             }
  155.             catch(Exception exp)
  156.             {
  157.                 System.out.println("Unable to Establish Database Connection.");
  158.                 System.out.println("Please check the driverName and url.");
  159.                 System.exit(1);
  160.             }
  161.         }
  162.         // Build GetNext request PDU
  163.         // SnmpPDU pdu = new SnmpPDU();
  164.         pdu.setCommand( api.GETNEXT_REQ_MSG );
  165.         // add OIDs
  166.         for (int i=1;i<opt.remArgs.length;i++)
  167.         {
  168.             SnmpOID oid = new SnmpOID(opt.remArgs[i]);
  169.             if (oid.toValue() == null) 
  170.             {
  171.                 System.err.println("Invalid OID argument: " + opt.remArgs[i]);
  172.             }
  173.             else
  174.             {
  175.                 pdu.addNull(oid);
  176.             }
  177.         }
  178.         try
  179.         {
  180.             //Open session
  181.             session.open();
  182.         }
  183.         catch (SnmpException e)
  184.         {
  185.             System.err.println("Error opening session:"+e.getMessage());
  186.             System.exit(1);
  187.         }
  188.         if(session.getVersion()==SnmpAPI.SNMP_VERSION_3)
  189.         {
  190.             pdu.setUserName(setVal.userName.getBytes());
  191.             try
  192.             {
  193.                 USMUtils.init_v3_parameters(
  194.                 setVal.userName,
  195. null,
  196.                 setVal.authProtocol,
  197.                 setVal.authPassword,
  198.                 setVal.privPassword,
  199.                 ses_opt,
  200.                 session,
  201. false,
  202. setVal.privProtocol);
  203.             }
  204.             catch(Exception exp)
  205.             {
  206.                 System.out.println(exp.getMessage());
  207.                 System.exit(1);
  208.             }
  209.             pdu.setContextName(setVal.contextName.getBytes());
  210.             pdu.setContextID(setVal.contextID.getBytes());
  211.         }
  212.         SnmpPDU res_pdu = null;
  213.         try
  214.         {
  215.             // Send PDU and receive response PDU
  216.             res_pdu = session.syncSend(pdu);
  217.         }
  218.         catch (SnmpException e)
  219.         {
  220.             System.err.println("Sending PDU"+e.getMessage());
  221.             System.exit(1);
  222.         }    
  223.         if (res_pdu == null)
  224.         {
  225.             System.out.println("Request timed out to: " + opt.remArgs[0] );
  226.             System.exit(1);
  227.         }
  228.         
  229.         String res = "Response PDU received from " + res_pdu.getProtocolOptions().getSessionId() + ".";
  230.         // print and exit
  231.         if(res_pdu.getVersion() < 3)
  232.         {
  233.             res = res + " Community = " + res_pdu.getCommunity();
  234.         }
  235.         System.out.println(res);
  236.         // Check for error in response
  237.         if (res_pdu.getErrstat() != 0)
  238.         {
  239.             System.err.println(res_pdu.getError());
  240.         }
  241.         else 
  242.         {
  243.             // print the response pdu
  244.             System.out.println(res_pdu.printVarBinds());
  245.         }
  246.         // close session
  247.         session.close();
  248.         // stop api thread
  249.         api.close();
  250.     }
  251. }