📘CCNP Enterprise – ENARSI (300-410)
In routing, summarization is the process of combining multiple networks or subnets into a single route advertisement. This helps reduce routing table size, improve convergence, and reduce unnecessary traffic in the network.
There are two types of summarization: Manual (Static) Summarization and Automatic Summarization.
1. Manual Summarization
What is it?
Manual summarization is when you explicitly configure a summary route on a router. You choose the networks to summarize and define a single route that represents all of them.
- Example in IT environment: Suppose you have multiple subnets in a data center network:
- 10.1.1.0/24
- 10.1.2.0/24
- 10.1.3.0/24
Instead of advertising each /24 individually, you can manually summarize them into 10.1.0.0/22.
Why use it?
- Reduces the number of routes in routing tables.
- Reduces CPU and memory usage on routers.
- Helps prevent routing loops in large networks.
How to configure (exam perspective):
For OSPF:
- Use a summary address at an ABR (Area Border Router) or ASBR (Autonomous System Border Router).
- Example CLI:
area 1 range 10.1.0.0 255.255.252.0This summarizes multiple /24 networks into a single /22 network when advertised to other areas.
For EIGRP:
- Use the
ip summary-address eigrpcommand on the interface connecting to another router.interface G0/1 ip summary-address eigrp 100 10.1.0.0 255.255.252.0
For BGP:
- Use the
aggregate-addresscommand under BGP configuration.router bgp 65001 aggregate-address 10.1.0.0 255.255.252.0 summary-only
2. Automatic Summarization
What is it?
Automatic summarization is when a routing protocol automatically summarizes subnets to the classful network boundary.
- Example in IT environment:
If you have subnets like:- 172.16.1.0/24
- 172.16.2.0/24
EIGRP, by default, automatically summarizes them to 172.16.0.0/16 when advertising to a different major network.
Protocols that use automatic summarization:
- EIGRP (by default)
- RIPv1 (always classful, so it automatically summarizes)
When it can cause problems:
- In discontiguous networks, automatic summarization can cause routing loops or unreachable networks.
- Discontiguous network example:
- Router A advertises 10.1.1.0/24
- Router B has 10.1.2.0/24
- Automatic summarization advertises 10.1.0.0/16
- Other routers may assume 10.1.0.0/16 is reachable via Router A, causing traffic to go the wrong way.
How to disable automatic summarization:
- EIGRP:
router eigrp 100 no auto-summary - RIP v2:
router rip no auto-summary
3. Key Troubleshooting Steps
When summarization is not working correctly or causing network issues, you need to troubleshoot. Focus on these points:
Step 1: Check if the summarization is applied
- Use commands to check summary routes:
- EIGRP:
show ip route summaryorshow ip eigrp topology - OSPF:
show ip ospf databaseand check summary LSAs - BGP:
show ip bgp
- EIGRP:
Step 2: Verify subnet vs. summary range
- Make sure your manual summary includes all the subnets you want and does not include unintended networks.
- Example mistake: summarizing 10.1.0.0/22 when your networks are 10.1.1.0/24 and 10.1.3.0/24 only—this leaves 10.1.2.0/24 uncovered.
Step 3: Check for automatic summarization issues
- Verify if a protocol is automatically summarizing and causing routing errors.
- If you have discontiguous networks, consider disabling auto-summary.
Step 4: Check routing tables
- Look for missing routes or incorrect summary routes.
- Use
pingortracerouteto verify connectivity to the summarized networks.
Step 5: Adjust configuration
- Modify manual summary addresses or disable automatic summarization as needed.
4. Exam Tips
- Know the difference between manual and automatic summarization.
- Remember which protocols do automatic summarization (EIGRP, RIPv1).
- Know how to configure manual summarization for EIGRP, OSPF, and BGP.
- Understand discontiguous networks and how auto-summary can cause problems.
- Be able to verify summarized routes with
showcommands.
5. Quick Reference Table
| Feature | Manual Summarization | Automatic Summarization |
|---|---|---|
| Configured by | Network engineer | Protocol default behavior |
| Flexibility | High, you choose the range | Low, follows classful boundaries |
| Protocol Examples | OSPF, EIGRP, BGP | EIGRP, RIPv1 |
| Problem Potential | Misconfigured range | Discontiguous networks |
| Exam Tip | Know CLI commands | Know how to disable (no auto-summary) |
Summary for Exam:
- Manual summarization = explicit, controlled, can prevent routing loops.
- Auto summarization = automatic, convenient, but risky in modern networks.
- Troubleshooting = check routing tables, verify summaries, adjust configs.
