Complete Cisco IS-IS Multi Area Routing Lab Part 4
Welcome to Part 4 of the Complete Cisco IS-IS Multi Area Routing series.
In the earlier parts, we covered:
- Basic IS-IS configuration
- Level-1 and Level-2 routing
- DIS election
- Authentication
- MPLS Traffic Engineering support
- Inter-area routing
- EIGRP and OSPF redistribution
Part 4 focuses on advanced optimization techniques including:
- Route leaking
- Route summarization
- BFD fast convergence
- Level-1 and Level-2 route control
- Fast failure detection
๐ฏ What You Will Learn
- How route leaking works in IS-IS
- Level-2 to Level-1 redistribution
- IS-IS route summarization
- BFD fast convergence
- Reducing routing table size
- Optimizing convergence times
- Scalable IS-IS design
Table of Contents
Task 1 - Configure Route Leaking
By default, Level-1 routers do not learn all Level-2 routes.
To provide full visibility into the network, we configure route leaking.
IS-IS Route Leaking Logic
$$ Level\text{-}2\ Routes \rightarrow Level\text{-}1\ Area $$This allows Area 49.0010 and Area 49.0020 to receive routes from all areas.
R3 Configuration
access-list 101 permit ip any any router isis redistribute isis ip level-2 into level-1 distribute-list 101
R4 Configuration
access-list 101 permit ip any any router isis redistribute isis ip level-2 into level-1 distribute-list 101
Why Route Leaking Is Important
Level-1 routers normally rely on a default route toward Level-2 routers.
Route leaking improves visibility and allows more optimal path selection.
๐ก Important Design Note
Excessive route leaking can increase routing table size. Always use filtering carefully in large enterprise networks.
Task 2 - Route Summarization
Route summarization reduces routing table size and improves scalability.
Instead of advertising many individual routes, routers advertise a summarized prefix.
Summarization Formula
$$ Multiple\ Routes \rightarrow Single\ Aggregate\ Route $$Configure Summarization on R4
All 111.0.0.0/8 routes should be summarized out of Area 49.0010.
router isis summary-address 111.111.100.0 255.255.252.0
Configure Summarization on R1
All 107.0.0.0/8 routes should be summarized in IS-IS.
router isis summary-address 107.7.72.0 255.255.252.0
Binary Summarization Example
Suppose we have:
$$ 107.7.72.0 $$ $$ 107.7.73.0 $$ $$ 107.7.74.0 $$ $$ 107.7.75.0 $$They can be summarized as:
$$ 107.7.72.0/22 $$Benefits of Route Summarization
- Smaller routing tables
- Reduced CPU usage
- Faster convergence
- Reduced LSDB size
- Improved scalability
Task 3 - Configure BFD
Bidirectional Forwarding Detection (BFD) provides extremely fast link failure detection.
Traditional routing protocol timers may take seconds to detect failures.
BFD reduces detection time to milliseconds.
BFD Detection Formula
$$ Detection\ Time = Multiplier \times Interval $$In this lab:
$$ 3 \times 300ms = 900ms $$R1 Configuration
interface e0/0 bfd interval 300 min_rx 300 multiplier 3 interface e0/1 bfd interval 300 min_rx 300 multiplier 3 router isis bfd all-interfaces
R2 Configuration
interface e0/0 bfd interval 300 min_rx 300 multiplier 3 router isis bfd all-interfaces
R3 Configuration
interface e0/0 bfd interval 300 min_rx 300 multiplier 3 router isis bfd all-interfaces
๐ก Why BFD Matters
Modern service provider and enterprise networks require extremely fast convergence.
BFD allows routing protocols to react almost instantly to failures.
How BFD Works Internally
BFD establishes lightweight hello sessions between routers.
If a router misses the configured number of BFD packets, the neighbor is immediately declared down.
This process is independent of the routing protocol.
Convergence Comparison
Traditional Timer:
$$ 10-40\ seconds $$BFD Timer:
$$ < 1\ second $$Verification Commands
Verify IS-IS Routes
show ip route isis
R4# show ip route isis i ia 107.7.72.0/22 i ia 111.111.100.0/22
Verify Route Summaries
show clns route
R1# show clns route 107.7.72.0/22 via Level-2
Verify BFD Sessions
show bfd neighbors
R1# show bfd neighbors Neighbor Interface State 192.1.12.2 Et0/0 UP 192.1.13.3 Et0/1 UP
Verify IS-IS Adjacencies
show isis neighbors
R3# show isis neighbors System Id Type Interface State R1 L2 Et0/0 UP R2 L2 Et0/1 UP
๐ก Key Takeaways
- Route leaking improves visibility between areas
- Summarization reduces routing table size
- BFD dramatically improves convergence speed
- Fast convergence is critical in modern networks
- Route filtering prevents scalability issues
Related Articles
Conclusion
Part 4 focused on advanced IS-IS optimization and scalability techniques.
We covered:
- Level-2 to Level-1 route leaking
- Route summarization
- BFD fast convergence
- Scalable routing design
- Optimized IS-IS deployments
These technologies are widely used in enterprise backbones and service provider environments where scalability and fast convergence are critical requirements.
Understanding route summarization and BFD is essential for designing resilient and high-performance routing infrastructures.
No comments:
Post a Comment