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

SNMP编程

开发平台:

C/C++

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