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

SNMP编程

开发平台:

C/C++

  1. /* $Id: snmpbulk.src,v 1.4.2.6 2009/01/28 13:01:35 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 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] [-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 -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.  * [-pp]<privProtocol> - The privacy protocol (DES/AES-128/AES-192/AES-256/3DES)
  48.  * [-n] <contextName>  - The contextName to be used for the v3 pdu.
  49.  * [-i] <contextID>    - The contextID to be used for the v3 pdu.
  50.  * <host> Mandatory    - The RemoteHost (agent).Format (string without double qoutes/IpAddress).
  51.  * <OID>  Mandatory    - Give only one Object Identifier.
  52.  * <nonRepeaters>      - non-repeaters. Mandatory
  53.  * <maxRepetions>      - max-repetitions. Mandatory
  54.  */
  55. import java.lang.*;
  56. import java.util.*;
  57. import java.net.*;
  58. import com.adventnet.snmp.snmp2.*;
  59. import com.adventnet.snmp.mibs.*;
  60. import com.adventnet.snmp.snmp2.usm.*;
  61. public class snmpbulk {
  62.     
  63.     private static final int DEBUG = 0;
  64.     private static final int MIBS = 6;
  65.     private static final int VERSION = 7;
  66.     public static void main(String args[]) {
  67.                 
  68.         // Take care of getting options
  69.         
  70.         String usage = 
  71.             "nsnmpbulk [-d] [-v version(v2,v3)] [-c community]n"+
  72.             "[-m MIB_files] [-p port] [-r retries] [-t timeout]n"+
  73.             "[-u user] [-a auth_protocol] [-w auth_password] n"+
  74.             "[-s priv_password] [-n contextName] [-i contextID][-pp privProtocol(DES/AES-128/AES-192/AES-256/3DES)]n"+
  75.             "host OID [OID] ... nonRepeaters maxRepetions";
  76.         String options[] = 
  77.             { 
  78.                 "-d", "-c",  "-wc", "-p", "-r", "-t", "-m", "-v", "-u", "-a", "-w", "-s", "-n", "-i" , "-pp"
  79.             };
  80.         String values[] = 
  81.             {
  82.                 "None", null, null, null, null, null, null, null, null, null, null, null, null, null, null 
  83.             };
  84.         ParseOptions opt = new ParseOptions(args,options,values, usage);
  85.         if (opt.remArgs.length<4)
  86.         { 
  87.             opt.usage_error();
  88.         }   
  89.                 
  90.         // Start SNMP API
  91.         SnmpAPI api;
  92.         api = new SnmpAPI();
  93.         if (values[DEBUG].equals("Set"))
  94.         {
  95.             api.setDebug( true );        
  96.         }   
  97.         
  98.         // Open session and set remote host & port if needed,
  99.         SnmpSession session = new SnmpSession(api);
  100.         
  101.    int PORT = 3;
  102.         UDPProtocolOptions ses_opt = new UDPProtocolOptions();
  103.         ses_opt.setRemoteHost(opt.remArgs[0]);
  104.         if(values[PORT] != null)
  105.         {
  106.           try
  107.           {
  108.               ses_opt.setRemotePort(Integer.parseInt(values[PORT]));
  109.           }
  110.           catch(Exception exp)
  111.           {
  112.               System.out.println("Invalid port: " + values[PORT]);
  113.               System.exit(1);
  114.           }
  115.         }
  116.         session.setProtocolOptions(ses_opt);
  117.        
  118.       
  119. //set the values
  120.         SetValues setVal = new SetValues(session, values);
  121.         if(setVal.usage_error)
  122.         {
  123.             opt.usage_error();
  124.         }   
  125.         // set version for default
  126.         if(values[VERSION] == null)
  127.         {
  128.             session.setVersion(SnmpAPI.SNMP_VERSION_2C);
  129.         }   
  130.         if(session.getVersion()==SnmpAPI.SNMP_VERSION_1) 
  131.         {
  132.             System.err.println("Invalid version specified");
  133.             opt.usage_error();
  134.         }
  135.         // Loading MIBS
  136.         MibOperations mibOps = new MibOperations();
  137.           
  138.         // To load MIBs from compiled file
  139.          mibOps.setLoadFromCompiledMibs(true);
  140.         if (values[MIBS] != null)
  141.         {
  142.             try 
  143.             {
  144.                  System.err.println("Loading MIBs: "+values[MIBS]);
  145.                  mibOps.loadMibModules(values[MIBS]);
  146.             }
  147.             catch (Exception ex) 
  148.             {
  149.                 System.err.println("Error loading MIBs: "+ex);
  150.             }
  151.         }
  152.         
  153.         // Build GetBulk request PDU
  154.         SnmpPDU pdu = new SnmpPDU();
  155.         pdu.setCommand( api.GETBULK_REQ_MSG );
  156.         
  157.         // add OIDs            
  158.         for (int i=1;i<(opt.remArgs.length)-2;i++) 
  159.         { 
  160.             SnmpOID oid = mibOps.getSnmpOID(opt.remArgs[i]);
  161.             if (oid == null) 
  162.             {
  163.                 System.exit(1);
  164.             }   
  165.             else 
  166.             {
  167.                 pdu.addNull(oid);
  168.             }
  169.         }
  170.         // set non-repeaters
  171.         pdu.setErrstat( Integer.parseInt(opt.remArgs[(opt.remArgs.length)-2]) );
  172.         // set max-repetitions
  173.         pdu.setErrindex( Integer.parseInt(opt.remArgs[(opt.remArgs.length)-1]) );
  174.         try 
  175.         {
  176.             // Open session
  177.             session.open();
  178.         } 
  179.         catch (SnmpException e) 
  180.         {
  181.             System.err.println("Opening session Error : " + e.getMessage());
  182.             System.exit(1);
  183.         }
  184.         if(session.getVersion()==SnmpAPI.SNMP_VERSION_3) 
  185.         {
  186.             pdu.setUserName(setVal.userName.getBytes());
  187.             try
  188.             {
  189.                 USMUtils.init_v3_parameters(
  190. setVal.userName,
  191. null,
  192. setVal.authProtocol,
  193. setVal.authPassword,
  194. setVal.privPassword,
  195. ses_opt,
  196. session,
  197. false,
  198. setVal.privProtocol);
  199.             }
  200.             catch(Exception e)
  201.             {
  202.                 System.out.println(e.getMessage());
  203.                 System.exit(0);
  204.             }
  205.             pdu.setContextName(setVal.contextName.getBytes());
  206.             pdu.setContextID(setVal.contextID.getBytes());
  207.         }
  208.         
  209.         SnmpPDU res_pdu = null;
  210.         try 
  211.         {
  212.             // Send PDU and receive response PDU
  213.             res_pdu = session.syncSend(pdu);
  214.         } 
  215.         catch (SnmpException ex) 
  216.         {
  217.             System.err.println("Sending PDU : " + ex.getMessage());
  218.             System.exit(1);
  219.         }
  220.         if (res_pdu == null) 
  221.         {  
  222.             // timeout
  223.             System.out.println("Request timed out to: " + opt.remArgs[0] );
  224.             System.exit(1);
  225.         }
  226.         // Check for error in response
  227.         if (res_pdu.getErrstat() != 0)
  228.         {
  229.             System.out.println("Error Indication in response: " +
  230.                                mibOps.getErrorString(res_pdu));
  231.         }                      
  232.         else
  233.         {
  234.             // print the response pdu varbinds
  235.             System.out.println("Response Received from "+
  236.                                res_pdu.getProtocolOptions().getSessionId() +"n" + 
  237.                                mibOps.varBindsToString(res_pdu));
  238.             // print the response pdu
  239.             System.out.println(mibOps.toString(res_pdu));
  240.         }
  241.         
  242.         //close session
  243.         session.close();
  244.         // stop api thread
  245.         api.close();
  246.         
  247.         System.exit(0);
  248.     }
  249. }