December 2006
Intermediate to advanced
1188 pages
72h 8m
English
You want to reduce the size of your routing tables without losing any connectivity within your network.
Using the area x range configuration command on your ABRs allows you summarize routes between OSPF areas:
Router1#configure terminalEnter configuration commands, one per line. End with CNTL/Z. Router1(config)#router ospfRouter1(config-router)#55area100rangeRouter1(config-router)#172.20.0.0 255.255.0.0area0rangeRouter1(config-router)#172.25.0.0 255.255.0.0area2rangeRouter1(config-router)#10.0.0.0 255.0.0.0exitRouter1(config)#endRouter1#
The easiest way to see the effect of summarization is to look at
the routing table before and after it is enabled. Here is a sample
routing table before summarization. The ranges that we will be
summarizing are 172.20.0.0/16 and
172.25.0.0/16. We have highlighted
the route with the lowest metric in each of these ranges:
Router2#show ip route ospf 172.16.0.0/24 is subnetted, 1 subnets O IA 172.16.2.0 [110/140] via 10.1.1.2, 00:05:06, Serial0/0 172.20.0.0/16 is variably subnetted, 3 subnets, 3 masks O IA 172.20.10.0/24 [110/1702] via 10.1.1.2, 00:05:06, Serial0/0 O IA 172.20.1.0/30 [110/1692] via 10.1.1.2, 00:05:06, Serial0/0 O IA 172.20.100.1/32 [110/1693] via 10.1.1.2, 00:05:06, Serial0/0 172.25.0.0/16 is variably subnetted, 3 subnets, 2 masks O IA 172.25.25.6/32 [110/141] via 10.1.1.2, 00:05:06, Serial0/0 O IA 172.25.25.1/32 [110/131] via 10.1.1.2, 00:05:06, Serial0/0 O IA 172.25.1.0/24 ...Read now
Unlock full access