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

SNMP编程

开发平台:

C/C++

  1. /* $Id: snmpbulk.src,v 1.4 2002/09/09 05:43:43 pushpar Exp $ */
  2. /*
  3.  * @(#)snmpbulk.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 GETBULK 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.  * Note: The values of non-repeaters max-repetitions should be the last arguments
  14.  * 
  15.  * java snmpbulk [options] hostname oid [oid] ... non-repeaters max-repetitions
  16.  *
  17.  * v2c request:
  18.  * java snmpbulk [-d] [-m MIB_files] [-c community] [-p port] [-t timeout] [-r retries] host OID [OID] ... nonRepeaters maxRepetions
  19.  * e.g. 
  20.  * java snmpbulk -p 161 -c public -m ../../../mibs/RFC1213-MIB adventnet 1.2.0 1.2.0 1.5.0 1 2
  21.  *
  22.  * v3 request:
  23.  * java snmpbulk [-d] [-v version(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] ... nonRepeaters maxRepetions
  24.  * e.g.
  25.  * java snmpbulk -v v3 -c public -m ../../../mibs/RFC1213-MIB -p 161 -u advent -a MD5 -w authPass localhost 1.2.0 1.3.0 1.4.0 1 2
  26.  * 
  27.  * If the oid is not starting with a dot (.) it will be prefixed by .1.3.6.1.2.1 .
  28.  * So the entire OID of 1.1.0 will become .1.3.6.1.2.1.1.1.0 . You can also
  29.  * give the entire OID .
  30.  * 
  31.  * If the mib is loaded you can also give string oids in the following formats
  32.  * .iso.org.dod.internet.mgmt.mib-2.system.sysDescr.0 or system.sysDescr.0 or
  33.  * sysDescr.0 .
  34.  * 
  35.  * Options:
  36.  * [-d]                - Debug output. By default off.
  37.  * [-c] <community>    - community String. By default "public".
  38.  * [-p] <port>         - remote port no. By default 161.
  39.  * [-t] <Timeout>      - Timeout. By default 5000ms.
  40.  * [-r] <Retries>      - Retries. By default 0. 
  41.  * [-m] <MIBfile>      - MIB files.To load multiple mibs give within double quotes files seperated by a blank space.       
  42.  * [-v] <version>      - version(v2 / v3).
  43.  * [-u] <username>     - The v3 principal/userName
  44.  * [-a] <authProtocol> - The authProtocol(MD5/SHA). Mandatory if authPassword is specified
  45.  * [-w] <authPassword> - The authentication password.
  46.  * [-s] <privPassword> - The privacy protocol password. Must be accompanied with auth password and authProtocol fields.
  47.  * [-n] <contextName>  - The contextName to be used for the v3 pdu.
  48.  * [-i] <contextID>    - The contextID to be used for the v3 pdu.
  49.  * <host> Mandatory    - The RemoteHost (agent).Format (string without double qoutes/IpAddress).
  50.  * <OID>  Mandatory    - Give only one Object Identifier.
  51.  * <nonRepeaters>      - non-repeaters. Mandatory
  52.  * <maxRepetions>      - max-repetitions. Mandatory
  53.  */
  54. import java.lang.*;
  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 snmpbulk {
  61.     
  62.     private static final int DEBUG = 0;
  63.     private static final int MIBS = 6;
  64.     private static final int VERSION = 7;
  65.     public static void main(String args[]) {
  66.                 
  67.         // Take care of getting options
  68.         String usage = "snmpbulk [-d] [-v version(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] ... nonRepeaters maxRepetions";
  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<4) opt.usage_error();
  73.                 
  74.         // Start SNMP API
  75.         SnmpAPI api;
  76.         api = new SnmpAPI();
  77.         if (values[DEBUG].equals("Set")) api.setDebug( true );        
  78.         
  79.         // Open session and set remote host & port if needed,
  80.         SnmpSession session = new SnmpSession(api);
  81.         // set remote Host 
  82.         session.setPeername( opt.remArgs[0] );
  83.         
  84.         //set the values
  85.         SetValues setVal = new SetValues(session, values);
  86.         if(setVal.usage_error) opt.usage_error();
  87.                 
  88.         // set version for default
  89.         if(values[VERSION] == null)
  90.         session.setVersion(SnmpAPI.SNMP_VERSION_2C);
  91.     if(session.getVersion()==SnmpAPI.SNMP_VERSION_1) {
  92.         System.err.println("Invalid version specified");
  93.         opt.usage_error();
  94.     }
  95.         // Loading MIBS
  96.         MibOperations mibOps = new MibOperations();
  97.   
  98.   // To load MIBs from compiled file
  99.   mibOps.setLoadFromCompiledMibs(true);
  100.         if (values[MIBS] != null) try {
  101.              System.err.println("Loading MIBs: "+values[MIBS]);
  102.                                mibOps.loadMibModules(values[MIBS]);
  103.         } catch (Exception ex) {
  104.             System.err.println("Error loading MIBs: "+ex);
  105.         }
  106.         // Build GetBulk request PDU
  107.         SnmpPDU pdu = new SnmpPDU();
  108.         pdu.setCommand( api.GETBULK_REQ_MSG );
  109.         
  110.         // add OIDs            
  111.         for (int i=1;i<(opt.remArgs.length)-2;i++) { 
  112.             SnmpOID oid = mibOps.getSnmpOID(opt.remArgs[i]);
  113.             if (oid == null) 
  114.                 System.exit(1);
  115.             else 
  116.                 pdu.addNull(oid);
  117.         }
  118.         // set non-repeaters
  119.         pdu.setErrstat( Integer.parseInt(opt.remArgs[(opt.remArgs.length)-2]) );
  120.         // set max-repetitions
  121.         pdu.setErrindex( Integer.parseInt(opt.remArgs[(opt.remArgs.length)-1]) );
  122.         try {
  123.             // Open session
  124.             session.open();
  125.         } 
  126.         catch (SnmpException e) {
  127.             System.err.println("Opening session Error : " + e.getMessage());
  128.             System.exit(1);
  129.         }
  130.         if(session.getVersion()==SnmpAPI.SNMP_VERSION_3) {
  131. pdu.setUserName(setVal.userName.getBytes());
  132.             USMUtils.init_v3_params(setVal.userName, setVal.authProtocol, setVal.authPassword, setVal.privPassword, session.getPeername(),session.getRemotePort(),session);
  133.             pdu.setContextName(setVal.contextName.getBytes());
  134.             pdu.setContextID(setVal.contextID.getBytes());
  135.         }
  136.         try {
  137.             // Send PDU and receive response PDU
  138.             pdu = session.syncSend(pdu);
  139.         } 
  140.         catch (SnmpException ex) {
  141.             System.err.println("Sending PDU : " + ex.getMessage());
  142.             System.exit(1);
  143.         }
  144.         if (pdu == null) {  
  145.             // timeout
  146.             System.out.println("Request timed out to: " + opt.remArgs[0] );
  147.             System.exit(1);
  148.         }
  149.         // Check for error in response
  150.         if (pdu.getErrstat() != 0)
  151.             System.out.println("Error Indication in response: " +
  152.                                mibOps.getErrorString(pdu));
  153.         else
  154.         {
  155.             // print the response pdu varbinds
  156.             System.out.println("Response Received from "+
  157.                                pdu.getRemoteHost() +"n" + 
  158.                                mibOps.varBindsToString(pdu));
  159.             // print the response pdu
  160.             System.out.println(mibOps.toString(pdu));
  161.         }
  162.         
  163.         //close session
  164.         session.close();
  165.         // stop api thread
  166.         api.close();
  167.         
  168.         System.exit(0);
  169.     }
  170. }