SNMP版本命令差异
我正在做一个关于 SNMP 的项目。
我知道在SNMPv1和SNMPv2之间,SNMPv2另外还有GetBulk和Inform命令。我想知道对于 Get GetNext Set 等三个版本中支持的命令,在兼容性方面是否存在差异,或者是否有任何我应该知道的差异?
I am working on a project about SNMP.
I know that between SNMPv1 and SNMPv2, SNMPv2 has GetBulk and Inform commands in addition. I would like to know that for the commands that are supported in the three versions like Get GetNext Set etc.., is there a difference in terms of compatibility or is there any difference that I should know?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
SNMPv1 缺少 GetBulk 以及 TRAP2 和 INFORM 命令(以及 REPORT,但您可能不需要知道它存在)。除此之外,SNMPv2c 是对 SNMPv1 的一个小改动,仅添加了这三个命令。 SNMPv3 使用 SNMPv2 PDU 格式,因此命令列表是相同的。 SNMPv3 仅围绕 SNMPv2 PDU 集包装安全性和其他处理。
SNMPv1 is missing GetBulk and the TRAP2 and INFORM commands (and REPORT, but you probably don't ever need to know that it exists). Other than that, SNMPv2c is a minor change to SNMPv1 that only adds these three commands. SNMPv3 uses the SNMPv2 PDU format so the command list is identical. SNMPv3 only wraps security and other processing around the SNMPv2 PDU set.
其他命令在所有三个版本中均可用。
请注意,v1 和 v2c 中的消息格式几乎相同,而 v3 使用更复杂的格式。
http://www.tcpipguide.com/free/t_SNMPVersion1SNMPv1MessageFormat-3.htm
http://www.tcpipguide.com/free/t_SNMPVersion2SNMPv2MessageFormats.htm
http://www.tcpipguide.com/free/t_SNMPVersion3SNMPv3MessageFormat.htm
SNMP RFC 文档此维基百科页面中列出的内容为您提供了有关它们的更多详细信息,
http://en.wikipedia.org/wiki/Simple_Network_Management_Protocol
在您的探索过程中可能会遇到其他问题,一旦您遇到任何问题,您可以在这里再次发布作为新问题。
Other commands are available in all three versions.
Note that the message format is almost identical in v1 and v2c, while v3 uses a more complex format.
http://www.tcpipguide.com/free/t_SNMPVersion1SNMPv1MessageFormat-3.htm
http://www.tcpipguide.com/free/t_SNMPVersion2SNMPv2MessageFormats.htm
http://www.tcpipguide.com/free/t_SNMPVersion3SNMPv3MessageFormat.htm
The SNMP RFC documents listed in this Wikipedia page provide you more details on them,
http://en.wikipedia.org/wiki/Simple_Network_Management_Protocol
There might be other issues during your exploration, and once you hit anything, you can post here again as a new question.