Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languageros
[admin@switch] /interface bridge host print where where !local 
Flags: X - disabled, I - invalid, D - dynamic, L - local, E - external 
 #       MAC-ADDRESS        VID ON-INTERFACE    BRIDGE   AGE                 
 0   D   CC:2D:E0:E4:B3:A1      ether1          bridge1  42s                 
 1   D   CC:2D:E0:E4:B3:A2      ether2          bridge1  42s                 
 2   D   CC:2D:E0:E4:B3:A1      VLAN            bridge2  42s                 
 3   D   CC:2D:E0:E4:B3:A2      VLAN            bridge2  42s                 
 4   D   CC:2D:E0:E4:B3:A3      ether3          bridge2  42s 

Devices on ether1 and ether2 need to send tagged packets with VLAN-ID 99 in order to reach the host on ether3 (other packets do not get passed towards VLAN interface and further bridged with ether3). We can see in the host table that bridge2 has learned these hosts. Packets coming from ether3 to ether1 will be correctly sent out tagged and traffic will not be flooded in bridge1. But since MAC learning is only possible between bridge ports and not on interfaces that are created on top of the bridge interface, packets sent from ether2 to ether3 will be flooded in bridge1.

...