请教各位,voice vlan主要用来干什么的呀?主要用在什么场合的呀?谢谢。
Voice VLAN
IP Phone(IP电话/宽带电话/网络电话 简称VoIP,源自英语Voice over Internet Protocol)。
原理
实验
试验中用路由器R2模拟IP Phone,从R2可能发出来自Voice VLAN的数据,也可能发出来自Data VLAN的数据。
sw1(config)#vlan 20
sw1(config-vlan)#name Data-VLAN
sw1(config)#vlan 150
sw1(config-vlan)#name Voice-VLAN
sw1(config)#int f0/1
sw1(config-if)#switchport mode access
sw1(config-if)#switchport access vlan 150
sw1(config)#int f0/2
sw1(config-if)#switchport mode access
sw1(config-if)#switchport access vlan 20
sw1(config-if)#switchport voice vlan 150 //配置Voice VLAN,设置F0/2的Voice VLAN为VLAN 150
sw1(config)#int f0/3
sw1(config-if)#switchport mode access
sw1(config-if)#switchport access vlan 20
sw1(config)#mls qos
sw1(config)#int f0/2
sw1(config-if)#mls qos trust cos //启用Qos功能,并可确保将语音流量识别为需要优先传送的流量
注意:必须将整个网络设置为优先传送语音流量,不能只是使用此命令配置端口。
R1(config)#int f0/0
R1(config-if)#ip add 172.16.150.1 255.255.255.0
R1(config-if)#no sh
R2(config)#int f0/0.20
R2(config-subif)#encapsulation dot1Q 20 native //该VLAN是Native VLAN,所以帧不会被重封装
R2(config-subif)#ip add 172.16.20.2 255.255.255.0
R2(config)#int f0/0.150
R2(config-subif)#encapsulation dot1Q 150 //该VLAN上的帧会被重封装
R2(config-subif)#ip add 172.16.150.2 255.255.255.0
R2(config)#int f0/0
R2(config-if)#no sh
R3(config)#int f0/0
R3(config-if)#ip add 172.16.20.3 255.255.255.0
R3(config-if)#no sh
实验调试
此时交换机sw1上的F0/2口既在Data-VLAN(Vlan 20),又在Voice-VLAN(Vlan 150)。
测试R2与R1,R2与R3的连通性。
可能有些复杂,lz自学