What is the correct encoding for SNMP type Unsigned32?

∥☆過路亽.° 提交于 2020-01-03 14:05:09

问题


I'm writing an SNMP agent and the MIB definition includes an OID of type Unsigned32.

The Unix implementation of the agent uses Net-SNMP and sets the OID as type ASN_UNSIGNED, since it doesn't have an ASN_UNSIGNED32. When I look at the GET response with Wireshark, it decodes it as a "Gauge32" value. That makes sense at first sight, because according to RFC 1902 Unsigned32 and Gauge32 are the same.

The Windows implementation is based on Windows' SnmpAPI.lib and sets the OID as ASN_UNSIGNED32 and when I look at the GET response with Wireshark, it decodes it as "Unsigned32". That looks even better to me.

How come the 2 implementations produce different results on the wire ?

Which is the correct version and how can I manage to get the same from both implementations ?


回答1:


It turns out Net-SNMP is using the current RFC 1902 encoding where Unsigned32 and Gauge32 are identical, while Windows uses the obsolete RFC 1442 encoding where Unsigned32 and Gauge32 had different encodings.




回答2:


If you save the Wireshark capture on Windows and then open it in Wireshark on Unix. Then you may see what is the type it shows. Unsigned32 and Gauge32 are interchangeable defined by the standard, so there should be no different at all in all SNMP implementation. On the wire, it should transfer the same bytes.



来源:https://stackoverflow.com/questions/10756666/what-is-the-correct-encoding-for-snmp-type-unsigned32

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!