我正在为 .Net 使用 dart powerSNMP。我正在尝试使用 GetTable() 查询表,它对我不起作用。
下面的 C# 代码不返回任何行,
const string address = "xxx.xxx.xx.x";
using (var mgr = new Manager())
{
var slave = new ManagerSlave(mgr);
slave.Socket.ReceiveTimeout = 13000;
try
{
//Retrieve table using GetNext requests
Variable[,] table = slave.GetTable("1.3.6.1.4.1.14823.2.2.1.1.1.9",
SnmpVersion.Three,
null,
new Security()
{
AuthenticationPassword = "mypassword1",
AuthenticationProtocol = AuthenticationProtocol.Md5,
PrivacyPassword = "mypassword2",
PrivacyProtocol = PrivacyProtocol.Des
},
new IPEndPoint(IPAddress.Parse(address), 161),
0);
}catch(Exception ez)
{
}
}
这应该从给定的 OID 返回一组记录。但它不会给我任何回报。当我使用 MIB 浏览器时,我看到 GetBulk 操作为我获取所有记录。
但是这里的 GetTable() 有什么问题?