Beansexample.java.txt
上传用户:aonuowh
上传日期:2021-05-23
资源大小:35390k
文件大小:1k
- /*
- * @(#)Beansexample.java
- * Copyright (c) 1996-2003 AdventNet, Inc. All Rights Reserved.
- * Please read the associated COPYRIGHTS file for more details.
- */
- import com.adventnet.snmp.beans.*;
- public class Beansexample {
- public static void main(String args[]) {
-
- SnmpTarget target = new SnmpTarget();
- // set the remote host - mmake sure the agent is running
- target.setTargetHost("localhost");
-
- // add OID
- target.setObjectID(".1.3.6.1.2.1.1.1.0");
-
- // perform get request
- System.out.println(target.snmpGet());
- System.exit(0);
- }
- }