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

SNMP编程

开发平台:

C/C++

  1. /*$Id: snmpdelrow.src,v 1.5 2002/09/09 05:36:28 tonyjpaul Exp $*/
  2. /*
  3.  * @(#)snmpdelrow.java
  4.  * Copyright (c) 1996-2003 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.  *<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] <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.  * <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 snmpdelrow {
  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 = "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] host MIB_files rowStatusOID.index ";
  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<3) opt.usage_error();
  58. if ((values[VERSION] == "v3") && (values[USER_NAME] == null)) opt.usage_error();
  59. if (values[DEBUG].equals("Set")) table.setDebug(true);
  60.     table.setTargetHost( opt.remArgs[0] );  // set the agent hostname
  61.     if (values[COMMUNITY] != null) // set the community if specified
  62.         table.setCommunity( values[COMMUNITY] );
  63.     if(values[VERSION] != null) {  // if SNMP version is specified, set it
  64.         if(values[VERSION].equals("v2"))
  65.             table.setSnmpVersion( SnmpTable.VERSION2C ) ;
  66.         else if(values[VERSION].equals("v1"))
  67.             table.setSnmpVersion( SnmpTable.VERSION1 );
  68.         else if(values[VERSION].equals("v3"))
  69.             table.setSnmpVersion( SnmpTable.VERSION3 );
  70.         else {
  71.             System.out.println("Invalid Version Number"); 
  72.             System.exit(1);
  73.         }
  74.     }
  75.     try { // set the timeout/retries/port parameters, if specified
  76.         if (values[PORT] != null) 
  77.             table.setTargetPort( Integer.parseInt(values[PORT]) );
  78.         if (values[RETRIES] != null) 
  79.             table.setRetries( Integer.parseInt(values[RETRIES]) );
  80.         if (values[TIMEOUT] != null) 
  81.             table.setTimeout( Integer.parseInt(values[TIMEOUT]) );
  82.     } catch (NumberFormatException ex) {
  83.         System.err.println("Invalid Integer Argument "+ex);
  84.         opt.usage_error();
  85.     }
  86.     if(table.getSnmpVersion() == table.VERSION3) {
  87.         if (values[USER_NAME] != null) 
  88.             table.setPrincipal(values[USER_NAME]);
  89.         if (values[AUTH_PROTOCOL] != null) {
  90.             //System.out.println("authProtocol = " + authProtocol);
  91.             authProtocol = values[AUTH_PROTOCOL];
  92.         }
  93.         if(authProtocol.equals("SHA"))
  94.             table.setAuthProtocol(table.SHA_AUTH);
  95.         else if(authProtocol.equals("MD5"))
  96.             table.setAuthProtocol(table.MD5_AUTH);
  97.         else
  98.             table.setAuthProtocol(table.NO_AUTH);
  99.         if (values[AUTH_PASSWORD] != null) 
  100.             table.setAuthPassword(values[AUTH_PASSWORD]);
  101.         if (values[PRIV_PASSWORD] != null) 
  102.             table.setPrivPassword(values[PRIV_PASSWORD]);
  103.     }
  104.     if (opt.remArgs[1] != null) try { // Load the MIB files 
  105.         System.err.println("Loading MIBs: "+opt.remArgs[1]);
  106.         table.loadMibs(opt.remArgs[1]);
  107.     } catch (Exception ex) {
  108.         System.err.println("Error loading MIBs: "+ex);
  109.     }
  110. if(table.getSnmpVersion() == table.VERSION3){
  111. table.create_v3_tables();
  112. }
  113. String oid = null ; 
  114. oid = new String();
  115.     oid = opt.remArgs[2];   
  116. table.deleteRow(oid);    
  117. if(table.getErrorCode() != 0) {
  118. System.out.println("Error String : " + table.getErrorString());
  119. }
  120.     System.exit(0);
  121.     
  122.     }
  123. }