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

SNMP编程

开发平台:

C/C++

  1. /* $Id: snmpwalk.src,v 1.4 2002/09/09 05:41:02 parasuraman Exp $ */
  2. /*
  3.  * @(#)snmpwalk.java
  4.  * Copyright (c) 1996-2003 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 WALK 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 snmpwalk [options] hostname oid
  14.  *
  15.  * v1 request: 
  16.  * java snmpwalk snmpwalk [-d] [-c community] [-p port] [-t timeout] [-r retries] host OID
  17.  * e.g. 
  18.  * java snmpwalk -p 161 -c public adventnet .1.3.6.1 
  19.  *<img SRC="images/v2candv3only.jpg" ALT="v2c and v3 only">
  20.  * v2c request:  
  21.  * java snmpwalk [-d] [-v version(v1,v2)] [-c community] [-p port] [-t timeout] [-r retries] host OID
  22.  * e.g. 
  23.  * java snmpwalk -v v2 -p 161 -c public -m rfc1213-mib adventnet .1.3.6.1
  24.  *<img SRC="images/v3only.jpg" ALT="v3 only"> 
  25.  * v3 request:
  26.  * java snmpwalk [-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
  27.  * e.g.
  28.  * java snmpwalk -v v3 -u initial2 -w initial2Pass -a MD5 10.3.2.120 .1.3
  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.  *<img SRC="images/v3only.jpg" ALT="v3 only"> [-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 context to be used for the v3 pdu.
  46.  * [-i] <contextID>    - The context 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 snmpwalk {
  56.     public static void main(String args[]) {
  57.         
  58.         // Take care of getting options
  59.         String usage = "snmpwalk [-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] host OID ";
  60.         String options[] = { "-d", "-c",  "-wc", "-p", "-r", "-t", "-m", "-v", "-u", "-a", "-w", "-s", "-n", "-i"};
  61.         String values[] = { "None", null, null, null, null, null, "None", null, null, null, null, null, null, null };
  62.         ParseOptions opt = new ParseOptions(args,options,values, usage);
  63.         if (opt.remArgs.length!=2) opt.usage_error();
  64.         
  65.         // Start SNMP API
  66.         SnmpAPI api;
  67.         api = new SnmpAPI();
  68.         if (values[0].equals("Set")) api.setDebug( true );
  69.     
  70.         // Open session
  71.         SnmpSession session = new SnmpSession(api);
  72. session.setProtocol(session.TRANSPORT_PROVIDER);
  73.         //set the values
  74.         SetValues setVal = new SetValues(session, values);
  75.         if(setVal.usage_error) opt.usage_error(); 
  76.         
  77. // Options that will be used for communication. This can be modified by the user 
  78. // according to his need.
  79. ProtocolOptions params = null;
  80. if(values[3] != null) {
  81. params = new TcpProtocolOptionsImpl(opt.remArgs[0], Integer.parseInt( values[3] ), -1);
  82. }
  83. else {
  84. params = new TcpProtocolOptionsImpl(opt.remArgs[0], 161, -1);
  85. }
  86.         session.setProtocolOptions(params);
  87.         
  88.         // Build GETNEXT request PDU
  89.         SnmpPDU pdu = new SnmpPDU();
  90.         pdu.setCommand( api.GETNEXT_REQ_MSG );
  91.         
  92.         // need to save the root OID to walk sub-tree
  93.         SnmpOID oid = new SnmpOID(opt.remArgs[1]);
  94.         int rootoid[] = (int[]) oid.toValue();  
  95.         if (rootoid == null) { //if don't have a valid OID for first, exit
  96.             System.err.println("Invalid OID argument: " + opt.remArgs[1]);
  97.             System.exit(1);
  98.         }
  99.                 else pdu.addNull(oid);
  100.     
  101.         try {
  102.             //open session
  103.             session.open();
  104.         } catch (SnmpException e) {
  105.             System.err.println("Error in open session "+e.getMessage());
  106.             System.exit(1);
  107.         }
  108.         
  109.         if(session.getVersion()==SnmpAPI.SNMP_VERSION_3) {
  110. pdu.setUserName(setVal.userName.getBytes());
  111.             USMUtils.init_v3_params(setVal.userName, setVal.authProtocol, setVal.authPassword, setVal.privPassword, params.getSessionId(),session);
  112.             pdu.setContextName(setVal.contextName.getBytes());
  113.             pdu.setContextID(setVal.contextID.getBytes());
  114.         }
  115.         // loop for each PDU in the walk
  116.         while (true) { // until received OID isn't in sub-tree
  117.              try {
  118.                 // Send PDU and receive response PDU
  119.                 pdu = session.syncSend(pdu);
  120.             }
  121.             catch (SnmpException e) {
  122.                 System.err.println("Sending PDU"+e.getMessage());
  123.             }
  124.         
  125.             if (pdu == null) {
  126.                 // timeout
  127.                 System.out.println("Request timed out to: " + opt.remArgs[0] );
  128.                 session.close();
  129.              api.close();             
  130. System.exit(1);
  131.             }
  132.             
  133.             // stop if outside sub-tree
  134.             if (!isInSubTree(rootoid,pdu)) 
  135.                 break; 
  136.             if(pdu.getVersion() == SnmpAPI.SNMP_VERSION_1) {
  137.                 // check for error 
  138.                 if (pdu.getErrstat() != 0) {
  139.                     System.out.println("Error Indication in response: " +
  140.                         SnmpException.exceptionString((byte)pdu.getErrstat()) + 
  141.                         "nErrindex: " + pdu.getErrindex()); 
  142.                     session.close();
  143.               api.close();              
  144.     System.exit(1);
  145.                 }
  146.                 // print response pdu variable-bindings                    
  147.                 System.out.println(pdu.printVarBinds());
  148.             } else if((pdu.getVersion() == SnmpAPI.SNMP_VERSION_2C)||(pdu.getVersion() == SnmpAPI.SNMP_VERSION_3)) {
  149.                 for(Enumeration e = pdu.getVariableBindings().elements(); e.hasMoreElements();) {
  150.                     int error = 0;
  151.                     SnmpVarBind varbind = (SnmpVarBind)e.nextElement();
  152.                     // check for error
  153.                     if ( (error = varbind.getErrindex()) != 0) {
  154.                         System.out.println("Error Indication in response: " +
  155.                                            SnmpException.exceptionString((byte)error));
  156.                         session.close();
  157.              api.close();             
  158. System.exit(1);
  159.                     }
  160.                     // print response pdu variable-bindings
  161.                     System.out.println(pdu.printVarBinds());
  162.                 }                
  163.             } else System.out.println("Invalid Version Number"); 
  164.             // set GETNEXT_REQ_MSG to do walk
  165.             pdu.setCommand( api.GETNEXT_REQ_MSG );
  166.             // Don't forget to set request id to 0 otherwise next request will fail
  167.             pdu.setReqid(0);
  168.             
  169.     } // end of while true
  170.         
  171. // Print the GroupCounters
  172. String[] localAddr = session.getLocalAddresses();
  173. int localPort = session.getLocalPort();
  174. SnmpGroup group = api.getSnmpGroup(localAddr[localAddr.length - 1],localPort);
  175. if(group != null){
  176. System.out.println("The SnmpGroup Counter values :");
  177. System.out.println("snmpInPkts = " + group.getSnmpInPkts());
  178. System.out.println("snmpOutPkts = " + group.getSnmpOutPkts());
  179. System.out.println("snmpInGetResponses = " + group.getSnmpInGetResponses());
  180. System.out.println("snmpOutGetRequests = " + group.getSnmpOutGetRequests());
  181. System.out.println("snmpOutGetNexts = " + group.getSnmpOutGetNexts());
  182. }
  183.     // close session
  184.     session.close();
  185.     // stop api thread
  186.     api.close();
  187.     System.exit(0);
  188.     }
  189.     /** check if first varbind oid has rootoid as an ancestor in MIB tree */
  190.     static boolean isInSubTree(int[] rootoid, SnmpPDU pdu) {
  191.         
  192.         SnmpOID objID = (SnmpOID) pdu.getObjectID(0);
  193.         if (objID == null) return false;
  194.         int oid[] = (int[]) objID.toValue();
  195.         if (oid == null) return false;        
  196.         if (oid.length < rootoid.length) return false;
  197.         
  198.         for (int i=0;i<rootoid.length;i++)
  199.             if (oid[i] != rootoid[i]) return false;
  200.         return true;
  201.     }
  202. }