第五章-RIP
第五章-RIP
5.4 基本RIPv1配置
示例5-3 RIP路由器配置模式
R1# conf t
R1(config)# router rip
R1(config-router)#
5.4.3 指定网络
示例5-4 使用network命令启动RIP
R1(config-router)# network 192.168.1.0
R1(config-router)# network 192.168.2.0
R2(config-router)# network 192.168.2.0
R2(config-router)# network 192.168.3.0
R2(config-router)# network 192.168.4.0
R3(config-router)# network 192.168.4.0
R3(config-router)# network 192.168.5.0
检验RIP: show ip protocols
5.7.2 在RIPv1中传播默认路由
在许多路由协议中,包括RIP,您可以在路由器配置模式中使用 default-information originate
,由该路由器在RIP更新中传播静态默认路由。
第6章-VLSM和CIDR
VLSM
VLSM就是批对子网划分子网。VLSM可以看做子网的子网划分机制。
CIDR
无类域间路由(CIDR)是一种基于前缀方式表示IP地址的标准。CIDR允许路由协议汇总多个网络到一个地址块,也即一条路由。使用CIDR时,IP地址和它子网掩码被写成四组八位字节,用点隔开,紧跟着是一个前斜线和表示子网掩码的数字(斜线符)。比如:172.17.1.0/24。
第7章-RIPv2
配置RIPv2
示例7-19 通过version 2
命令配置RIP为无类域间路由协议
R1(config)# router rip
R1(config-router)#version 2
R2(config)# router rip
R2(config-router)#version 2
R3(config)# router rip
R3(config-router)#version 2
7.4.3 禁用RIPv2中的自动汇总
示例7-25 使用no auto-summary
禁用自动汇总
R2(config)# router rip
R2(config-router)# no auto-summary