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

SNMP编程

开发平台:

C/C++

  1. /* $Id: snmpgetnext.src,v 1.4 2002/09/09 05:43:43 pushpar Exp $ */
  2. /*
  3.  * @(#)snmpgetnext.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 GETNEXT using com.adventnet.snmp.snmp2 and
  10.  * com.adventnet.snmp.mibs packages of 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] [-m MIB_files] [-c community] [-p port] [-t timeout] [-r retries] host OID [OID] ...
  17.  * e.g. 
  18.  * java snmpgetnext -p 161 -c public -m ../../../mibs/RFC1213-MIB adventnet 1.1.0 1.2.0
  19.  *<img SRC="images/v2candv3only.jpg" ALT="v2c and v3 only"> 
  20.  * v2c request: 
  21.  * java snmpgetnext [-d] [-v version(v1,v2)] [-m MIB_files] [-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 -m ../../../mibs/RFC1213-MIB adventnet 1.1.0 1.2.0
  24.  *<img SRC="images/v3only.jpg" ALT="v3 only"> 
  25.  * v3 request:
  26.  * java snmpgetnext [-d] [-v version(v1,v2,v3)] [-c community] [-m MIB_files] [-p port] [-r retries] [-t timeout] [-u user] [-a auth_protocol] [-w auth_password] [-s priv_password] [-n contextName] [-i contextID] host OID [OID] ...
  27.  * e.g.
  28.  * java snmpgetnext -m ../../../mibs/RFC1213-MIB -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.  * If the mib is loaded you can also give string oids in the following formats
  35.  * .iso.org.dod.internet.mgmt.mib-2.system.sysDescr.0 or system.sysDescr.0 or
  36.  * sysDescr.0 .
  37.  *
  38.  * Options:
  39.  * [-d]                - Debug output. By default off.
  40.  * [-c] <community>    - community String. By default "public".
  41.  * [-p] <port>         - remote port no. By default 161.
  42.  * [-t] <Timeout>      - Timeout. By default 5000ms.
  43.  * [-r] <Retries>      - Retries. By default 0. 
  44.  * [-m] <MIBfile>      - MIB files.To load multiple mibs give within double quotes files seperated by a blank space.       
  45.  *<img SRC="images/v3only.jpg" ALT="v3 only"> [-v] <version>      - version(v1 / v2 / v3). By default v1.
  46.  * [-u] <username>     - The v3 principal/userName
  47.  * [-a] <autProtocol>  - The authProtocol(MD5/SHA). Mandatory if authPassword is specified
  48.  * [-w] <authPassword> - The authentication password.
  49.  * [-s] <privPassword> - The privacy protocol password. Must be accompanied with auth password and authProtocol fields.
  50.  * [-n] <contextName>  - The contextName to be used for the v3 pdu.
  51.  * [-i] <contextID>    - The contextID to be used for the v3 pdu.
  52.  * <host> Mandatory    - The RemoteHost (agent).Format (string without double qoutes/IpAddress).
  53.  * <OID>  Mandatory    - Give multiple no. of Object Identifiers.
  54.  */
  55. import java.util.*;
  56. import java.net.*;
  57. import com.adventnet.snmp.snmp2.*;
  58. import com.adventnet.snmp.mibs.*;
  59. import com.adventnet.snmp.snmp2.usm.*;
  60. public class snmpgetnext {
  61.     private static final int DEBUG = 0;
  62.     private static final int MIBS = 6;
  63.     
  64.     public static void main(String args[]) {
  65.     
  66.     // Take care of getting options
  67.     String usage = "snmpgetnext [-d] [-v version(v1,v2,v3)] [-c community] [-m MIB_files] [-p port] [-r retries] [-t timeout] [-u user] [-a auth_protocol] [-w auth_password] [-s priv_password] [-n contextName] [-i contextID] host OID [OID] ...";
  68.     String options[] = { "-d", "-c",  "-wc", "-p", "-r", "-t", "-m", "-v", "-u", "-a", "-w", "-s", "-n", "-i"};
  69.     String values[] = { "None", null, null, null, null, null, null, null, null, null, null, null, null, null };
  70.     
  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.     
  77.     if (values[DEBUG].equals("Set")) api.setDebug( true );
  78.     // Open SnmpSession 
  79.     SnmpSession session = new SnmpSession(api);
  80.     // set remote Host 
  81.     session.setPeername( opt.remArgs[0] );
  82.     //set the values
  83.     SetValues setVal = new SetValues(session, values);
  84.     if(setVal.usage_error) opt.usage_error(); 
  85.     // Loading MIBS
  86.     MibOperations mibOps = new MibOperations();
  87.  
  88.     // To load MIBs from compiled file
  89.  mibOps.setLoadFromCompiledMibs(true);
  90.     if (values[MIBS] != null) try {
  91.         System.err.println("Loading MIBs: "+values[MIBS]);
  92.         mibOps.loadMibModules(values[MIBS]);
  93.     } catch (Exception ex) {
  94.         System.err.println("Error loading MIBs: "+ex);
  95.     }
  96.     // Build Get request PDU
  97.     SnmpPDU pdu = new SnmpPDU();
  98.     pdu.setCommand( api.GETNEXT_REQ_MSG );
  99.     // add OIDs
  100.     for (int i=1;i<opt.remArgs.length;i++) { 
  101.         SnmpOID oid = mibOps.getSnmpOID(opt.remArgs[i]);
  102.         if (oid == null) 
  103.             System.exit(1);
  104.         else pdu.addNull(oid);
  105.     }
  106.     try {
  107.         session.open();
  108.         // Send PDU
  109.     } catch (SnmpException e) { 
  110.         System.err.println("Error opening seesion"+e.getMessage());
  111.         System.exit(1);
  112.     }
  113.     
  114.     if(session.getVersion()==SnmpAPI.SNMP_VERSION_3) {
  115. pdu.setUserName(setVal.userName.getBytes());
  116.         USMUtils.init_v3_params(setVal.userName, setVal.authProtocol, setVal.authPassword, setVal.privPassword, session.getPeername(),session.getRemotePort(),session);
  117.         pdu.setContextName(setVal.contextName.getBytes());
  118.         pdu.setContextID(setVal.contextID.getBytes());
  119.     }
  120.     try {
  121.         // Send PDU
  122.         pdu = session.syncSend(pdu);
  123.     } catch (SnmpException ex) {
  124.         System.err.println("Sending PDU"+ex.getMessage());
  125.         System.exit(1);
  126.     }
  127.     if (pdu == null) { 
  128.         // timeout
  129.         System.out.println("Request timed out to: " + opt.remArgs[0] );
  130.         System.exit(1);
  131.     }
  132.     // print and exit
  133.     System.out.println("Response Received from "+ pdu.getRemoteHost());
  134.     // Check for error in response
  135.     if (pdu.getErrstat() != 0) 
  136.         System.err.println("Error in response: " + mibOps.getErrorString(pdu));
  137.     else {
  138.         // print the response pdu varbinds
  139.         System.out.println(mibOps.varBindsToString(pdu));
  140.         // print the response pdu
  141.         System.out.println(mibOps.toString(pdu));
  142.     }
  143.     
  144.     // close session
  145.     session.close();
  146.     // stop api thread
  147.     api.close();
  148.     
  149.     System.exit(0);
  150.     }
  151. }