A Cisco Catalyst switch interface configured as an 802.1Q trunk receives an incoming frame. Place the internal operational steps executed by the switch to process this frame into the correct chronological order from frame arrival to egress forwarding.
- 1Inspect the Ethernet frame header to check for the 802.1Q Tag Protocol Identifier (TPID 0x8100).
- 2Determine the VLAN association by extracting the 12-bit VLAN ID if tagged, or assigning the configured Native VLAN ID if untagged.
- 3Perform ingress filtering by verifying whether the determined VLAN ID exists in the interface's allowed VLAN list.
- 4Update the switch MAC address table by binding the frame's source MAC address to the ingress interface and determined VLAN ID.
- 5Forward or flood the frame out designated egress ports belonging to the matching VLAN forwarding domain.
Answer
The correct sequence for 802.1Q ingress frame processing is: 1) Inspect header for TPID (0x8100), 2) Extract tagged VLAN ID or assign configured Native VLAN ID if untagged, 3) Verify VLAN against the allowed VLAN list (ingress filtering), 4) Update MAC address table for the VLAN domain, 5) Forward or flood the frame to egress ports in that VLAN.
The correct operational sequence begins when an ingress frame arrives on an 802.1Q trunk. The switch ASIC first checks for the 802.1Q TPID (0x8100). Next, it extracts the 12-bit VLAN ID from tagged frames or assigns the configured native VLAN ID to untagged frames. After determining the VLAN, the switch applies ingress filtering to verify if that VLAN ID is on the trunk's allowed VLAN list. If permitted, it updates its MAC address table associating the source MAC with that VLAN and ingress port, and finally makes the egress forwarding or flooding decision within that VLAN context.
Step-by-Step Solution
Key Concept
802.1Q Trunk Ingress Frame Processing Pipeline
Estimated Time:2m 0s