如何使用 snmp 获取 Bundle-Ether 的成员?

How can I get the members of Bundle-Ether using snmp?

我想使用 SNMP 获取 Bundle-Ether 的成员,但找不到适合 Bundle-Ether 的 Mib

查看 IF-MIB::ifStackTable 中的 ifStackStatus 条目。如果你知道 Bundle-Ether 的 ifIndex,例如 173,你可以得到下层的 ifIndexes:

$ snmpwalk -v2c -c public 10.77.136.6 ifName.173
IF-MIB::ifName.173 = STRING: Bundle-Ether5
$ snmpwalk -v2c -c public 10.77.136.6 ifStackStatus.173
IF-MIB::ifStackStatus.173.72 = INTEGER: notInService(2)
IF-MIB::ifStackStatus.173.98 = INTEGER: active(1)
$ snmpget -v2c -c public 10.77.136.6 ifName.72 ifName.98 ifOperStatus.72 ifOperStatus.98
IF-MIB::ifName.72 = STRING: TenGigE0/1/0/0
IF-MIB::ifName.98 = STRING: TenGigE0/1/0/27
IF-MIB::ifOperStatus.72 = INTEGER: down(2)
IF-MIB::ifOperStatus.98 = INTEGER: up(1)