欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 新闻 > 社会 > RIP配置实验

RIP配置实验

2025/1/5 10:29:48 来源:https://blog.csdn.net/2201_75331136/article/details/144885734  浏览:    关键词:RIP配置实验

RIP配置实验

案例简介
天一公司下属三个分公司,属于不同的地区,三个公司之间用路由器连接,路由器名称分别为分别为 Router0、Router1、Router2,请把一公司的部门pc0,通过二公司路由器,连接三公司的部门pc1,公司之间通过配置RIP路由协议联通。

1、绘制拓扑图

2、配置ip地址

3、配置路由器接口 IP 地址

R0

Router(config)#interface FastEthernet0/0
Router(config-if)#ip address 192.168.1.1 255.255.255.0
Router(config-if)#exit
Router(config)#interface FastEthernet0/1
Router(config-if)#ip address 192.168.2.1 255.255.255.0
Router(config-if)#exit

 R1

Router(config)#interface FastEthernet0/0
Router(config-if)#ip address 192.168.4.1 255.255.255.0
Router(config-if)#exit
Router(config)#interface FastEthernet0/1
Router(config-if)#ip address 192.168.2.2 255.255.255.0
Router(config-if)#ex

R2

Router(config)#interface FastEthernet0/0
Router(config-if)#ip address 192.168.4.2 255.255.255.0
Router(config-if)#exit
Router(config)#interface FastEthernet0/1
Router(config-if)#ip address 192.168.5.1 255.255.255.0
Router(config-if)#ex

5、配置三个路由器特权密码为明文密码123,远程登录密码为456(同时可登录设备为4台)

R0

Router(config)#enable password 123
Router(config)#line vty 0 4
Router(config-line)#password 456
Router(config-line)#ex

R1

Router(config)#enable password 123
Router(config)#line vty 0 4
Router(config-line)#password 456
Router(config-line)#ex

R2

Router(config)#enable password 123
Router(config)#line vty 0 4
Router(config-line)#password 456
Router(config-line)#ex 

6、配置RIP路由

R0

Router(config)#router rip

Router(config-router)#version 2
Router(config-router)#network 192.168.1.0
Router(config-router)#network 192.168.2.0
Router(config-router)#ex

R1

Router(config)#router rip

Router(config-router)#version 2
Router(config-router)#network 192.168.2.0
Router(config-router)#network 192.168.4.0
Router(config-router)#ex

 R2

Router(config)#router rip

Router(config-router)#version 2
Router(config-router)#network 192.168.4.0
Router(config-router)#network 192.168.5.0
Router(config-router)#ex

7、查看路由表 

8、测试连通性

三层交换机作为DHCP中继分配IP地址

 1、绘制拓扑图

2、配置ip地址

3、将接口配置为路由接口,而不是交换接口,这样可以为接口配置 IP 地址,使其具有路由功能,通常用于三层交换机。

Switch(config)#int f0/1
Switch(config-if)#no switchport #将接口配置为路由接口,而不是交换接口,这样可以为接口配置 IP 地址,使其具有路由功能,通常用于三层交换机。
Switch(config-if)#ip add 192.168.1.254 255.255.255.0
Switch(config-if)#ex
Switch(config)#int f0/2
Switch(config-if)#no switchport 
Switch(config-if)#ip add 192.168.2.254 255.255.255.0
Switch(config-if)#int f0/3
Switch(config-if)#no switchport 
Switch(config-if)#ip add 192.168.3.254 255.255.255.0
Switch(config-if)#ex
Switch(config)#int f0/2
Switch(config-if)#ip helper-address 192.168.1.1
Switch(config-if)#ex
Switch(config)#int f0/3
Switch(config-if)#ip helper-address 192.168.1.1

#将该接口收到的 DHCP 请求转发到 192.168.1.1 的 DHCP 服务器。
Switch(config-if)#

4、测试连接

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com