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

SNMP编程

开发平台:

C/C++

  1. /* $Id: SnmpGet.java,v 1.1 2002/06/15 14:40:08 ram Exp $ */
  2. /* SnmpGet.java
  3.  * Copyright (c) 1996-2003 AdventNet, Inc. All Rights Reserved.
  4.  * Please read the associated COPYRIGHTS file for more details.
  5.  */
  6. /**
  7.  * This is a tutorial example program to explain how to write an application to do
  8.  * the basic SNMP operation GET using com.adventnet.snmp.beans package of
  9.  * AdventNetSNMP api.
  10.  *
  11.  * The user could run this application by giving the following usage.
  12.  *  
  13.  * java SnmpGet hostname OID [OID]
  14.  *
  15.  * where 
  16.  *
  17.  * hostname is the RemoteHost (agent).The Format is string without double qoutes/IpAddress.
  18.  * OID is the Object Identifier. Multiple OIDs can also be given.
  19.  * 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 SnmpGet adventnet 1.1.0 1.2.0 1.3.0 1.4.0 
  26.  *
  27.  */
  28. import com.adventnet.snmp.beans.*;
  29. public class SnmpGet {
  30. public static void main(String args[]) {
  31.       if( args.length < 2)
  32. {
  33. System.out.println("Usage : java SnmpGet 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. String oids[] = new String [args.length - 1];
  44. for (int i=1; i<args.length; i++) oids[i-1] = args[i];
  45. target.setObjectIDList(oids);  
  46.     
  47. // do the SNMP GET operation
  48. String result[] = target.snmpGetList();
  49.     
  50. // print the results
  51. for (int i=0;i<oids.length;i++) { 
  52.     System.out.println("OBJECT ID: "+target.getObjectID(i));
  53.     System.out.println("Response: "+result[i]);
  54. }
  55. System.exit(0);
  56.      }
  57. }