An unmanaged switch receives an Ethernet frame on port FastEthernet 0/1. The frame has a source MAC address of 0011.2233.4455 and a destination MAC address of 6677.8899.AABB. The switch's MAC address table currently contains no entries for either address. Which of the following operations will the switch perform first upon receiving this frame?
- Record MAC address 0011.2233.4455 associated with port FastEthernet 0/1 in the MAC address table, and flood the frame out all operational ports except FastEthernet 0/1 within the frame's VLAN.Answer
- BRecord destination MAC address 6677.8899.AABB associated with port FastEthernet 0/1 in the MAC address table, and forward the frame directly to the Layer 3 default gateway.
- CRecord MAC address 0011.2233.4455 associated with port FastEthernet 0/1 in the MAC address table, and flood the frame out every active switch port regardless of configured VLAN boundaries.
- DDrop the frame immediately and generate an ICMP destination unreachable message because the destination MAC address is absent from the MAC table.
Answer
The switch updates its MAC address table by associating the source MAC address 0011.2233.4455 with FastEthernet 0/1, then floods the frame out all other active ports belonging to the same VLAN.
The correct answer accurately describes the standard two-step Layer 2 switch operational logic: learning and forwarding. First, the switch learns the source MAC address (0011.2233.4455) and maps it to ingress port FastEthernet 0/1. Second, because the destination MAC address (6677.8899.AABB) is unknown in the MAC table, the switch performs unknown unicast flooding by copying the frame to all operational ports within the same VLAN except the receiving port.
Step-by-Step Solution
Key Concept
Switch Learning and Forwarding Operations (Unknown Unicast Flooding)