如何获取Oid的名称?
我跟着examples in the site,但我没有找到如何做到这一点。要检索MIB字符串,没有问题(例如来自站点):
// Walk through returned variable bindings
foreach (Vb v in result.Pdu.VbList)
{
// Check that retrieved Oid is "child" of the root OID
if (rootOid.IsRootOf(v.Oid))
{
Console.WriteLine("{0} ({1}): {2}",
v.Oid.ToString(),
SnmpConstants.GetTypeName(v.Value.Type),
v.Value.ToString());
if (v.Value.Type == SnmpConstants.SMI_ENDOFMIBVIEW)
lastOid = null;
else
lastOid = v.Oid;
}
else
{
// we have reached the end of the requested
// MIB tree. Set lastOid to null and exit loop
lastOid = null;
}
}
答案 0 :(得分:1)
您被警告我是#SNMP的主要开发者
要获取OID的名称,您需要相应的MIB文档。但是,我不认为SNMP#NET目前有这个功能来加载MIB文档并允许你进行翻译。
#SNMP相对较长时间具有此功能,其snmptranslate示例显示了如何实现此功能,