05-19-2020 10:40 PM
It's a very simple schematic,
but I've never done it before.
What should I do with config?
trunk mode???
05-19-2020 11:35 PM
Hi Ralo,
Configure it as an access port. You can configure an access port with voice VLAN. Here is an example:-
interface GigabitEthernet1/0/1
description Access Port
switchport access vlan 100
switchport mode access
switchport voice vlan 200
spanning-tree portfast
end
05-20-2020 12:07 AM
Hello,
from your drawing it looks like the voice Vlan is 100, and the access Vlan is 10 ? If that is the case, the configuration should look like below. Make sure CDP is enabled on the port where the voice Vlan is configured (CDP is globally enabled by default):
switchport mode access
switchport access vlan 10
switchport voice vlan 100
spanning-tree portfast
05-20-2020 04:17 AM - edited 05-20-2020 01:32 PM
Hello
You will require to create a L3 interface for the voice and data vlans to allow the communication for traffic on either vlan, Also youll need to create the L2 vlan for the hosts
example:
int vlan 100
descrition voice vlan
ip address 192.168.1.254 255.255.255.0
no shut
int vlan 10
descrition data vlan
ip address 192.168.0.254 255.255.255.0
no shut
vlan 10
name data
exit
vlan 100
name voice
exit
int x/x
description access-port
switchport host
swtichport voice vlan 100
switchport access vlan 10
auto qos trust dscp < trust the marking of the voip device
cdp enable
or
lldp receive
lldp transmit
05-20-2020 08:34 AM
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide