Route-2 - dynamic_route_rip

Go directly to the topology map:

rip routing network topology

Following Route-1 - static_route, directly change to dynamic routing rip.
First, clear the static route first:
home router

config>> no ip route 192.168.3.0 255.255.255.0 ser 0/1/0

Validation results:
home router show ip route

school router

config>> no ip route 192.168.1.0 255.255.255.0 ser 0/1/0

Validation results:
school router show ip route

configure rip

home router

config>> router rip
config-router>> ver 2  // 版本2
config-router>> no auto  // 关闭自动汇总
config-router>> net 192.168.1.0  // 通告每一个接口上的网段
config-router>> net 60.205.184.0

school router

config>> router rip
config-router>> ver 2  // 版本2
config-router>> no auto  // 关闭自动汇总
config-router>> net 192.168.3.0  // 通告每一个接口上的网段
config-router>> net 60.205.184.0

Routing table view

home# show ip route

home router show ip route

school# show ip route

school router show ip route

Result verification

192.168.1.45 ping 192.168.3.45
home ping school

192.168.3.45 ping 192.168.1.45
school ping home

The pkt file is on my github: https://github.com/YLD10/Route

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=325644791&siteId=291194637