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

SNMP编程

开发平台:

C/C++

  1. /* $Id: snmpwalk.src,v 1.4 2002/09/09 05:43:43 pushpar 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. /**
  9.  * This is an example program to explain how to write an application to do
  10.  * the basic SNMP operation WALK using com.adventnet.snmp.snmp2 and
  11.  * com.adventnet.snmp.mibs packages of AdventNetSNMP2 api.
  12.  * The user could run this application by giving any one of the following usage.
  13.  * 
  14.  * java snmpwalk [options] hostname oid
  15.  *
  16.  * v1 request: 
  17.  * java snmpwalk [-d] [-m MIB_files] [-c community] [-p port] [-t timeout] [-r retries] host OID
  18.  * e.g. 
  19.  * java snmpwalk -p 161 -c public -m ../../../RFC1213-MIB adventnet .1.3.6.1 
  20.  *<img SRC="images/v2candv3only.jpg" ALT="v2c and v3 only">
  21.  * v2c request:
  22.  * java snmpwalk [-d] [-v version(v1,v2)] [-m MIB_files] [-c community] [-p port] [-t timeout] [-r retries] host OID
  23.  * e.g. For v1 request give -v v1 or drop the option -v .
  24.  * java snmpwalk -p 161 -v v2 -c public -m ../../../RFC1213-MIB adventnet .iso.org
  25.  *<img SRC="images/v3only.jpg" ALT="v3 only"> 
  26.  * v3 request:
  27.  * 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] [-n contextName] [-i contextID] host OID
  28.  * e.g.
  29.  * java snmpwalk -v v3 -u initial2 -w initial2Pass -a MD5 10.3.2.120 .1.3
  30.  *  
  31.  * If the oid is not starting with a dot (.) it will be prefixed by .1.3.6.1.2.1 .
  32.  * So the entire OID of 1.1.0 will become .1.3.6.1.2.1.1.1.0 . You can also
  33.  * give the entire OID .
  34.  * 
  35.  * If the mib is loaded you can also give string oids in the following formats
  36.  * .iso.org.dod.internet.mgmt.mib-2.system.sysDescr.0 or system.sysDescr.0 or
  37.  * sysDescr.0 .
  38.  *
  39.  * Options:
  40.  * [-d]                - Debug output. By default off.
  41.  * [-c] <community>    - community String. By default "public".
  42.  * [-p] <port>         - remote port no. By default 161.
  43.  * [-t] <Timeout>      - Timeout. By default 5000ms.
  44.  * [-r] <Retries>      - Retries. By default 0. 
  45.  * [-m] <MIBfile>      - MIB files.To load multiple mibs give within double quotes files seperated by a blank space.       
  46.  *<img SRC="images/v3only.jpg" ALT="v3 only"> [-v] <version>      - version(v1 / v2 / v3). By default v1.
  47.  * [-u] <username>     - The v3 principal/userName
  48.  * [-a] <autProtocol>  - The authProtocol(MD5/SHA). Mandatory if authPassword is specified
  49.  * [-w] <authPassword> - The authentication password.
  50.  * [-s] <privPassword> - The privacy protocol password. Must be accompanied with auth password and authProtocol fields.
  51.  * [-n] <contextName>  - The contextName to be used for the v3 pdu.
  52.  * [-i] <contextID>    - The contextID to be used for the v3 pdu.
  53.  * <host> Mandatory    - The RemoteHost (agent).Format (string without double qoutes/IpAddress).
  54.  * <OID>  Mandatory    - Give only one Object Identifier.
  55.  */
  56. import java.lang.*;
  57. import java.util.*;
  58. import java.net.*;
  59. import com.adventnet.snmp.snmp2.*;
  60. import com.adventnet.snmp.mibs.*;
  61. import com.adventnet.snmp.snmp2.usm.*;
  62. public class snmpwalk {
  63.     private static final int DEBUG = 0;
  64.     private static final int MIBS = 6;
  65.     public static void main(String args[]) {
  66.     
  67.     // Take care of getting options
  68.     String usage = "snmpwalk [-d] [-v version(v1,v2,v3)] [-m MIB_files] [-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 ";
  69.     String options[] = { "-d", "-c",  "-wc", "-p", "-r", "-t", "-m", "-v", "-u", "-a", "-w", "-s", "-n", "-i"};
  70.     String values[] = { "None", null, null, null, null, null, null, null, null, null, null, null, null, null };
  71.     ParseOptions opt = new ParseOptions(args,options,values, usage);
  72.     if (opt.remArgs.length!=2) opt.usage_error();
  73.     // Start SNMP API
  74.     SnmpAPI api;
  75.     api = new SnmpAPI();
  76.     if (values[DEBUG].equals("Set")) api.setDebug( true );
  77.     // Open SnmpSession 
  78.     SnmpSession session = new SnmpSession(api);
  79.     // set remote Host 
  80.     session.setPeername( opt.remArgs[0] );
  81.    //set the values
  82.     SetValues setVal = new SetValues(session, values);
  83.     if(setVal.usage_error) opt.usage_error(); 
  84.     // Loading MIBS .
  85.     MibOperations mibOps = new MibOperations();
  86.     // To load MIBs from compiled file
  87.  mibOps.setLoadFromCompiledMibs(true);
  88.     
  89.     if (values[MIBS] != null) try {
  90.         System.err.println("Loading MIBs: "+values[MIBS]);
  91.         mibOps.loadMibModules(values[MIBS]);
  92.     } catch (Exception ex) {
  93.         System.err.println("Error loading MIBs: "+ex);
  94.     }
  95.     
  96.     // Build GetNext request PDU
  97.     SnmpPDU pdu = new SnmpPDU();
  98.     pdu.setCommand( api.GETNEXT_REQ_MSG );
  99.     // need to save the root OID to walk sub-tree
  100.     SnmpOID oid = mibOps.getSnmpOID(opt.remArgs[1]);
  101.     if( oid == null)
  102.         System.exit(1);
  103.     int rootoid[] = (int[]) oid.toValue();  
  104.     if (rootoid == null) { //if don't have a valid OID for first, exit
  105.         System.err.println("Invalid OID argument: " + opt.remArgs[1]);
  106.         System.exit(1);
  107.     }
  108.         else pdu.addNull(oid);
  109.     try {
  110.         // open sesssion
  111.         session.open();
  112.     } catch (SnmpException e) {
  113.         System.err.println("Error in open session : "+e.getMessage());
  114.     }
  115.     if(session.getVersion()==SnmpAPI.SNMP_VERSION_3) {
  116. pdu.setUserName(setVal.userName.getBytes());
  117.         USMUtils.init_v3_params(setVal.userName, setVal.authProtocol, setVal.authPassword, setVal.privPassword, session.getPeername(),session.getRemotePort(),session);
  118.         pdu.setContextName(setVal.contextName.getBytes());
  119.         pdu.setContextID(setVal.contextID.getBytes());
  120.     }
  121.     // loop for each PDU in the walk
  122.     while (true) { // until received OID isn't in sub-tree
  123.         try {
  124.             // Send PDU and receive response PDU
  125.             pdu = session.syncSend(pdu);
  126.         } 
  127.         catch (SnmpException e) {
  128.             System.err.println("Sending PDU : " + e.getMessage());
  129.             System.exit(1);
  130.         }
  131.         if (pdu == null) {
  132.             // timeout
  133.             System.out.println("Request timed out to: " + opt.remArgs[0] );
  134.             System.exit(1);
  135.         }
  136.         // stop if outside of sub-tree
  137.         if (!isInSubTree(rootoid,pdu)) 
  138.             break;
  139.         // print response PDU
  140.         if(pdu.getVersion() == SnmpAPI.SNMP_VERSION_1) {
  141.         // check for error
  142.         if (pdu.getErrstat() != 0) {
  143.             System.out.println("Error Indication in response: " +
  144.                        SnmpException.exceptionString((byte)pdu.getErrstat()) + 
  145.                        "nErrindex: " + pdu.getErrindex()); 
  146.             System.exit(1);
  147.         }
  148.         // print response pdu variable-bindings
  149.         System.out.println(mibOps.varBindsToString(pdu));
  150.         } else if((pdu.getVersion() == SnmpAPI.SNMP_VERSION_2C) || (pdu.getVersion() == SnmpAPI.SNMP_VERSION_3)) {
  151.         for(Enumeration e = pdu.getVariableBindings().elements();
  152.             e.hasMoreElements() ;) {
  153.                   
  154.             int error = 0;
  155.             SnmpVarBind varbind = (SnmpVarBind)e.nextElement();
  156.             // check for error
  157.             if ( (error = varbind.getErrindex()) != 0) {
  158.             System.out.println("Error Indication in response: " +
  159.                        SnmpException.exceptionString((byte)error));
  160.             System.exit(1);
  161.             }
  162.             // print response pdu variable-bindings        
  163.             System.out.println(mibOps.varBindsToString(pdu));
  164.         }
  165.         
  166.         } else System.out.println("Invalid Version Number");      
  167.         // set GETNEXT_REQ_MSG to do walk
  168.         pdu.setCommand( api.GETNEXT_REQ_MSG );
  169.         // Don't forget to set request id to 0 otherwise next request will fail
  170.         pdu.setReqid(0);
  171.     } // end of while true
  172.         
  173.     // close session
  174.     session.close();
  175.     // stop api thread
  176.     api.close();
  177.     
  178.     System.exit(0);
  179.     }
  180.     /** check if first varbind oid has rootoid as an ancestor in MIB tree */
  181.     static boolean isInSubTree(int[] rootoid, SnmpPDU pdu) {
  182.     SnmpOID objID = (SnmpOID) pdu.getObjectID(0);
  183.     if (objID == null) return false;
  184.     int oid[] = (int[]) objID.toValue();
  185.     if (oid == null) return false;
  186.     if (oid.length < rootoid.length) return false;
  187.     for (int i=0;i<rootoid.length;i++)
  188.         if (oid[i] != rootoid[i]) return false;
  189.     return true;
  190.     }
  191. }