如何将 SNMP“企业特定陷阱”翻译为“企业特定陷阱”号码到完整的 OID?
我目前正在使用 net-snmp snmptranslate
来转换 EnterpriseOID 我的自定义编码陷阱接收器使用以下命令接收到的陷阱:
snmptranslate -M. -mALL .1.3.6.1.2.1.39.2.2
现在,我正在接收 SNMP v1 陷阱,
generic = enterpriseSpecific (6)
因此我需要将特定陷阱编号(例如 10003)解码为“全数字”OID。有没有办法使用 snmptranslate
来做到这一点?我已经有了与陷阱关联的 MIB 文件。
I'm currently using net-snmp snmptranslate
to translate the EnterpriseOID of
the traps received by my custom coded trap receiver using the following command:
snmptranslate -M. -mALL .1.3.6.1.2.1.39.2.2
Now, I am receiving SNMP v1 traps with
generic = enterpriseSpecific (6)
so I need to decode the specific trap number, e.g. 10003 to the 'full numeric' OID. Is there a way to do this using snmptranslate
? I already have the MIB file associated with the traps.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我发现我可以通过将企业 OID 与 0 结合,后跟特定陷阱编号,将 SNMP v1 特定编号转换为 OID,例如
EnterpriseOID + '0' + SpecificTrap
I found out that I can convert an SNMP v1 specific number to OID using combining the enterprise OID, with a 0, followed by the specific trap number, e.g.
EnterpriseOID + '0' + SpecificTrap