Mibsexample1.java.txt
上传用户:aonuowh
上传日期:2021-05-23
资源大小:35390k
文件大小:1k
- /*
- * @(#)Mibsexample1.java
- * Copyright (c) 1996-2003 AdventNet, Inc. All Rights Reserved.
- * Please read the associated COPYRIGHTS file for more details.
- */
- import java.lang.*;
- import java.util.*;
- import java.net.*;
- import com.adventnet.snmp.snmp2.*;
- import com.adventnet.snmp.mibs.*;
- public class Mibsexample1 {
- public static void main(String args[]) {
-
- // start SNMP API
- SnmpAPI api;
- api = new SnmpAPI();
- api.start();
- api.setDebug( true );
- // open session
- SnmpSession session = new SnmpSession(api);
- try {
- session.open();
- } catch (SnmpException e ) {
- }
- // set remote host - make sure your agent is running
- session.setPeername("localhost");
- // load MIB
- MibOperations mibOps = new MibOperations();
- try {
- mibOps.loadMibModules("RFC1213-MIB");
- } catch (Exception ex) { System.err.println("Error loading MIBs: "+ex);
- }
-
- // add OID
- SnmpOID oid = mibOps.getSnmpOID(".1.3.6.1.2.1.1.1.0");
- // build GET request pdu
- SnmpPDU pdu = new SnmpPDU();
- pdu.setCommand( api.GET_REQ_MSG );
- pdu.addNull(oid);
- try {
- pdu = session.syncSend(pdu);
- } catch (SnmpException e) {
- }
-
- // print the response pdu
- //System.out.println(mibOps.varBindsToString(pdu));
- System.out.println(mibOps.toString(pdu));
- //System.out.println(pdu.printVarBinds());
- // close session
- session.close();
- // stop api thread
- api.close();
-
- }
- }