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

SNMP编程

开发平台:

C/C++

  1. /* $Id: snmpasyncget.src,v 1.6 2002/09/09 05:36:52 parasuraman Exp $ */
  2. /*
  3.  * @(#)snmpasyncget.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.  * an asynchronous SNMP GET operation 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 snmpasyncget [options] hostname oid ...
  14.  *
  15.  * v1 request:
  16.  * java snmpasyncget [-d] [-c community] [-p port] [-t timeout] [-r retries] host OID [OID] ...
  17.  * e.g. 
  18.  * java snmpasyncget -p 161 -c public adventnet 1.1.0 1.2.0
  19.  *
  20.  *<img SRC="images/v2candv3only.jpg" ALT="v2c and v3 only"> v2c request:
  21.  * java snmpasyncget [-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 snmpasyncget -p 161 -v v2 -c public adventnet 1.1.0 1.2.0
  24.  * 
  25.  *<img SRC="images/v3only.jpg" ALT="v3 only"> v3 request:
  26.  * java snmpasyncget [-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 snmpasyncget -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 snmpasyncget implements SnmpClient
  56. {
  57. SnmpAPI api=null;
  58. SnmpSession session =null; 
  59. boolean getFinished = false;
  60. public static void main(String args[])
  61. {
  62.         // Take care of getting options
  63.         String usage =
  64. "snmpasyncget [-d] [-v version(v1,v2,v3)] [-c community]n" +
  65. "[-p port] [-r retries] [-t timeout] [-u user]n" +
  66. "[-a auth_protocol] [-w auth_password] [-s priv_password]n" +
  67. "[-n contextName] [-i contextID]n" +
  68. "[-DB_driver database_driver]n" +
  69. "[-DB_url database_url]n" +
  70. "[-DB_username database_username]n" +
  71. "[-DB_password database_password]n" +
  72. "host OID [OID] ...n";
  73.         String options[] = 
  74. {
  75. "-d", "-c",  "-wc", "-p", "-r", "-t", "-m", "-v",
  76. "-u", "-a", "-w", "-s", "-n", "-i", 
  77. "-DB_driver", "-DB_url", "-DB_username", "-DB_password"
  78. };
  79.         String values[] = 
  80. {
  81. "None", null, null, null, null, null, "None",
  82. null, null, null, null, null, null, null,
  83. null, null, null, null
  84. };
  85.          ParseOptions opt = new ParseOptions(args,options,values, usage);
  86.         if (opt.remArgs.length<2)
  87. {
  88. opt.usage_error();
  89. }
  90. String driver = values[14];
  91. String url = values[15];
  92. String username = values[16];
  93. String password = values[17];
  94. snmpasyncget snmpobj = new snmpasyncget ();
  95.         // Start SNMP API
  96.         snmpobj.api = new SnmpAPI();
  97.         if (values[0].equals("Set"))
  98. {
  99. snmpobj.api.setDebug( true );
  100. }
  101.         // Open session
  102.         snmpobj.session = new SnmpSession(snmpobj.api);        
  103.         SetValues setVal = new SetValues( snmpobj.session, values ); 
  104. if(driver != null || url != null ||
  105. username != null || password != null)
  106. {
  107. if(snmpobj.session.getVersion() != 3)
  108. {
  109. System.out.println(
  110. "Database option can be used only for SNMPv3.");
  111. System.exit(1);
  112. }
  113. if(driver == null)
  114. {
  115. System.out.println(
  116. "The Database driver name should be given.");
  117. System.exit(1);
  118. }
  119. if(url == null)
  120. {
  121. System.out.println("The Database URL should be given.");
  122. System.exit(1);
  123. }
  124. snmpobj.api.setV3DatabaseFlag(true);
  125. try
  126. {
  127. snmpobj.api.initJdbcParams(driver, url, username, password);
  128. }
  129. catch(Exception exp)
  130. {
  131. System.out.println("Unable to Establish Database Connection.n" +
  132. "Please check the driverName and url.");
  133. System.exit(1);
  134. }
  135. }
  136. // set remote Host 
  137. snmpobj.session.setPeername( opt.remArgs[0] );
  138. snmpobj.session.addSnmpClient(snmpobj);
  139. if(setVal.usage_error)
  140. {
  141. opt.usage_error();
  142. }
  143. // Build Get request PDU
  144. SnmpPDU pdu = new SnmpPDU();
  145. pdu.setCommand( snmpobj.api.GET_REQ_MSG );
  146. // add OIDs
  147. for (int i=1;i<opt.remArgs.length;i++)
  148. {
  149. SnmpOID oid = new SnmpOID(opt.remArgs[i]);
  150. if (oid.toValue() == null) 
  151. {
  152. System.err.println("Invalid OID argument: " + opt.remArgs[i]);
  153. }
  154. else
  155. {
  156. pdu.addNull(oid);
  157. }
  158. }
  159. try
  160. {
  161. //Open session
  162. snmpobj.session.open();
  163. }
  164. catch (SnmpException e)
  165. {
  166. System.err.println("Error opening session:"+e.getMessage());
  167. System.exit(1);
  168. }
  169. if(snmpobj.session.getVersion()==SnmpAPI.SNMP_VERSION_3)
  170. {
  171. pdu.setUserName(setVal.userName.getBytes());
  172. USMUtils.init_v3_params(
  173. setVal.userName,
  174. setVal.authProtocol,
  175. setVal.authPassword,
  176. setVal.privPassword,
  177. snmpobj.session.getPeername(),
  178. snmpobj.session.getRemotePort(),
  179. snmpobj.session);
  180. pdu.setContextName(setVal.contextName.getBytes());
  181. pdu.setContextID(setVal.contextID.getBytes());
  182. }
  183. try
  184. {
  185. snmpobj.session.send(pdu);
  186. }
  187. catch (SnmpException e)
  188. {
  189. }
  190. while(true)
  191. {
  192. try
  193. {
  194. Thread.sleep(100);
  195. }
  196. catch(Exception e)
  197. {
  198. }
  199. if(snmpobj.getFinished)
  200. {
  201. System.exit(0);
  202. }
  203. }
  204. }
  205.     
  206. public boolean authenticate(SnmpPDU pdu, String community)
  207. {
  208. if(pdu.getVersion() == 3)
  209. {
  210. return !((Snmp3Message)pdu.getMsg()).isAuthenticationFailed();
  211. }
  212. else
  213. {
  214. return (pdu.getCommunity().equals(community));
  215. }
  216. }
  217. private int totalResponses = 1;
  218. /*
  219.  * Callback method that is invoked on receiving an SNMP Inform request message
  220.  */
  221. public boolean callback(SnmpSession session,SnmpPDU pdu, int requestID)
  222. {
  223. // Check if valid PDU
  224. if (pdu == null)
  225. {
  226. System.out.println("Null PDU received :Timeoutn");
  227. getFinished = true;
  228. }
  229. else
  230. {
  231. String res = "Response received from: " + pdu.getAddress() + ".";
  232. if(pdu.getVersion() < 3)
  233. {
  234. res = res + " Community: " + pdu.getCommunity();
  235. }
  236. System.out.println(res);
  237. // print varbinds
  238. Enumeration e = pdu.getVariableBindings().elements();
  239. while(e.hasMoreElements())
  240. {
  241. System.out.println(
  242. ((SnmpVarBind) e.nextElement()).toTagString());
  243. }
  244. if(pdu.isBroadCastEnabled())
  245. {
  246. System.out.println("This is the response for" +
  247. " a broadCast request.");
  248. System.out.println("Total Responses received = " +
  249. (totalResponses++) + ".");
  250. }
  251. else
  252. {
  253. getFinished = true;
  254. }
  255. }
  256. System.out.println(""); 
  257. return true;
  258. }
  259.  
  260. public void debugPrint(String debugOutput)
  261. {
  262. System.out.println(debugOutput);
  263. return;    
  264. }
  265. }