任何人都可以向老 SNMP 小伙子解释一下 WMI 吗?
回答我关于 .NET SNMP 支持的问题(寻找 .NET SNMP 扩展代理) @Lex Li 表示 Microsoft 基本上将他们的仪器热爱倾注在 WMI 而不是 SNMP 上。
考虑到这一点,有人可以推荐一些好的 WMI 和 .NET 学习资源吗? 对于任何解释 SNMP 陷阱的 WMI 等效项和 WMI/SNMP 互操作性(如果有的话!)的站点,将给予奖励。
In response to my question about .NET SNMP support (Looking for an .NET SNMP Extension agent)
@Lex Li indicated that Microsoft are basically lavishing their instrumentation love on WMI rather than SNMP.
With this in mind can anyone recommend any good learning resources for WMI and .NET?
Bonus kudos for any sites that explain the WMI equivelent of SNMP traps and WMI/SNMP interoperability (if there is any!)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Windows Instrumentation Management 是 Microsoft 对基于 Web 的企业管理 (WBEM) 的实现,它是 DMTF 的一项举措。
从概念角度来看,WBEM 将“系统”(计算机、路由器、交换机、服务器)建模为一堆类。每个被管理点都托管一个对象数据库 CIMOM(通用信息管理对象管理),在该数据库之上构建了代理概念。网络管理,成为网络上远程对象的使用(有点像 CMIP 或 TMN 的描述)。
与 SNMP 的最大区别在于对象视觉意味着、属性、事件和方法。
WBEM 存在于 SUN、HP-UX 上,并作为一个名为 openPegasus 的开源项目。
WMI 和 WBEM 之间的最大区别在于传输/安全的角度。 Microsoft 使用 DCOM 而不是基于 HTTP 的 XML。
如果您使用的是 XP,您可以启动“wbemtest.exe”文件,该文件允许您访问 CIMOM 上存在的类。但对于第一次访问WMI,我认为“WMIC.EXE”命令行是最好的方法。
这里是 WMI 的侧面说明。
我希望它有帮助。
太平绅士
Windows Instrumentation Management is Microsoft implementation of Web Based Enterprise Management (WBEM), which is a DMTF initiative.
On the conceptual point of view WBEM modelize a "system" (computer, router, switch, server), into a bunch of classes. Each managed point host an object database CIMOM (Common Information Management Object Management) on the top of which is built the agent notion. Network management, becomes the usage of remote objects on the network (a bit like CMIP or TMN discribe it).
The big difference with SNMP is that object vision mean, properties, events, and also methods.
WBEM exists on SUN, HP-UX and as an open source project called openPegasus.
The big difference between WMI and WBEM is on the transport/security point of view. Microsoft uses DCOM instead of XML over HTTP.
If you are using XP, you can start "wbemtest.exe" file wich allow you to visit the classes present on your CIMOM. But to first access to WMI, I think that the "WMIC.EXE" command line is the best way.
Here a side explanation of WMI.
I hope it helps.
JP