Lesson 4 — Voice VLANs
Week 3 outline
- Week 3 overview
- Lesson 1Switch MAC Learning and Forwarding
- Lesson 2VLANs and Broadcast Domains
- QuizSwitching & VLAN Fundamentals
- Lesson 3Trunks, 802.1Q, and Native VLAN
- Lesson 4Voice VLANs (current step)
- QuizTrunking & Voice VLANs
- Lesson 5STP and Rapid PVST+ Basics
- Lesson 6EtherChannel and LACP Basics
- QuizRedundancy: STP & EtherChannel
- LabVLAN and Trunk Lab (progressive)
- Lesson 7CDP and LLDP Neighbor Discovery
- CheckpointWeek 3 Checkpoint
Voice VLANs
Configure one switch port to carry a data VLAN for a PC and a voice VLAN for an IP phone at the same time, and verify both memberships on a port that is still an access port.
Lesson orientation
What you'll learn (4 objectives)~14 min: video → lesson → check → apply → lab prep
Learning objectives
- Explain the operational difference between an access (data) VLAN and a voice VLAN on the same port
- Describe how an IP phone learns its voice VLAN and tags its own call traffic
- Configure switchport access vlan and switchport voice vlan on a phone port
- Verify the dual-VLAN result with show interfaces switchport and show vlan brief
Terms you will see
Time breakdown
- Read the notes9 min
- Configuration prediction5 min
Why voice gets its own VLAN
Call traffic and PC traffic should not share a broadcast domain. A separate voice VLAN buys two things. Security separation means the PC cannot easily capture the phone's call packets. QoS priority means voice frames can be marked and queued ahead of best-effort data, which is what keeps calls intelligible when the link is busy. It also keeps voice addressing — its own subnet and DHCP scope — cleanly apart from the data network, which is the VLAN-per-subnet idea from Lesson 2 applied to phones.
One access port, two VLANs
This is the part that feels like a contradiction after the last two lessons. An access port carries one data VLAN — yet a phone port carries a data VLAN and a voice VLAN. It is still not a trunk. The mechanism is a special case built into the phone.
- The PC behind the phone sends ordinary untagged frames, which the switch places in the access (data) VLAN, exactly like any other access host.
- The phone tags its own call traffic with the voice VLAN ID. The switch told the phone which VLAN to use, so the phone does the tagging itself.
Because only the phone tags, and everything else on the port is untagged data, the port stays an access port with a voice overlay rather than becoming a general-purpose 802.1Q trunk carrying arbitrary VLANs.
Configure and verify a phone plus PC port
Switch(config)# interface FastEthernet0/10
Switch(config-if)# switchport mode access
Switch(config-if)# switchport access vlan 10 ! data VLAN for the PC
Switch(config-if)# switchport voice vlan 110 ! voice VLAN for the phone
Switch# show interfaces FastEthernet0/10 switchport
Switch# show vlan briefshow interfaces <port> switchport is the confirmation that matters. It reports the port in static access mode, an Access Mode VLAN of 10, and a Voice VLAN of 110 — two memberships on a port that is still administratively an access port. show vlan brief lists the port under the data VLAN only; the voice membership appears in the per-interface switchport detail rather than as a second access assignment, which is why the per-port command is the one to reach for.
What you should retain
- A phone port is an access port with a voice overlay, not a trunk.
- The PC's traffic is untagged and lands in the data VLAN; the phone tags its own traffic into the voice VLAN.
- The phone learns the voice VLAN from the switch via CDP or LLDP-MED.
- Configure with switchport access vlan <data> and switchport voice vlan <voice>.
- Verify with show interfaces <port> switchport, which shows both Access Mode VLAN and Voice VLAN.
Before you read on
A technician configures switchport access vlan 10 on a phone port but forgets switchport voice vlan 110. The phone powers up and gets an IP address, so it looks fine. What is actually wrong, and how would show interfaces <port> switchport reveal it?
Check this section before moving on
Trunking & Voice VLANs
The quiz opens on its own page so you can focus on it. It is a Week 1 milestone, tracked separately from this lesson's own completion.
Topics covered
- • 802.1Q tagging and the native VLAN
- • Native-VLAN mismatch versus allowed-list mismatch
- • DTP modes and why two autos never trunk
- • The phone-plus-PC port and its two VLANs
Study deeper
Topic guides extend this lesson — they do not replace the first-party walkthrough above.
VoIP & Voice VLANs
For the voice-VLAN rationale in depth, plus Power over Ethernet and the phone boot process this lesson does not cover
