CCNA笔记之第十八节:RIP协议(大实验2)

RIP 大实验都是以大实验背景为基础,在其上进行的实验,拓扑图是相同的。
2.         RIP 大实验 2 R1 是连接到 Internet 的路由器,在 R1 上面通过 RIP 向内网注入一条默认路由,强迫 R1 R4 发送从 R3 学习过来的路由。
1)        R1 接公网,配默认路由, R2 上配回来的默认路由:
R1(config)#ip route 0.0.0.0 0.0.0.0 s1/0
R2(config)#ip route 0.0.0.0 0.0.0.0 s1/0
 
2)        R4 ping199.172.1.254 结果不通:原因是R4上没有通往此网段的路由
R4#ping 199.172.1.254
Sending 5, 100-byte ICMP Echos to 199.172.1.254, timeout is 2 seconds:
.....
 
3)        R1 把默认路由静态重分布到 RIP 里:
R1(config)#router rip
R1(config-router)#redistribute static
 
4)        再在 R4 ping199.172.1.254
R4#ping 199.172.1.254
Sending 5, 100-byte ICMP Echos to 199.172.1.254, timeout is 2 seconds:
!!!!!
 
5)        R4 上查看路由表,并不学习 3.0.0.0 网络:
R4#sh ip route rip
R*   0.0.0.0/0 [120/1] via 10.1.134.1, 00:00:22, FastEthernet0/0
 
6)        R1 上关闭水平分割:从一个接口收到的信息不再从此接口转发出去:
R1(config)#int f0/0
R1(config-if)#no ip split-horizon
 
7)        再在 R4 上查看路由表:结果学习到 3.0.0.0
R4#sh ip route rip
R    3.0.0.0/8 [120/1] via 10.1.134.1, 00:00:04, FastEthernet0/0
R*   0.0.0.0/0 [120/1] via 10.1.134.1, 00:00:04, FastEthernet0/0
 
 
本文档由 联科教育 (www.ilync.cn)原创提供!

你可能感兴趣的:(RIP大实验)