An administrator is troubleshooting a connectivity issue on interface GigabitEthernet1/0/5, which connects to an IP phone with a co-located workstation. The IP phone successfully registers with the Voice over IP (VoIP) server, but the workstation connected to the phone cannot communicate on the network.
The output of `show interfaces status` displays:
text
Port Name Status Vlan Duplex Speed Type
Gi1/0/5 Workstation_PC connected inactive a-full a-1000 10/100/1000BaseTX
Additionally, `show running-config interface GigabitEthernet1/0/5` yields:
text
interface GigabitEthernet1/0/5
switchport mode access
switchport access vlan 30
switchport voice vlan 200
Which condition explains why the VLAN status displays as `inactive`, and what configuration step is required to restore workstation connectivity?
- Access VLAN 30 does not exist in the switch VLAN database; configuring `vlan 30` in global configuration mode will activate the access VLAN and restore traffic forwarding for the workstation.Answer
- BThe port experiences an 802.1Q native VLAN mismatch because VLAN 30 is not designated as native; issuing `switchport trunk native vlan 30` under interface mode will allow untagged frames to pass.
- CThe access port disabled frame forwarding because PortFast is omitted; entering `spanning-tree portfast` on interface GigabitEthernet1/0/5 is required to bridge the data and voice broadcast domains.
- DThe port was placed into an err-disabled state due to a security violation; executing `shutdown` followed by `no shutdown` on interface GigabitEthernet1/0/5 will clear the port state.