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

SNMP编程

开发平台:

C/C++

  1. /* $Id: snmpget.src,v 1.10.6.3 2009/01/28 13:22:43 tmanoj 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] [-i context_id] [-pp privProtocol(DES/AES-128/AES-192/AES-256/3DES)] 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.  * [-pp]<privProtocol> - The privProtocol(DES/AES).
  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.  * [-i] <contextID>    - The contextID to be used for the v3 pdu.
  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. // Take care of getting options
  61. String usage =
  62. "nsnmpget [-d] [-v version(v1,v2,v3)] [-c community] n" +
  63. "[-p port] [-r retries] [-t timeout] [-u user] n" +
  64. "[-a auth_protocol] [-w auth_password] n" +
  65. "[-s priv_password] [-n contextName] [-i contextID] n" +
  66. "[-DB_driver database_driver]n" +
  67. "[-DB_url database_url]n" +
  68. "[-DB_username database_username]n" +
  69. "[-DB_password database_password]n" +
  70. "[-pp privProtocol(DES/AES-128/AES-192/AES-256/3DES)]n" +
  71. "host OID [OID] ...n";
  72.         
  73. String options[] =
  74. {
  75. "-d", "-c",  "-wc", "-p", "-r", "-t", "-m",
  76. "-v", "-u", "-a", "-w", "-s", "-n", "-i",
  77. "-DB_driver", "-DB_url", "-DB_username", "-DB_password", "-pp"
  78. };
  79.         
  80. String values[] =
  81. {
  82. "None", null, null, null, null, null, "None",
  83. null, null, null, null, null, null, null,
  84. null, null, null, null, null
  85. };
  86. ParseOptions opt = new ParseOptions(args,options,values, usage);
  87. if (opt.remArgs.length<2)
  88. {
  89. opt.usage_error();
  90. }
  91. // Start SNMP API
  92. SnmpAPI api;
  93. api = new SnmpAPI();
  94. if (values[0].equals("Set"))
  95. {
  96. api.setDebug( true );
  97. }
  98. // Open session
  99. SnmpSession session = new SnmpSession(api);        
  100. // set remote Host 
  101. int PORT = 3;
  102. SnmpPDU pdu = new SnmpPDU();
  103. UDPProtocolOptions udpOpt = new UDPProtocolOptions();
  104. udpOpt.setRemoteHost(opt.remArgs[0]);
  105. if(values[PORT] != null)
  106. {
  107. try
  108. {
  109. udpOpt.setRemotePort(Integer.parseInt(values[PORT]));
  110. }
  111. catch(Exception exp)
  112. {
  113. System.out.println("Invalid port: " + values[PORT]);
  114. System.exit(1);
  115. }
  116. }
  117. pdu.setProtocolOptions(udpOpt);
  118. SetValues setVal = new SetValues( pdu, values ); 
  119. if(setVal.usage_error)
  120. {
  121. opt.usage_error();
  122. }
  123. String driver = values[14];
  124. String url = values[15];
  125. String username = values[16];
  126. String password = values[17];
  127. if(driver != null || url != null ||
  128. username != null || password != null)
  129. {
  130. if(pdu.getVersion() != 3)
  131. {
  132. System.out.println(
  133. "Database option can be used only for SNMPv3.");
  134. System.exit(1);
  135. }
  136. if(driver == null)
  137. {
  138. System.out.println(
  139. "The Database driver name should be given.");
  140. System.exit(1);
  141. }
  142. if(url == null)
  143. {
  144. System.out.println("The Database URL should be given.");
  145. System.exit(1);
  146. }
  147. try
  148. {
  149. api.setV3DatabaseFlag(true);
  150. api.initJdbcParams(driver, url, username, password);
  151. }
  152. catch(Exception exp)
  153. {
  154. System.out.println("Unable to Establish Database Connection.");
  155. System.out.println("Please check the driverName and url.");
  156. System.exit(1);
  157. }
  158. }
  159. // Build Get request PDU
  160. // SnmpPDU pdu = new SnmpPDU();
  161. pdu.setCommand( api.GET_REQ_MSG );
  162. // add OIDs
  163. for (int i=1;i<opt.remArgs.length;i++)
  164. {
  165. SnmpOID oid = new SnmpOID(opt.remArgs[i]);
  166. if (oid.toValue() == null)
  167. {
  168. System.err.println("Invalid OID argument: " + opt.remArgs[i]);
  169. }
  170. else
  171. {
  172. pdu.addNull(oid);
  173. }
  174. }
  175. try
  176. {
  177. //Open session
  178. session.open();
  179. }
  180. catch (SnmpException e)
  181. {
  182. System.err.println("Error opening session:"+e.getMessage());
  183. System.exit(1);
  184. }
  185. if(pdu.getVersion()==SnmpAPI.SNMP_VERSION_3)
  186. {
  187. pdu.setUserName(setVal.userName.getBytes());
  188. try
  189. {
  190. USMUtils.init_v3_parameters(
  191. setVal.userName,
  192. null,
  193. setVal.authProtocol,
  194. setVal.authPassword,
  195. setVal.privPassword,
  196. udpOpt,
  197. session,
  198. false,
  199. setVal.privProtocol);
  200. }
  201. catch(SnmpException exp)
  202. {
  203. System.out.println(exp.getMessage());
  204. System.exit(1);
  205. }
  206. pdu.setContextName(setVal.contextName.getBytes());
  207. pdu.setContextID(setVal.contextID.getBytes());
  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 e)
  216. {
  217. System.err.println("Sending PDU"+e.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. UDPProtocolOptions udpOptions =
  227. (UDPProtocolOptions)res_pdu.getProtocolOptions();
  228. String res = "Response PDU received from " +
  229. udpOptions.getRemoteAddress() + ".";
  230. // print and exit
  231. if(res_pdu.getVersion() < 3)
  232. {
  233. res = res + " Community = " + res_pdu.getCommunity() + ".";
  234. }
  235. System.out.println(res);
  236.  
  237.         // Check for error in response
  238. if (res_pdu.getErrstat() != 0)
  239. {
  240. System.err.println(res_pdu.getError());
  241. }
  242. else 
  243. {
  244. // print the response pdu varbinds
  245. System.out.println(res_pdu.printVarBinds());
  246. }
  247.  
  248. // close session
  249. session.close();
  250. // stop api thread
  251. api.close();
  252. }
  253. }