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

SNMP编程

开发平台:

C/C++

  1. /* $Id: snmpgetnext.src,v 1.5 2002/09/09 05:36:52 parasuraman Exp $ */
  2. /*
  3.  * @(#)snmpgetnext.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 GETNEXT 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 snmpgetnext [options] hostname oid ...
  14.  *
  15.  * v1 request: 
  16.  * java snmpgetnext [-d] [-c community] [-p port] [-t timeout] [-r retries] host OID [OID] ...
  17.  * e.g. 
  18.  * java snmpgetnext -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 snmpgetnext [-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 snmpgetnext -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 snmpgetnext [-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 snmpgetnext -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 snmpgetnext
  56. {
  57. public static void main(String args[])
  58. {
  59.         // Take care of getting options
  60. String usage =
  61. "snmpgetnext [-d] [-v version(v1,v2,v3)] n" +
  62. "[-c community] [-p port] [-r retries] n" +
  63. "[-t timeout] [-u user] [-a auth_protocol] n" +
  64. "[-w auth_password] [-s priv_password] n" +
  65. "[-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. "host OID [OID] ...n";
  71.         
  72. String options[] =
  73. {
  74. "-d", "-c", "-wc", "-p", "-r", "-t", "-m",
  75. "-v", "-u", "-a",  "-w", "-s", "-n", "-i",
  76. "-DB_driver", "-DB_url", "-DB_username", "-DB_password"     
  77. };
  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.  
  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. session.setPeername( opt.remArgs[0] );
  102. //set the values
  103. SetValues setVal = new SetValues(session, values);
  104. if(setVal.usage_error)
  105. {
  106. opt.usage_error(); 
  107. }
  108. String driver = values[14];
  109. String url = values[15];
  110. String username = values[16];
  111. String password = values[17];
  112. if(driver != null || url != null ||
  113. username != null || password != null)
  114. {
  115. if(session.getVersion() != 3)
  116. {
  117. System.out.println(
  118. "Database option can be used only for SNMPv3.");
  119. System.exit(1);
  120. }
  121. if(driver == null)
  122. {
  123. System.out.println(
  124. "The Database driver name should be given.");
  125. System.exit(1);
  126. }
  127. if(url == null)
  128. {
  129. System.out.println("The Database URL should be given.");
  130. System.exit(1);
  131. }
  132. try
  133. {
  134. api.setV3DatabaseFlag(true);
  135. api.initJdbcParams(driver, url, username, password);
  136. }
  137. catch(Exception exp)
  138. {
  139. System.out.println("Unable to Establish Database Connection.");
  140. System.out.println("Please check the driverName and url.");
  141. System.exit(1);
  142. }
  143. }
  144. // Build GetNext request PDU
  145. SnmpPDU pdu = new SnmpPDU();
  146. pdu.setCommand( api.GETNEXT_REQ_MSG );
  147. // add OIDs
  148. for (int i=1;i<opt.remArgs.length;i++)
  149. {
  150. SnmpOID oid = new SnmpOID(opt.remArgs[i]);
  151. if (oid.toValue() == null) 
  152. {
  153. System.err.println("Invalid OID argument: " + opt.remArgs[i]);
  154. }
  155.             else
  156. {
  157. pdu.addNull(oid);
  158. }
  159.         }
  160. try
  161. {
  162. //Open session
  163. session.open();
  164. } catch (SnmpException e) {
  165. System.err.println("Error opening session:"+e.getMessage());
  166. System.exit(1);
  167. }
  168. if(session.getVersion()==SnmpAPI.SNMP_VERSION_3)
  169. {
  170. pdu.setUserName(setVal.userName.getBytes());
  171. USMUtils.init_v3_params(
  172. setVal.userName,
  173. setVal.authProtocol,
  174. setVal.authPassword,
  175. setVal.privPassword,
  176. session.getPeername(),
  177. session.getRemotePort(),
  178. session);
  179. pdu.setContextName(setVal.contextName.getBytes());
  180. pdu.setContextID(setVal.contextID.getBytes());
  181. }
  182. try
  183. {
  184. // Send PDU and receive response PDU
  185. pdu = session.syncSend(pdu);
  186. }
  187. catch (SnmpException e)
  188. {
  189. System.err.println("Sending PDU"+e.getMessage());
  190. System.exit(1);
  191. }    
  192. if (pdu == null)
  193. {
  194. System.out.println("Request timed out to: " + opt.remArgs[0] );
  195. System.exit(1);
  196. }
  197. String res = "Response PDU received from " + pdu.getAddress() + ".";
  198. // print and exit
  199. if(pdu.getVersion() < 3)
  200. {
  201. res = res + " Community = " + pdu.getCommunity();
  202. }
  203. System.out.println(res);
  204. // Check for error in response
  205. if (pdu.getErrstat() != 0)
  206. {
  207. System.err.println(pdu.getError());
  208. }
  209. else 
  210. {
  211. // print the response pdu
  212. System.out.println(pdu.printVarBinds());
  213. }
  214. // close session
  215. session.close();
  216. // stop api thread
  217. api.close();
  218. System.exit(0);
  219. }
  220. }