我正在使用dart powerSNMP for .Net。 我试图使用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()在这里出了什么问题?