CCNA实验二十 RIP路由协议
环境:Windows XP、 Packet Tracert 5.3
目的:了解并配置RIP协议
说明:
RIP协议是一种内部网关协议,同时它也是一种典型的距离矢量路由协议。它有两个版本分别是: RIP v1 和RIP v2。RIP v1是有类路由协议,它是通过广播的形式进行路由信息更新,在路由更新信息中包含整张路由表而且不会在路由更新中发送子网掩码,它支持自动路由汇总但不支持手动汇总。RIP v2是无类路由协议,它是通过组播的形式进行路由表信息更新,在路由更新信息中包含整张路由表并且发送子网掩码,它同时支持自动路由汇总和手动路由汇总,还有MD5认证或明文认证。RIP协议的管理距离是120,最大跳数为15,更新周期为30秒。通过修改RIP协议定时器值来减少路由刷新的频率,进而减少带宽消耗,连接在同一网络中的各个路由器的RIP定时器设置应该一致。一般不建议更改缺省值,恢复定时器缺省值用命令no timers basic.可以在接口上定义只接收或发送某一RIP版本或两个版本的路由信息,缺省情况下,路由器接收两个RIP版本的路由信息,但只发送版本1的路由信息。
步骤:
Packet Tracert创建拓扑如下:
1、配置R1:
Router>en
Router#conf t
Router(config)#host R1
R1(config)#int loopback 0 //进入环回口 0
R1(config-if)#ip add 10.10.10.10 255.255.255.0 //配置IP地址
R1(config-if)#exit
R1(config)#int fa0/0
R1(config-if)#ip add 192.168.2.1 255.255.255.0
R1(config-if)#no sh
R1(config-if)#exit
R1(config)#route rip //启动RIP路由协议进程
R1(config-router)#network 10.10.10.0 //把10.10.10.0网络加入到RIP进程,并通告出去
R1(config-router)#network 192.168.2.0 //把192.168.2.0网络加入到RIP进程,并通告出去
R1(config-router)#end
配置R2:
Router>en
Router#conf t
Router(config)#host R2
R2(config)#int loopback 0
R2(config-if)#
R2(config-if)#ip add 11.11.11.11 255.255.255.0
R2(config-if)#no sh
R2(config-if)#exit
R2(config)#int fa0/0
R2(config-if)#ip add 192.168.2.2 255.255.255.0
R2(config-if)#no sh
R2(config-if)#exit
R2(config)#router rip
R2(config-router)#network 11.11.11.0
R2(config-router)#network 192.168.2.0
R2(config-router)#end
检查R1路由表:
2、对两台路由启动RIP v2路由协议:
R1#clear ip rou * //清除当前路由表所有路由条目
R1#conf t
R1(config)#router rip
R1(config-router)#version 2 //启用rip 版本2
R1(config-router)#no auto-summary //关闭路由自动汇总
R1(config-router)#exit
R2#clear ip rou *
R2#conf t
R2(config)#router rip
R2(config-router)#version 2
R2(config-router)#no auto-summary
R2(config-router)#exit
再次检查R1路由表观察变化:
3、修改R1和R2的RIP路由协议定时器:
R1(config)#router rip
R1(config-router)#timers basic 60 360 360 480//修改路由更新/无效/拒绝/清除时间分别为60,360,360,480(秒)默认值分别是30,180,180,240秒
R2(config)#router rip
R2(config-router)#timers basic 60 360 360 480
在R1上检查修改:
实验完成。
本文出自 “刘丰源” 博客,谢绝转载!
原文地址:http://liufengyuan.blog.51cto.com/9069183/1615769