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

SNMP编程

开发平台:

C/C++

  1. /*$Id: setTableValue.src,v 1.3 2002/09/09 05:36:28 tonyjpaul Exp $*/
  2. /*
  3.  * @(#)setTableValue.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 of using the SnmpTable class.
  9.  *  This is a command line application that does not require JFC/swing
  10.  *  components.This can be used to set any particular cell value.  
  11.  *
  12.  * [-d]                - Debug output. By default off.
  13.  * [-c] <community>    - community String. By default "public".
  14.  * [-p] <port>         - remote port no. By default 161.
  15.  * [-t] <Timeout>      - Timeout. By default 5000ms.
  16.  * [-r] <Retries>      - Retries. By default 0.      
  17.  *<img SRC="images/v3only.jpg" ALT="v3 only"> [-v] <version>      - version(v1 / v2 / v3). By default v1.
  18.  * [-u] <username>     - The v3 principal/userName
  19.  * [-a] <autProtocol>  - The authProtocol(MD5/SHA). Mandatory if authPassword is specified
  20.  * [-w] <authPassword> - The authentication password.
  21.  * [-s] <privPassword> - The privacy protocol password. Must be accompanied with auth password and authProtocol fields.
  22.  * [-n] <contextName>  - The snmpv3 contextName to be used.
  23.  * [-i] <contextID>    - The snmpv3 contextID to be used.
  24.  * host Mandatory      - The RemoteHost (agent).Format (string without double qoutes/IpAddress). 
  25.  * mibs               - The mibs to be loaded.Mandatory.
  26.  * tableOID  Mandatory - Give the Object Identifier of a Table.
  27.  * value               - value to be set.Mandatory.
  28.  * rowIndex            - position of the row in the table.Mandatory.
  29.  * columnIndex         - index of the column in the table.Mandatory.
  30.  */
  31. import com.adventnet.snmp.beans.*;
  32. import com.adventnet.snmp.mibs.*;
  33. import com.adventnet.snmp.snmp2.*;
  34. import java.util.*;
  35. public class setTableValue {
  36.     private static final int COMMUNITY = 1;
  37.     private static final int PORT = 2;
  38.     private static final int RETRIES = 3;
  39.     private static final int TIMEOUT = 4;
  40.     private static final int VERSION = 0;
  41.     private static final int USER_NAME = 5;
  42.     private static final int AUTH_PROTOCOL = 6;
  43.     private static final int AUTH_PASSWORD = 7;
  44.     private static final int PRIV_PASSWORD = 8;
  45. private static final int CONTEXT_NAME = 9;
  46. private static final int CONTEXT_ID = 10;
  47.     private static final int DEBUG = 11;
  48.     public static void main(String args[]) {
  49.     // Take care of getting options
  50.     String usage = "setTableValue [-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] [-n contextname] [-i contextID] [-d debug] host MIB_files tableOID value rowIndex columnIndex";
  51.     String options[] = { "-v", "-c", "-p", "-r", "-t", "-u", "-a", "-w", "-s", "-n", "-i", "-d" };
  52.     String values[] = { null, null, null, null, null, null, null, null, null, null, null, "None"};
  53.     String authProtocol = new String("NO_AUTH");
  54.     ParseOptions opt = new ParseOptions(args,options,values, usage);
  55.     // check for at least hostname and one OID in remaining arguments
  56.     if (opt.remArgs.length<6) opt.usage_error();    
  57.     
  58.     
  59.     if ((values[VERSION] == "v3") && (values[USER_NAME] == null)) opt.usage_error();
  60.     // instantiate an SnmpTable instance
  61.     SnmpTable table = new SnmpTable();
  62.  //To load MIBs from compiled file
  63.  table.setLoadFromCompiledMibs(true);
  64.  
  65.  
  66.  if (values[DEBUG].equals("set")) table.setDebug(true);
  67.  
  68.         if(values[VERSION] != null) {  // if SNMP version is specified, set it
  69.             if(values[VERSION].equals("v2"))
  70.                 table.setSnmpVersion( SnmpTarget.VERSION2C ) ;
  71.             else if(values[VERSION].equals("v1"))
  72.                 table.setSnmpVersion( SnmpTarget.VERSION1 );
  73.             else if(values[VERSION].equals("v3"))
  74.                 table.setSnmpVersion( SnmpTarget.VERSION3 );
  75.             else {
  76.                 System.out.println("Invalid Version Number"); 
  77.                 System.exit(1);
  78.             }
  79.         }
  80.     table.setTargetHost( opt.remArgs[0] ); // set the agent hostname
  81.     if (values[COMMUNITY] != null) // set the community if specified
  82.         table.setCommunity( values[COMMUNITY] );
  83.     try { // set the timeout/retries/port parameters, if specified
  84.         if (values[PORT] != null) 
  85.             table.setTargetPort( Integer.parseInt(values[PORT]) );
  86.         if (values[RETRIES] != null) 
  87.             table.setRetries( Integer.parseInt(values[RETRIES]) );
  88.         if (values[TIMEOUT] != null) 
  89.             table.setTimeout( Integer.parseInt(values[TIMEOUT]) );
  90.     } catch (NumberFormatException ex) {
  91.         System.err.println("Invalid Integer Argument "+ex);
  92.     }
  93.     if(table.getSnmpVersion() == table.VERSION3) {
  94.         if (values[USER_NAME] != null) 
  95.             table.setPrincipal(values[USER_NAME]);
  96.         if (values[AUTH_PROTOCOL] != null) {
  97.             //System.out.println("authProtocol = " + authProtocol);
  98.             authProtocol = values[AUTH_PROTOCOL];
  99.         }
  100.         if(authProtocol.equals("SHA"))
  101.             table.setAuthProtocol(SnmpTarget.SHA_AUTH);
  102.         else if(authProtocol.equals("MD5"))
  103.             table.setAuthProtocol(SnmpTarget.MD5_AUTH);
  104.         else
  105.             table.setAuthProtocol(SnmpTarget.NO_AUTH);
  106.         if (values[AUTH_PASSWORD] != null) 
  107.             table.setAuthPassword(values[AUTH_PASSWORD]);
  108.         if (values[PRIV_PASSWORD] != null)
  109.             table.setPrivPassword(values[PRIV_PASSWORD]);
  110. if(values[CONTEXT_NAME]!= null)
  111. table.setContextName(values[CONTEXT_NAME]);
  112. if(values[CONTEXT_ID]!= null)
  113. table.setContextID(values[CONTEXT_ID]);
  114.         }
  115.     if (opt.remArgs[1] != null) try { // Load the MIB files 
  116.         System.out.println("Loading MIBs: "+opt.remArgs[1]);
  117.         table.loadMibs(opt.remArgs[1]);
  118.         System.out.println("Done.");
  119.     } catch (Exception ex) {
  120.         System.err.println("Error loading MIBs: "+ex);
  121.     }
  122. if(table.getSnmpVersion() == table.VERSION3){
  123. table.create_v3_tables();
  124. }
  125. if (values[DEBUG].equals("Set"))
  126.     {
  127.         table.setDebug(true);
  128.     } 
  129.     
  130.     table.setCellValue(opt.remArgs[2],opt.remArgs[3],Integer.parseInt(opt.remArgs[4]),Integer.parseInt(opt.remArgs[5]));    
  131.     
  132.     Object obj=table.getCellValue(opt.remArgs[2],Integer.parseInt(opt.remArgs[4]),Integer.parseInt(opt.remArgs[5]));
  133.     if(obj!=null)
  134.     System.out.println("Value is: "+obj);
  135.     
  136.     }   
  137. }