Pysnmp-只需连接到设备而不运行整个 GET 或 Walk 等
我打算使用 PySnmp 并且我的要求非常简单。我想通过 PySnmp 连接到网络设备而不执行任何操作。基本上只是为了检查 SNMP 社区是否正确,我只需要源是否可以连接到网络设备。我不想跑完整个步行或得到这消耗时间。
流程:
程序运行-->通过提供的 SNMP 社区连接到网络设备 -->如果连接 - 返回 True ,如果不能连接 ->返回假。
我不想在代码中提供任何 OID 详细信息,因为它只是预期的连接或断开连接消息。
所有示例都显示运行整个 GET 或 WALk 或 GETBULK 等。
I am planning to use PySnmp and my requirement is very simple. I would like to just connect to a network device via PySnmp and do nothing. Basically just to check whether the SNMP community is correct and i just need if the source can connect to a network device . I do not want to run the entire walk or get which consume time.
Flow :
Program Runs --> Connect to a network device over the supplied SNMP community --> If it connects - return True , and if it cannot --> Return False.
I do not want to provide any OID details in my code as it will just be connect or disconnect message expected.
All examples are showing to run entire GET or WALk or GETBULK etc.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道有什么方法可以在不执行 SNMP 操作的情况下测试社区。没有必要步行。您可以对
.1.3.6.1.2.1.1.5.0
(SNMPv2-MIB::sysName) 等常见内容执行单个GET
作为测试。I don't know of a way to test a community without doing an SNMP operation. It's not necessary to walk. You can do a single
GET
to something common like.1.3.6.1.2.1.1.5.0
(SNMPv2-MIB::sysName) as a test.