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

SNMP编程

开发平台:

C/C++

  1. /* $Id: snmpbulk.src,v 1.5 2002/09/09 05:36:52 parasuraman Exp $ */
  2. /*
  3.  * @(#)snmpbulk.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 GETBULK 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.  * Note: The values of non-repeaters max-repetitions should be the last arguments
  14.  *  
  15.  * java snmpbulk [options] hostname oid [oid] ... non-repeaters max-repetitions
  16.  *
  17.  * v2c request:
  18.  * java snmpbulk [-d] [-c community] [-p port] [-t timeout] [-r retries] host OID [OID] ... nonRepeaters maxRepetions
  19.  * e.g. 
  20.  * java snmpbulk -p 161 -c public adventnet 1.2.0 1.2.0 1.5.0 1 2
  21.  *
  22.  * v3 request:
  23.  * java snmpbulk [-d] [-v version(v2,v3)] [-c community] [-p port] [-r retries] [-t timeout] [-u user] [-a auth_protocol] [-w auth_password] [-s priv_password] [-i contextName] host OID [OID] ... nonRepeaters maxRepetions
  24.  * e.g.
  25.  * java snmpbulk -v v3 -c public -p 161 -u advent -a MD5 -w authPass localhost 1.2.0 1.3.0 1.4.0 1 2
  26.  * 
  27.  * If the oid is not starting with a dot (.) it will be prefixed by .1.3.6.1.2.1 .
  28.  * So the entire OID of 1.1.0 will become .1.3.6.1.2.1.1.1.0 . You can also
  29.  * give the entire OID .
  30.  * 
  31.  * If the mib is loaded you can also give string oids in the following formats
  32.  * .iso.org.dod.internet.mgmt.mib-2.system.sysDescr.0 or system.sysDescr.0 or
  33.  * sysDescr.0 .
  34.  *
  35.  * Options:
  36.  * [-d]                - Debug output. By default off.
  37.  * [-c] <community>    - community String. By default "public".
  38.  * [-p] <port>         - remote port no. By default 161.
  39.  * [-t] <Timeout>      - Timeout. By default 5000ms.
  40.  * [-r] <Retries>      - Retries. By default 0. 
  41.  * [-v] <version>      - version(v2 / v3).
  42.  * [-u] <username>     - The v3 principal/userName
  43.  * [-a] <autProtocol>  - The authProtocol(MD5/SHA). Mandatory if authPassword is specified
  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 only one Object Identifier.
  50.  * <nonRepeaters>      - non-repeaters. Mandatory
  51.  * <maxRepetions>      - max-repetitions. Mandatory
  52.  */
  53. import java.lang.*;
  54. import java.util.*;
  55. import java.net.*;
  56. import com.adventnet.snmp.snmp2.*;
  57. import com.adventnet.snmp.snmp2.usm.*;
  58. public class snmpbulk
  59. {
  60. public static void main(String args[])
  61. {
  62. // Take care of getting options
  63. String usage =
  64. "nsnmpbulk [-d] [-v version(v2,v3)] n" +
  65. "[-c community] [-p port] [-r retries] n" +
  66. "[-t timeout] [-u user] [-a auth_protocol] n" +
  67. "[-w auth_password] [-s priv_password] n" +
  68. "[-n contextName] [-i contextID] n" +
  69. "[-DB_driver database_driver]n" +
  70. "[-DB_url database_url]n" +
  71. "[-DB_username database_username]n" +
  72. "[-DB_password database_password]n" +
  73. "host OID [OID] ... n" +
  74. "nonRepeaters maxRepetions";
  75. String options[] =
  76. {
  77. "-d", "-c",  "-wc", "-p", "-r", "-t", "-m",
  78. "-v", "-u", "-a", "-w", "-s", "-n", "-i",
  79. "-DB_driver", "-DB_url", "-DB_username", "-DB_password"
  80. };
  81. String values[] =
  82. {
  83. "None", null, null, null, null, null, "None",
  84. null, null, null, null, null, null, null,
  85. null, null, null, null
  86. };
  87. ParseOptions opt = new ParseOptions(args,options,values, usage);
  88.         // Start SNMP API
  89. SnmpAPI api;
  90. api = new SnmpAPI();
  91. if (values[0].equals("Set"))
  92. {
  93. api.setDebug( true );        
  94. }
  95. if (opt.remArgs.length<4)
  96. {
  97. opt.usage_error();
  98. }
  99. // Open session
  100. SnmpSession session = new SnmpSession(api);
  101. // set remote Host 
  102. session.setPeername( opt.remArgs[0] );
  103. //set the values
  104. SetValues setVal = new SetValues(session, values);
  105. if(setVal.usage_error)
  106. {
  107. opt.usage_error();
  108. }
  109. // set version for default
  110. if(values[7] == null)
  111. {
  112. session.setVersion(SnmpAPI.SNMP_VERSION_2C);
  113. }
  114. if(session.getVersion()==SnmpAPI.SNMP_VERSION_1)
  115. {
  116. opt.usage_error();
  117. }
  118. String driver = values[14];
  119. String url = values[15];
  120. String username = values[16];
  121. String password = values[17];
  122. if(driver != null || url != null ||
  123. username != null || password != null)
  124. {
  125. if(session.getVersion() != 3)
  126. {
  127. System.out.println(
  128. "Database option can be used only for SNMPv3.");
  129. System.exit(1);
  130. }
  131. if(driver == null)
  132. {
  133. System.out.println(
  134. "The Database driver name should be given.");
  135. System.exit(1);
  136. }
  137. if(url == null)
  138. {
  139. System.out.println("The Database URL should be given.");
  140. System.exit(1);
  141. }
  142. try
  143. {
  144. api.setV3DatabaseFlag(true);
  145. api.initJdbcParams(driver, url, username, password);
  146. }
  147. catch(Exception exp)
  148. {
  149. System.out.println("Unable to Establish Database Connection.");
  150. System.out.println("Please check the driverName and url.");
  151. System.exit(1);
  152. }
  153. }
  154. // Build GetBulk request PDU
  155. SnmpPDU pdu = new SnmpPDU();
  156. pdu.setCommand( api.GETBULK_REQ_MSG );
  157. // add OIDs
  158. for (int i=1;i<(opt.remArgs.length)-2;i++)
  159. {
  160. SnmpOID oid = new SnmpOID(opt.remArgs[i]);
  161. if (oid.toValue() == null)
  162. {
  163. System.err.println("Invalid OID argument: " + opt.remArgs[i]);
  164. }
  165. else 
  166. {
  167. pdu.addNull(oid);
  168. }
  169. }
  170. try
  171. {
  172. // set non-repeaters
  173. pdu.setErrstat(
  174. Integer.parseInt(opt.remArgs[(opt.remArgs.length)-2]) );
  175. }
  176. catch(NumberFormatException nfe)
  177. {
  178. System.out.println("Non-Repeaters value should be an integer. " +
  179. opt.remArgs[(opt.remArgs.length)-2]);
  180. System.exit(1);
  181. }
  182. try
  183. {
  184. // set max-repetitions
  185. pdu.setErrindex(
  186. Integer.parseInt(opt.remArgs[(opt.remArgs.length)-1]) );
  187. }
  188. catch(NumberFormatException nfe)
  189. {
  190. System.out.println("Non-Repeaters value should be an integer. " +
  191. opt.remArgs[(opt.remArgs.length)-1]);
  192. System.exit(1);
  193. }
  194. try
  195. {
  196. // open session
  197. session.open();
  198. catch (SnmpException e)
  199. {
  200. System.err.println("Error while opening session " +
  201. e.getMessage());
  202. System.exit(1);
  203. }
  204. if(session.getVersion()==SnmpAPI.SNMP_VERSION_3)
  205. {
  206. pdu.setUserName(setVal.userName.getBytes());
  207. USMUtils.init_v3_params(
  208. setVal.userName,
  209. setVal.authProtocol,
  210. setVal.authPassword,
  211. setVal.privPassword,
  212. session.getPeername(),
  213. session.getRemotePort(),
  214. session);
  215. pdu.setContextName(setVal.contextName.getBytes());
  216. pdu.setContextID(setVal.contextID.getBytes());
  217. }
  218. try
  219. {
  220. pdu = session.syncSend(pdu);
  221. }
  222. catch(SnmpException e)
  223. {
  224. System.err.println("Sending PDU: " + e.getMessage());
  225. System.exit(1);
  226. }
  227. // timeout
  228. if (pdu == null)
  229. {
  230. System.out.println("Request timed out to: " + opt.remArgs[0] );
  231. System.exit(1);
  232. }
  233. // print and exit
  234. String res = "Response PDU received from " + pdu.getAddress() + ".";
  235. if(pdu.getVersion() < 3)
  236. {
  237. res = res + " Community = "" + pdu.getCommunity() + "".n";
  238. }
  239. System.out.println(res);
  240. // check for error
  241. if (pdu.getErrstat() != 0)
  242. {
  243. System.out.println("Error indication in response: " +
  244. SnmpException.exceptionString((byte)pdu.getErrstat()) +
  245. "nErrindex: " + pdu.getErrindex());
  246. }
  247. else
  248. {
  249. Enumeration e = pdu.getVariableBindings().elements();
  250. while(e.hasMoreElements())
  251. {
  252. int error = 0;
  253. SnmpVarBind varbind = (SnmpVarBind)e.nextElement();
  254. // check for error index
  255. if ( (error = varbind.getErrindex()) != 0)
  256. {
  257. System.out.println("Error Indication in response: " +
  258. SnmpException.exceptionString((byte)error));
  259. }
  260. // print varbind
  261. System.out.println(varbind.toTagString() + "n");
  262. }
  263. }
  264. //close session
  265. session.close();
  266. // stop api thread
  267. api.close();
  268. System.exit(0);
  269. }
  270. }