A network administrator needs to connect two switches to allow multiple VLANs to traverse the link. Which protocol should be used to tag frames with VLAN information?
IEEE 802.1Q is the industry standard for VLAN tagging, which is essential for allowing multiple Virtual Local Area Networks (VLANs) to share a single physical link between network devices like switches. It inserts a 4-byte tag into the Ethernet frame header, containing a 12-bit VLAN ID (VID) that identifies the specific VLAN the frame belongs to. This tagging mechanism ensures that frames from different VLANs remain logically separate while traversing a shared trunk port, enabling efficient network segmentation and traffic isolation.
Why this answer
802.1Q is the IEEE standard for VLAN tagging, which inserts a 4-byte tag into the Ethernet frame header to identify the VLAN membership of the frame. This allows multiple VLANs to traverse a single trunk link between switches, enabling inter-switch VLAN communication without requiring separate physical links per VLAN.
Exam trap
The trap here is that candidates often confuse VTP (a management protocol) with the actual tagging protocol, assuming VTP handles frame tagging because of the word 'trunking' in its name.
Why the other options are wrong
STP prevents loops in a network but does not tag frames with VLAN information; it operates at Layer 2 to block redundant paths, not to identify VLAN membership.
VTP is used to synchronize VLAN information across switches, not to tag frames with VLAN information. The protocol for tagging frames is 802.1Q.
LACP is used for link aggregation (combining multiple physical links into one logical link) to increase bandwidth and provide redundancy, not for tagging frames with VLAN information.