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

SNMP编程

开发平台:

C/C++

  1. /* $Id: snmpset.src,v 1.6 2002/09/09 05:36:52 parasuraman Exp $ */
  2. /*
  3.  * @(#)snmpset.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 SET 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 snmpset [options] hostname oid value [oid value] ...
  14.  *
  15.  * v1 request: 
  16.  * java snmpset [-d] [-c community] [-wc writeCommunity] [-p port] [-t timeout] [-r retries] host [OID {INTEGER | STRING | GAUGE | TIMETICKS | OPAQUE | IPADDRESS | COUNTER | OID } value] ...
  17.  * e.g. 
  18.  * java snmpset -p 161 -c public adventnet 1.1.0 advent-machine 1.4.0 contact-advent
  19.  *<img SRC="images/v2candv3only.jpg" ALT="v2c and v3 only">
  20.  * v2c request:  
  21.  * java snmpset [-d] [-v version(v1,v2)] [-c community] [-wc writeCommunity] [-p port] [-t timeout] [-r retries] host [OID {INTEGER | STRING | GAUGE | TIMETICKS | OPAQUE | IPADDRESS | COUNTER | OID } value] ...
  22.  * e.g. For v1 request give -v v1 or drop the option -v .
  23.  * java snmpset -p 161 -v v2 -c public adventnet 1.7.0 76
  24.  *<img SRC="images/v3only.jpg" ALT="v3 only"> 
  25.  * v3 request:
  26.  * java snmpset [-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 {INTEGER | STRING | GAUGE | TIMETICKS | OPAQUE | IPADDRESS | COUNTER | OID } value] ...
  27.  * e.g.
  28.  * java snmpset -v v3 -u initial2 -w initial2Pass -a MD5 10.3.2.120 1.5.0 STRING whatever
  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.  * [-wc] <community>   - write 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.  *<img SRC="images/v3only.jpg" ALT="v3 only"> [-v] <version>      - version(v1 / v2 / v3). By default v1.
  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 multiple no. of Object Identifiers with type and value.
  50.  * <type> Mandatory    - object type
  51.  * <value> Mandatory   - The object instance value to be set .
  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.  
  59. public class snmpset
  60. {
  61. public static void main(String args[])
  62. {
  63. // Take care of getting options
  64. String usage =
  65. "nsnmpset [-d] [-v version(v1,v2,v3)] [-c community] n" +
  66. "[-wc writeCommunity] [-p port] [-r retries] n" +
  67. "[-t timeout] [-u user] [-a auth_protocol] n" +
  68. "[-w auth_password] [-s priv_password] n" +
  69. "[-n contextName] [-i contextID] n" +
  70. "[-DB_driver database_driver]n" +
  71. "[-DB_url database_url]n" +
  72. "[-DB_username database_username]n" +
  73. "[-DB_password database_password]n" +
  74. "host [OID {INTEGER | STRING | GAUGE | TIMETICKS | n" +
  75. "OPAQUE | IPADDRESS | COUNTER | OID } value] ...n"; 
  76.         
  77. String options[] =
  78. {
  79. "-d", "-c", "-wc", "-p", "-r", "-t", "-m",
  80. "-v", "-u", "-a", "-w", "-s", "-n", "-i",
  81. "-DB_driver", "-DB_url", "-DB_username", "-DB_password"
  82. };
  83. String values[] =
  84. {
  85. "None", null, null, null, null, null, "None",
  86. null, null, null, null, null, null, null,
  87. null, null, null, null
  88. };
  89. ParseOptions opt = new ParseOptions(args,options,values,usage);
  90. if (opt.remArgs.length<1)
  91. {
  92. opt.usage_error();
  93. }
  94. // Start SNMP API
  95. SnmpAPI api;
  96. api = new SnmpAPI();
  97. if (values[0].equals("Set")) api.setDebug( true );
  98. // Open session 
  99. SnmpSession session = new SnmpSession(api);
  100. // set remote Host
  101. session.setPeername( opt.remArgs[0] );
  102. // set 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 set request PDU
  145. SnmpPDU pdu = new SnmpPDU();
  146. pdu.setCommand( api.SET_REQ_MSG );
  147. // add Variable Bindings
  148. for (int i=1;i<opt.remArgs.length;)
  149. {
  150. if (opt.remArgs.length < i+3)
  151. {
  152. opt.usage_error(); //need "{OID type value}"
  153. }
  154. SnmpOID oid = new SnmpOID(opt.remArgs[i++]);
  155. if (oid.toValue() == null)
  156. {
  157. System.err.println("Invalid OID argument: " + opt.remArgs[i]);
  158. }
  159. else
  160. {
  161. addvarbind(pdu, oid, opt.remArgs[i++], opt.remArgs[i++]);
  162. }
  163. } // end of add variable bindings
  164. try
  165. {
  166. //open session
  167. session.open();
  168. }
  169. catch (SnmpException e)
  170. {
  171. System.err.println("Sending PDU"+e.getMessage());
  172. }
  173. if(session.getVersion()==SnmpAPI.SNMP_VERSION_3)
  174. {
  175. pdu.setUserName(setVal.userName.getBytes());
  176. try
  177. {
  178. USMUtils.init_v3_parameters(
  179. setVal.userName,
  180. setVal.authProtocol,
  181. setVal.authPassword,
  182. setVal.privPassword,
  183. session.getPeername(),
  184. session.getRemotePort(),
  185. session);
  186. }
  187. catch(SnmpException exp)
  188. {
  189. System.out.println(exp.getMessage());
  190. System.exit(1);
  191. }
  192. pdu.setContextName(setVal.contextName.getBytes());
  193. pdu.setContextID(setVal.contextID.getBytes());
  194. }
  195. try // Send PDU receive response PDU
  196. {
  197.              pdu = session.syncSend(pdu); 
  198.         }
  199. catch (SnmpException e)
  200. {
  201. System.err.println("Sending PDU"+e.getMessage());
  202. System.exit(1);
  203.         }
  204. if (pdu == null)
  205. {
  206. // timeout
  207. System.out.println("Request timed out to: " + opt.remArgs[0] );
  208. System.exit(1);
  209. }
  210. String res = "Response PDU received from " +pdu.getAddress() + ".";
  211. if(pdu.getVersion() < 3)
  212. {
  213. res = res + " Community = " + pdu.getCommunity() + ".";
  214. }
  215. System.out.println(res);
  216.     
  217. // Check for error in response
  218. if (pdu.getErrstat() != 0)
  219. {
  220. System.err.println(pdu.getError());
  221. }
  222. else
  223. {
  224. // print the response pdu varbinds
  225. System.out.println(pdu.printVarBinds());
  226. }
  227. // close session
  228. session.close();
  229. // stop api thread
  230. api.close();
  231. System.exit(0);
  232. }
  233. /** adds the varbind  with specified oid, type and value to the pdu */
  234. static void addvarbind(SnmpPDU pdu, SnmpOID oid, String type, String value)
  235. {        
  236.         byte dataType ;
  237.         if (type.equals("INTEGER")) {
  238.             dataType = SnmpAPI.INTEGER;
  239.         } else if (type.equals("STRING")) {
  240.             dataType = SnmpAPI.STRING;
  241.         } else if (type.equals("GAUGE")) {
  242.             dataType = SnmpAPI.GAUGE;
  243.         } else if (type.equals("TIMETICKS")) {
  244.             dataType = SnmpAPI.TIMETICKS;
  245.         } else if (type.equals("OPAQUE")) {
  246.             dataType = SnmpAPI.OPAQUE;
  247.         } else if (type.equals("IPADDRESS")) {
  248.             dataType = SnmpAPI.IPADDRESS;
  249.         } else if (type.equals("COUNTER")) {
  250.             dataType = SnmpAPI.COUNTER;
  251.         } else if (type.equals("OID")) { 
  252.             dataType = SnmpAPI.OBJID;
  253.         } else if (type.equals("BITS")) { 
  254.           //  dataType = SnmpAPI.BITSTRING;
  255.     dataType = SnmpAPI.STRING;
  256.         } else { 
  257.             System.err.println("Invalid variable type: " + type);
  258.             return;
  259.         }
  260.         SnmpVar var = null;
  261.         try {
  262.             // create SnmpVar instance for the value and the type
  263.             var = SnmpVar.createVariable( value, dataType );
  264.         }
  265.         catch(SnmpException e){
  266.             System.err.println("Cannot create variable: " + oid + " with value: " + value);
  267.             return;
  268.         }
  269.         //create varbind
  270.         SnmpVarBind varbind = new SnmpVarBind(oid, var);
  271.         // add variable binding
  272.         pdu.addVariableBinding(varbind);
  273.     }
  274. }