网络_RIP路由汇总部署

一、环境

GNS3、secureCRT

二、RIP路由汇总部署

当划分了子网之后,路由表中存储了大量同一网段的路由信息,造成路由表体积太大,占用内存使得查表速度变慢
实验拓扑
网络_RIP路由汇总部署_第1张图片
延续之前的实验拓扑,参见以前博文。在R1中多创建一个loopback 2环回口,添加如图所示ip地址,配置命令如下:

R1(config)#int loopback 2
R1(config-if)#ip add 172.16.0.1 255.255.255.0
R1(config-if)#ip add 172.16.1.1 255.255.255.0 secondary 
R1(config-if)#ip add 172.16.2.1 255.255.255.0 secondary 
R1(config-if)#ip add 172.16.3.1 255.255.255.0 secondary

然后设置RIP v2

R1(config)#router rip 
R1(config-router)#version 2
R1(config-router)#no auto-summary 
R1(config-router)#network 172.16.0.0

在R2查看RIP路由信息
网络_RIP路由汇总部署_第2张图片
已经学到路由信息

设置路由汇总(需要在f0/0和f1/0两个口都设置)

R1(config)#int f0/0
R1(config-if)#ip summary-address rip 172.16.0.0 255.255.252.0
R1(config)#int f1/0
R1(config-if)#ip summary-address rip 172.16.0.0 255.255.252.0

或者通过一个命令同时给两个口添加命令

R1(config)#interface range f0/0 , f1/0
R1(config-if-range)#ip summary-address rip 172.16.0.0 255.255.252.0

最后再创建一个loopback 3

R1(config)#int loopback 3
R1(config-if)#ip add 192.168.0.1 255.255.255.0
R1(config-if)#ip add 192.168.1.1 255.255.255.0 secondary 
R1(config-if)#ip add 192.168.2.1 255.255.255.0 secondary 
R1(config-if)#ip add 192.168.3.1 255.255.255.0 secondary 

然后部署RIP v2

R1(config)#router rip 
R1(config-router)#version 2
R1(config-router)#no auto-summary 
R1(config-router)#network 192.168.0.0
R1(config-router)#network 192.168.1.0
R1(config-router)#network 192.168.2.0
R1(config-router)#network 192.168.3.0

路由汇总

R1(config)#int range f0/0 , f1/0              
R1(config-if-range)#ip summary-address rip 192.168.0.0 255.255.252.0

会报错
在这里插入图片描述
这里需要明确,汇总的子网掩码需要大于主类网络的子网掩码。
即之前配置的loop back 2 的172.16.0.0是B类地址,子网掩码为16位,汇总的位22位,22>16
而loop back 3的192.168.0.0是C类地址,子网掩码为24位,汇总的为22位,22<24,所以会报错!

你可能感兴趣的:(计算机网络)