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

SNMP编程

开发平台:

C/C++

  1. /* $Id: snmpbulk.src,v 1.4.2.5 2009/01/28 13:29:38 prathika Exp $ */
  2. /*
  3.  * @(#)snmpbulk.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 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] [-pp privProtocol(DES/AES-128/AES-192/AES-256/3DES)] [-n contextName] [-i contextID] 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.  * [-pp]<privProtocol> -(DES/AES-128/AES-192/AES-256/3DES)
  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.snmp2.usm.*;
  59. public class snmpbulk {
  60.     public static void main(String args[]) {
  61.         
  62.         // Take care of getting options
  63.         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] [-pp privProtocol(DES/AES-128/AES-192/AES-256/3DES)] host OID [OID] ... nonRepeaters maxRepetions";
  64.         String options[] = { "-d", "-c",  "-wc", "-p", "-r", "-t", "-m", "-v", "-u", "-a", "-w", "-s", "-n", "-i" ,"-pp"};
  65.         String values[] = { "None", null, null, null, null, null, "None", null, null, null, null, null, null, null,null };
  66.         ParseOptions opt = new ParseOptions(args,options,values, usage);
  67.         
  68.         // Start SNMP API
  69.         SnmpAPI api;
  70.         api = new SnmpAPI();
  71.         if (values[0].equals("Set")) api.setDebug( true );        
  72.         if (opt.remArgs.length<4) opt.usage_error();
  73.         
  74.         // Open session
  75.         SnmpSession session = new SnmpSession(api);
  76.         session.setTransportProvider("com.adventnet.snmp.snmp2.TcpTransportImpl");
  77.         
  78.         ProtocolOptions params = null;
  79.         if(values[3] != null)   {
  80.             params = new TcpProtocolOptionsImpl(opt.remArgs[0], Integer.parseInt( values[3] ), -1);
  81.         }
  82.         else    {
  83.             params = new TcpProtocolOptionsImpl(opt.remArgs[0],161, -1);
  84.         }
  85.         session.setProtocolOptions(params);
  86.         //set the values
  87.         SetValues setVal = new SetValues(session, values);
  88.         if(setVal.usage_error) opt.usage_error();
  89.         // set version for default
  90.         if(values[7] == null)
  91.             session.setVersion(SnmpAPI.SNMP_VERSION_2C);
  92.         if(session.getVersion()==SnmpAPI.SNMP_VERSION_1)
  93.             opt.usage_error();
  94.         // Build GetBulk request PDU
  95.         SnmpPDU pdu = new SnmpPDU();
  96.         pdu.setCommand( api.GETBULK_REQ_MSG );
  97.         // add OIDs
  98.         for (int i=1;i<(opt.remArgs.length)-2;i++) {             
  99.             SnmpOID oid = new SnmpOID(opt.remArgs[i]);
  100.             if (oid.toValue() == null) 
  101.                 System.err.println("Invalid OID argument: " + opt.remArgs[i]);
  102.             else 
  103.                 pdu.addNull(oid);
  104.         }
  105.     try {
  106.         // set non-repeaters
  107.         pdu.setErrstat( Integer.parseInt(opt.remArgs[(opt.remArgs.length)-2]) );
  108.         // set max-repetitions
  109.         pdu.setErrindex( Integer.parseInt(opt.remArgs[(opt.remArgs.length)-1]) );
  110.     }
  111.     catch(NumberFormatException nfe)    {
  112.         nfe.printStackTrace();
  113.         System.exit(1);
  114.     }
  115.         try {
  116.             // open session
  117.             session.open();
  118.         } 
  119.         catch (SnmpException e) {
  120.             System.err.println("Opening session"+e.getMessage());
  121.             System.exit(1);
  122.         }
  123.         if(session.getVersion()==SnmpAPI.SNMP_VERSION_3) {
  124.             pdu.setUserName(setVal.userName.getBytes());
  125.             try
  126.             {
  127.                  
  128. USMUtils.init_v3_parameters(
  129. setVal.userName,
  130.          null,
  131. setVal.authProtocol,
  132. setVal.authPassword,
  133. setVal.privPassword,
  134. params,
  135. session,
  136. false,
  137. setVal.privProtocol);
  138.             }
  139.             catch(Exception exp)
  140.             {
  141.                 System.out.println(exp.getMessage());
  142.                 System.exit(1);
  143.             }
  144.             pdu.setContextName(setVal.contextName.getBytes());
  145.             pdu.setContextID(setVal.contextID.getBytes());
  146.         }
  147.         try {
  148.             pdu = session.syncSend(pdu);
  149.         }
  150.         catch(SnmpException e) {
  151.             System.err.println("Sending PDU:"+e.getMessage());
  152.         session.close();
  153.         api.close();
  154.             System.exit(1);
  155.         }
  156.         // timeout
  157.         if (pdu == null) {
  158.             System.out.println("Request timed out to: " + opt.remArgs[0] );
  159.             session.close();
  160.             api.close();        
  161.          System.exit(1);
  162.         }
  163.         // print and exit
  164.         System.out.println("Response PDU received from " +((TcpProtocolOptionsImpl)(pdu.getProtocolOptions())).getRemoteHost()+
  165.             ", community: " + pdu.getCommunity());
  166.         // check for error
  167.         if (pdu.getErrstat() != 0)
  168.             System.out.println("Error Indication in response: " +
  169.             SnmpException.exceptionString((byte)pdu.getErrstat()) +
  170.             "nErrindex: " + pdu.getErrindex());
  171.         else
  172.         {
  173.             for(Enumeration e = pdu.getVariableBindings().elements();e.hasMoreElements() ;)
  174.             {
  175.                 int error = 0;
  176.                 SnmpVarBind varbind = (SnmpVarBind)e.nextElement();
  177.                 // check for error index
  178.                 if ( (error = varbind.getErrindex()) != 0)
  179.                     System.out.println("Error Indication in response: " +
  180.                     SnmpException.exceptionString((byte)error));
  181.                 // print varbind
  182.                 System.out.println(varbind.toTagString());
  183.             }
  184.         }
  185.         
  186.         //close session
  187.         session.close();
  188.         // stop api thread
  189.         api.close();
  190.         
  191.         System.exit(0);
  192.     }
  193. }