OSPF · · 1 min read

OSPF Route Summarization: Strategy and Configuration

OSPF Route Summarization: Strategy and Configuration

Inter-Area Summarization (ABRs)

Command: area [id] range [network] [mask]

Configuration:

router ospf 1
 area 10 range 172.16.0.0 255.255.0.0

What it does:


External Summarization (ASBRs)

Command: summary-address [network] [mask]

Configuration:

router ospf 1
 summary-address 192.168.0.0 255.255.0.0

What it does:


Example Configuration

Topology

Area 0 --- R1 (ABR) --- Area 10 (172.16.1.0/24, 172.16.2.0/24, etc.)

R1 Configuration

router ospf 1
 area 10 range 172.16.0.0 255.255.0.0

Result

Before:

O IA 172.16.1.0/24
O IA 172.16.2.0/24
O IA 172.16.3.0/24

After:

O IA 172.16.0.0/16  ← One route instead of many

Verification

R1# show ip ospf | include range
  Area 10
    It is an area border router
    Area has range for advertisement: 172.16.0.0/16

Summary

Inter-areaarea X range on ABR
Externalsummary-address on ASBR
Benefits — Smaller tables, faster SPF
Plan IP addressing for clean summarization

Next: OSPF Redistribution (Article 29)


Internal Links:

Read next

© 2025 Ping Labz. All rights reserved.