CCNA路由协议和概念-RIPv2 (7-章)
第7章 RIPv2
7.3.6 RIPv1拓扑限制
R1配置:
router rip
network 172.30.0.0
network 209.165.200.0
R2配置:
ip route 192.168.0.0 255.255.0.0 null0
router rip
redistribute static
network 10.0.0.0
network 209.165.200.0
R3配置:
router rip
network 172.30.0.0
network 209.165.200.0
一、空接口 Null0
二、路由重分布
redistribute static
重分布是指获取来自某个路由源的路由,然后将这些路由发送到另一个路由源。
7.4 配置RIPv2
7.4.1 启用和检验RIPv2
show ip protocols
有趣的是,配置了RIPv2的路由器将会忽略RIPv1更新。接口命令ip rip send和ip rip receive 能够用来强制让不同版本兼容。
version 2 命令用于将RIP版本修改为使用第2版。此命令应在路由域的所有路由器上配置。
router rip
version 2
show ip protocols
7.4.2 自动汇总和RIPv2
要检查正在发送或接收哪一条RIPv2路由,可使用debug ip rip。
默认情况下,RIPv2与RIPv1一样都会在主网边界上自动汇总。
7.4.3 禁用RIPv2中的自动汇总
要修改默认的RIPv2自动汇总行为,可在路由器配置模式下使用no auto-summary命令。
router rip
no auto-summar
show ip protocols