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

SNMP编程

开发平台:

C/C++

  1. /*$Id: snmpset.src,v 1.3.2.3 2009/01/28 12:45:56 prathika Exp $*/
  2. /*
  3.  * @(#)snmpset.java
  4.  * Copyright (c) 1996-2009 AdventNet, Inc. All Rights Reserved.
  5.  * Please read the associated COPYRIGHTS file for more details.
  6.  */
  7. /** 
  8.  *  Do an SNMP Set 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] <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.  * [-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.  * -m <mibs>           - The mibs to be loaded.Mandatory.
  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 snmpset {
  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 MIBS = 5;
  41.     private static final int VERSION = 0;
  42.     private static final int USER_NAME = 6;
  43.     private static final int AUTH_PROTOCOL = 7;
  44.     private static final int AUTH_PASSWORD = 8;
  45.     private static final int PRIV_PASSWORD = 9;
  46.     private static final int DEBUG = 10;
  47.    private static final int CONTEXT_NAME = 11;
  48.    private static final int CONTEXT_ID = 12;
  49.     private static final int PRIV_PROTOCOL= 13;
  50.     public static void main(String args[]) {
  51.         // Take care of getting options
  52.     String usage = "snmpset [-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) ] -m MIB_files host OID value [OID value] ...";
  53.     String options[] = { "-v", "-c", "-p", "-r", "-t", "-m" , "-u", "-a", "-w", "-s", "-d", "-n","-i","-pp" };
  54.     String values[] = { null, 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 target bean to perform SNMP operations
  59.     SnmpTarget target = new SnmpTarget();
  60.  //To load MIBs from compiled file
  61.  target.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[DEBUG].equals("Set")) target.setDebug(true);
  65.     target.setTargetHost( opt.remArgs[0] );  // set the agent hostname
  66.     if (values[COMMUNITY] != null) // set the community if specified
  67.         target.setCommunity( values[COMMUNITY] );
  68.     if(values[VERSION] != null) {  // if SNMP version is specified, set it
  69.         if(values[VERSION].equals("v2"))
  70.             target.setSnmpVersion( SnmpTarget.VERSION2C ) ;
  71.         else if(values[VERSION].equals("v1"))
  72.             target.setSnmpVersion( SnmpTarget.VERSION1 );
  73.         else if(values[VERSION].equals("v3"))
  74.             target.setSnmpVersion( SnmpTarget.VERSION3 );
  75.         else {
  76.             System.out.println("Invalid Version Number"); 
  77.             System.exit(1);
  78.         }
  79.     }
  80.     try { // set the timeout/retries/port parameters, if specified
  81.         if (values[PORT] != null) 
  82.             target.setTargetPort( Integer.parseInt(values[PORT]) );
  83.         if (values[RETRIES] != null) 
  84.             target.setRetries( Integer.parseInt(values[RETRIES]) );
  85.         if (values[TIMEOUT] != null) 
  86.             target.setTimeout( Integer.parseInt(values[TIMEOUT]) );
  87.     } catch (NumberFormatException ex) {
  88.         System.err.println("Invalid Integer Argument "+ex);
  89.         opt.usage_error();
  90.     }
  91.     if(target.getSnmpVersion() == target.VERSION3) {
  92.         if (values[USER_NAME] != null) 
  93.             target.setPrincipal(values[USER_NAME]);
  94.         if (values[AUTH_PROTOCOL] != null) {
  95.             //System.out.println("authProtocol = " + authProtocol);
  96.             authProtocol = values[AUTH_PROTOCOL];
  97.         }
  98.         if(authProtocol.equals("SHA"))
  99.             target.setAuthProtocol(target.SHA_AUTH);
  100.         else if(authProtocol.equals("MD5"))
  101.             target.setAuthProtocol(target.MD5_AUTH);
  102.         else
  103.             target.setAuthProtocol(target.NO_AUTH);
  104.         if (values[AUTH_PASSWORD] != null) 
  105.             target.setAuthPassword(values[AUTH_PASSWORD]);
  106.         if (values[PRIV_PASSWORD] != null) 
  107.         {
  108.             target.setPrivPassword(values[PRIV_PASSWORD]);
  109.             if(values[PRIV_PROTOCOL] != null)
  110.             {
  111.                     if(values[PRIV_PROTOCOL].equals("AES-128"))
  112.                     {
  113.                        target.setPrivProtocol(target.CFB_AES_128);
  114.                     }
  115.     else if(values[PRIV_PROTOCOL].equals("AES-192"))
  116.                     {
  117.                        target.setPrivProtocol(target.CFB_AES_192);
  118.                     }
  119.     else if(values[PRIV_PROTOCOL].equals("AES-256"))
  120.                     {
  121.                        target.setPrivProtocol(target.CFB_AES_256);
  122.                     }
  123.     else if(values[PRIV_PROTOCOL].equals("3DES"))
  124.                     {
  125.                        target.setPrivProtocol(target.CBC_3DES);
  126.                     }
  127.                     else if(values[PRIV_PROTOCOL].equals("DES"))
  128.                     {
  129.                        target.setPrivProtocol(target.CBC_DES);
  130.                     }
  131.                     else
  132.                     {
  133.                      System.out.println(" Invalid PrivProtocol "+values[PRIV_PROTOCOL]);
  134.                      opt.usage_error();
  135.                     }
  136.             }
  137.          }
  138. if(values[CONTEXT_NAME]!= null)
  139. target.setContextName(values[CONTEXT_NAME]);
  140. if(values[CONTEXT_ID]!= null)
  141. target.setContextID(values[CONTEXT_ID]);
  142.     }
  143.     if (values[MIBS] != null) try { // Load the MIB files 
  144.         System.err.println("Loading MIBs: "+values[MIBS]);
  145.         target.loadMibs(values[MIBS]);
  146.     } catch (Exception ex) {
  147.         System.err.println("Error loading MIBs: "+ex);
  148.     }
  149. if(target.getSnmpVersion() == target.VERSION3){
  150. target.create_v3_tables();
  151. }
  152.     // Put together OID and variable value lists from command line
  153.     String oids[] = null, var_values[] = null;  // trap oids and values
  154.     int num_varbinds = 0;
  155.     for (int i=1;i<opt.remArgs.length;i+=2) { // add Variable Bindings
  156.         if (opt.remArgs.length < i+2) //need "{OID type value}"
  157.             opt.usage_error(); // unmatched arguments for name-value pairs
  158.         num_varbinds++;
  159.     }
  160.     oids = new String[num_varbinds];
  161.     var_values = new String[num_varbinds];
  162.     for (int i=0;i<num_varbinds;i++) { // add Variable Bindings
  163.         oids[i] = opt.remArgs[(2*i)+1];
  164.         var_values[i] = opt.remArgs[(2*i)+2];
  165.      }
  166.     try {
  167.         target.setObjectIDList(oids);  // set OID list on SnmpTarget
  168.         String result[] = target.snmpSetList(var_values);
  169.         if (result == null) {
  170.             System.err.println("Request failed or timed out. n"+
  171.                    target.getErrorString());
  172.         } else { // print response
  173.             System.out.println("Set OK.  Return values:");
  174.         for (int i=0;i<oids.length;i++) { 
  175.             System.out.println(target.getObjectID(i) +": "+result[i]);
  176.         }
  177.         }
  178.     } catch (Exception e) {
  179.         System.err.println("Set Error: "+e.getMessage());
  180.     }
  181.     System.exit(0);
  182.     
  183.     }
  184. }