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

SNMP编程

开发平台:

C/C++

  1. /* $Id: snmpgetnext.src,v 1.4.2.5 2009/01/28 13:29:38 prathika 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] [-pp privProtocol(DES/AES-128/AES-192/AES-256/3DES)][-n contextName] [-i context_id] 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.  * [-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.  * [-pp] <privProtocol> -(DES/AES-128/AES-192/AES-256/3DES)
  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.     public static void main(String args[]) {
  58.         
  59.         // Take care of getting options
  60.         String usage = "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] [-n contextName] [-i contextID] [-pp privProtocol(DES/AES-128/AES-192/AES-256/3DES)] host OID [OID] ...";
  61.         String options[] = { "-d", "-c",  "-wc", "-p", "-r", "-t", "-m", "-v", "-u", "-a", "-w", "-s", "-n", "-i", "-pp"};
  62.         String values[] = { "None", null, null, null, null, null, "None", null, null, null, null, null, null, null,null };
  63.         ParseOptions opt = new ParseOptions(args,options,values, usage);
  64.         if (opt.remArgs.length<2) opt.usage_error();
  65.         
  66.         // Start SNMP API
  67.         SnmpAPI api;
  68.         api = new SnmpAPI();
  69.         if (values[0].equals("Set")) api.setDebug( true );    
  70.     
  71.         // Open session 
  72.         SnmpSession session = new SnmpSession(api);
  73.         session.setTransportProvider("com.adventnet.snmp.snmp2.TcpTransportImpl");
  74.         
  75.         //set the values
  76.         SetValues setVal = new SetValues(session, values);
  77.         if(setVal.usage_error) opt.usage_error(); 
  78.         
  79.         // Options that will be used for communication. This can be modified by the user 
  80.         // according to his need.
  81.         ProtocolOptions params = null;
  82.         if(values[3] != null)   {
  83.             params = new TcpProtocolOptionsImpl(opt.remArgs[0], Integer.parseInt( values[3] ), -1);
  84.         }
  85.         else    {
  86.             params = new TcpProtocolOptionsImpl(opt.remArgs[0], 161, -1);
  87.         }
  88.         session.setProtocolOptions(params);
  89.         
  90.         // Build GetNext request PDU
  91.         SnmpPDU pdu = new SnmpPDU();
  92.         pdu.setCommand( api.GETNEXT_REQ_MSG );
  93.         // add OIDs
  94.         for (int i=1;i<opt.remArgs.length;i++) {
  95.             SnmpOID oid = new SnmpOID(opt.remArgs[i]);
  96.             if (oid.toValue() == null) 
  97.                 System.err.println("Invalid OID argument: " + opt.remArgs[i]);
  98.             else pdu.addNull(oid);
  99.         }
  100.         try {
  101.             //Open session
  102.             session.open();
  103.         } catch (SnmpException e) {
  104.             System.err.println("Error opening session:"+e.getMessage());
  105.             System.exit(1);
  106.         }
  107.         if(session.getVersion()==SnmpAPI.SNMP_VERSION_3) {
  108.             pdu.setUserName(setVal.userName.getBytes());
  109.             try
  110.             {
  111.                 
  112. USMUtils.init_v3_parameters(
  113. setVal.userName,
  114.          null,
  115. setVal.authProtocol,
  116. setVal.authPassword,
  117. setVal.privPassword,
  118. params,
  119. session,
  120. false,
  121. setVal.privProtocol); 
  122.             }
  123.             catch(Exception exp)
  124.             {
  125.                 System.out.println(exp.getMessage());
  126.                 System.exit(1);
  127.             }
  128.             pdu.setContextName(setVal.contextName.getBytes());
  129.             pdu.setContextID(setVal.contextID.getBytes());
  130.         }
  131.         try {
  132.             // Send PDU and receive response PDU
  133.             pdu = session.syncSend(pdu);
  134.         } catch (SnmpException e) {
  135.             System.err.println("Sending PDU"+e.getMessage());
  136.             session.close();
  137.             api.close();             
  138.         System.exit(1);
  139.         }    
  140.         if (pdu == null) {
  141.             // timeout
  142.             System.out.println("Request timed out to: " + opt.remArgs[0] );
  143.             session.close();
  144.             api.close();             
  145.         System.exit(1);
  146.         }
  147.          // print and exit
  148.         System.out.println("Response PDU received from " +((TcpProtocolOptionsImpl)(pdu.getProtocolOptions())).getRemoteHost()+
  149.                ", community: " + pdu.getCommunity());
  150.         // Check for error in response
  151.         if (pdu.getErrstat() != 0)
  152.             System.err.println(pdu.getError());
  153.         else 
  154.             // print the response pdu
  155.             System.out.println(pdu.printVarBinds());
  156.       
  157.         // close session
  158.         session.close();
  159.         // stop api thread
  160.         api.close();
  161.     
  162.         System.exit(0);
  163.     }
  164. }