EIGRP includes a graceful shutdown mechanism that allows routers to explicitly signal their intention to leave the network. This feature significantly improves convergence time compared to waiting for hold timers to expire.
Purpose of Graceful Shutdown
The primary benefit of graceful shutdown is faster network convergence. When a router needs to be removed from the EIGRP topology, graceful shutdown allows neighboring routers to:
Immediately recognize the departure of the router
Avoid waiting for the hold timer to expire (typically 15 seconds on LAN interfaces)
Begin route recalculation processes immediately
Find alternate paths without unnecessary delay
How Graceful Shutdown Works
When graceful shutdown is triggered, the router sends a special Hello packet to all neighbors with a distinctive signature:
All K-values in this Hello packet are set to 255 (normally impossible configuration)
Neighbors recognize this special packet as a termination signal
Neighbors immediately mark the adjacency as down
Syslog messages indicate "PEER-TERMINATION received"
Route recalculation begins immediately
Triggering Graceful Shutdown
Graceful shutdown can be initiated in several ways:
1. Using the Shutdown Command
# Numbered mode
Router(config-router)# shutdown
# Named mode
Router(config-router-af)# shutdown
2. Removing Network Statements
Removing a network statement that enabled EIGRP on an interface will trigger graceful shutdown for neighbors on that interface.
3. Clearing the EIGRP Process
Router# clear ip eigrp neighbors
This command sends the graceful shutdown signal before resetting the EIGRP process.
Identifying Graceful Shutdown Events
When graceful shutdown occurs, you'll see a distinctive syslog message:
*Jul 5 18:27:00.289: %DUAL-5-NBRCHANGE: EIGRP-IPv4 1: Neighbor 192.168.15.5 (Ethernet0/0) is down: Interface PEER-TERMINATION received
The key indicator is "Interface PEER-TERMINATION received" which confirms the neighbor properly signaled its departure.
Important Limitations
Not all EIGRP termination events use graceful shutdown:
Shutting down an interface does not trigger graceful shutdown
Power loss or device failure cannot trigger graceful shutdown
Only controlled, software-initiated events use this mechanism
Practical Application
Graceful shutdown is particularly valuable during:
Planned maintenance windows
EIGRP process reconfiguration
Controlled network topology changes
Software upgrades requiring routing process restart
In these scenarios, the feature minimizes packet loss by allowing faster convergence than would occur from hold timer expiration.