Chapter 8 - EIGRP Advanced Config and Troubleshooting Flashcards
Verify Automatic Summarization is Disabled
show ip protocols
Verify Routes are Not Automatically Summarized
show ip route eigrp
Automatic Summarization - Configure
#router eigrp 1 #auto-summary
Verify Summary Route in Topology Table
show ip eigrp topology all-links
Loopback Interfaces
#int lo2 #ip add 192.168.2.1 255.255.255.0
#router eigrp 1 #network 192.168.2.0
Calculating a Summary Route
= a /22 or 255.255.252.0 subnet mask.
Summary Roue - Configure Interface
#int s0/0/0 #ip summary-address eigrp 1 192.168.0.0 255.255.252.0
Static Default Route Configuration and Propagation
#ip route 0.0.0.0 0.0.0.0 s0/1/0 #router eigrp 1 #redistribute static
Verify Default Routes
show ip roue (look for ‘D*EX 0.0.0.0/0’)
IPv6 Loopback interfaces - Configure
#int lo11 #ipv6 add 2001:db8:acad:1::1/64 #ipv6 eigrp 2 #int lo12 #ipv6 add 2001:db8:acad:2::1/64 #ipv6 eigrp 2
IPv6 Manually Summary - Configure
#int s0/0/0 #ipv6 summary-address eigrp 2 2001:db8:acad::/48 #int s0/0/1 #ipv6 summary-address eigrp 2 2001:db8:acad::/48
Bandwidth Utilization with EIGRP - Configure
#int s0/0/0 #ip bandwidth-percent eigrp 1 40
Hello and Hold Timers with EIGRP - Configure
#int s0/0/0 #ip hello-interval eigrp 1 50 #ip hold-time eigrp 1 150
EIGRP Authentication with MD5 - Step 1
Create a Keychain and Key #key chain REMOVE_BEFORE_FLIGHT #key 1 #key-string cisco123 ('super secret string' password)
EIGRP Authentication with MD5 - Step 2
Configure EIGRP Authentication Using Keychain and Key (install on each interface) #int s0/0/0 #ip authentication mode eigrp 1 md5 #ip authentication key-chain eigrp 1 REMOVE_BEFORE_FLIGHT