Hi,
I re-did the test:
<<Also in poller I see all available vlans polled for FDB entries>> @Mike
That's not completely true.
For example the switch have configured the following vlans
Vlan 1
|
Vlan 10
|
Vlan 74
|
Vlan 188
|
Vlan 666
|
Vlan 1192
|
Vlan 1501
|
Vlan 1502
|
Vlan 1504
|
Vlan 1506
|
Vlan 1508
|
Vlan 1510
|
Vlan 1512
|
Vlan 1516
|
Vlan 1518
|
Vlan 1520
|
Vlan 1524
|
Vlan 1528
|
Vlan 1627
|
Vlan 2006
|
But the poller, when doing this command:
CMD[/usr/bin/snmpbulkwalk -t '5' -v2c -c ***@1 -Pud -OQUsX -m BRIDGE-MIB -M /opt/observium/mibs/rfc:/opt/observium/mibs/net-snmp 'udp':'cisco-iosxe-1706':'161' dot1dTpFdbEntry]
|
Is only polling for this Vlans:
Vlan 1
|
Vlan 10
|
Vlan 74
|
Vlan 188
|
And is not polling info for the following vlans:
Vlan 666
|
Vlan 1192
|
Vlan 1501
|
Vlan 1502
|
Vlan 1504
|
Vlan 1506
|
Vlan 1508
|
Vlan 1510
|
Vlan 1512
|
Vlan 1516
|
Vlan 1518
|
Vlan 1520
|
Vlan 1524
|
Vlan 1528
|
Vlan 1627
|
Vlan 2006
|
Is that correct?
Also, when you have a look in :
mysql> select * from vlans_fdb where device_id = 502;
|
+------------+-----------+---------+---------+--------------+------------+----------+-----------------+---------+
|
| fdb_id | device_id | vlan_id | port_id | mac_address | fdb_status | fdb_port | fdb_last_change | deleted |
|
+------------+-----------+---------+---------+--------------+------------+----------+-----------------+---------+
|
|
There are no entries for the vlans that are not been polled, only for vlans 1,10,74,188
Is that correct?
Thanks
EM
This is Cisco way for store FDB entries for each vlan in separate snmp context.
Each VLAN context accessed as <community>@<vlan_num>
I.e. in this command accessed to FDB table for Vlan1 (only).
snmpbulkwalk -t '5' -v2c -c ***@1 ...
Same command run multiple times but with different Vlan context.