三层交换机
 
三层交换机,通过对接口的设置,来实现不同的网络段进行通信。即在交换机的基础上实现路由的功能。
开起三层交换机物理端口的路由功能。
试验设备:一台三层交换机,两台PC机,两根直连线。
试验拓扑如图:
三层交换机_第1张图片
第一步:
进行如图所示的连接。
第二步:
设置两台PC的IP(令两台PC为不同网段的),并且设置默认网关:
第三步:
对交换机进行端口设置
命令如下:
对端口进行设置:
Switch>enable
Switch#conf
Switch#configure t
Switch#configure terminal

Switch(config)#ip routing  开启路由端口
Switch(config)#int
Switch(config)#interface f
Switch(config)#interface fastEthernet 0/1
Switch(config-if)#no switchport 
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to down
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to upSwitch(config-if)#ip add
Switch(config-if)#ip address   端口设置IP  但需要注意的是  该IP和端口连接的PC的网关相同。
% Incomplete command.
Switch(config-if)#ip add
Switch(config-if)#ip address 192.168.1.3 255.255.255.0 
同样:对右边的PC进行同样的IP的设置
然后两台PC机进行Ping。
可以联通。