Penguin
Annotated edit history of EIGRP version 6, including all changes. View license author blame.
Rev Author # Line
4 LindsayDruett 1 !!!EIGRP
2
3 Enhanced Interior Gateway Routing Protocol (EIGRP) is an interior gateway protocol suited for many different topologies and media. In a well designed network, EIGRP scales well and provides extremely quick convergence times with minimal network traffic.
4
5 EIGRP is a routing protocol developed by [CiscoSystems] and has only been used on Cisco Equipment. This do not mean to say that someone can't develop Zebra to run EIGRP as another routing protocol.
6
7 [Information about EIGRP from Cisco Systems|http://www.cisco.com/en/US/tech/tk365/tk207/technologies_white_paper09186a0080094cb7.shtml]
8 ----
9 !!EIGRP Configuration on Cisco Routers
10
11 Global Router Configurations
12
13 Router(config)#__router eigrp__ ''<autonomous-system-number>''
14 ''- Starts the EIGRP process with the specified AS Number.''
6 AntonSmith 15 Router(config-router)#__network__ ''<network> <wildcard-mask>''
5 AntonSmith 16 ''- Specifies the networks EIGRP will form adjacencies over (and advertise).''
4 LindsayDruett 17 Router(config-router)#__no auto-summary__
18 ''- Given a hierarchial addressing design, disables to automatic summarization''
19 ''to the IANA network address.''
20 Router(config-router)#__eigrp stub <receive-only/connected/static/summary>__
21 ''- Used on small-capacity routers in a hub-and-spoke WAN environment.''
22 ''- The router has no neighbors and accesses the network through a distribution layer router.''
23 ''- Only a small routing table is required at the stub router,''
24 ''which is provided with a default route to the advertising ABR.''
25 Router(config-router)#__variance__ ''<multiplier-number>''
26 ''- Allows unequal-cost paths to load balance.''
27
28 Interface Level Configurations
29
30 Router(config-if)#__ip summary-address eigrp__ ''<autonomous-system-number> <address> <mask>''
31 ''- Enables you to summarize the networks manually, having disabled automatic summarization.''
32 Router(config-if)#__bandwidth__ ''<Line-speed>''
33 ''- Issued at the interface level and a logical construct to determine the real bandwidth manually.''
34 Router(config-if)#__ip bandwidth-percent eigrp__ ''<autonomous-system-number> <percent>''
35 ''- Enables you to change the bandwidth percentage.''
36 ''- EIGRP, by default, will only take up to 50% of bandwidth.''
37 Router(config-if)#__ip hello-interval eigrp__ ''<autonomous-system-number> <seconds>''
38 ''- Changes how often the Hello is sent out of an interface.''
39 Router(config-if)#__ip hold-time eigrp__ ''<autonomous-system-number> <seconds>''
40 ''- This defines how long the router believes its neighbor to be alive withour hearing a hello from the neighbor.''
41 ''- This setting is not automatically changed when the hello-interval timer is changed.''
42
43 Operation Verification Commands
44
45 Router#__show ip eigrp neighbors__
46 ''- Displays information drawn from the neighbor table.''
47 Router#__show ip eigrp topology__
48 ''- Displays information drawn from the topology table.''
49 Router#__show ip eigrp traffic__
50 ''- Shows the EIGRP traffic passing through the router.''
51 Router#__show ip protocols__
52 ''- Enables you to view the IP routing protocol configuration on the router.''
53 Router#__show ip route__
54 ''- Shows detailed information about the networks the router is aware and the preferred paths to those networks.''
55 ''- Also gives the next logical hop as the next step in the path.''
56
57 Troubleshooting Commands
58
59 ''With troubleshooting using debug, if you're connected via the console port, turn on console logging (Router(config)#__logging console__) or if connected by virtual terminal, turn on the logging monitor (Router#__term mon__)''
60
61 Router#__debug eigrp packet__
62 ''- Shows the packets sent and received by the router.''
63 Router#__debug eigrp neighnors__
64 ''- Shows the Hello packets sent and received by the router and the neighbors discovered by this process.''
65 Router#__debug ip eigrp route__
66 ''- Shows dynamic changes made to the routing table.''
67 Router#__debug ip eigrp summary__
68 ''- Shows the process taken when a summary is changed on the router.''
69
70 ----
71 !!Components of EIGRP
72
73 __Protocol-Dependent Modules__
74 *EIGRP functions as the routing protocol for IP, !AppleTalk, and IPX. A different routing table is maintained for each Layer 3 protocol.
75
76 __RTP__
77 *EIGRP uses both multicast and unicast addressing. Some of these packets are sent reliably using RTP, meaning that they require an acknowledgement. These packets are also sent with sequence numbers to make the transmission of data reliable. Hellos and ACKs do not require acknowledgement, but the incremental updates cannot be anticipated. Therefore, the update, query, and reply packets must be acknowledged by the receiving neighbor or the packet is retransmitted up to 16 times.
78
79 __Neighbor Discovery and Recovery__
80 *EIGRP operates between neighbors that share routing tables and information about the state of their connections. In this way, the routing protocol localizes as much information as posible, reducing the bandwidth and CPU requirements of the network and speeding up convergence.
81
82 __DUAL__
83 *EIGRP uses DUAL to maintain the network databases. It selects the shortest path to a destination and then maintains a backup path if available, making network convergence almost instantaneous. Using the terminology for EIGRP, the term ''successor'' refers to the path to a destination. The successor is chosen using DUAL from all of the known paths or feasible successors to the end destination. If the selected path dies for any reason, an alternate route is chosen from the feasible successors. If a feasible successor is found, the route stays in passive mode, and there is no disruption to the network. However, if an alternate path is not immediately available, the router queries its neighbors, placing the route in active mode.
84
85 ----
86 !!EIGRP Terms
87
88 |Neighbor|A router running EIGRP that is directly connected.
89 |Neighbor table|A list of every neighbor, including the IP address, the outgoing interface, the holdtime, smooth round-trip time (SRTT), and uptime, or how long since the neighbor was added to the table. The table is built from information on Hellos recieved from adjacent routers (neighbors)
90 |Route table|The routing table, or list of available networks and the best paths. A path is moved from the topology table to the routing table when a feasible successor is identified.
91 |Topology table|A table that contains all the paths advertised by neighbors to all known networks. This is a list of all the successors, feasible successors, the feasible distance, the advertised distance, and the outgoing interface. DUAL acts on the topology table to determine successors and feasible successors by which to build a routing table.
92 |Hello|Messages used to find and maintain neighbors in the topology table. They are sent periodically and are sent unreliably.
93 |Update|An EIGRP packet containing change of information about the network. It is sent reliably. It is ent only when there is a change in the network to affected routers.%%%When a neighbor first comes up.%%%When a neighbor transitions from active to passive for a destination.%%%When there is a change in calculated metric for a destination.
94 |Query|Sent from the router when it loses a path to a network. If there is no alternate router (feasible successor), it will send out queries to neighbors inquiring whether they have a feasible successor. This makes the route state change to active. The queries are sent reliably.
95 |Reply|A response to the query. If a router has no information to send in a reply, it will send queries to all its neighbors. A unicast is sent reliably.
96 |ACK|A hello packet with no data that is an acknowledgment of packets sent reliably.
97 |Holdtime|Value set in the Hello packet. It determines how long the router waits for Hellos from a neighbor before declaring it unavailable. This information is held in the neighbor table.
98 |Smooth Round-Trip Time (SRTT)|The time that the router waits after sending a packet reliably to hear an acknowledgement. This is held in the neighbor and is used to calculate the RTO.
99 |Retransmission Timeout (RTO)|Timer calculated in reference to the SRTT. RTO determines how long the router waits for an ACK before retransmitting the packet.
100 |Reliable Transport Protocol (RTP)|Mechanism used to determine requirement that the packets be delivered in sequence and garanteed.
101 |Diffusing Update Algorithm (DUAL)|An algorithm performed on the topology table to converge the network. It is based on a router detecting a network change within a finite time, with the change being sent reliably and in sequence. As the algorith is calculated simultaneously, in order, and within a finite time frame on all affected routers, it ensures a loop-free network.
102 |Advertised Distance (AD)|The cost of the path to the remote network from the neighbor (the metric for the next-hop router).
103 |Feasible Distance (FD)|The lowest-cost distance (metric) to a remote network.
104 |Feasible Condition (FC)|When a neighbor reports a path cost (AD) that is lower than the router's FD to a network.%%%The neighbor's (next-hop router's) path has a lower metric than the router's path.
105 |Feasible Successor (FS)|The neighbor reporting the AD that is lower than the router's FD becomes the feasible successor. the next-hop router that meets the FC.
106 |Successor|The next-hop router that passes the FC. It is chosen from the FSs as having the lowest metric to the remote network.
107 |Stuck in Active (SIA)|State reached when a router has sent out network packets and is waiting for ACKs from it's neighbors. The route is active untils all the ACKs have been received. If they do not appear after a certain time, the router is SIA for the route.
108 |Query Scoping|Network design to limit the scope of the query range, that is, how far the query is allowed to propagate in search of a Feasible Successor. This is necessary to prevent SIA, which can cause multiple problems for the network.
109 |Active|Route state when there is a network change, but after examining the topology table, no FS is found. The route is set to active mode, and the router queries its neighbors for alternate routes.
110 |Passive|An operational route is passive. If the path is lost, the router examines the topology table to find an FS. If there is an FS, it is placed in the routing table; otherwise, the router queries its neighbors, sending the route into active mode.
111
112
113 ----
114 CategoryNetworking