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

SNMP编程

开发平台:

C/C++

  1. /* $Id: snmpget.src,v 1.4 2002/09/09 05:41:02 parasuraman Exp $ */
  2. /*
  3.  * @(#)snmpget.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 GET 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.  * java snmpget [options] hostname oid ...
  14.  *
  15.  * v1 request:
  16.  * java snmpget [-d] [-c community] [-p port] [-t timeout] [-r retries] host OID [OID] ...
  17.  * e.g. 
  18.  * java snmpget -p 161 -c public adventnet 1.1.0 1.2.0
  19.  *<img SRC="images/v2candv3only.jpg" ALT="v2c and v3 only">
  20.  * v2c request:
  21.  * java snmpget [-d] [-v version(v1,v2)] [-c community] [-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 snmpget -p 161 -v v2 -c public adventnet 1.1.0 1.2.0
  24.  *<img SRC="images/v3only.jpg" ALT="v3 only"> 
  25.  * v3 request:
  26.  * java snmpget [-d] [-v version(v1,v2,v3)] [-c community] [-p port] [-r retries] [-t timeout] [-u user] [-a auth_protocol] [-w auth_password] [-s priv_password] [-i context_id] host OID [OID] ...
  27.  * e.g.
  28.  * java snmpget -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.  * Options:
  35.  * [-d]                - Debug output. By default off.
  36.  * [-c] <community>    - community String. By default "public".
  37.  * [-p] <port>         - remote port no. By default 161.
  38.  * [-t] <Timeout>      - Timeout. By default 5000ms.
  39.  * [-r] <Retries>      - Retries. By default 0.      
  40.  *<img SRC="images/v3only.jpg" ALT="v3 only"> [-v] <version>      - version(v1 / v2 / v3). By default v1.
  41.  * [-u] <username>     - The v3 principal/userName
  42.  * [-a] <autProtocol>  - The authProtocol(MD5/SHA). Mandatory if authPassword is specified
  43.  * [-w] <authPassword> - The authentication password.
  44.  * [-s] <privPassword> - The privacy protocol password. Must be accompanied with auth password and authProtocol fields.
  45.  * [-n] <contextName>  - The contextName to be used for the v3 pdu.
  46.  * [-i] <contextID>    - The contextID to be used for the v3 pdu.
  47.  * host Mandatory      - The RemoteHost (agent).Format (string without double qoutes/IpAddress).
  48.  * OID  Mandatory      - Give multiple no. of Object Identifiers.
  49.  */
  50. import java.lang.*;
  51. import java.util.*;
  52. import java.net.*;
  53. import com.adventnet.snmp.snmp2.*;
  54. import com.adventnet.snmp.snmp2.usm.*;
  55. public class snmpget {
  56.     public static void main(String args[]) {
  57.         
  58.         // Take care of getting options
  59.         String usage = "snmpget [-d] [-v version(v1,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] ...";
  60.         String options[] = { "-d", "-c",  "-wc", "-p", "-r", "-t", "-m", "-v", "-u", "-a", "-w", "-s", "-n", "-i"};
  61.         String values[] = { "None", null, null, null, null, null, "None", null, null, null, null, null, null, null };       
  62.          ParseOptions opt = new ParseOptions(args,options,values, usage);
  63.         if (opt.remArgs.length<2) opt.usage_error();
  64.         // Start SNMP API
  65.         SnmpAPI api;
  66.         api = new SnmpAPI();
  67.         if (values[0].equals("Set")) api.setDebug( true );
  68.     
  69.         // Open session
  70.         SnmpSession session = new SnmpSession(api);        
  71.         session.setProtocol(session.TRANSPORT_PROVIDER);
  72.         
  73.         SetValues setVal = new SetValues( session, values ); 
  74.         if(setVal.usage_error) opt.usage_error();
  75. ProtocolOptions params = null;
  76. if(values[3] != null) {
  77. params = new TcpProtocolOptionsImpl(opt.remArgs[0], Integer.parseInt( values[3] ), -1);
  78. }
  79. else  {
  80. params = new TcpProtocolOptionsImpl(opt.remArgs[0], 161, -1);
  81. }        
  82.         session.setProtocolOptions(params);        
  83.         
  84.         // Build Get request PDU
  85.         SnmpPDU pdu = new SnmpPDU();
  86.         pdu.setCommand( api.GET_REQ_MSG );
  87.         // add OIDs
  88.         for (int i=1;i<opt.remArgs.length;i++) {
  89.             SnmpOID oid = new SnmpOID(opt.remArgs[i]);
  90.             if (oid.toValue() == null) 
  91.                 System.err.println("Invalid OID argument: " + opt.remArgs[i]);
  92.             else pdu.addNull(oid);
  93.         }
  94.         try {
  95.             //Open session
  96.             session.open();
  97.         } catch (SnmpException e) {
  98.             System.err.println("Error opening session:"+e.getMessage());
  99.     System.exit(1);
  100.         }
  101.         if(session.getVersion()==SnmpAPI.SNMP_VERSION_3) {
  102. pdu.setUserName(setVal.userName.getBytes());
  103.             USMUtils.init_v3_params(setVal.userName, setVal.authProtocol, setVal.authPassword, setVal.privPassword, params.getSessionId(),session);
  104.             pdu.setContextName(setVal.contextName.getBytes());
  105.             pdu.setContextID(setVal.contextID.getBytes());
  106.          } 
  107.         try {
  108.             // Send PDU and receive response PDU
  109.             pdu = session.syncSend(pdu);
  110.         } catch (SnmpException e) {
  111.             System.err.println("Sending PDU"+e.getMessage());
  112.             session.close();
  113.             api.close();             
  114.     System.exit(1);
  115.         }    
  116.         if (pdu == null) {
  117.             // timeout
  118.             System.out.println("Request timed out to: " + opt.remArgs[0] );
  119.             session.close();
  120.             api.close();             
  121.     System.exit(1);
  122.         }
  123.         // print and exit
  124.         System.out.println("Response PDU received from " +((TcpProtocolOptionsImpl)(pdu.getProtocolOptions())).getRemoteHost()+
  125.  ", community: " + pdu.getCommunity());
  126.             
  127.         // Check for error in response
  128.         if (pdu.getErrstat() != 0)
  129.             System.err.println(pdu.getError());
  130.         else 
  131.             // print the response pdu varbinds
  132.             System.out.println(pdu.printVarBinds());
  133.         
  134.         // close session
  135.         session.close();
  136.         // stop api thread
  137.         api.close();
  138.     
  139.         System.exit(0);
  140.     }
  141. }