2022年实验使用多层交换机实现二层交换机VLAN之间的路由归纳 .pdf
《2022年实验使用多层交换机实现二层交换机VLAN之间的路由归纳 .pdf》由会员分享,可在线阅读,更多相关《2022年实验使用多层交换机实现二层交换机VLAN之间的路由归纳 .pdf(10页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、实验二十七、使用多层交换机实现二层交换机VLAN之间的路由 一、 实验目的 1、 理解多层交换机的路由原理 2、 了解多层交换机在实际网络中的常用配置 3、 回顾二层交换机VLAN的划分方法 4、 进一步理解802.1Q 的原理和使用方法 二、 应用环境 二层交换机属于接入层交换机,在二层交换机上根据连接用户的不同,划分了不同VLAN ,有时候会出现同一个VLAN处于不同的交换机上。这些二层交换机被一台三层交换机所汇聚。因此我们需要实现多交换机的跨交换机VLAN 通信,也需要实现VLAN 间的通信。因此出现本实验所要演示的功能。三、 实验设备 1、 DCRS-7604 (或 6804 或 55
2、26S)交换机1 台 2、 DCS-3926S交换机 1-2 台 3、 PC机 2-4 台 4、 Console 线 1-3 根 5、 直通网线若干 四、 实验拓扑 五、 实验要求 在交换机 A 和交换机 B 上分别划分两个基于端口的VLAN :VLAN100 ,VLAN200 。职业学校技能大赛技术资源网-大赛人网站www.DasaiR名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 1 页,共 10 页 - - - - - - - - - VLAN 端口成员 100 18 200
3、916 Trunk 口24 在交换机 C 上也划分两个基于端口的VLAN :VLAN100 ,VLAN200 。把端口 1 和端口2 都设置成 Trunk 口。VLAN IP Mask 100 192.168.10.1 255.255.255.0 200 192.168.20.1 255.255.255.0 Trunk 口1/1 和 1/2 交换机 A 的 24 口连接交换机C 的 1 口,交换机B 的 24 口连接交换机C 的 2 口。PC1-PC4 的网络设置为:设备 IP 地址 gateway Mask PC1 192.168.10.11 192.168.10.1 255.255.255
4、.0 PC2 192.168.20.22 192.168.20.1 255.255.255.0 PC3 192.168.10.33 192.168.10.1 255.255.255.0 PC4 192.168.20.44 192.168.20.1 255.255.255.0 验证:1、不给 PC 设置网关:PC1、PC3 分别接在不同交换机VLAN100的成员端口18 上,两台 PC 互相可以 ping通;PC2、PC4 分别接在不同交换机VLAN 的成员端口916 上,两台 PC 互相可以 ping 通;PC1、PC3 和 PC2、PC4 接在不同VLAN的成员端口上则互相ping 不通。2
5、、给 PC 设置网关:PC1、PC3 和 PC2、PC4 接在不同VLAN 的成员端口上也可以互相ping 通。若实验结果和理论相符,则本实验完成。六、 实验步骤 第一步:交换机恢复出厂设置 switch#set default switch#write switch#reload 第二步:给交换机设置标示符和管理IP。 交换机 A: switch(Config)#hostname switchA switchA(Config)#interface vlan 1 switchA(Config-If-Vlan1)#ip address 192.168.1.11 255.255.255.0 swi
6、tchA(Config-If-Vlan1)#no shutdown switchA(Config-If-Vlan1)#exit switchA(Config)# 交换机 B: switch(Config)#hostname switchB switchB(Config)#interface vlan 1 switchB(Config-If-Vlan1)#ip address 192.168.1.12 255.255.255.0 职业学校技能大赛技术资源网-大赛人网站www.DasaiR名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - -
7、- 名师精心整理 - - - - - - - 第 2 页,共 10 页 - - - - - - - - - switchB(Config-If-Vlan1)#no shutdown switchB(Config-If-Vlan1)#exit switchB(Config)# 交换机 C: DCRS-7604#config DCRS-7604(Config)# DCRS-7604(Config)#hostname switchC switchC(Config)#interface vlan 1 switchC(Config-If-Vlan1)#ip address 192.168.1.13 25
8、5.255.255.0 switchC(Config-If-Vlan1)#no shutdown switchC(Config-If-Vlan1)#exit switchC(Config)#exit switchC# 第三步:在交换机中创建vlan100和 vlan200 ,并添加端口。交换机 A: switchA(Config)#vlan 100 switchA(Config-Vlan100)# switchA(Config-Vlan100)#switchport interface ethernet 0/0/1-8 switchA(Config-Vlan100)#exit switchA(
9、Config)#vlan 200 switchA(Config-Vlan200)#switchport interface ethernet 0/0/9-16 switchA(Config-Vlan200)#exit switchA(Config)# 验证配置: switchA#show vlan VLAN Name Type Media Ports - - - 1 default Static ENET Ethernet0/0/17 Ethernet0/0/18 Ethernet0/0/19 Ethernet0/0/20 Ethernet0/0/21 Ethernet0/0/22 Ether
10、net0/0/23 Ethernet0/0/24 100 VLAN0100 Static ENET Ethernet0/0/1 Ethernet0/0/2 Ethernet0/0/3 Ethernet0/0/4 Ethernet0/0/5 Ethernet0/0/6 Ethernet0/0/7 Ethernet0/0/8 200 VLAN0200 Static ENET Ethernet0/0/9 Ethernet0/0/10 Ethernet0/0/11 Ethernet0/0/12 Ethernet0/0/13 Ethernet0/0/14 Ethernet0/0/15 Ethernet0
11、/0/16 switchA# 交换机 B: 职业学校技能大赛技术资源网-大赛人网站www.DasaiR名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 3 页,共 10 页 - - - - - - - - - 配置与交换机A一样。 第四步:设置交换机trunk端口 交换机 A: switchA(Config)#interface ethernet 0/0/24 switchA(Config-Ethernet0/0/24)#switchport mode trunk Set the po
12、rt Ethernet0/0/24 mode TRUNK successfully switchA(Config-Ethernet0/0/24)#switchport trunk allowed vlan all set the port Ethernet0/0/24 allowed vlan successfully switchA(Config-Ethernet0/0/24)#exit switchA(Config)# 验证配置: switchA#show vlan VLAN Name Type Media Ports - - - - - 1 default Static ENET Eth
13、ernet0/0/17 Ethernet0/0/18 Ethernet0/0/19 Ethernet0/0/20 Ethernet0/0/21 Ethernet0/0/22 Ethernet0/0/23 Ethernet0/0/24(T) 100 VLAN0100 Static ENET Ethernet0/0/1 Ethernet0/0/2 Ethernet0/0/3 Ethernet0/0/4 Ethernet0/0/5 Ethernet0/0/6 Ethernet0/0/7 Ethernet0/0/8 Ethernet0/0/24(T) 200 VLAN0200 Static ENET
14、Ethernet0/0/9 Ethernet0/0/10 Ethernet0/0/11 Ethernet0/0/12 Ethernet0/0/13 Ethernet0/0/14 Ethernet0/0/15 Ethernet0/0/16 Ethernet0/0/24(T) switchA# 24 口已经出现在vlan1 、vlan100 和 vlan200 中, 并且 24 口不是一个普通端口, 是 tagged端口。 交换机 B: 配置同交换机A 交换机 C: switchC(Config)#vlan 100 switchC(Config-Vlan100)#exit switchC(Conf
15、ig)#vlan 200 switchC(Config-Vlan200)#exit switchC(Config)#interface ethernet 1/1-2 职业学校技能大赛技术资源网-大赛人网站www.DasaiR名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 4 页,共 10 页 - - - - - - - - - switchC(Config-Port-Range)#switchport mode trunk Set the port Ethernet1/1 mode
16、TRUNK successfully Set the port Ethernet1/2 mode TRUNK successfully switchC(Config-Port-Range)#switchport trunk allowed vlan all set the port Ethernet1/1 allowed vlan successfully set the port Ethernet1/2 allowed vlan successfully switchC(Config-Port-Range)#exit switchC(Config)#exit 验证配置: switchC#sh
17、ow vlan VLAN Name Type Media Ports - - - - 1 default Static ENET Ethernet1/1(T) Ethernet1/2(T) Ethernet1/3 Ethernet1/4 Ethernet1/5 Ethernet1/6 Ethernet1/7 Ethernet1/8 Ethernet1/9 Ethernet1/10 Ethernet1/11 Ethernet1/12 Ethernet1/13 Ethernet1/14 Ethernet1/15 Ethernet1/16 Ethernet1/17 Ethernet1/18 Ethe
18、rnet1/19 Ethernet1/20 Ethernet1/21 Ethernet1/22 Ethernet1/23 Ethernet1/24 Ethernet1/25 Ethernet1/26 Ethernet1/27 Ethernet1/28 100 VLAN0100 Static ENET Ethernet1/1(T) Ethernet1/2(T) 200 VLAN0200 Static ENET Ethernet1/1(T) Ethernet1/2(T) switchC# 第五步:交换机C添加 vlan 地址。switchC(Config)#interface vlan 100 s
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 2022年实验使用多层交换机实现二层交换机VLAN之间的路由归纳 2022 实验 使用 多层 交换机 实现 VLAN 之间 路由 归纳
限制150内