Difficulty: Easy
Correct Answer: Floods the frame out all ports except the ingress port
Explanation:
Introduction / Context:
Ethernet switches learn MAC addresses by inspecting the source MAC of inbound frames and associating them with ingress ports. When the destination is unknown, the switch must still attempt delivery without prior knowledge, using a defined fallback behavior.
Given Data / Assumptions:
Concept / Approach:
The IEEE bridging behavior (learning bridge) dictates that unknown unicast frames are flooded out all ports in the same VLAN except the port on which the frame arrived. The first return traffic from the true destination allows the switch to learn the proper MAC-to-port mapping.
Step-by-Step Solution:
Verification / Alternative check:
Packet captures on multiple switch ports show replication of unknown unicast frames during the learning phase. After learning, only the correct egress port sees the traffic.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing broadcast with unknown unicast; forgetting VLAN separation (flooding occurs within VLAN boundaries).
Final Answer:
Floods the frame out all ports except the ingress port
Discussion & Comments