Skip to content

EIGRP

netverdict models EIGRP as a deterministic route solver for classic lab topologies. The model captures the configuration and metric behaviour users usually need, without claiming to reproduce Cisco’s full DUAL event machine.

AreaLevelNotes
IPv4 EIGRPBehaviour modelNetwork selection, neighbours implied by shared segments, route computation.
Metric calculationSupportedBandwidth, delay, reliability, load, and MTU fields are represented where available.
Autonomous systemSupportedRouters must share the same AS to participate together.
Passive interfacesSupportedSuppresses neighbour formation on selected interfaces.
DUAL transitionsNot modelledFeasible successor event timing is simplified into deterministic route solving.
StandardCoverageNotes
RFC 7868Behaviour modelEIGRP route selection and metric concepts are represented for simulation.
FeatureStatusNotes
router eigrp <asn>SupportedCreates the process.
network <prefix>SupportedSelects participating interfaces.
Wildcard network formSupportedCisco-style wildcard matching.
passive-interfaceSupportedBlocks adjacency on the interface.
K valuesConfig modelParsed/stored where supported; runtime uses the implemented metric subset.
SummarisationPartialSummary config may be preserved; full event behaviour is not the focus.
RedistributionPartialShared policy surfaces exist; EIGRP redistribution coverage is not as deep as OSPF/BGP.
CommandIOS-styleJunos-styleVyOS-styleNotes
router eigrp 100Supportedn/an/aCisco-family process mode.
network 10.0.0.0 0.0.255.255Supportedn/an/aInterface selection.
passive-interface GigabitEthernet0/0Supportedn/an/aSuppresses adjacency.
show ip eigrp neighborsSupportedn/an/aModel-derived neighbour view.
show ip route eigrpSupportedn/an/aEIGRP-learned routes.

The EIGRP solver is deterministic: it computes the reachable graph and installs the best route using the modelled composite metric. It is meant for teaching, troubleshooting, and config analysis, not for validating every transient DUAL state during a failure.

Canonical example
configure terminal
router eigrp 100
network 10.0.0.0 0.0.255.255
passive-interface Loopback0
end
show ip eigrp neighbors
show ip route eigrp

Vendor styles

IOS-style
router eigrp 100
network 10.0.0.0 0.0.255.255
passive-interface Loopback0
FRR-style
router eigrp 100
network 10.0.0.0/16
passive-interface lo
Junos / VyOS note

Junos does not provide native EIGRP. VyOS EIGRP support is not treated as a primary vendor target in the current netverdict model.

Stub routing, unequal-cost load balancing, named-mode EIGRP, full DUAL query / reply timing, and vendor debug output are not complete support claims today.