标签:ip add port res 之间 ddr 实验 端口 mod 连接
1、交换机2台;主机4台;网线若干。
2、把主机、交换机进行互联。
3、给2台交换机重命名为A、B。
4、设置2台交换机及主机的ip。注意IP要不冲突
5、在2台交换机上分别设置vlan100(端口1-8口)、vlan200(端口9-16口)
6、pc1和pc2连接到交换机A上;pc3和pc4连接到交换机B上。
7、测试实验结果
8、交换机的24口做级联口(即24口模式为trunk口)
9、再次测试实验结果
Switch>enable Switch#config Configuring from terminal, memory, or network [terminal]? Enter configuration commands, one per line. End with CNTL/Z. Switch(config)#hostname A A(config)#vlan 100 A(config-vlan)#exit A(config)#vlan 200 A(config-vlan)#exit
A(config)#interface range fastEthernet 0/1-8 A(config-if-range)#Switchport access vlan 100 A(config-if-range)#interface range fastEthernet 0/9-16 A(config-if-range)#Switchport access vlan 200 A(config-if-range)#exit
A(config)#interface vlan 100 A(config-if)# %LINK-5-CHANGED: Interface Vlan100, changed state to up %LINEPROTO-5-UPDOWN: Line protocol on Interface Vlan100, changed state to up A(config-if)#ip address 192.168.100.100 255.255.255.0 A(config-if)#no shutdown A(config-if)#interface vlan 200 A(config-if)# %LINK-5-CHANGED: Interface Vlan200, changed state to up %LINEPROTO-5-UPDOWN: Line protocol on Interface Vlan200, changed state to up A(config-if)#ip address 192.168.200.100 255.255.255.0 A(config-if)#no shutdown
结果:
pc0 ping pc1 不通
pc0 ping pc2 不通
pc0 ping pc3 不通
结论:
不同的交换机下,相同的VLAN下两个间终端不能够通信
同一个交换机下,不同的VLAN下两个终端间不可以通信
A(config)#interface fastEthernet 0/24 A(config-if)#switchport mode trunk
7、测试实验结果
结果:
pc0 ping pc1 通
pc0 ping pc2 通
pc0 ping pc3 通
结论:
交换机连接的主接口设置为Trunk模式,可以传输不同VLAN的数据
标签:ip add port res 之间 ddr 实验 端口 mod 连接
原文地址:https://www.cnblogs.com/py2019/p/12046294.html