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

SNMP编程

开发平台:

C/C++

  1. /*
  2.  * @(#)Beansexample.java
  3.  * Copyright (c) 1996-2003 AdventNet, Inc. All Rights Reserved.
  4.  * Please read the associated COPYRIGHTS file for more details.
  5.  */
  6. import com.adventnet.snmp.beans.*;
  7. public class Beansexample {
  8. public static void main(String args[]) {
  9.  
  10.     SnmpTarget target = new SnmpTarget();
  11.     // set the remote host - mmake sure the agent is running
  12.     target.setTargetHost("localhost");  
  13.     
  14.     // add OID
  15.     target.setObjectID(".1.3.6.1.2.1.1.1.0");  
  16.     
  17.     // perform get request
  18.     System.out.println(target.snmpGet());
  19.     System.exit(0);
  20.     }
  21. }