在“二、配置三层交换机”的基础上,再做一个相同的楼层结构
前提条件:一定要确保“二、配置三层交换机”中各主机间都能互相ping通,才能操作下面
在两个三层交换机中间用一个三层交换机连接
中间交换机使用f0/1和f0/2端口,两端使用g0/1端口
一、给顶端线相连的四个端口配置Ip
1、左侧交换机的g0/1端口在202.206.75.0网段中
g0/1的主机号为2——202.206.75.2
命令如下:
switch>enable
switch#configure terminal
switch(config)#interface g0/1
switch(config)# no switchport //把二层接口改为三层接口,相当于一个路由器上的接口
switch(config-if)#ip address 202.206.75.2 255.255.255.252 //给g0/1指定网关
switch(config-if)#no shutdown //不关闭激活端口
switch(config-if)#ip routing //激活IP路由功能
2、右侧交换机的g0/1端口在202.206.74.0网段中
g0/1的主机号为2——202.206.74.2
命令如下:
switch>enable
switch#configure terminal
switch(config)#interface g0/1
switch(config)# no switchport //把二层接口改为三层接口,相当于一个路由器上的接口
switch(config-if)#ip address 202.206.74.2 255.255.255.252 //给g0/1指定网关
switch(config-if)#no shutdown //不关闭激活端口
switch(config-if)#ip routing //激活IP路由功能
3、中间交换机的f0/1端口在202.206.75.0和202.206.74.0网段中
f0/1的主机号为1——202.206.75.1
f0/2的主机号为1——202.206.74.1
命令如下:
switch>enable
switch#configure terminal
switch(config)#interface f0/1
switch(config)# no switchport //把二层接口改为三层接口,相当于一个路由器上的接口
switch(config-if)#ip address 202.206.75.1 255.255.255.252 //给f0/1指定网关
switch(config-if)#exit
switch(config)#interface f0/2
switch(config)# no switchport //把二层接口改为三层接口,相当于一个路由器上的接口
switch(ocnfig-if)#ip address 202.206.74.1 255.255.255.0 //给f0/2指定网关
switch(config-if)#no shutdown //不关闭激活端口
switch(config-if)#ip routing //激活IP路由功能
二、使用RIP协议使用交换机通畅
1、左侧交换机
包括:202.206.79.0 202.206.78.0 202.206.75.0
命令如下:
switch>enable
switch#configure terminal
switch(config)#router rip //使用RIP协议
switch(config-router)#version 2 //使用版本2
switch(config-router)#network 202.206.79.0 //将这个接口的网段公告到动态路由协议当中
switch(config-router)#network 202.206.78.0
switch(config-router)#network 202.206.75.0
2、右侧交换机
包括:202.206.77.0 202.206.76.0 202.206.74.0
命令如下:
switch>enable
switch#configure terminal
switch(config)#router rip //使用RIP协议
switch(config-router)#version 2 //使用版本2
switch(config-router)#network 202.206.77.0 //将这个接口的网段公告到动态路由协议当中
switch(config-router)#network 202.206.76.0
switch(config-router)#network 202.206.74.0
3、中间交换机
包括:202.206.75.0 202.206.74.0
命令如下:
switch>enable
switch#configure terminal
switch(config)#router rip //使用RIP协议
switch(config-router)#version 2 //使用版本2
switch(config-router)#network 202.206.75.0 //将这个接口的网段公告到动态路由协议当中
switch(config-router)#network 202.206.74.0
三、测试
1、测试79到77
在IP地址为202.206.79.1的主机上ping地址为202.206.77.1的主机
先ping网关
ping 202.206.77.100
若不通检查中间路由器的配置信息
再ping主机
ping 202.206.77.1
用相同操作再测试ping 202.206.76.100和ping 202.206.76.1
都能ping通即可
完啦!文章来源:https://www.toymoban.com/news/detail-439675.html
本次是通过直接给接口配置IP实现的互联,也可通过把三层和顶层连接线的接口两两划分到同一vlan中(如左边和中间的接口用vlan 50,右边和中间的接口用vlan 60),再在各个交换机上给包含接口的vlan分配IP,分配的IP和本次一模一样也是四个IP,也可实现文章来源地址https://www.toymoban.com/news/detail-439675.html
到了这里,关于四、两个三层交换机互联的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!