2022年2022年跨交换机相同VLAN间通讯 .pdf
《2022年2022年跨交换机相同VLAN间通讯 .pdf》由会员分享,可在线阅读,更多相关《2022年2022年跨交换机相同VLAN间通讯 .pdf(8页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、跨交换机相同VLAN间通讯一、 实验目的1、 了解 IEEE802.1q 的实现方法,掌握跨二层交换机相同VLAN间通信的调试方法;2、 了解交换机接口的trunk模式和 access 模式;3、 了解交换机的tagged 端口和 untagged 端口的区别。二、 应用环境教学楼有两层,分别是一年级、二年级,每个楼层都有一台交换机满足老师上网需求;每个年级都有语文教研组和数学教研组;两个年级的语文教研组的计算机可以互相访问;两个年级的数学教研组的计算机可以互相访问;语文教研组和数学教研组之间不可以自由访问;通过划分 VLAN使得语文教研组和数学教研组之间不可以自由访问;使用802.1Q 进行
2、跨交换机的VLAN 。三、 实验设备1、 DCS-3926S交换机 2 台2、 PC机 2 台3、 Console 线 1 根4、 直通网线 2 根四、 实验拓扑五、 实验要求在交换机 A 和交换机 B 上分别划分两个基于端口的VLAN :VLAN100 ,VLAN200 。VLAN 端口成员100 18 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 1 页,共 8 页 - - - - - - - - - 200 916 Trunk 口24 使得交换机之间VLAN100的成员能够互
3、相访问,VLAN200的成员能够互相访问;VLAN100 和 VLAN200 成员之间不能互相访问。PC1 和 PC2 的网络设置为:设备IP 地址Mask 交换机 A 192.168.1.11 255.255.255.0 交换机 B 192.168.1.12 255.255.255.0 PC1 192.168.1.101 255.255.255.0 PC2 192.168.1.102 255.255.255.0 PC1、PC2 分别接在不同交换机VLAN100的成员端口18 上,两台PC 互相可以ping通;PC1、PC2 分别接在不同交换机VLAN的成员端口916 上,两台 PC 互相可以
4、ping 通;PC1 和 PC2 接在不同 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 switchA(Config-If-Vl
5、an1)#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 switchB(Config-If-Vlan1)#no shutdown switchB(Config-If-Vlan1)#exit switchB(Config)# 第三步:在交换机中创建vlan100
6、和 vlan200 ,并添加端口。交换机 A:switchA(Config)#vlan 100 switchA(Config-Vlan100)# switchA(Config-Vlan100)#switchport interface ethernet 0/0/1-8 switchA(Config-Vlan100)#exit switchA(Config)#vlan 200 switchA(Config-Vlan200)#switchport interface ethernet 0/0/9-16 switchA(Config-Vlan200)#exit switchA(Config)# 验证
7、配置:名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 2 页,共 8 页 - - - - - - - - - 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 Ethernet0/0/23 Etherne
8、t0/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/0/16 switchA# 交换
9、机 B:配置与交换机A一样。第四步:设置交换机trunk端口交换机 A:switchA(Config)#interface ethernet 0/0/24 switchA(Config-Ethernet0/0/24)#switchport mode trunk Set the port Ethernet0/0/24 mode TRUNK successfully switchA(Config-Ethernet0/0/24)#switchport trunk allowed vlan all set the port Ethernet0/0/24 allowed vlan successfull
10、y switchA(Config-Ethernet0/0/24)#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 Ethernet0/0/23 Ethernet0/0/24(T) 100 VLAN0100 Static ENET Ethernet0/0/1 E
11、thernet0/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 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# 名师资料总结 - - -精品
12、资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 3 页,共 8 页 - - - - - - - - - 24 口已经出现在vlan1 、 vlan100 和 vlan200 中, 并且 24 口不是一个普通端口, 是 tagged端口。交换机 B:配置同交换机A 第五步:验证实验。交换机 Aping 交换机 B:switchA#ping 192.168.1.12 Type c to abort. Sending 5 56-byte ICMP Echos to 192.168.1.12, timeout is 2
13、 seconds. ! Success rate is 100 percent (5/5), round-trip min/avg/max = 1/1/1 ms switchA# 表明交换机之前的trunk链路已经成功建立。按下表验证, PC1插在交换机A上, PC2插在交换机B上:PC1位置PC2位置动作结果1-8 端口PC1 ping 交换机 B 不通9-16 端口PC1 ping 交换机 B 不通17-24 端口PC1 ping 交换机 B 通1-8 端口1-8 端口PC1 ping PC2 通1-8 端口9-16 端口PC1 ping PC2 不通七、 注意事项和排错1、 取消一个 v
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 2022年2022年跨交换机相同VLAN间通讯 2022 交换机 相同 VLAN 通讯
限制150内