我正在寻找以下问题的解释: 我使用sharpsnmplib与网络上的设备进行通信。 如果我将结果分配给“外部”变量,则Messenger.Walk方法的结果包含零个元素,如果我将结果分配给方法内部并返回它,则该方法具有正确的结果。
我觉得我很想念一些东西,但是我找不到。 更令人感兴趣的是,以下错误代码可在200个网络上“运行”,但特定网络上的某些设备存在问题。
更新:我忘记了这一点:Sharpsnmplib的Messenger.Walk以一个List作为参数,并将其结果添加到其中。 https://github.com/lextm/sharpsnmplib/blob/038a3a0272f688075f573490721194e40cd56e3f/SharpSnmpLib/Messaging/Messenger.cs#L689
“不可靠的代码”:
foreach (var item in devices.ToList())
{
try
{
List<Variable> res = new List<Variable>();
BadMethod(item, res);
logger.Debug(item.ipAddress + " count: " + res.Count);
}
catch (Exception er)
{
logger.Info("SNMP request error: " + er.Message);
continue;
}
}
private static int BadMethod(device devicesItem, List<Variable> res)
{
if (devicesItem.deviceType.snmpVersion == 1)
{
Messenger.Walk(VersionCode.V1,
new IPEndPoint(IPAddress.Parse(devicesItem.ipAddress), 161),
new OctetString(Properties.Test.Default.community),
new ObjectIdentifier("1.3.6.1.2.1.2.2.1.6"),
res,
14000,
WalkMode.WithinSubtree);
}
else if (devicesItem.deviceType.snmpVersion == 2)
{
Messenger.BulkWalk(VersionCode.V2,
new IPEndPoint(IPAddress.Parse(devicesItem.ipAddress), 161),
new OctetString(Properties.Test.Default.community),
new ObjectIdentifier("1.3.6.1.2.1.2.2.1.6"),
res,
14000,
1,
WalkMode.WithinSubtree,
null,
null);
}
}
有效的代码:
foreach (var item in devices.ToList())
{
try
{
var res = GoodMethod(item);
logger.Debug(item.ipAddress + " count: " + res.Count);
}
catch (Exception er)
{
logger.Info("SNMP request error: " + er.Message);
continue;
}
}
private static List<Variable> GoodMethod(device devicesItem)
{
List<Variable> res = new List<Variable>();
if (devicesItem.deviceType.snmpVersion == 1)
{
Messenger.Walk(VersionCode.V1,
new IPEndPoint(IPAddress.Parse(devicesItem.ipAddress), 161),
new OctetString(Properties.Test.Default.community),
new ObjectIdentifier("1.3.6.1.2.1.2.2.1.6"),
res,
14000,
WalkMode.WithinSubtree);
}
else if (devicesItem.deviceType.snmpVersion == 2)
{
Messenger.BulkWalk(VersionCode.V2,
new IPEndPoint(IPAddress.Parse(devicesItem.ipAddress), 161),
new OctetString(Properties.Test.Default.community),
new ObjectIdentifier("1.3.6.1.2.1.2.2.1.6"),
res,
14000,
1,
WalkMode.WithinSubtree,
null,
null);
}
return res;
}