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

SNMP编程

开发平台:

C/C++

  1. /* $Id: Snmpv3Get.java,v 1.1 2002/06/15 14:40:08 ram Exp $ */
  2. /*
  3.  * @(#)Snmpv3Get.java
  4.  * Copyright (c) 1999 AdventNet, Inc. All Rights Reserved.
  5.  * Please read the associated COPYRIGHTS file for more details.
  6.  */
  7. /**
  8.  * This is a tutorial example program to explain how to write an application to do
  9.  * the basic SNMP operation GET using com.adventnet.snmp.beans package of
  10.  * AdventNetSNMP api.
  11.  *
  12.  * The user could run this application by giving the following usage.
  13.  *  
  14.  * java Snmpv3Get hostname OID 
  15.  *
  16.  * where 
  17.  *
  18.  * hostname is the RemoteHost (agent).The Format is string without double qoutes/IpAddress.
  19.  * OID is the Object Identifier. The entire OID can be given or it can be given in the form of 1.1.0.
  20.  * If the oid is not starting with a dot (.) it will be prefixed by .1.3.6.1.2.1 .
  21.  * So the entire OID of 1.1.0 will become .1.3.6.1.2.1.1.1.0 .
  22.  *
  23.  * Example usage:
  24.  *
  25.  * java Snmpv3Get adventnet 1.1.0 
  26.  *
  27.  */
  28. import com.adventnet.snmp.beans.*;
  29. public class Snmpv3Get {
  30. public static void main(String args[]) {
  31.       if( args.length < 2)
  32. {
  33. System.out.println("Usage : java Snmpv3Get hostname OID ");
  34. System.exit(0);
  35. }
  36.         // Take care of getting the hostname and the OID
  37. String remoteHost = args[0];
  38.         String OID = args[1];      
  39. // Instantiate the SnmpTarget bean
  40. SnmpTarget target = new SnmpTarget();
  41. //set host and other parameters
  42. target.setTargetHost(remoteHost);  
  43. target.setObjectID(OID);  
  44. target.setTargetPort(8001);
  45. target.setDebug(true);
  46. target.setSnmpVersion(3);
  47. target.setPrincipal("msiva");    // Set the user who made this request
  48.         target.setAuthPassword("test");    // Set password for authentication
  49.         target.setAuthProtocol(target.MD5_AUTH);    // one SHA or MD5
  50.         target.create_v3_tables();   // create SnmpEngineEntry and USMUserEntry
  51.         
  52. // do the SNMP GET operation
  53. String result = target.snmpGet();
  54.     
  55. // print the results
  56. System.out.println("OBJECT ID: "+target.getObjectID());
  57. System.out.println("Response: "+result);
  58. System.exit(0);
  59.     }
  60. }