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

SNMP编程

开发平台:

C/C++

  1. /* $Id: snmpbulk.src,v 1.4 2002/09/09 05:41:01 parasuraman 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 package of
  10.  * 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] [-c community] [-p port] [-t timeout] [-r retries] host OID [OID] ... nonRepeaters maxRepetions
  19.  * e.g. 
  20.  * java snmpbulk -p 161 -c public 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] [-p port] [-r retries] [-t timeout] [-u user] [-a auth_protocol] [-w auth_password] [-s priv_password] [-i contextName] host OID [OID] ... nonRepeaters maxRepetions
  24.  * e.g.
  25.  * java snmpbulk -v v3 -c public -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.  * [-v] <version>      - version(v2 / v3).
  42.  * [-u] <username>     - The v3 principal/userName
  43.  * [-a] <autProtocol>  - The authProtocol(MD5/SHA). Mandatory if authPassword is specified
  44.  * [-w] <authPassword> - The authentication password.
  45.  * [-s] <privPassword> - The privacy protocol password. Must be accompanied with auth password and authProtocol fields.
  46.  * [-n] <contextName>  - The contextName to be used for the v3 pdu.
  47.  * [-i] <contextID>    - The contextID to be used for the v3 pdu.
  48.  * <host> Mandatory    - The RemoteHost (agent).Format (string without double qoutes/IpAddress).
  49.  * <OID>  Mandatory    - Give only one Object Identifier.
  50.  * <nonRepeaters>      - non-repeaters. Mandatory
  51.  * <maxRepetions>      - max-repetitions. Mandatory
  52.  */
  53. import java.lang.*;
  54. import java.util.*;
  55. import java.net.*;
  56. import com.adventnet.snmp.snmp2.*;
  57. import com.adventnet.snmp.snmp2.usm.*;
  58. public class snmpbulk {
  59.     public static void main(String args[]) {
  60.         
  61.         // Take care of getting options
  62.         String usage = "snmpbulk [-d] [-v version(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 [OID] ... nonRepeaters maxRepetions";
  63.         String options[] = { "-d", "-c",  "-wc", "-p", "-r", "-t", "-m", "-v", "-u", "-a", "-w", "-s", "-n", "-i"};
  64.         String values[] = { "None", null, null, null, null, null, "None", null, null, null, null, null, null, null };
  65.         ParseOptions opt = new ParseOptions(args,options,values, usage);
  66.         
  67.         // Start SNMP API
  68.         SnmpAPI api;
  69.         api = new SnmpAPI();
  70.         if (values[0].equals("Set")) api.setDebug( true );        
  71.         if (opt.remArgs.length<4) opt.usage_error();
  72.         
  73.         // Open session
  74.         SnmpSession session = new SnmpSession(api);
  75. session.setProtocol(session.TRANSPORT_PROVIDER);        
  76.         
  77. ProtocolOptions params = null;
  78. if(values[3] != null) {
  79. params = new TcpProtocolOptionsImpl(opt.remArgs[0], Integer.parseInt( values[3] ), -1);
  80. }
  81. else {
  82. params = new TcpProtocolOptionsImpl(opt.remArgs[0],161, -1);
  83. }
  84.         session.setProtocolOptions(params);
  85.         //set the values
  86.         SetValues setVal = new SetValues(session, values);
  87.         if(setVal.usage_error) opt.usage_error();
  88.         // set version for default
  89.         if(values[7] == null)
  90.             session.setVersion(SnmpAPI.SNMP_VERSION_2C);
  91.         if(session.getVersion()==SnmpAPI.SNMP_VERSION_1)
  92.             opt.usage_error();
  93.         // Build GetBulk request PDU
  94.         SnmpPDU pdu = new SnmpPDU();
  95.         pdu.setCommand( api.GETBULK_REQ_MSG );
  96.         // add OIDs
  97.         for (int i=1;i<(opt.remArgs.length)-2;i++) {             
  98.             SnmpOID oid = new SnmpOID(opt.remArgs[i]);
  99.             if (oid.toValue() == null) 
  100.                 System.err.println("Invalid OID argument: " + opt.remArgs[i]);
  101.             else 
  102.                 pdu.addNull(oid);
  103.         }
  104. try {
  105.         // set non-repeaters
  106.         pdu.setErrstat( Integer.parseInt(opt.remArgs[(opt.remArgs.length)-2]) );
  107.         // set max-repetitions
  108.         pdu.setErrindex( Integer.parseInt(opt.remArgs[(opt.remArgs.length)-1]) );
  109. }
  110. catch(NumberFormatException nfe) {
  111. nfe.printStackTrace();
  112. System.exit(1);
  113. }
  114.         try {
  115.             // open session
  116.             session.open();
  117.         } 
  118.         catch (SnmpException e) {
  119.             System.err.println("Opening session"+e.getMessage());
  120.             System.exit(1);
  121.         }
  122.         if(session.getVersion()==SnmpAPI.SNMP_VERSION_3) {
  123. pdu.setUserName(setVal.userName.getBytes());
  124.             USMUtils.init_v3_params(setVal.userName, setVal.authProtocol, setVal.authPassword, setVal.privPassword, params.getSessionId(),session);
  125.             pdu.setContextName(setVal.contextName.getBytes());
  126.             pdu.setContextID(setVal.contextID.getBytes());
  127.         }
  128.         try {
  129.             pdu = session.syncSend(pdu);
  130.         }
  131.         catch(SnmpException e) {
  132.             System.err.println("Sending PDU:"+e.getMessage());
  133.     session.close();
  134.     api.close();
  135.             System.exit(1);
  136.         }
  137.         // timeout
  138.         if (pdu == null) {
  139.             System.out.println("Request timed out to: " + opt.remArgs[0] );
  140.             session.close();
  141.             api.close();        
  142.      System.exit(1);
  143.         }
  144.         // print and exit
  145.         System.out.println("Response PDU received from " +((TcpProtocolOptionsImpl)(pdu.getProtocolOptions())).getRemoteHost()+
  146.             ", community: " + pdu.getCommunity());
  147.         // check for error
  148.         if (pdu.getErrstat() != 0)
  149.             System.out.println("Error Indication in response: " +
  150.             SnmpException.exceptionString((byte)pdu.getErrstat()) +
  151.             "nErrindex: " + pdu.getErrindex());
  152.         else
  153.         {
  154.             for(Enumeration e = pdu.getVariableBindings().elements();e.hasMoreElements() ;)
  155.             {
  156.                 int error = 0;
  157.                 SnmpVarBind varbind = (SnmpVarBind)e.nextElement();
  158.                 // check for error index
  159.                 if ( (error = varbind.getErrindex()) != 0)
  160.                     System.out.println("Error Indication in response: " +
  161.                     SnmpException.exceptionString((byte)error));
  162.                 // print varbind
  163.                 System.out.println(varbind.toTagString());
  164.             }
  165.         }
  166.         
  167.         //close session
  168.         session.close();
  169.         // stop api thread
  170.         api.close();
  171.         
  172.         System.exit(0);
  173.     }
  174. }