EIGRP Stub Routing
EIGRP Stub Routing
π EIGRP Stub Routing β Notes
πΉ What is EIGRP and Why Do We Need Stub Routers?
- EIGRP (Enhanced Interior Gateway Routing Protocol) is like a group of routers constantly chatting and sharing directions (routes).
- Routers use DUAL (Diffusing Update Algorithm) to find the best paths. If a path fails, they send queries asking neighbors if they know another way.
- Problem: Sending queries to routers that are dead-ends (like small offices or remote sites) wastes bandwidth and CPU, and may even cause Stuck-in-Active (SIA) events.
π Stub Routers solve this problem by limiting EIGRP queries and advertisements.
πΉ What is an EIGRP Stub Router?
- A Stub Router is a router that:
- Acts as a non-transit router (traffic doesnβt pass through it to reach other routers).
- Doesnβt receive queries from neighbors.
- Think of it as the quiet router in the group β it only speaks when needed, and others know not to ask it complicated questions.
πΉ Why Use EIGRP Stub Routing? (Key Benefits)
- Improved Performance
- Stops sending Hellos on interfaces with no EIGRP routers.
- Reduces unnecessary query traffic.
- Enhanced Security
- Using passive interfaces, prevents rogue routers from forming neighborships.
- Increased Stability
- Prevents SIA (Stuck-in-Active) events.
- Faster Convergence
- Core routers donβt wait for responses from stub routers, so the network adapts quicker.
πΉ How to Configure a Stub Router
1. Optional β Passive Interface
Stops Hellos on interfaces with no EIGRP neighbors.
1
2
router eigrp 1
passive-interface g0/1
The network is still advertised, but no neighborship is formed.
2. Enable Stub
1
2
router eigrp 1
eigrp stub
By default, this advertises directly connected routes and summary routes.
3. Verify
1
show ip eigrp neighbors detail
Displays if the neighbor is a stub and what routes it advertises.
πΉ Controlling Stub Advertisements
eigrp stub connectedβ Only advertises directly connected networks.eigrp stub staticβ Advertises static routes.eigrp stub redistributedβ Advertises redistributed routes.eigrp stub summaryβ Advertises summary routes.eigrp stub receive-onlyβ Doesnβt advertise anything; only receives routes.eigrp stub leak-map <map-name>β Selectively advertises routes using ACLs + route maps.
πΉ How Neighbors Recognize a Stub
- The stub router adds a TLV code in its Hello messages.
- Neighbors recognize it and stop sending queries to the stub.
πΉ Analogy β Easy Way to Remember
- Imagine your network is an office building:
- EIGRP query = someone shouting: βWhereβs the stapler?β
- Normal router = open office, where people may ask each other and forward the question.
- Stub router = a tiny filing room at the end of the hall. Nobody asks them because they only deal with their files and wonβt forward the question.
β
Key Takeaway:
Stub routers are best for remote sites or edge routers. They reduce unnecessary queries, improve security, prevent SIA events, and speed up convergence.
π Connect With Me
This post is licensed under CC BY 4.0 by the author.