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

SNMP编程

开发平台:

C/C++

  1. /*$Id: setTableValue.src,v 1.3.2.4 2009/01/28 12:45:56 prathika Exp $*/
  2. /*
  3.  * @(#)setTableValue.java
  4.  * Copyright (c) 1996-2009 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.  * [-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.  * [-pp] <privProtocol> - The privacy protocol. Must be accompanied with auth,priv password and authProtocol fields.
  25.  * host Mandatory      - The RemoteHost (agent).Format (string without double qoutes/IpAddress). 
  26.  * mibs               - The mibs to be loaded.Mandatory.
  27.  * tableOID  Mandatory - Give the Object Identifier of a Table.
  28.  * value               - value to be set.Mandatory.
  29.  * rowIndex            - position of the row in the table.Mandatory.
  30.  * columnIndex         - index of the column in the table.Mandatory.
  31.  */
  32. import com.adventnet.snmp.beans.*;
  33. import com.adventnet.snmp.mibs.*;
  34. import com.adventnet.snmp.snmp2.*;
  35. import java.util.*;
  36. public class setTableValue {
  37.     private static final int COMMUNITY = 1;
  38.     private static final int PORT = 2;
  39.     private static final int RETRIES = 3;
  40.     private static final int TIMEOUT = 4;
  41.     private static final int VERSION = 0;
  42.     private static final int USER_NAME = 5;
  43.     private static final int AUTH_PROTOCOL = 6;
  44.     private static final int AUTH_PASSWORD = 7;
  45.     private static final int PRIV_PASSWORD = 8;
  46. private static final int CONTEXT_NAME = 9;
  47. private static final int CONTEXT_ID = 10;
  48.     private static final int DEBUG = 11;
  49.     private static final int PRIV_PROTOCOL = 12;
  50.     public static void main(String args[]) {
  51.     // Take care of getting options
  52.     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] [ -pp priv_protocol (DES/AES-128/AES-192/AES-256/3DES) ] [ host MIB_files tableOID value rowIndex columnIndex";
  53.     String options[] = { "-v", "-c", "-p", "-r", "-t", "-u", "-a", "-w", "-s", "-n", "-i", "-d","-pp" };
  54.     String values[] = { null, null, null, null, null, null, null, null, null, null, null, "None",null};
  55.     String authProtocol = new String("NO_AUTH");
  56.     ParseOptions opt = new ParseOptions(args,options,values, usage);
  57.     // check for at least hostname and one OID in remaining arguments
  58.     if (opt.remArgs.length<6) opt.usage_error();    
  59.     
  60.     
  61.  if(values[VERSION] != null)
  62.   {        
  63.  if ((values[VERSION].equals("v3")) && (values[USER_NAME] == null)) opt.usage_error();
  64. }
  65.     // instantiate an SnmpTable instance
  66.     SnmpTable table = new SnmpTable();
  67.  //To load MIBs from compiled file
  68.  table.setLoadFromCompiledMibs(true);
  69.  
  70.  
  71.  if (values[DEBUG].equals("set")) table.setDebug(true);
  72.  
  73.         if(values[VERSION] != null) {  // if SNMP version is specified, set it
  74.             if(values[VERSION].equals("v2"))
  75.                 table.setSnmpVersion( SnmpTarget.VERSION2C ) ;
  76.             else if(values[VERSION].equals("v1"))
  77.                 table.setSnmpVersion( SnmpTarget.VERSION1 );
  78.             else if(values[VERSION].equals("v3"))
  79.                 table.setSnmpVersion( SnmpTarget.VERSION3 );
  80.             else {
  81.                 System.out.println("Invalid Version Number"); 
  82.                 System.exit(1);
  83.             }
  84.         }
  85.     table.setTargetHost( opt.remArgs[0] ); // set the agent hostname
  86.     if (values[COMMUNITY] != null) // set the community if specified
  87.         table.setCommunity( values[COMMUNITY] );
  88.     try { // set the timeout/retries/port parameters, if specified
  89.         if (values[PORT] != null) 
  90.             table.setTargetPort( Integer.parseInt(values[PORT]) );
  91.         if (values[RETRIES] != null) 
  92.             table.setRetries( Integer.parseInt(values[RETRIES]) );
  93.         if (values[TIMEOUT] != null) 
  94.             table.setTimeout( Integer.parseInt(values[TIMEOUT]) );
  95.     } catch (NumberFormatException ex) {
  96.         System.err.println("Invalid Integer Argument "+ex);
  97.     }
  98.     if(table.getSnmpVersion() == table.VERSION3) {
  99.         if (values[USER_NAME] != null) 
  100.             table.setPrincipal(values[USER_NAME]);
  101.         if (values[AUTH_PROTOCOL] != null) {
  102.             //System.out.println("authProtocol = " + authProtocol);
  103.             authProtocol = values[AUTH_PROTOCOL];
  104.         }
  105.         if(authProtocol.equals("SHA"))
  106.             table.setAuthProtocol(SnmpTarget.SHA_AUTH);
  107.         else if(authProtocol.equals("MD5"))
  108.             table.setAuthProtocol(SnmpTarget.MD5_AUTH);
  109.         else
  110.             table.setAuthProtocol(SnmpTarget.NO_AUTH);
  111.         if (values[AUTH_PASSWORD] != null) 
  112.             table.setAuthPassword(values[AUTH_PASSWORD]);
  113.         if (values[PRIV_PASSWORD] != null)
  114.         {
  115.             table.setPrivPassword(values[PRIV_PASSWORD]);
  116.             if(values[PRIV_PROTOCOL] != null)
  117.             {
  118.                     if(values[PRIV_PROTOCOL].equals("AES-128"))
  119.                     {
  120.                        table.setPrivProtocol(table.CFB_AES_128);
  121.                     }
  122.     else if(values[PRIV_PROTOCOL].equals("AES-192"))
  123.                     {
  124.                        table.setPrivProtocol(table.CFB_AES_192);
  125.                     }
  126.     else if(values[PRIV_PROTOCOL].equals("AES-256"))
  127.                     {
  128.                        table.setPrivProtocol(table.CFB_AES_256);
  129.                     }
  130.     else if(values[PRIV_PROTOCOL].equals("3DES"))
  131.                     {
  132.                       table.setPrivProtocol(table.CBC_3DES);
  133.                     }
  134.                     else if(values[PRIV_PROTOCOL].equals("DES"))
  135.                     {
  136.                        table.setPrivProtocol(table.CBC_DES);
  137.                     }
  138.                     else
  139.                     {
  140.                      System.out.println(" Invalid PrivProtocol "+values[PRIV_PROTOCOL]);
  141.                      opt.usage_error();
  142.                     }
  143.             }
  144.         }
  145. if(values[CONTEXT_NAME]!= null)
  146. table.setContextName(values[CONTEXT_NAME]);
  147. if(values[CONTEXT_ID]!= null)
  148. table.setContextID(values[CONTEXT_ID]);
  149.         }
  150.     if (opt.remArgs[1] != null) try { // Load the MIB files 
  151.         System.out.println("Loading MIBs: "+opt.remArgs[1]);
  152.         table.loadMibs(opt.remArgs[1]);
  153.         System.out.println("Done.");
  154.     } catch (Exception ex) {
  155.         System.err.println("Error loading MIBs: "+ex);
  156.     }
  157. if(table.getSnmpVersion() == table.VERSION3){
  158. table.create_v3_tables();
  159. }
  160. if (values[DEBUG].equals("Set"))
  161.     {
  162.         table.setDebug(true);
  163.     } 
  164.     
  165.     table.setCellValue(opt.remArgs[2],opt.remArgs[3],Integer.parseInt(opt.remArgs[4]),Integer.parseInt(opt.remArgs[5]));    
  166.     
  167.     Object obj=table.getCellValue(opt.remArgs[2],Integer.parseInt(opt.remArgs[4]),Integer.parseInt(opt.remArgs[5]));
  168.     if(obj!=null)
  169.     System.out.println("Value is: "+obj);
  170.     
  171.     }   
  172. }