实验4 使用交换机划分VLAN

使用Packet Tracer,完成以下实验:

 

要求:

  1. 使用3560系列交换机完成实验模拟。
  2. 在SW1上划分虚拟局域网,并通过VTP广播到SW2上。
  3. 分别将SW1和SW2的相应端口加入VLAN。
  4. 使同一VLAN的能ping通,不同VLAN的不能ping通。


Trunk是用来承载多个Vlan通信 要使用VTP协议就必须使用Trunk

VTP(VLAN Trunk Protocol ---- 虚拟局域网中继协议)

从一个控制点来维护整个企业网上Vlan的添加、删除和重命名工作,这就是VTP。

VTP有三个模式: 服务器模式 客户机模式 透明模式

(参考:https://zhidao.baidu.com/question/57437715.html)

 

实验拓扑图如下:

实验4 使用交换机划分VLAN_第1张图片

交换机SW1

配置命令:

Switch>en                                         //进入特权模式

Switch#conf t                                     //进入全局配置模式

Switch(config)#hostname sw1          //为交换机重命名

sw1(config)#exit

 

SW1配置为VTP Server,域名xk

sw1#vlan database                          //进入VLAN数据库模式

sw1(vlan)#vtp domain xk                  //VTP域名

sw1(vlan)#vtp serve                         //VTP server模式

sw1(vlan)#exit

sw1#show vtp status                      //查看配置结果

 

SW1上创建两个VLAN,把fa0/1分配给VLAN 10fa0/2分配给VLAN 20

sw1#vlan database

sw1(vlan)#vlan 10                   //创建VLAN10

sw1(vlan)#vlan 20                   //创建VLAN20

sw1(vlan)#exit

sw1#conf t

sw1(config)#int fa0/1                                    //进入要划分给VLAN 10的端口

sw1(config-if)#switchport mode access      

sw1(config-if)#switchport access vlan 10

sw1(config-if)#exit

sw1(config)#int fa0/2                                    //进入要划分给VLAN 20的端口

sw1(config-if)#switchport mode access

sw1(config-if)#switchport access vlan 20

sw1(config-if)#exit

 

两个交换机相连的端口作为TRUNK端口,数据包封装格式为IEEE802.1Q

sw1(config)#int fa0/3           

sw1(config-if)#switchport trunk encapsulation dot1q

sw1(config-if)#switchport mode trunk

sw1(config-if)#end

 

 

 

交换机SW2配置

配置命令:

Switch>en

Switch#conf

Switch(config)#hostname sw2

 

将SW2配置为xk域下的VTP Client

sw2#vlan database

sw2(vlan)#vtp domain xk

sw2(vlan)#vtp client

sw2(vlan)#exit

sw2#show vtp status           //查看配置结果
 

 

SW2上创建两个VLAN,把fa0/1分配给VLAN 10fa0/2分配给VLAN 20

sw2#vlan database

sw2(vlan)#vlan 10                   //创建VLAN10

sw2(vlan)#vlan 20                   //创建VLAN20

sw2(vlan)#exit

sw2#conf t

sw2(config)#int fa0/1

sw2(config-if)#switchport mode access

sw2(config-if)#switchport access vlan 10

sw2(config-if)#exit

sw2(config)#int fa0/2

sw2(config-if)#switchport mode access

sw2(config-if)#switchport access vlan 20

sw2(config-if)#exit

 

在SW2上配置trunk

sw2(config)#int fa0/3

sw2(config-if)#switchport trunk encapsulation dot1q

sw2(config-if)#switchport mode trunk

sw2(config-if)#end

 

可使用Show vlan查看SW2的VLAN划分情况

二层交换机不能设置端口协议封装,因为默认按照802.1Q协议封装,不能修改为其他封装方式。

 

 

trunk的作用:

只是让2台交换机之间,只用一根物理线缆,实现多个vlan之间内部都可通信,vlan间是不行的。

也就是,sw1的vlan10和sw2的vlan10,sw1的vlan20和sw2的vlan20……都可通信。

如果不用trunk,有几个vlan,交换机之间就得连几根网线,trunk只用一根线,这是trunk的作用。

(参考:https://zhidao.baidu.com/question/474571795.html)

你可能感兴趣的:(路由交换实验,路由交换)