VLAN配置解析

VLAN(Virtual Local Area Network):虚拟局域网,简而言之,同一VLAN中广播只有VLAN中的 成员才能听到,而不会传输到其他的VLAN中去,控制不必要的广播风暴的产生。
 

VLAN配置解析_第1张图片

sw1交换机配置

sw1#vlan database 
sw1(vlan)#vlan 10   //创建vlan
sw1(vlan)#vlan 20
sw1(vlan)#exit

sw1#conf t
sw1(config)#int f0/0
sw1(config-if)#switchport mode access    //设为接入模式
sw1(config-if)#switchport access vlan 10  
sw1(config-if)#exit

sw1(config)#int f0/1
sw1(config-if)#switchport mode access 
sw1(config-if)#switchport access vlan 10
sw1(config-if)#exit

sw1(config)#int f0/2
sw1(config-if)#switchport mode trunk   //设为trunk模式
sw1(config-if)#exit

sw2交换机配置

sw2#vlan database 
sw2(vlan)#vlan 10
sw2(vlan)#vlan 20
sw2(vlan)#exit

sw2#conf t
sw2(config)#int f0/0
sw2(config-if)#switchport mode access 
sw2(config-if)#switchport access vlan 10
sw2(config-if)#exit

sw2(config)#int f0/1
sw2(config-if)#switchport mode access 
sw2(config-if)#switchport access vlan 10
sw2(config-if)#exit

sw2(config)#int f0/2
sw2(config-if)#switchport mode trunk
sw2(config-if)#exit

测试连通性:

用pc1 ping pc2、pc3、pc4,结果是pc1可以ping同pc3,但ping不通pc2和pc4

用pc2 ping pc1、pc3、pc4,结果是pc2可以ping同pc4,但ping不通pc1和pc3

说明同个vlan间可以通信

 

你可能感兴趣的:(VLAN配置解析)