A network administrator is auditing 802.1Q trunking and access port behavior on enterprise switches. Match each switchport operational scenario on the left with its corresponding 802.1Q frame processing or tagging outcome on the right.
- An access port configured with 'switchport access vlan 20' receives an untagged Ethernet frame.The frame is internally mapped to VLAN 20 for processing within the local switch backplane.
- A trunk port configured with 'switchport trunk native vlan 50' receives an untagged ingress frame.The untagged frame is implicitly associated with VLAN 50 upon entering the switchport.
- A trunk port configured with 'switchport trunk native vlan 50' transmits an egress frame belonging to VLAN 50.The frame is transmitted across the physical link without inserting a 4-byte 802.1Q tag header.
- A trunk port configured with 'switchport trunk allowed vlan 10,20' receives an ingress frame tagged with VLAN 30.The frame is dropped immediately at the ingress switchport due to VLAN membership filtering.
Answer
Each scenario matches as follows: Access port receiving untagged traffic maps to internal VLAN 20 processing; Trunk port receiving untagged traffic implicitly maps to native VLAN 50; Trunk port transmitting native VLAN 50 egresses untagged without an 802.1Q header; Trunk port receiving VLAN 30 on an allowed list of 10,20 drops the frame due to VLAN filtering.
The pairings correctly demonstrate fundamental 802.1Q trunking and access port behavior: access ports map untagged ingress frames to their access VLAN, trunk ports map untagged ingress frames to their native VLAN, native VLAN egress traffic is transmitted without an 802.1Q tag header, and frames tagged with VLANs outside the trunk allowed list are dropped at ingress.
Step-by-Step Solution
Key Concept
802.1Q Frame Tagging, Native VLAN Ingress/Egress Rules, and Trunk Allowed List Pruning