EIGRP Named Mode
Last updated
Last updated
R1(config)#router eigrp TEST
# This command will create a local EIGRP named instance
R1(config-router)#address-family ipv4 unicast autonomous-system 5
# This command will create an IPv4 EIGRP routing domain. This is how you set the AS number for named EIGRP configuration
R1(config-router-af)#network [network-address] [wildcard-mask]
# The network command will enable all interfaces that match the network address you input to start sending and receiving EIGRP messages.
R1#show ip eigrp neighbors
# This command will verify that you and your neighbor router have exchanged EIGRP hello packets and have agreed to become neighbors
R1#show ip eigrp topology
# This command will verify that the EIGRP topology has been built. It will also show the feasible successors and the successor routes. This command will show the reported distance and feasible distance of the routes.
R1#show ip eigrp topology all-links
# This command will show you successor routes, feasible successor routes, and even the routes that don't meet the feasibility condition.
R1#show ip protocols
# This command will show you all the routing protocols enabled on your routers and the networks they are advertising.
R1show run | section router eigrp
# This command will show us the running configuration for just our EIGRP configuration.
R1#show ip route eigrp
# This command will show us just the EIGRP learned routes on the global routing table.
R1#show ip eigrp interfaces
# This command will show us all the interfaces that are participating in EIGRP