snmpwalk 使用 OID 但不使用 MIB 名称

snmpwalk 使用 OID 但不使用 MIB 名称

我对 SNMP walk 有疑问。我正在使用 snmpsim (http://snmpsim.sourceforge.net/) 模拟 SNMP 设备以进行测试。模拟的 oid 正在运行:

root@snmp-simulator:~# snmpwalk -v1 -c bras localhost:161 .1.3.6.1.2.1.2.2.1.6.8
iso.3.6.1.2.1.2.2.1.6.8 = STRING: "4:f9:38:81:db:20"

但如果我尝试使用 MIB,它不起作用:

root@snmp-simulator:~# snmptranslate -On -IR IF-MIB::ifPhysAddress.8
.1.3.6.1.2.1.2.2.1.6.8

root@snmp-simulator:~# snmpwalk -v1 -c bras localhost:161 IF-MIB::ifPhysAddress.8 -d

Sending 43 bytes to UDP: [127.0.0.1]:161->[0.0.0.0]:0
0000: 30 29 02 01  00 04 04 62  72 61 73 A1  1E 02 04 5E    0).....bras....^
0016: 54 C7 4B 02  01 00 02 01  00 30 10 30  0E 06 0A 2B    T.K......0.0...+
0032: 06 01 02 01  02 02 01 06  08 05 00                    ...........


Received 59 byte packet from UDP: [127.0.0.1]:161->[0.0.0.0]:59367
0000: 30 39 02 01  00 04 04 62  72 61 73 A2  2E 02 04 5E    09.....bras....^
0016: 54 C7 4B 02  01 00 02 01  00 30 20 30  1E 06 0A 2B    T.K......0 0...+
0032: 06 01 02 01  02 02 01 06  09 04 10 34  3A 66 39 3A    ...........4:f9:
0048: 33 38 3A 38  31 3A 64 62  3A 35 32                    38:81:db:52


Sending 43 bytes to UDP: [127.0.0.1]:161->[0.0.0.0]:0
0000: 30 29 02 01  00 04 04 62  72 61 73 A0  1E 02 04 5E    0).....bras....^
0016: 54 C7 4C 02  01 00 02 01  00 30 10 30  0E 06 0A 2B    T.L......0.0...+
0032: 06 01 02 01  02 02 01 06  08 05 00                    ...........


Received 59 byte packet from UDP: [127.0.0.1]:161->[0.0.0.0]:59367
0000: 30 39 02 01  00 04 04 62  72 61 73 A2  2E 02 04 5E    09.....bras....^
0016: 54 C7 4C 02  01 00 02 01  00 30 20 30  1E 06 0A 2B    T.L......0 0...+
0032: 06 01 02 01  02 02 01 06  08 04 10 34  3A 66 39 3A    ...........4:f9:
0048: 33 38 3A 38  31 3A 64 62  3A 32 30                    38:81:db:20

IF-MIB::ifPhysAddress.8 = STRING: 34:3a:66:39:3a:33:38:3a:38:31:3a:64:62:3a:32:30

知道为什么输出格式错误吗?看起来格式无法理解?

谢谢,伊格纳西奥。

答案1

我设法通过更改 snmpsim 配置文件中的数据类型解决了这个问题。 字符串必须改为十六进制字符串 (4x),并且 MAC 地址必须指定为纯文本字节,而不带“:”。

相关内容