Hi,
I am writing an utility that queries switches for mac address table and log what mac address is in what port, port alias, pvid and mac vlan id etc.
On SecureStack EOS, I can get mac address - vlan table for given vlan id with this oid ".1.3.6.1.2.1.17.7.1.2.2.1.2" plus adding vlan id end of oid, like this (for vlan 100):
snmpbulkwalk -r 2 -t 3 -v2c -OnQ -c public 10.110.1.1 .1.3.6.1.2.1.17.7.1.2.2.1.2
.100
This lists the fdb mac address entries for vlan 100. Our HP 2560 series switces also works with this oid. Cisco has some weird method, you need to add @VLANID to snmp communtiy to query per vlan, like this:
snmpbulkwalk -r 2 -t 3 -v2c -OnQ -c public
@100 10.110.1.50 .1.3.6.1.2.1.17.4.3.1.2
Cisco OID is different too; .1.3.6.1.2.1.17.4.3.1.2
So, how can I query fdb mac address table per vlan with EXOS? What is the correct OID? Niether standard OID not the C,sco OID works with EXOS (ver. 16.x and 22.x).
Regards,
Rahman