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

SNMP编程

开发平台:

C/C++

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