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

SNMP编程

开发平台:

C/C++

  1. /*$Id: snmpdelrow.src,v 1.5.2.5 2009/01/28 12:45:56 prathika Exp $*/
  2. /*
  3.  * @(#)snmpdelrow.java
  4.  * Copyright (c) 1996-2009 AdventNet, Inc. All Rights Reserved.
  5.  * Please read the associated COPYRIGHTS file for more details.
  6.  */
  7. /** 
  8.  *  Delete 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.  * [-v] <version>      - version(v1 / v2 / v3). By default v1.
  20.  * [-u] <username>     - The v3 principal/userName
  21.  * [-a] <authProtocol>  - 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.  * [-n] <contextName>  - The snmpv3 contextName to be used.
  25.  * [-i] <contextID>    - The snmpv3 contextID to be used.
  26.  * [-pp] <privProtocol> - The privacy protocol . Must be accompanied with auth,priv password and authProtocol fields.
  27.  * <mibs> Mandatory    - The mibs to be loaded.
  28.  * <host> Mandatory    - The RemoteHost (agent).Format (string without double qoutes/IpAddress).
  29.  * <OID>  Mandatory    - Give multiple no. of Object Identifiers.
  30.  */
  31. import java.lang.*;
  32. import java.util.*;
  33. import java.net.*;
  34. import com.adventnet.snmp.beans.*;
  35. public class snmpdelrow {
  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.     
  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 DEBUG = 9;
  47.     private static final int CONTEXT_NAME = 10;
  48.     private static final int CONTEXT_ID = 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 = "snmpdelrow [-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]  [-n contextName][-i contextID] [ -pp priv_protocol (DES/AES-128/AES-192/AES-256/3DES) ] host MIB_files rowStatusOID.index ";
  53.     String options[] = { "-v", "-c", "-p", "-r", "-t","-u", "-a", "-w", "-s", "-d", "-n" , "-i", "-pp" };
  54.     String values[] = { null, null, null, null, null, null, null, null, null, "None" , null , null, null};
  55.     String authProtocol = new String("NO_AUTH");
  56.       
  57.     ParseOptions opt = new ParseOptions(args,options,values, usage);
  58.     // Use an SNMP table bean to perform SNMP operations
  59.     SnmpTable table = new SnmpTable();
  60.  //To load MIBs from compiled file
  61.  table.setLoadFromCompiledMibs(true);
  62.     // at least 3 arguments are needed to do anything useful
  63.     if (opt.remArgs.length<3) opt.usage_error();
  64.        if(values[VERSION] != null)
  65.      {  
  66.   if ((values[VERSION].equals("v3")) && (values[USER_NAME] == null)) opt.usage_error();
  67.         }
  68. if (values[DEBUG].equals("Set")) table.setDebug(true);
  69.     table.setTargetHost( opt.remArgs[0] );  // set the agent hostname
  70.     if (values[COMMUNITY] != null) // set the community if specified
  71.         table.setCommunity( values[COMMUNITY] );
  72.     if(values[VERSION] != null) {  // if SNMP version is specified, set it
  73.         if(values[VERSION].equals("v2"))
  74.             table.setSnmpVersion( SnmpTable.VERSION2C ) ;
  75.         else if(values[VERSION].equals("v1"))
  76.             table.setSnmpVersion( SnmpTable.VERSION1 );
  77.         else if(values[VERSION].equals("v3"))
  78.             table.setSnmpVersion( SnmpTable.VERSION3 );
  79.         else {
  80.             System.out.println("Invalid Version Number"); 
  81.             System.exit(1);
  82.         }
  83.     }
  84.     try { // set the timeout/retries/port parameters, if specified
  85.         if (values[PORT] != null) 
  86.             table.setTargetPort( Integer.parseInt(values[PORT]) );
  87.         if (values[RETRIES] != null) 
  88.             table.setRetries( Integer.parseInt(values[RETRIES]) );
  89.         if (values[TIMEOUT] != null) 
  90.             table.setTimeout( Integer.parseInt(values[TIMEOUT]) );
  91.     } catch (NumberFormatException ex) {
  92.         System.err.println("Invalid Integer Argument "+ex);
  93.         opt.usage_error();
  94.     }
  95.     if(table.getSnmpVersion() == table.VERSION3) {
  96.         if (values[USER_NAME] != null) 
  97.             table.setPrincipal(values[USER_NAME]);
  98.         if (values[AUTH_PROTOCOL] != null) {
  99.             //System.out.println("authProtocol = " + authProtocol);
  100.             authProtocol = values[AUTH_PROTOCOL];
  101.         }
  102.         if(authProtocol.equals("SHA"))
  103.             table.setAuthProtocol(table.SHA_AUTH);
  104.         else if(authProtocol.equals("MD5"))
  105.             table.setAuthProtocol(table.MD5_AUTH);
  106.         else
  107.             table.setAuthProtocol(table.NO_AUTH);
  108.         if (values[AUTH_PASSWORD] != null) 
  109.             table.setAuthPassword(values[AUTH_PASSWORD]);
  110.         if (values[PRIV_PASSWORD] != null) 
  111.         {
  112.             table.setPrivPassword(values[PRIV_PASSWORD]);
  113.             if(values[PRIV_PROTOCOL] != null)
  114.             {
  115.                     if(values[PRIV_PROTOCOL].equals("AES-128"))
  116.                     {
  117.                        table.setPrivProtocol(table.CFB_AES_128);
  118.                     }
  119.     else if(values[PRIV_PROTOCOL].equals("AES-192"))
  120.                     {
  121.                        table.setPrivProtocol(table.CFB_AES_192);
  122.                     }
  123.     else if(values[PRIV_PROTOCOL].equals("AES-256"))
  124.                     {
  125.                        table.setPrivProtocol(table.CFB_AES_256);
  126.                     }
  127.     else if(values[PRIV_PROTOCOL].equals("3DES"))
  128.                     {
  129.                       table.setPrivProtocol(table.CBC_3DES);
  130.                     }
  131.                     else if(values[PRIV_PROTOCOL].equals("DES"))
  132.                     {
  133.                        table.setPrivProtocol(table.CBC_DES);
  134.                     }
  135.                     else
  136.                     {
  137.                      System.out.println(" Invalid PrivProtocol "+values[PRIV_PROTOCOL]);
  138.                      opt.usage_error();
  139.                     }
  140.             }
  141.         }
  142.           if(values[CONTEXT_NAME]!= null)
  143. table.setContextName(values[CONTEXT_NAME]);
  144. if(values[CONTEXT_ID]!= null)
  145. table.setContextID(values[CONTEXT_ID]);
  146.     }
  147.     if (opt.remArgs[1] != null) try { // Load the MIB files 
  148.         System.err.println("Loading MIBs: "+opt.remArgs[1]);
  149.         table.loadMibs(opt.remArgs[1]);
  150.     } catch (Exception ex) {
  151.         System.err.println("Error loading MIBs: "+ex);
  152.     }
  153. if(table.getSnmpVersion() == table.VERSION3){
  154. table.create_v3_tables();
  155. }
  156. String oid = null ; 
  157. oid = new String();
  158.     oid = opt.remArgs[2];   
  159. table.deleteRow(oid);    
  160. if(table.getErrorCode() != 0) {
  161. System.out.println("Error String : " + table.getErrorString());
  162. }
  163.     System.exit(0);
  164.     
  165.     }
  166. }