粘贴在这里太长了,我只会粘贴重要的部分。
所以我用来从demo.snmplabs.com
1.3.6.1.2.1.11.1.0|65:numeric|rate=1,deviation=1,cumulative=1
所以,当我运行该示例代码时,特别是这部分:
PDU pdu = new PDU();
for (OID oid : oids) {
pdu.add(new VariableBinding(oid));
}
pdu.setType(PDU.GET);
ResponseEvent event = snmp.send(pdu, getTarget(), null);
if(event != null) {
return event;
}
ResponseEvent
我收到的是:
RESPONSE[requestID=1657637351, errorStatus=Success(0),
errorIndex=0, VBS[1.3.6.1.2.1.11.1.0 = 4294967295]]
如您所见,我希望看到rate=1,deviation=1,cumulative=1
,但我只收到4294967295
我的代码出了什么问题?