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

SNMP编程

开发平台:

C/C++

  1. /*$Id: snmpaddrow.src,v 1.3 2002/09/09 05:36:28 tonyjpaul Exp $*/
  2. /*
  3.  * @(#)snmpaddrow.java
  4.  * Copyright (c) 1996-2003 AdventNet, Inc. All Rights Reserved.
  5.  * Please read the associated COPYRIGHTS file for more details.
  6.  */
  7. /** 
  8.  *  Add a row based on command line arguments.  Loads MIBs 
  9.  *  as specified, and converts to/from names for loaded MIB data.
  10.  *  Since we do not ask user for variable type, in order to
  11.  *  convert set value strings to the correct variable type, the  
  12.  *  MIB corresponding to any object must be loaded.  
  13.  *
  14.  * [-d]                - Debug output. By default off.
  15.  * [-c] <community>    - community String. By default "public".
  16.  * [-p] <port>         - remote port no. By default 161.
  17.  * [-t] <Timeout>      - Timeout. By default 5000ms.
  18.  * [-r] <Retries>      - Retries. By default 0.      
  19.  *<img SRC="images/v3only.jpg" ALT="v3 only"> [-v] <version>      - version(v1 / v2 / v3). By default v1.
  20.  * [-u] <username>     - The v3 principal/userName
  21.  * [-a] <autProtocol>  - The authProtocol(MD5/SHA). Mandatory if authPassword is specified
  22.  * [-w] <authPassword> - The authentication password.
  23.  * [-s] <privPassword> - The privacy protocol password. Must be accompanied with auth password and authProtocol fields.
  24.  * <mibs> Mandatory    - The mibs to be loaded.
  25.  * <host> Mandatory    - The RemoteHost (agent).Format (string without double qoutes/IpAddress).
  26.  * <OID>  Mandatory    - Give multiple no. of Object Identifiers.
  27.  */
  28. import java.lang.*;
  29. import java.util.*;
  30. import java.net.*;
  31. import com.adventnet.snmp.beans.*;
  32. public class snmpaddrow {
  33.     private static final int COMMUNITY = 1;
  34.     private static final int PORT = 2;
  35.     private static final int RETRIES = 3;
  36.     private static final int TIMEOUT = 4;
  37.     
  38.     private static final int VERSION = 0;
  39.     private static final int USER_NAME = 5;
  40.     private static final int AUTH_PROTOCOL = 6;
  41.     private static final int AUTH_PASSWORD = 7;
  42.     private static final int PRIV_PASSWORD = 8;
  43.     private static final int DEBUG = 9;
  44.     public static void main(String args[]) {
  45.         // Take care of getting options
  46.     String usage = "snmpaddrow [-v version(v1,v2,v3)] [-c community] [-p port] [-t timeout] [-r retries] [-u user] [-a auth_protocol(MD5/SHA)] [-w auth_password] [-s priv_password] [-d debug] host MIB_files OID value [OID value] ...";
  47.     String options[] = { "-v", "-c", "-p", "-r", "-t", "-u", "-a", "-w", "-s", "-d" };
  48.     String values[] = { null, null, null, null, null, null, null, null, null, "None"};
  49.     String authProtocol = new String("NO_AUTH");
  50.       
  51.     ParseOptions opt = new ParseOptions(args,options,values, usage);
  52.     // Use an SNMP table bean to perform SNMP operations
  53.     SnmpTable table = new SnmpTable();
  54.  //To load MIBs from compiled file
  55.  table.setLoadFromCompiledMibs(true);
  56.     // at least 3 arguments are needed to do anything useful
  57.     if (opt.remArgs.length<4) opt.usage_error();
  58.         if (values[DEBUG].equals("Set")) table.setDebug(true);
  59.     table.setTargetHost( opt.remArgs[0] );  // set the agent hostname
  60.     if (values[COMMUNITY] != null) // set the community if specified
  61.         table.setCommunity( values[COMMUNITY] );
  62.     if(values[VERSION] != null) {  // if SNMP version is specified, set it
  63.         if(values[VERSION].equals("v2"))
  64.             table.setSnmpVersion( SnmpTable.VERSION2C ) ;
  65.         else if(values[VERSION].equals("v1"))
  66.             table.setSnmpVersion( SnmpTable.VERSION1 );
  67.         else if(values[VERSION].equals("v3"))
  68.             table.setSnmpVersion( SnmpTable.VERSION3 );
  69.         else {
  70.             System.out.println("Invalid Version Number"); 
  71.             System.exit(1);
  72.         }
  73.     }
  74.     try { // set the timeout/retries/port parameters, if specified
  75.         if (values[PORT] != null) 
  76.             table.setTargetPort( Integer.parseInt(values[PORT]) );
  77.         if (values[RETRIES] != null) 
  78.             table.setRetries( Integer.parseInt(values[RETRIES]) );
  79.         if (values[TIMEOUT] != null) 
  80.             table.setTimeout( Integer.parseInt(values[TIMEOUT]) );
  81.     } catch (NumberFormatException ex) {
  82.         System.err.println("Invalid Integer Argument "+ex);
  83.         opt.usage_error();
  84.     }
  85.     if(table.getSnmpVersion() ==table.VERSION3) {
  86.         if (values[USER_NAME] != null) 
  87.             table.setPrincipal(values[USER_NAME]);
  88.         if (values[AUTH_PROTOCOL] != null) {
  89.             //System.out.println("authProtocol = " + authProtocol);
  90.             authProtocol = values[AUTH_PROTOCOL];
  91.         }
  92.         if(authProtocol.equals("SHA"))
  93.             table.setAuthProtocol(table.SHA_AUTH);
  94.         else if(authProtocol.equals("MD5"))
  95.             table.setAuthProtocol(table.MD5_AUTH);
  96.         else
  97.             table.setAuthProtocol(table.NO_AUTH);
  98.         if (values[AUTH_PASSWORD] != null) 
  99.             table.setAuthPassword(values[AUTH_PASSWORD]);
  100.         if (values[PRIV_PASSWORD] != null) 
  101.             table.setPrivPassword(values[PRIV_PASSWORD]);
  102.     }
  103.     if (opt.remArgs[1] != null) try { // Load the MIB files 
  104.         System.err.println("Loading MIBs: "+opt.remArgs[1]);
  105.         table.loadMibs(opt.remArgs[1]);
  106.     } catch (Exception ex) {
  107.         System.err.println("Error loading MIBs: "+ex);
  108. }
  109. if(table.getSnmpVersion() ==table.VERSION3){
  110. table.create_v3_tables();
  111. }
  112. String oids[] = null, var_values[] = null;  // trap oids and values
  113. int num_varbinds = 0;
  114. for (int i=2;i<opt.remArgs.length;i+=2) { // add Variable Bindings
  115. if (opt.remArgs.length < i+2) //need "{OID type value}"
  116. opt.usage_error(); // unmatched arguments for name-value pairs
  117. num_varbinds++;
  118. }
  119. oids = new String[num_varbinds];
  120. var_values = new String[num_varbinds];
  121. for (int i=0;i<num_varbinds;i++) { // add Variable Bindings
  122. oids[i] = opt.remArgs[(2*i)+2];
  123. var_values[i] = opt.remArgs[(2*i)+3];
  124. }
  125. try {
  126. table.addRow(false,oids,var_values);//adding a row to the table
  127. String result[] = table.snmpGetList();
  128. if (result == null) {
  129. System.err.println("Request failed or timed out. n"+
  130. table.getErrorString());
  131. } else { // print response
  132. System.out.println("Set OK.  Return values:");
  133. for (int i=0;i<oids.length;i++) {
  134. System.out.println(table.getObjectID(i) +": "+result[i]);
  135. }
  136. }
  137. } catch (Exception e) {
  138. System.err.println("Set Error: "+e.getMessage());
  139. }
  140. System.exit(0);
  141. }
  142. }