EIGRP Fundamentals - CCNP ENSARI
EIGRP Fundamentals + Terminology
EIGRP Terminology
| Term | Definition |
|---|---|
| Successor Route | The route with the lowest path metric to reach a destination. |
| Successor | The first next-hop router for the successor route. |
| Feasible Distance | The metric value for the lowest-metric path to reach a destination. |
| Reported Distance | Distance reported by a router to reach a prefix. The reported distance value us the feasible distance for the advertising router. |
| Feasibility Condition | For a route to be considered a backup route, the RD recieved for that route must be less than the FD calculated locally. This logic Guarantees a loop-free path. |
| Feasible Successor | A route that satisfies the feasibility condition is maintained as a backup route. |
Forming EIGRP Neighbors
In order to reduce bandwidth consumption on a link EIGRP uses multicast packets since multicasts are only processed by listening groups. In addition, uses Reliable Transport Protocol (RTP) to ensure orderly delivery. EIGRP uses its own IP protocol number 88 and multicast packet where possible of group address 224.0.0.10 or MAC address 01:00:5E:00:00:0A. Forming neighbor adjacencies EIGRP neighbors exchange the entire topology and advertise updates only as topology changes occur.
Before routes are processed an added to the Routing Information Base, EIGRP requires neighborships to form. Routers attempt to become neighbors using parameters such as K values, subnet matches, ASN matches and authentication.
EIGRP Packet Types
EIGRP uses five different packet types to communicate with other EIGRP routers.
| Packet Type | Packet Name | Function |
|---|---|---|
| 1 | Hello | Discovery of EIGRP neighbors and detecting when a neighbor is no longer available. |
| 2 | Request | Get specific information from one or more neighbors. |
| 3 | Update | Transmit routing and reachability information with other EIGRP neighbors. |
| 4 | Query | Sent out to search for another path during convergence. |
| 5 | Reply | Sent in response to a query packet. |
EIGRP Named Mode
EIGRP named configuration provides the benefits of all EIGRP settings residing in one location, supports multiple address families, commands are clear in terms of scope.
EIGRP named mode stores settings in three hierarchical subsections:
- Address Family = Submode contains settings that are relevant to the global EIGRP AS operations
- Interface = Submode containing settings relevant to the interface, which includes hello advertisement intervals, split-horizon, authentication and summary route advertisements.
- Topology = Submode containing settings relevant to the EIGRP database, including route redistribution and administrative distances.
EIGRP Network Statements
The process for enabling EIGRP interfaces on a specific instance.
# router eigrp process-name
- initializes EIGRP process
# address-family {IPv4 | IPv6} {unicast | vrf vrf-name} autonomous-system as-number
- initialize EIGRP instance for specific address family
# network network mask
- enable EIGRP on interfaces
Verification of EIGRP Interfaces
# show ip eigrp interfaces [{interface-id [detail] | detail}]
Authentication
Authentication is a mechanism for ensuring that only authorized routers are eligible to become EIGRP neighbors. Create the a keychain and then enable EIGRP authentication on the interfaces.
# key chain key-chain-name
- command used to create key chain
# key key-number
- command used to identify key sequence
# key-string password
- command used to specify pre-shared password
# router eigrp process-name
# address-family {IPv4 | IPv6} {unicast | vrf vrf-name} autonomous-system as-number
# af-interface default
# authentication mode [md5 | hmac-sha-256 password]
# authentication key-chain password
Lacoste, Raymond; Edgeworth, Brad (2020.) (CCNP Enterprise Advanced Routing ENSARI, Official Cert Guide.)









