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

SNMP编程

开发平台:

C/C++

  1. /* $Id: snmpget.src,v 1.4.2.5 2009/01/28 13:29:38 prathika Exp $ */
  2. /*
  3.  * @(#)snmpget.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 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.  *
  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.  * 
  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] [-pp privProtocol(DES/AES-128/AES-192/AES-256/3DES)] [-n contextName] [-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.  * [-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.  * [-pp] <privProtocol> - The privProtocol(DES/AES-128/AES-192/AES-256/3DES). Mandatory if authPassword is specified  
  48.  * host Mandatory      - The RemoteHost (agent).Format (string without double qoutes/IpAddress).
  49.  * OID  Mandatory      - Give multiple no. of Object Identifiers.
  50.  */
  51. import java.lang.*;
  52. import java.util.*;
  53. import java.net.*;
  54. import com.adventnet.snmp.snmp2.*;
  55. import com.adventnet.snmp.snmp2.usm.*;
  56. public class snmpget 
  57. {
  58.     public static void main(String args[]) 
  59.     {
  60.         
  61.         // Take care of getting options
  62.         String usage = 
  63.             "nsnmpget [-d] [-v version(v1,v2,v3)] [-c community]n"+
  64.             "[-p port] [-r retries] [-t timeout] [-u user]n"+
  65.             "[-a auth_protocol] [-w auth_password] [-s priv_password]n"+
  66.             "[-n contextName] [-i contextID][-pp privProtocol(DES/AES-128/AES-192/AES-256/3DES)] host OID [OID] ...";
  67.         String options[] = 
  68.             {
  69.                 "-d", "-c",  "-wc", "-p", "-r", "-t", "-m", "-v", "-u", "-a", "-w", "-s", "-n", "-i","-pp"
  70.             };
  71.         String values[] = 
  72.             {
  73.                 "None", null, null, null, null, null, "None", null, null, null, null, null, null, null,null
  74.             };       
  75.             ParseOptions opt = new ParseOptions(args,options,values, usage);
  76.             if (opt.remArgs.length<2)
  77.             {
  78.                 opt.usage_error();
  79.             }
  80.         
  81.             // Start SNMP API
  82.             SnmpAPI api;
  83.             api = new SnmpAPI();
  84.             if (values[0].equals("Set"))
  85.             {
  86.                 api.setDebug( true );
  87.             }   
  88.     
  89.             // Open session
  90.             SnmpSession session = new SnmpSession(api);        
  91.         
  92.             SetValues setVal = new SetValues( session, values ); 
  93.             if(setVal.usage_error)
  94.             {
  95.                 opt.usage_error();
  96.             }   
  97.             session.setTransportProvider("com.adventnet.snmp.snmp2.TcpTransportImpl");
  98.             
  99.             ProtocolOptions params = null;
  100.             if(values[3] != null)
  101.             {
  102.                 params = new TcpProtocolOptionsImpl(opt.remArgs[0], Integer.parseInt( values[3] ), -1);
  103.             }
  104.             else
  105.             {
  106.                 params = new TcpProtocolOptionsImpl(opt.remArgs[0], 161, -1);
  107.             }        
  108.             session.setProtocolOptions(params);        
  109.             
  110.             // Build Get request PDU
  111.             SnmpPDU pdu = new SnmpPDU();
  112.             pdu.setCommand( api.GET_REQ_MSG );
  113.     
  114.             // add OIDs
  115.             for (int i=1;i<opt.remArgs.length;i++) 
  116.             {
  117.                 SnmpOID oid = new SnmpOID(opt.remArgs[i]);
  118.                 if (oid.toValue() == null) 
  119.                 {
  120.                     System.err.println("Invalid OID argument: " + opt.remArgs[i]);
  121.                 }   
  122.                 else
  123.                 {
  124.                     pdu.addNull(oid);
  125.                 }   
  126.             }
  127.             try 
  128.             {
  129.                 //Open session
  130.                 session.open();
  131.             }
  132.             catch (SnmpException e) 
  133.             {
  134.                 System.err.println("Error opening session:"+e.getMessage());
  135.                 System.exit(1);
  136.             }
  137.         if(session.getVersion()==SnmpAPI.SNMP_VERSION_3) 
  138.         {
  139.             pdu.setUserName(setVal.userName.getBytes());
  140.             try
  141.             {
  142.                   USMUtils.init_v3_parameters(
  143. setVal.userName,
  144.          null,
  145. setVal.authProtocol,
  146. setVal.authPassword,
  147. setVal.privPassword,
  148. params,
  149. session,
  150. false,
  151. setVal.privProtocol);              
  152.  
  153.             }
  154.             catch(Exception e)
  155.             {
  156.                 System.out.println(e.getMessage());
  157.                 System.exit(0);
  158.             }
  159.             pdu.setContextName(setVal.contextName.getBytes());
  160.             pdu.setContextID(setVal.contextID.getBytes());
  161.          } 
  162.         SnmpPDU res_pdu = null;
  163.         try 
  164.         {
  165.             // Send PDU and receive response PDU
  166.             res_pdu = session.syncSend(pdu);
  167.         }
  168.         catch (SnmpException e)
  169.         {
  170.             System.err.println("Sending PDU"+e.getMessage());
  171.             session.close();
  172.             api.close();             
  173.             System.exit(1);
  174.         }    
  175.         if (res_pdu == null) 
  176.         {
  177.             // timeout
  178.             System.out.println("Request timed out to: " + opt.remArgs[0] );
  179.             session.close();
  180.             api.close();             
  181.             System.exit(1);
  182.         }
  183.         // print and exit
  184.         System.out.println("Response PDU received from " +
  185.                 ((TcpProtocolOptionsImpl)(res_pdu.getProtocolOptions())).getRemoteHost()+
  186.                  ", community: " + res_pdu.getCommunity());
  187.             
  188.         // Check for error in response
  189.         if (res_pdu.getErrstat() != 0)
  190.         {
  191.             System.err.println(res_pdu.getError());
  192.         }   
  193.         else 
  194.         {
  195.             // print the response pdu varbinds
  196.             System.out.println(res_pdu.printVarBinds());
  197.         }
  198.         // close session
  199.         session.close();
  200.         // stop api thread
  201.         api.close();
  202.         System.exit(0);
  203.     }
  204. }