* Neighbor Table: Stores data about the neighboring routers, i.e. those directly accessible through directly connected interfaces. * Topology Table: Confusingly named, this table does not store an overview of the complete network topology; rather, it effectively contains only the aggregation of the routing tables gathered from all directly connected neighbors. This table contains a list of destination networks in the EIGRP-routed network together with their respective metrics. Also for every destination, a successor and a feasible successor are identified and stored in the table if they exist. Every destination in the topology table can be marked either as "Passive", which is the state when the routing has stabilized and the router knows the route to the destination, or "Active" when the topology has changed and the router is in the process of (actively) updating its route to that destination. * Routing table: Stores the actual routes to all destinations; the routing table is populated from the topology table with every destination network that has its successor and optionally feasible successor identified (if unequal-cost load-balancing is enabled using the variance command). The successors and feasible successors serve as the next hop routers for these destinations. Unlike most other distance vector protocols, EIGRP does not rely on periodic route dumps in order to maintain its topology table. Routing information is exchanged only upon the establishment of new neighbor adjacencies, after which only changes are sent.
RouterA#show ip route Gateway of last resort is not set C 1.0.0.0/8 is directly connected, serial0/1 C 3.0.0.0/8 is directly connected, serial0/0 C 192.168.1.0/24 is directly connected, loopback0
Configure Eigrp on Router A RouterA#configure terminal RouterA#(config)#router eigrp 100 RouterA#(config-router)#network 1.0.0.0 RouterA#(config-router)#network 3.0.0.0 RouterA#(config-router)#network 192.168.1.0 RouterA#(config-router)#exit RouterA#(config)#
Now verify these configuration on router A with command us under: RouterA#show ip route To check the routing protocol with this command. RouterA#show ip protocols RouterB#show ip route Gateway of last resort is not set C 1.0.0.0/8 is directly connected, serial0/1 C 2.0.0.0/8 is directly connected, serial0/0 C 192.168.2.0/24 is directly connected, loopback0
Configure Eigrp on Router B
RouterB#configure terminal RouterB#(config)#router eigrp 100 RouterB#(config-router)#network 1.0.0.0 RouterB#(config-router)#network 2.0.0.0 RouterB#(config-router)#network 192.168.2.0 RouterB#(config-router)#exit RouterB#(config)# Now verify these configuration on router B with command us under: RouterB#show ip route RouterC#show ip route Gateway of last resort is not set C 2.0.0.0/8 is directly connected, serial1 C 3.0.0.0/8 is directly connected, serial0 C 192.168.3.0/24 is directly connected, loopback0
Configure Eigrp on Router C
RouterC#configure terminal RouterC#(config)#router eigrp 100 RouterC#(config-router)#network 2.0.0.0 RouterC#(config-router)#network 3.0.0.0 RouterC#(config-router)#network 192.168.3.0 RouterC#(config-router)#exit RouterC#(config)#
Now verify these configuration on router C with command us under: RouterC#show ip route |
||||||||||
|
|
||||||||||