我遇到了使用snmpsharpnet库运行SNMP get命令的问题。我正在处理一个他们提供运行简单get的示例,但它出错了。我已经测试了在框中运行此OID并且我能够得到回复,但我无法使用此程序
我的代码如下所示:
try{
SimpleSnmp snmp = new SimpleSnmp(HOST, COMMUNITY);
Pdu pdu = new Pdu();
//pdu.Type = SnmpConstants.GETNEXT; // type GETNEXT
pdu.VbList.Add(".1.3.6.1.2.1.1.1.0");
Dictionary<Oid, AsnType> result = snmp.Get(SnmpVersion.Ver2,pdu); //.GetNext(pdu);
if (result == null){
Console.WriteLine("Request failed.");
}else{
foreach (KeyValuePair<Oid, AsnType> entry in result)
{
Console.WriteLine("{0} = {1}: {2}", entry.Key.ToString(), SnmpConstants.GetTypeName(entry.Value.Type),
entry.Value.ToString());
}
}
}catch (Exception ex){
Console.WriteLine("Error: " + ex + Environment.NewLine + "-------------------------------------------------------");
}
我收到的错误如下:
A first chance exception of type 'System.Net.Sockets.SocketException' occurred in System.dll
A first chance exception of type 'System.Net.Sockets.SocketException' occurred in System.dll
A first chance exception of type 'System.Net.Sockets.SocketException' occurred in System.dll
A first chance exception of type 'SnmpSharpNet.SnmpException' occurred in SnmpSharpNet.dll
The thread 0xeec has exited with code 259 (0x103).
提前致谢!
答案 0 :(得分:1)
您没有收到远程主机对您发送的请求的回复。这是套接字异常的原因。其中有3个是因为SimpleSnmp
类的默认值是3次尝试发送&amp;收到服务器的回复。
如果将Retry
对象的snmp
属性设置为高于2
的数字,它将发出更多请求并侦听更多响应,从而产生更多这些异常。
snmp
的标准行为不是针对(a)格式错误或(b)没有正确的社区字符串的请求生成任何响应。
如果您已经显示了运行此代码所产生的控制台输出的结果,我很确定它会说Request failed.