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

SNMP编程

开发平台:

C/C++

  1. /*$Id: snmpset_without_mib.src,v 1.3 2002/09/09 05:36:28 tonyjpaul Exp $*/
  2. /*
  3.  * @(#)snmpset_without_mib.java
  4.  * Copyright (c) 1996-2003 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. 
  9.  *  Since variable type and strings to the correct variable type,
  10.  * are got from the command line args itself,  the
  11.  *  MIB corresponding to any object need not be loaded.
  12.  *
  13.  * [-d]                - Debug output. By default off.
  14.  * [-c] <community>    - community String. By default "public".
  15.  * [-p] <port>         - remote port no. By default 161.
  16.  * [-t] <Timeout>      - Timeout. By default 5000ms.
  17.  * [-r] <Retries>      - Retries. By default 0.
  18.  *<img SRC="images/v3only.jpg" ALT="v3 only"> [-v] <version>      - version(v1 / v2 / v3). By default v1.
  19.  * [-u] <username>     - The v3 principal/userName
  20.  * [-a] <autProtocol>  - The authProtocol(MD5/SHA). Mandatory if authPassword is specified
  21.  * [-w] <authPassword> - The authentication password.
  22.  * [-s] <privPassword> - The privacy protocol password. Must be accompanied with auth password and authProtocol fields.
  23.  * <host> Mandatory    - The RemoteHost (agent).Format (string without double qoutes/IpAddress).
  24.  * <type> Mandatory    - Object Type.
  25.  * <OID>  Mandatory    - Give multiple no. of Object Identifiers.
  26.  * <value> Mandatory   - the values of the specified data type.
  27.  */
  28. import java.lang.*;
  29. import java.util.*;
  30. import java.net.*;
  31. import com.adventnet.snmp.snmp2.*;
  32. import com.adventnet.snmp.beans.*;
  33. public class snmpset_without_mib {
  34.     
  35.     private static final int COMMUNITY = 1;
  36.     private static final int PORT = 2;
  37.     private static final int RETRIES = 3;
  38.     private static final int TIMEOUT = 4;
  39.     private static final int VERSION = 0;
  40.     private static final int USER_NAME = 5;
  41.     private static final int AUTH_PROTOCOL = 6;
  42.     private static final int AUTH_PASSWORD = 7;
  43.     private static final int PRIV_PASSWORD = 8;
  44.     private static final int DEBUG = 9;
  45.     
  46. public static void main(String args[]) {
  47.     
  48.     // Take care of getting options
  49.     String usage = "snmpset_without_mib [-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 OID {INTEGER | STRING | GAUGE | TIMETICKS | OPAQUE | IPADDRESS | COUNTER | OID } value [OID type value] ...";
  50.     String options[] = { "-v", "-c", "-p", "-r", "-t", "-u", "-a", "-w", "-s", "-d" };
  51.     String values[] = { null, null, null, null, null, null, null, null, null, "None"};
  52.     
  53.     String authProtocol = new String("NO_AUTH");
  54.     
  55.     ParseOptions opt = new ParseOptions(args,options,values, usage);
  56.     
  57.     // Use an SNMP target bean to perform SNMP operations
  58.     SnmpTarget target = new SnmpTarget();
  59.     
  60.     // at least 3 arguments are needed to do anything useful
  61.     if (opt.remArgs.length<3) opt.usage_error();
  62. if (values[DEBUG].equals("Set")) target.setDebug(true);
  63.     
  64.     target.setTargetHost( opt.remArgs[0] );  // set the agent hostname
  65.     if (values[COMMUNITY] != null) // set the community if specified
  66.         target.setCommunity( values[COMMUNITY] );
  67.     
  68.     
  69.     if(values[VERSION] != null) {  // if SNMP version is specified, set it
  70.         if(values[VERSION].equals("v2"))
  71.             target.setSnmpVersion( SnmpTarget.VERSION2C ) ;
  72.         else if(values[VERSION].equals("v1"))
  73.             target.setSnmpVersion( SnmpTarget.VERSION1 );
  74.         else if(values[VERSION].equals("v3"))
  75.             target.setSnmpVersion( SnmpTarget.VERSION3 );
  76.         else {
  77.             System.out.println("Invalid Version Number");
  78.             System.exit(1);
  79.         }
  80.     }
  81.     
  82.     try { // set the timeout/retries/port parameters, if specified
  83.         if (values[PORT] != null)
  84.             target.setTargetPort( Integer.parseInt(values[PORT]) );
  85.         if (values[RETRIES] != null)
  86.             target.setRetries( Integer.parseInt(values[RETRIES]) );
  87.         if (values[TIMEOUT] != null)
  88.             target.setTimeout( Integer.parseInt(values[TIMEOUT]) );
  89.     } catch (NumberFormatException ex) {
  90.         System.err.println("Invalid Integer Argument "+ex);
  91.         opt.usage_error();
  92.     }
  93.     
  94.     if(target.getSnmpVersion() == target.VERSION3) {
  95.         if (values[USER_NAME] != null)
  96.             target.setPrincipal(values[USER_NAME]);
  97.         if (values[AUTH_PROTOCOL] != null)
  98.             authProtocol = values[AUTH_PROTOCOL];
  99.         if(authProtocol.equals("SHA"))
  100.             target.setAuthProtocol(target.SHA_AUTH);
  101.         else if(authProtocol.equals("MD5"))
  102.             target.setAuthProtocol(target.MD5_AUTH);
  103.         else
  104.             target.setAuthProtocol(target.NO_AUTH);
  105.         if (values[AUTH_PASSWORD] != null)
  106.             target.setAuthPassword(values[AUTH_PASSWORD]);
  107.         if (values[PRIV_PASSWORD] != null)
  108.             target.setPrivPassword(values[PRIV_PASSWORD]);
  109.     }
  110.     
  111.     if(target.getSnmpVersion() == target.VERSION3){
  112.         target.create_v3_tables();
  113.     }
  114.     
  115.     // Put together OID and variable value lists from command line
  116.     // oids and snmpvars
  117.     String oids[] = null;
  118.     SnmpVar snmpvars[] = null;
  119.     int num_varbinds = 0;
  120.     for (int i=1;i<opt.remArgs.length;i+=3) { // add Variable Bindings
  121.         if (opt.remArgs.length < i+3) //need "{OID type value}"
  122.             opt.usage_error(); // unmatched arguments for name-type-value pairs
  123.         num_varbinds++;
  124.     }
  125.     
  126.     oids = new String[num_varbinds];
  127.     snmpvars = new SnmpVar[num_varbinds];
  128.     for (int i=0;i<num_varbinds;i++) { // add Variable Bindings
  129.         oids[i] = opt.remArgs[(3*i)+1];
  130.         snmpvars[i] = getSnmpVar(opt.remArgs[(3*i)+2],opt.remArgs[(3*i)+3]);
  131.     }
  132.     
  133.     try {
  134.         target.setObjectIDList(oids);  // set OID list on SnmpTarget
  135.         snmpvars = target.snmpSetVariables(snmpvars);
  136.         String result[] = null;
  137.         if ( snmpvars != null) {
  138.             result = new String[snmpvars.length];
  139.             for (int i=0;i<snmpvars.length;i++) {
  140.                 if (snmpvars[i] != null) {
  141.                     result[i] = target.getMibOperations().toString(snmpvars[i],new SnmpOID(oids[i]));
  142.                 }
  143.             }
  144.         }
  145.         
  146.         if (result == null) {
  147.             System.err.println("Request failed or timed out. n"+
  148.                    target.getErrorString());
  149.         
  150.         } else { // print response
  151.             
  152.             for (int i=0;i<oids.length;i++) { 
  153.                 System.out.println(target.getObjectID(i) +": "+result[i]);
  154.             }
  155.         }
  156.         
  157.     } catch (Exception e) {
  158.         System.err.println("Set Error: "+e.getMessage());
  159.     }
  160.     
  161.     System.exit(0);
  162.     
  163.     }
  164.     
  165.     static SnmpVar getSnmpVar(String type, String value) {
  166.         byte dataType ;
  167.         if (type.equals("INTEGER")) {
  168.             dataType = SnmpAPI.INTEGER;
  169.         } else if (type.equals("STRING")) {
  170.             dataType = SnmpAPI.STRING;
  171.         } else if (type.equals("GAUGE")) {
  172.             dataType = SnmpAPI.GAUGE;
  173.         } else if (type.equals("TIMETICKS")) {
  174.             dataType = SnmpAPI.TIMETICKS;
  175.         } else if (type.equals("OPAQUE")) {
  176.             dataType = SnmpAPI.OPAQUE;
  177.         } else if (type.equals("IPADDRESS")) {
  178.             dataType = SnmpAPI.IPADDRESS;
  179.         } else if (type.equals("COUNTER")) {
  180.             dataType = SnmpAPI.COUNTER;
  181.         } else if (type.equals("OID")) {
  182.             dataType = SnmpAPI.OBJID;
  183.         } else { // unknown type
  184.             System.err.println("Invalid variable type: " + type);
  185.             return null;
  186.         }
  187.         
  188.         SnmpVar var = null;
  189.         try {
  190.             // create SnmpVar instance for the value and the type
  191.             var = SnmpVar.createVariable( value, dataType );
  192.         }
  193.         catch(SnmpException e){
  194.             System.err.println("Cannot create variable for: "+value);
  195.             return null;
  196.         }
  197.         return var;
  198.     }
  199.     
  200. }