OSPF Inter-Area Route Summarization
OSPF Inter-Area Route Summarization
Introduction: Background: Configuration overview: Discard route: Benefits of OSPF Summarization: Related Information:
Introduction:
OSPF is link state routing protocol that works on the concept of areas. All areas must have same LSDB (link state database); hence OSPF summarization can only done on the border routers i.e. on ABR (Area border router) and ASBR (Autonomous system boundary router).In this document we discussed about route summarization between the areas.
Background:
Summarization between areas can be done on ABR by using single command under OSPF process:
A) area-id= Identifier of the area about which routes are to be summarizedB) [ ip-address ] [mask]= Summary route to be advertise in areas
Summary route calculation: Only 3 steps are required to calculate summary route 1) Convert the addresses to binary format 2) Locate the bit where the common pattern of digits ends 3) The number of common bits is subnet mask and the summary route number is represented by the first IP address in the block. Lets assume the following networks in routing table:192.168.0.0/24192.168.1.0/24192.168.2.0/24
Postings may contain unverified user-created content and change frequently. The content is provided as-is and is not warrantied by Cisco. 1
Prefixs
Binary Splitting 8 16 24 32
11000000 10101000 0000 0000 000000000 11000000 10101000 0000 0001 000000000 11000000 10101000 0000 0010 000000000
From the above table it shows first 22 bits are common, so summary route subnet mask is /22 i.e. 255.255.252.0 and summarized route is 192.168.0.0/22 C) advertise = By default type 3 LSA is advertise D) not-advertise =Its optional and used to filter type 3 LSA component of the networks specify in range command. E) Cost =Its optional When we have multiple ABRs we can Advertise summary route with cost for route manipulation.
Configuration overview:
In following example router ABR1 is directly connected to R1 in area 1 and to R2 in backbone area0.
Topology Diagram:
On R1 loopbacks are created loopbacks for generating network prefixes and advertise them into OSPF as follow:
Postings may contain unverified user-created content and change frequently. The content is provided as-is and is not warrantied by Cisco. 2
R1#sh ip interface brief | include Lo Loopback0 Loopback1 Loopback2 192.168.0.1 192.168.1.1 192.168.2.1 YES manual up YES manual up YES manual up up up up
R2 in area 0 learns Type3 LSA for loopbacks created on R1 via ABR1 and installed into routing table as shown in below output:
R2#sh ip ospf database | Beg Summary Summary Net Link States (Area 0)
Seq#
Checksum
Postings may contain unverified user-created content and change frequently. The content is provided as-is and is not warrantied by Cisco. 3
LS age: 7 Options: (No TOS-capability, DC, Upward) LS Type: Summary Links(Network) Link State ID: 192.168.0.0 (summary Network Number) Advertising Router: 10.1.1.6 LS Seq Number: 80000002 Checksum: 0x5C62 Length: 28 Network Mask: /24 TOS: 0 Metric: 2
10.0.0.0/30 is subnetted, 2 subnets O IA C 10.1.1.0 [110/2] via 10.1.1.6, 00:00:36, FastEthernet0/0 10.1.1.4 is directly connected, FastEthernet0/0
O IA 192.168.0.0/24 [110/3] via 10.1.1.6, 00:00:36, FastEthernet0/0 O IA 192.168.1.0/24 [110/3] via 10.1.1.6, 00:00:36, FastEthernet0/0 O IA 192.168.2.0/24 [110/3] via 10.1.1.6, 00:00:36, FastEthernet0/0 Configuring ABR1 to summarized loopback subnets available on R1 i.e. 192.168.0.0/24 192.168.1.0/24
Postings may contain unverified user-created content and change frequently. The content is provided as-is and is not warrantied by Cisco. 4
192.168.2.0/24
After configuring summarization on ABR1, R2 receives Type 3 i.e.192.168.0.0/22 not individual type 3 LSA for each loopback address from ABR1 shown below:
10.0.0.0/30 is subnetted, 2 subnets O IA C 10.1.1.0 [110/2] via 10.1.1.6, 00:16:36, FastEthernet0/0 10.1.1.4 is directly connected, FastEthernet0/0
Discard route:
It's interesting to look at these summary routes on the ABR, which is responsible for doing all of the summarization. The ABR also includes the summary routes, but they aren't real routes, so it simply points them to its Null0 interface called discard routes. They help to prevent routing loops during summarization:
Postings may contain unverified user-created content and change frequently. The content is provided as-is and is not warrantied by Cisco. 5
O O
192.168.1.0/24 [110/2] via 10.1.1.1, 00:15:01, FastEthernet0/0 192.168.2.0/24 [110/2] via 10.1.1.1, 00:15:01, FastEthernet0/0
Discard route is generated by default, and you don't need to create it. If you want to disable creation of the discard route, you can use the no discard-route command as follows:
Related Information:
OSPF Design Guide OSPF Vesion 2
Postings may contain unverified user-created content and change frequently. The content is provided as-is and is not warrantied by Cisco. 6