我在从收到的 pdu 中检索目标 IP 地址时遇到问题。“getPeerAddress()”给了我发件人的 IP 地址。但我想要的是命令/收到的 pdu 中的 IP 地址或主机名。
例如“10.255.255.221”来自
snmpset -v 1 -c M 10.255.**.221 1.3.6.1.4.1.161.3.6.37.2.6.1.1.4.2 i 3.
我尝试了 pduV1 的 getAgentAdress 但没有显示。
public synchronized void processPdu(CommandResponderEvent cmdRespEvent) {
System.out.println("Received PDU...");
String retrieveIP = cmdRespEvent.getPeerAddress().toString().split("/")[0];
System.out.println("Received PDU from " + retrieveIP +"\n");
PDU pdu = cmdRespEvent.getPDU();
System.out.println(" PDU Type = " + PDU.getTypeString(pdu.getType()));
System.out.println("Trap Type = " + pdu.getType());
System.out.println("IP Address = " + ((PDUv1) pdu).getAgentAddress().toString());
String updateValue = pdu.get(0).getVariable().toString();
System.out.println("updateValue ="+updateValue);
}
编辑:我的机器有多个 IP 地址