标签:条目 目标 第一个 ip协议 base format 启动 orm rip协议
RIP-报文:
request:请求,用于向其他RIP路由器请求更新条目;
respone:响应,用于向其他RIP路由器发送更新条目;是对request的回应
-工作表:
(RIP邻居表):
#凡是能与自己互通的路由器,都称之为 RIP 邻居;
RIP数据库:
#本地宣告的路由条目
#从其他路由器学习过来的路由条目
RIP路由表:
#表示的是从数据库中挑选出来的最好的路由;
-原理:
1、路由器启用RIP以后,会将自己本地路由表中的条目进行宣告进入到RIP
2、在启动RIP协议的端口上发送这些更新条目;
3、对方RIP路由器接收以后,经过路由比较,将最好的条目放入路由表;
4、所有的RIP路由器都会进行周期性、全部路由表更新,以广播的方式;
(在RIPv2中,是触发式、增量更新,并且是以组播的方式)
RIP配置命令
#思科
router rip
version 2
no auto-summary
network x.x.x.x (x.x.x.x必须是主类网络的形式)
#华为
[Router]rip [id] // 如果不写后面的id,默认是1;
[Router-rip-1]version 2 // 在华为中,启用RIPv2以后,默认关闭了自动汇总;
[Router-rip-1]network x.x.x.x
-验证
show ip protocols //查看目前正在运行的所有的路由协议;
show ip rip database // 查看RIP的数据库
show ip route rip //仅仅查看路由表中的 RIP 路由;
show ip route //查看路由表;
display rip [id]
display rip {id} neighbor // 查看 rip id 的 邻居表;
display rip {id} database // 查看 rip id 的 数据库;
display rip {id} route // 查看 rip id 的路由表;
display ip routing-table
标签:条目 目标 第一个 ip协议 base format 启动 orm rip协议
原文地址:http://blog.51cto.com/13562283/2059674