使用SharpSnmpLib BulkWalk方法执行SNMP遍历

时间:2019-03-01 16:09:32

标签: c# snmp sharp-snmp

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

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

我要去哪里错了?

// 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作为指导。

1 个答案:

答案 0 :(得分:0)

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

第一个是在实例化BulkWalk的发现时,它需要如下:

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

正确获取SnmpType的关键部分(我上面的代码是SnmpType.GetRequestPdu而不是SnmpType.Get 批量 RequestPdu)。 tutorial没有提到SnmpType是不同的。

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

我按照Lex Li的建议进行操作,并编译/运行了snmpwalk示例以验证没有问题。成功之后,我回头查看了该示例的源代码,发现了两个问题。