snmp4j 异步获取节点信息

Posted beibidewomen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了snmp4j 异步获取节点信息相关的知识,希望对你有一定的参考价值。

1. 主要代码如下:

public class ResponseListenerTest {
    public static void main(String[] args) throws IOException, InterruptedException {
        Snmp snmp = new Snmp(new DefaultUdpTransportMapping());
        snmp.listen();
        
        CommunityTarget target = new CommunityTarget();
        target.setCommunity(new OctetString("public"));
        target.setAddress(GenericAddress.parse("udp:192.168.100.61/161"));
        target.setRetries(1);
        target.setTimeout(2000);
        target.setVersion(SnmpConstants.version1);
        
        
        PDU pdu = new PDU();
        pdu.add(new VariableBinding(new OID("1.3.6.1.2.1.1.3.0")));
        pdu.setType(PDU.GET);
        
        ResponseListener listener = new ResponseListener() {
            @Override
            public void onResponse(ResponseEvent event) {
                PDU resp = event.getResponse();
                VariableBinding vb = resp.get(0);
                System.out.println(vb.getOid().toString() + "^^^^" + vb.getVariable());
            }
        };
        CountDownLatch latch = new CountDownLatch(1);
        snmp.get(pdu, target, null, listener);
        latch.await(2, TimeUnit.SECONDS);
    }
}

2. 运行结果如下:

3. 在上面的例子中,也可以使用线程的方式处理:

但是需要注意的是:sleep的时间要小于 setTimeout 的时间,否则会出现异常。

 4. 其中:

  target.setTimeout(2000); // 意思为:当发送请求后 2秒钟没有返回响应信息,表示已经超时了。
  target.setRetries(1);   // 意思为:当上面的逻辑超时后,再次发送请求的次数,为1次。
 

以上是关于snmp4j 异步获取节点信息的主要内容,如果未能解决你的问题,请参考以下文章

SNMP4J SNMP用法小记

节点异步路由代码

SNMP4J源码主要类解析

错误记录Flutter 混合开发获取 BinaryMessenger 报错 ( FlutterActivityAndFragmentDelegate.getFlutterEngine() )(代码片段

SNMP4J与ObjectSNMP对比分析之我见

在Nuxt.js组件中获取异步数据