我需要将自定义消息发送给陷阱接收器。 我使用链接(http://techdive.in/snmp/snmp4j-trap-sender)发送陷阱。 并添加一行(来自lik(Sending SNMP Traps containing custom data))
String postData = "my_json_like_data more_than_700_characters";
pdu.add(new VariableBinding(new OID(new int[] { 1, 3, 6, 1, 2, 1, 1, 1 }),new OctetString(postData)));
但是在接收器端,我收到类似“发生读取错误(10040)”的错误。