RIP大实验都是以大实验背景为基础,在其上进行的实验,拓扑图是相同的。
CCNA笔记之第十八节:RIP协议(大实验2)_第1张图片
2.         RIP大实验2R1是连接到Internet的路由器,在R1上面通过RIP向内网注入一条默认路由,强迫R1R4发送从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)        R4ping199.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)        再在R4ping199.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)原创提供!