一,设置s1.
(1)连接方式:
交换机命名为s1,s2,pc机命名为pc2,pc3,pc4,pc5
采用直通线,交换机端fastEthernet,0/2,0/3,0/4,0/5分别连接pc机pc2,pc3,pc4,pc5的fastEthernet。
(2)打开交换机s1,设置如下
Switch>enable (用户模式)
Switch#conf
Switch#configure t(全局配置模式)
Switch(config)#vlan 2(设置vlan2)
Switch(config-vlan)#exit(退回全局配置模式,设置vlan3)
Switch(config)#vlan 3
Switch(config-vlan)#exit(退回全局配置模式,设置vlan2连接交换机fastEthernet 0/2端口)
Switch(config)#inter
Switch(config)#interface fa
Switch(config)#interface fastEthernet 0/2
Switch(config-if)#switchport access vlan 2
Switch(config-if)#exit((退回全局配置模式,设置vlan2连接交换机fastEthernet 0/2端口)
Switch(config)#interface fastEthernet 0/3
Switch(config-if)#switchport access vlan 3
Switch(config-if)#exit
Switch(config)#interface fastEthernet 0/1
Switch(config-if)#sw mo tr(查看配置)
Switch(config-if)#exit
Switch(config)#end
(3)设置s2,与设置s1同理:
Switch>enable
Switch#configure t
Switch(config)#vlan 2
Switch(config-vlan)#exit
Switch(config)#vlan 3
Switch(config-vlan)#exit
Switch(config)#interface fastEthernet 0/4
Switch(config-if)#switchport access vlan 2
Switch(config-if)#exit
Switch(config)#interface fastEthernet 0/5
Switch(config-if)#switchport access vlan 3
Switch(config-if)#exit
Switch(config)#interface fastEthernet 0/1
Switch(config-if)#sw mo tr
Switch(config-if)#exit
Switch(config)#end
(4)在pc机2的run命令中检测刚刚的配置是否正确。
Pc2:run
Ipconfig
Ping 192.168.1.3超时
Ping 192.168.1.4通
Ping 192.168.1.5超时