使用 SharpSnmpLib BulkWalk 方法执行 SNMP 遍历

Perform SNMP walk using SharpSnmpLib BulkWalk method

我正在尝试检索连接到网络的设备的 MAC 地址。我的目标是执行 WALK,然后按触发事件的端口号搜索结果。

我首先通过GetRequestMessage(成功)获取端口信息。然后我 尝试 执行一次步行以获取 MAC 地址 table。我没有收到任何错误或异常,但我也没有收到任何结果。

我哪里错了?

// Capture IPAddress
string ipAddress = e.Sender.Address.ToString();

// Capture the port
string port = e.Message.Scope.Pdu.Variables[0].Data.ToString();

// Setup Authentication with password from App.Config
var auth = new SHA1AuthenticationProvider(new OctetString(_Password));

// Setup Privacy with Phrase from App.Config
var priv = new DESPrivacyProvider(new OctetString(_Phrase), auth);

// Setup username from App.Config
OctetString userName = new OctetString(_Username);

// Create IPEndPoint
IPEndPoint iPEndPoint = new IPEndPoint(IPAddress.Parse(ipAddress), 161);

// Create discovery
Discovery discovery = Messenger.GetNextDiscovery(SnmpType.GetRequestPdu);

// Create report
ReportMessage report = discovery.GetResponse(60000, iPEndPoint);

// Setup OID variables to get port information
List<Variable> variables = new List<Variable>
    {
        // Port Description
        new Variable(new ObjectIdentifier($"1.3.6.1.2.1.31.1.1.1.18.{ port }")),
        // Port PVID
        new Variable(new ObjectIdentifier($"1.3.6.1.2.1.17.7.1.4.5.1.1.{ port }")),
        // Voice VLAN
        new Variable(new ObjectIdentifier($"1.3.6.1.4.1.674.10895.5000.2.6132.1.1.1.2.13.1.28.{ port }")),
    };

// Create SNMP request
GetRequestMessage request = new GetRequestMessage(VersionCode.V3, Messenger.NextMessageId, Messenger.NextRequestId, userName, variables, priv, Messenger.MaxMessageSize, report);

// Send request and get reply
ISnmpMessage reply = request.GetResponse(60000, iPEndPoint);

// Request failed
if (reply.Pdu().ErrorStatus.ToInt32() != 0) // != ErrorCode.NoError
{
    throw ErrorException.Create(
        "error in response",
        IPAddress.Parse(ipAddress),
        reply);
}

// Store reply information
string Port_Description = reply.Scope.Pdu.Variables[0].Data.ToString(),
    Port_Pvid = reply.Scope.Pdu.Variables[1].Data.ToString(),
    Port_VLAN = reply.Scope.Pdu.Variables[2].Data.ToString();

// Create BulkWalk Discovery 
// TODO: Do I need to do this or can I reuse the original discovery??
Discovery BULKWALK_discovery = Messenger.GetNextDiscovery(SnmpType.GetRequestPdu);

// Create BulkWalk report
// TODO: Do I need to do this or can I reuse the original report??
ReportMessage BULKWALK_report = BULKWALK_discovery.GetResponse(60000, iPEndPoint);

// Variable to store the results of the WALK
var BULKWALK_results = new List<Variable>();

// Perform the walk and return the count of results. Community name from App.Config
var BULKWALK_results_count = Messenger.BulkWalk(VersionCode.V3, iPEndPoint, new OctetString(_CommunityName), OctetString.Empty, new ObjectIdentifier($"1.3.6.1.2.1.17.7.1.2.2.1.2"), BULKWALK_results, 60000, 10, WalkMode.WithinSubtree, priv, BULKWALK_report);

Debugger.Break();

编辑

此外,我正在使用 this resource 作为指导。

所以我发现了问题,它有两个方面。

首先是为BulkWalk实例化Discovery时,需要如下:

Discovery discovery = Messenger.GetNextDiscovery(SnmpType.GetBulkRequestPdu);

关键部分是让 SnmpType 正确(我上面的代码是 SnmpType.GetRequestPdu 而不是 SnmpType.GetBulkRequestPdu)。 tutorial 没有提到 SnmpType 不同。

其次,在将参数传递到 Messenger.BulkWalk() 方法时,我传递的是社区名称而不是用户名。 BulkWalk 方法的源代码注释确实说了社区名称,但它应该是用户。

我按照 Lex Li 的建议做了 complied/ran snmpwalk 示例以验证没有问题。成功之后,我回去查看了那个示例的源代码,发现了两个问题。