What is Default Routing and How to Configure It? Detail Explained
What is Default Routing in Networking? Default routing, also known as static routing , is an IP routing…
EIGRP (Enhanced Interior Gateway Routing Protocol) is an interior gateway protocol developed by Cisco. It is usually described as a hybrid: it exchanges distance-vector information with neighbours rather than building a full topology map, but it uses the DUAL algorithm to precompute loop-free backup paths, which gives it convergence behaviour closer to a link-state protocol.
Cisco published it as informational RFC 7868 in 2016, but multi-vendor adoption never materialised. In practice, running EIGRP means running Cisco.
| Table | Contains | Command |
|---|---|---|
| Neighbour table | Directly connected EIGRP routers, per interface | show ip eigrp neighbors |
| Topology table | Every route learned, with successors and feasible successors | show ip eigrp topology |
| Routing table | Only the best route (successor) per destination | show ip route eigrp |
The topology table is where EIGRP’s advantage lives. It holds backup paths that have already been verified loop-free, so failover requires no recalculation at all.
For each destination EIGRP tracks two distances:
The successor is the neighbour offering the lowest FD, and its route goes into the routing table.
A neighbour becomes a feasible successor, a precomputed backup, only if it satisfies the feasibility condition:
RD (neighbour's distance) < FD (my current best distance)The logic behind that inequality: if the neighbour’s own distance to the destination is lower than mine, it cannot possibly be routing through me. So switching to it cannot create a loop, and it can be installed instantly with no query and no recalculation.
This is why EIGRP fails over in well under a second when a feasible successor exists, and why it is markedly slower when one does not.
The route goes active and EIGRP sends queries to its neighbours asking whether they have a path. It waits for every reply. If a reply never arrives, a dead neighbour, a saturated link, or simply too many neighbours on a flat network, the route becomes Stuck In Active (SIA) and EIGRP eventually tears down the adjacency.
SIA is EIGRP’s characteristic failure mode, and it is a scaling problem: the further queries propagate, the more likely one goes unanswered.
EIGRP’s composite metric uses K-values to weight bandwidth, delay, load and reliability. By default only K1 (bandwidth) and K3 (delay) are enabled:
metric = 256 × (10⁷ / slowest bandwidth in Kbps + cumulative delay in tens of µs)Two things matter operationally:
That makes delay the correct knob for influencing EIGRP path selection. Changing bandwidth also affects QoS reservations, SNMP reporting and other protocols, it is the wrong lever even though it works.
Router(config-if)# delay 2000Do not enable K2 (load) or K5 (reliability). Both change constantly with traffic, which makes the metric unstable and the topology churn. K-values must also match exactly on both sides or the adjacency will not form.
An EIGRP adjacency forms only if all of these match:
Notably, hello and hold timers do not need to match, unlike OSPF. A mismatch causes instability rather than a failure to adjacency, because the hold time is advertised in the hello packet itself.
Router# show ip eigrp neighbors
Router# debug eigrp packets helloRouter(config)# router eigrp 100
Router(config-router)# no auto-summary
Router(config-router)# network 10.10.10.0 0.0.0.255
Router(config-router)# network 192.168.1.0 0.0.0.255
Router(config-router)# eigrp router-id 1.1.1.1
Router(config-router)# passive-interface default
Router(config-router)# no passive-interface GigabitEthernet0/1Two things to note. The network statement uses a wildcard mask, not a subnet mask, and it selects interfaces to run EIGRP on, it does not advertise a network directly. And no auto-summary matters: with auto-summary on, EIGRP summarises at classful boundaries, which breaks discontiguous networks. It defaults to off on modern IOS but is worth stating explicitly.
Router(config)# router eigrp CORP
Router(config-router)# address-family ipv4 unicast autonomous-system 100
Router(config-router-af)# network 10.10.10.0 0.0.0.255
Router(config-router-af)# af-interface GigabitEthernet0/1
Router(config-router-af-interface)# authentication mode md5
Router(config-router-af-interface)# hello-interval 5Named mode consolidates IPv4, IPv6 and per-interface settings under one configuration and is the current recommendation for new deployments.
EIGRP has no area concept, so the tools for bounding query propagation are summarisation and stub routers.
Router(config-if)# ip summary-address eigrp 100 10.20.0.0 255.255.0.0Unlike OSPF, which only summarises at area borders, EIGRP summarises on any interface. A summary boundary also stops queries, the router replies authoritatively rather than passing the query on.
Router(config-router)# eigrp stub connected summaryA stub router announces that it is not a transit path, so neighbours never send it queries. On a hub-and-spoke WAN with a hundred spokes, marking every spoke as a stub reduces the hub’s query load by a factor of a hundred. This is the single most effective EIGRP scaling measure and it should be standard on any spoke site.
Router(config-router)# variance 2
Router(config-router)# maximum-paths 4With variance 2, any feasible successor whose metric is up to twice the successor’s is also installed, and traffic is shared in inverse proportion to metric. This is unique to EIGRP, OSPF and most other IGPs only load balance across equal-cost paths, and it is genuinely useful where a fast primary and a slower backup link would otherwise leave capacity idle.
Note the constraint: only feasible successors qualify. A path that fails the feasibility condition is never used, no matter how high you set variance.
Router(config)# key chain EIGRP-KEYS
Router(config-keychain)# key 1
Router(config-keychain-key)# key-string SecretValue
Router(config)# interface GigabitEthernet0/1
Router(config-if)# ip authentication mode eigrp 100 md5
Router(config-if)# ip authentication key-chain eigrp 100 EIGRP-KEYS| Symptom | Likely cause | Check |
|---|---|---|
| Neighbour will not form | AS number, K-values, subnet, or authentication mismatch | show ip eigrp neighbors, show ip protocols |
| Neighbour forms then drops | Layer 1/2 instability, or MTU mismatch | show interfaces error counters |
| Route missing from routing table | In the topology table but not the best path | show ip eigrp topology all-links |
| SIA messages | Query propagating too far | Add stubs and summarisation |
| Suboptimal path chosen | Bandwidth statement not matching reality | show interfaces | include BW |
| Discontiguous network broken | Auto-summary enabled | no auto-summary |
Distance-vector at its core, it learns from neighbour advertisements, not a topology map. DUAL gives it convergence behaviour resembling link-state, which is why it is often called hybrid or “advanced distance-vector”.
Feasible distance is your own best metric to the destination. Reported distance is what a neighbour says its metric is. A neighbour qualifies as a feasible successor when its reported distance is lower than your feasible distance.
90 for internal routes learned natively by EIGRP; 170 for external routes redistributed in from another source, which are trusted less. Forgetting this catches people out after redistribution, see administrative distance.
Technically, since RFC 7868 published the specification. Practically, almost nothing else implements it, so EIGRP ties you to Cisco. If multi-vendor is a possibility, choose OSPF. Both come up constantly in networking interviews, alongside SD-WAN interview questions for WAN roles.
A query for a route went unanswered within the SIA timer, so EIGRP could not determine a new path and tears down the adjacency. It signals that queries are propagating too far, fix it with stub routers and summarisation, not by raising the timer.
EIGRP converges faster when a feasible successor exists, supports unequal-cost load balancing, summarises anywhere, and needs no area hierarchy. OSPF is an open standard, builds a full topology map, and scales through areas. Full comparison in EIGRP vs OSPF.
2 responses to “What is EIGRP? DUAL, Feasible Successors and Configuration”
[…] uses the concept of AREAs do not compare it with AS with basic of EIGRP (Autonomous System), basically, both are designed for different uses. EIGRP for enterprise and OSPF […]
Wow! After all I got a weblog from where
I can in fact get valuable facts regarding my study and knowledge.