如何在.Net 2.0中生成SNMP事件
任何人都可以告诉我如何通过示例,或者是否可以使用 Framework 2.0 在 .Net 中生成 SNMP 事件并使用 Windows 工具监视这些事件?
谢谢
Can anyone advise me how through an example, or whether it is possible to generate SNMP events in .Net using Framework 2.0 and for those events to be monitored using windows tools?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
SNMP 协议没有定义任何称为事件的东西。您指的是通知吗? SNMP 引擎/代理可以通过 UDP 向其专用 SNMP 管理器发出通知(TRAP 或 INFORM 消息),以便管理器知道发生了什么事。
如果这就是您的意思,您可以使用任何支持 .NET 2 的 SNMP 库。
https://docs.lextudio.com/blog/product-review-snmp-libraries-for-net-evaluation-report-e13f25991cad
但是.NET 2太旧了,甚至微软都不再支持.NET 2,除非您还在同一台计算机上安装 .NET 3.5 SP1。因此,您可以考虑直接针对 .NET 3.5 而不是 2.0。
SNMP protocol does not define anything called events. Do you mean by notifications? An SNMP engine/agent can raise notificates (TRAP or INFORM messages) over UDP to its dedicated SNMP managers, so that the managers know something happens.
If that's what you mean, you may use any SNMP library that supports .NET 2.
https://docs.lextudio.com/blog/product-review-snmp-libraries-for-net-evaluation-report-e13f25991cad
But .NET 2 is too old, and even Microsoft no longer supports .NET 2 unless you are also installing .NET 3.5 SP1 on the same machine. Therefore, you may consider targeting .NET 3.5 directly instead of 2.0.