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

SNMP编程

开发平台:

C/C++

  1. /* $Id: snmpwalk.src,v 1.4.2.5 2009/01/28 13:29:38 prathika Exp $ */
  2. /*
  3.  * @(#)snmpwalk.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 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.  *
  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.  * 
  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] [-pp privProtocol(DES/AES-128/AES-192/AES-256/3DES)] [-n contextName ] [-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.  * [-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.  * [-pp]<privProtocol> - The privacy protocol(DES/AES-128/AES-192/AES-256/3DES)
  46.  * [-n] <contextName>  - The context to be used for the v3 pdu.
  47.  * [-i] <contextID>    - The context to be used for the v3 pdu.
  48.  * [-pp] <privProtocol> - The privacy protocol . Must be accompanied with auth,priv password and authProtocol fields.
  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.snmp2.usm.*;
  57. public class snmpwalk {
  58.     public static void main(String args[]) {
  59.         
  60.         // Take care of getting options
  61.         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] [-pp privProtocol(DES/AES-128/AES-192/AES-256/3DES)] [-n contextName] [-i contextID]  host OID ";
  62.         String options[] = { "-d", "-c",  "-wc", "-p", "-r", "-t", "-m", "-v", "-u", "-a", "-w", "-s", "-n", "-i", "-pp"};
  63.         String values[] = { "None", null, null, null, null, null, "None", null, null, null, null, null, null, null, null };
  64.         ParseOptions opt = new ParseOptions(args,options,values, usage);
  65.         if (opt.remArgs.length!=2) opt.usage_error();
  66.         
  67.         // Start SNMP API
  68.         SnmpAPI api;
  69.         api = new SnmpAPI();
  70.         if (values[0].equals("Set")) api.setDebug( true );
  71.     
  72.         // Open session
  73.         SnmpSession session = new SnmpSession(api);
  74.         session.setTransportProvider("com.adventnet.snmp.snmp2.TcpTransportImpl");
  75.         
  76.         //set the values
  77.         SetValues setVal = new SetValues(session, values);
  78.         if(setVal.usage_error) opt.usage_error(); 
  79.         
  80.         // Options that will be used for communication. This can be modified by the user 
  81.         // according to his need.
  82.         ProtocolOptions params = null;
  83.         if(values[3] != null)   {
  84.             params = new TcpProtocolOptionsImpl(opt.remArgs[0], Integer.parseInt( values[3] ), -1);
  85.         }
  86.         else    {
  87.             params = new TcpProtocolOptionsImpl(opt.remArgs[0], 161, -1);   
  88.         }
  89.         session.setProtocolOptions(params);                     
  90.         
  91.         // Build GETNEXT request PDU
  92.         SnmpPDU pdu = new SnmpPDU();
  93.         pdu.setCommand( api.GETNEXT_REQ_MSG );
  94.         
  95.         // need to save the root OID to walk sub-tree
  96.         SnmpOID oid = new SnmpOID(opt.remArgs[1]);
  97.         int rootoid[] = (int[]) oid.toValue();  
  98.         if (rootoid == null) { //if don't have a valid OID for first, exit
  99.             System.err.println("Invalid OID argument: " + opt.remArgs[1]);
  100.             System.exit(1);
  101.         }
  102.                 else pdu.addNull(oid);
  103.     
  104.         try {
  105.             //open session
  106.             session.open();
  107.         } catch (SnmpException e) {
  108.             System.err.println("Error in open session "+e.getMessage());
  109.             System.exit(1);
  110.         }
  111.         
  112.         if(session.getVersion()==SnmpAPI.SNMP_VERSION_3) {
  113.             pdu.setUserName(setVal.userName.getBytes());
  114.             try
  115.             {
  116.         USMUtils.init_v3_parameters(
  117.                 setVal.userName,
  118. null,
  119.                 setVal.authProtocol,
  120.                 setVal.authPassword,
  121.                 setVal.privPassword,
  122.                 params,
  123.                 session,
  124. false,
  125. setVal.privProtocol);
  126.             }
  127.             catch(Exception exp)
  128.             {
  129.                 System.out.println(exp.getMessage());
  130.                 System.exit(1);
  131.             }
  132.             pdu.setContextName(setVal.contextName.getBytes());
  133.             pdu.setContextID(setVal.contextID.getBytes());
  134.         }
  135.         while (true) // until received OID isn't in sub-tree
  136.         {
  137.             try
  138.             {
  139.                 // Send PDU and receive response PDU
  140.                 pdu = session.syncSend(pdu);
  141.             }
  142.             catch (SnmpException e)
  143.             {
  144.                 System.err.println("Sending PDU"+e.getMessage());
  145.                 System.exit(1);
  146.             }
  147.             if (pdu == null)
  148.             {
  149.                 // timeout
  150.                 System.out.println("Request timed out to: " + opt.remArgs[0] );
  151.                 System.exit(1);
  152.             }
  153.             // stop if outside sub-tree
  154.             if (!isInSubTree(rootoid,pdu))
  155.             {
  156.                 System.out.println("Not in sub tree.");
  157.                 break; 
  158.             }
  159.             int version = pdu.getVersion();
  160.             if(version == SnmpAPI.SNMP_VERSION_1)
  161.             {
  162.                 // check for error 
  163.                 if (pdu.getErrstat() != 0)
  164.                 {
  165.                     System.out.println("Error Indication in response: " +
  166.                         SnmpException.exceptionString((byte)pdu.getErrstat()) + 
  167.                         "nErrindex: " + pdu.getErrindex()); 
  168.                     System.exit(1);
  169.                 }
  170.                 // print response pdu variable-bindings                    
  171.                 System.out.println(pdu.printVarBinds());
  172.             }
  173.             else if((version == SnmpAPI.SNMP_VERSION_2C) ||
  174.                 (version == SnmpAPI.SNMP_VERSION_3))
  175.             {
  176.                 
  177.                 Enumeration e = pdu.getVariableBindings().elements();
  178.                 while(e.hasMoreElements())
  179.                 {
  180.                     int error = 0;
  181.                     SnmpVarBind varbind = (SnmpVarBind)e.nextElement();
  182.                     // check for error
  183.                     if ( (error = varbind.getErrindex()) != 0)
  184.                     {
  185.                         System.out.println("Error Indication in response: " +
  186.                             SnmpException.exceptionString((byte)error));
  187.                         System.exit(1);
  188.                     }
  189.                     // print response pdu variable-bindings
  190.                     System.out.println(pdu.printVarBinds());
  191.                 }
  192.             }
  193.             else
  194.             {
  195.                 System.out.println("Invalid Version Number");
  196.             }
  197.             // set GETNEXT_REQ_MSG to do walk
  198.             // Don't forget to set request id to 0 otherwise next request will fail
  199.             pdu.setReqid(0);
  200.             SnmpOID first_oid = pdu.getObjectID(0);
  201.             pdu = new SnmpPDU();
  202.             pdu.setCommand( api.GETNEXT_REQ_MSG );
  203.             pdu.setUserName(setVal.userName.getBytes());
  204.             pdu.setContextName(setVal.contextName.getBytes());
  205.             pdu.setContextID(setVal.contextID.getBytes());
  206.             pdu.addNull(first_oid);
  207.         } // end of while true
  208.     // Print the GroupCounters
  209.     String[] localAddr = session.getLocalAddresses();
  210.     int localPort = session.getLocalPort();
  211.     SnmpGroup group = api.getSnmpGroup(localAddr[localAddr.length - 1],localPort);
  212.     if(group != null){
  213.         System.out.println("The SnmpGroup Counter values :");
  214.         System.out.println("snmpInPkts = " + group.getSnmpInPkts());
  215.         System.out.println("snmpOutPkts = " + group.getSnmpOutPkts());
  216.         System.out.println("snmpInGetResponses = " + group.getSnmpInGetResponses());
  217.         System.out.println("snmpOutGetRequests = " + group.getSnmpOutGetRequests());
  218.         System.out.println("snmpOutGetNexts = " + group.getSnmpOutGetNexts());
  219.     }   
  220.     // close session
  221.     session.close();
  222.     // stop api thread
  223.     api.close();
  224.     System.exit(0);
  225.     }
  226.     /** check if first varbind oid has rootoid as an ancestor in MIB tree */
  227.     static boolean isInSubTree(int[] rootoid, SnmpPDU pdu) {
  228.         
  229.         SnmpOID objID = (SnmpOID) pdu.getObjectID(0);
  230.         if (objID == null) return false;
  231.         int oid[] = (int[]) objID.toValue();
  232.         if (oid == null) return false;        
  233.         if (oid.length < rootoid.length) return false;
  234.         
  235.         for (int i=0;i<rootoid.length;i++)
  236.           {
  237.             if(oid[i] != rootoid[i])
  238.             {
  239.              return false;
  240.             }
  241.           }
  242.         return true;
  243.     }
  244. }