cisco 静态路由 rip协议 配置,拓扑图如下,如何连通,求详细过程

不好意思,图补上了!
2024-12-23 15:44:19
推荐回答(1个)
回答1:

你好!

直接命令:

Router1

enable
configure terminal
router rip
version 2
network 192.168.1.0
network 192.168.4.0
no auto-summary
end
show ip route

Router2

enable
configure terminal
router rip
version 2
network 192.168.3.0
network 192.168.4.0
no auto-summary
end
show ip route

Router3

enable
configure terminal
router rip
version 2
network 192.168.3.0
network 192.168.2.0
no auto-summary

就这些。

RIP基本配置方式:

router rip //进入RIP进程
version 2//启用RIPV2
network X.X.X.X //宣告直连网段(就是自己接口的IP网段)
no auto-summary //关闭RIP的路由自动汇总

希望你能懂!