Lab-Implement-Advanced-Eigrp
Lab-Implement-Advanced-Eigrp
Instructor Note: Red font color or gray highlights indicate text that appears in the instructor copy only.
Topology
Addressing Table
Device Interface IP Address Subnet Mask
R1
G0/0/1 192.168.3.1 255.255.255.0
R1
S0/1/0 10.13.0.1 255.255.255.0
R2 G0/0/0 10.12.0.2 255.255.255.0
R2
G0/0/1 10.23.0.2 255.255.255.0
R3 G0/0/0 10.23.0.3 255.255.255.0
R3
S0/1/0 10.13.0.3 255.255.255.0
R3
Loopback0 172.16.3.1 255.255.255.0
D1 G1/0/11 192.168.3.2 255.255.255.0
D1
Loopback0 192.168.1.1 255.255.255.0
D1
Loopback1 192.168.1.1 255.255.255.0
D1
Loopback2 192.168.0.1 255.255.255.0
2020 - 2024 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 1 of 24 www.netacad.com
Lab - Implement Advanced EIGRP
Objectives
Part 1: Build the Network and Configure Basic Device Settings
Part 2: Implement EIGRP for IPv4
Part 3: Implement Advanced Features
Instructions
Router R1
hostname R1
no ip domain lookup
banner motd # R1, Implement Advanced EIGRP for IPv4 Features #
line con 0
exec-timeout 0 0
logging synchronous
exit
line vty 0 4
privilege level 15
exec-timeout 0 0
password cisco123
login
exit
!
interface g0/0/0
ip address 10.12.0.1 255.255.255.0
no shutdown
exit
interface s0/1/0
ip address 10.13.0.1 255.255.255.0
no shutdown
exit
interface g0/0/1
ip address 192.168.3.1 255.255.255.0
no shutdown
2020 - 2024 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 2 of 24 www.netacad.com
Lab - Implement Advanced EIGRP
exit
end
Router R2
hostname R2
no ip domain lookup
banner motd # R2, Implement Advanced EIGRP for IPv4 Features #
line con 0
exec-timeout 0 0
logging synchronous
exit
line vty 0 4
privilege level 15
exec-timeout 0 0
password cisco123
login
exit
!
interface g0/0/0
ip address 10.12.0.2 255.255.255.0
no shutdown
exit
interface g0/0/1
ip address 10.23.0.2 255.255.255.0
no shutdown
exit
end
Router R3
hostname R3
no ip domain lookup
banner motd # R3, Implement Advanced EIGRP for IPv4 Features #
line con 0
exec-timeout 0 0
logging synchronous
exit
line vty 0 4
privilege level 15
exec-timeout 0 0
password cisco123
login
transport input telnet
exit
interface g0/0/0
ip address 10.23.0.3 255.255.255.0
2020 - 2024 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 3 of 24 www.netacad.com
Lab - Implement Advanced EIGRP
no shutdown
exit
interface s0/1/0
ip address 10.13.0.3 255.255.255.0
no shutdown
exit
interface loopback 0
ip address 172.16.3.1 255.255.255.0
no shutdown
exit
end
Switch D1
hostname D1
no ip domain lookup
ip routing
banner motd # D1, Implement Advanced EIGRP for IPv4 Features #
line con 0
exec-timeout 0 0
logging synchronous
exit
line vty 0 4
privilege level 15
exec-timeout 0 0
password cisco123
login
exit
interface range g1/0/1-24
shutdown
exit
interface g1/0/11
no switchport
ip address 192.168.3.2 255.255.255.0
no shutdown
exit
interface loopback 0
ip address 192.168.2.1 255.255.255.0
no shutdown
exit
interface loopback 1
ip address 192.168.1.1 255.255.255.0
no shutdown
exit
interface loopback 2
2020 - 2024 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 4 of 24 www.netacad.com
Lab - Implement Advanced EIGRP
R2# config t
Enter configuration commands, one per line. End with CNTL/Z.
R2(config)# router eigrp 98
R2(config-router)# network 10.12.0.0 0.0.0.255
R2(config-router)# network 10.23.0.0 0.0.0.255
R2(config-router)# exit
R2(config)# end
R3# config t
Enter configuration commands, one per line. End with CNTL/Z.
R3(config)# router eigrp 98
R3(config-router)# network 10.23.0.0 0.0.0.255
R3(config-router)# network 10.13.0.0 0.0.0.255
R3(config-router)# network 172.16.3.0 0.0.0.255
R3(config-router)# exit
R3(config)# end
D1# config t
Enter configuration commands, one per line. End with CNTL/Z.
D1(config)# router eigrp 98
D1(config-router)# network 192.168.3.0 0.0.0.255
2020 - 2024 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 5 of 24 www.netacad.com
Lab - Implement Advanced EIGRP
2020 - 2024 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 6 of 24 www.netacad.com
Lab - Implement Advanced EIGRP
2020 - 2024 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 7 of 24 www.netacad.com
Lab - Implement Advanced EIGRP
2020 - 2024 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 8 of 24 www.netacad.com
Lab - Implement Advanced EIGRP
b. For this lab, the timers on R1 interface G0/0/0 and S0/1/0 need to be adjusted to send hellos every 10
seconds and establish a hold time of 30 seconds. EIGRP is unique in that each interface can have a
customized hello-interval and hold-time. The times are not needed to match between the ends of a link.
Change the timers using the ip hello-interval eigrp ASN seconds and the ip hold-time eigrp ASN
seconds interface configuration commands.
R1# config t
Enter configuration commands, one per line. End with CNTL/Z.
R1(config)# interface g0/0/0
R1(config-if)# ip hello-interval eigrp 98 10
R1(config-if)# ip hold-time eigrp 98 30
R1(config-if)# exit
R1(config)# interface s0/1/0
R1(config-if)# ip hello-interval eigrp 98 10
R1(config-if)# ip hold-time eigrp 98 30
R1(config-if)# exit
R1(config)# end
c. To verify that the changes were made, check the output of the show ip eigrp interfaces detail
command.
R1# show ip eigrp interfaces detail
EIGRP-IPv4 Interfaces for AS(98)
Xmit Queue PeerQ Mean Pacing Time Multicast
Pending
Interface Peers Un/Reliable Un/Reliable SRTT Un/Reliable Flow
Timer Routes
Gi0/0/0 1 0/0 0/0 1 0/050 0
Hello-interval is 10, Hold-time is 30
Split-horizon is enabled
Next xmit serial <none>
Packetized sent/expedited: 5/1
Hello's sent/expedited: 84/2
Un/reliable mcasts: 0/5 Un/reliable ucasts: 7/3
Mcast exceptions: 0 CR packets: 0 ACKs suppressed: 0
Retransmissions sent: 2 Out-of-sequence rcvd: 0
Topology-ids on interface - 0
Authentication mode is not set
Topologies advertised on this interface: base
Topologies not advertised on this interface:
2020 - 2024 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 9 of 24 www.netacad.com
Lab - Implement Advanced EIGRP
Split-horizon is enabled
Next xmit serial <none>
Packetized sent/expedited: 4/0
Hello's sent/expedited: 87/2
Un/reliable mcasts: 0/0 Un/reliable ucasts: 6/5
Mcast exceptions: 0 CR packets: 0 ACKs suppressed: 0
Retransmissions sent: 0 Out-of-sequence rcvd: 0
Topology-ids on interface - 0
Authentication mode is not set
Topologies advertised on this interface: base
Topologies not advertised on this interface:
b. On R1, configure a summary of the networks between R1 and D1, as well as the networks on D1 on the
interfaces connecting to R3 and R2.
Open configuration window
R1# conf t
2020 - 2024 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 10 of 24 www.netacad.com
Lab - Implement Advanced EIGRP
c. Now examine the routing table on R3 again using the show ip route eigrp | begin Gateway command.
Open configuration window
In the output, you now see a single route taking the place of what had been four distinct routes.
R3# show ip route eigrp | begin Gateway
Gateway of last resort is not set
2020 - 2024 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 11 of 24 www.netacad.com
Lab - Implement Advanced EIGRP
d. Verify that R1 sees switch D1 as a stub by examining the output of the show ip eigrp neighbor detail
command.
Open configuration window
e. Issue the shutdown command on R2 interface G0/0/1. Take note of the timestamp on the syslog
message reporting that the interface is down.
f. On switch D1, issue the show ip eigrp events command. You will see that no query was received
looking for the 10.23.0.0/24 network. The query was stopped at R1, speeding up the convergence
process.
2020 - 2024 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 12 of 24 www.netacad.com
Lab - Implement Advanced EIGRP
b. Our intent is to change the configuration at R2 so that R3 only learns about the 10.12.0.0/24 network from
R1. Create an access list that denies the 10.12.0.0/24 network and permits all other networks.
Open configuration window
R2# config t
2020 - 2024 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 13 of 24 www.netacad.com
Lab - Implement Advanced EIGRP
d. On R3, issue the show ip route eigrp | begin Gateway command. As you can see, the successor for the
10.12.0.0/24 network has changed to R1 at 10.13.0.1.
Open configuration window
Note: To find out how the router is configured, look at the interfaces to identify the type of router and how many
interfaces the router has. There is no way to effectively list all the combinations of configurations for each router
class. This table includes identifiers for the possible combinations of Ethernet and Serial interfaces in the device.
The table does not include any other type of interface, even though a specific router may contain one. An example
of this might be an ISDN BRI interface. The string in parenthesis is the legal abbreviation that can be used in
Cisco IOS commands to represent the interface.
2020 - 2024 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 14 of 24 www.netacad.com
Lab - Implement Advanced EIGRP
end of document
Router R1
R1# show run
Building configuration...
2020 - 2024 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 15 of 24 www.netacad.com
Lab - Implement Advanced EIGRP
Router R2
R2# show run
Building configuration..
2020 - 2024 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 16 of 24 www.netacad.com
Lab - Implement Advanced EIGRP
hostname R2
!
boot-start-marker
boot-end-marker
!
no aaa new-model
!
no ip domain lookup
!
login on-success log
!
subscriber templating
!
!
multilink bundle-name authenticated
!
spanning-tree extend system-id
!
!
redundancy
mode none
!
interface GigabitEthernet0/0/0
ip address 10.12.0.2 255.255.255.0
negotiation auto
!
interface GigabitEthernet0/0/1
ip address 10.23.0.2 255.255.255.0
negotiation auto
!
router eigrp 98
distribute-list EIGRP-FILTER out GigabitEthernet0/0/1
network 10.12.0.0 0.0.0.255
network 10.23.0.0 0.0.0.255
!
ip forward-protocol nd
no ip http server
ip http secure-server
!
ip access-list standard EIGRP-FILTER
deny 10.12.0.0 0.0.255.255
permit any
!
control-plane
!
banner motd ^C R2, Implement Advanced EIGRP for IPv4 Features ^C
!
line con 0
2020 - 2024 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 17 of 24 www.netacad.com
Lab - Implement Advanced EIGRP
exec-timeout 0 0
logging synchronous
transport input none
stopbits 1
line aux 0
stopbits 1
line vty 0 4
exec-timeout 0 0
privilege level 15
password cisco123
login
!
end
Router R3
R3# show run
Building configuration...
2020 - 2024 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 18 of 24 www.netacad.com
Lab - Implement Advanced EIGRP
Switch D1
D1# show run
Building configuration...
2020 - 2024 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 19 of 24 www.netacad.com
Lab - Implement Advanced EIGRP
2020 - 2024 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 20 of 24 www.netacad.com
Lab - Implement Advanced EIGRP
2020 - 2024 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 21 of 24 www.netacad.com
Lab - Implement Advanced EIGRP
interface GigabitEthernet1/0/1
shutdown
!
interface GigabitEthernet1/0/2
shutdown
!
interface GigabitEthernet1/0/3
shutdown
!
interface GigabitEthernet1/0/4
shutdown
!
interface GigabitEthernet1/0/5
shutdown
!
interface GigabitEthernet1/0/6
shutdown
!
interface GigabitEthernet1/0/7
shutdown
!
interface GigabitEthernet1/0/8
shutdown
!
interface GigabitEthernet1/0/9
shutdown
!
interface GigabitEthernet1/0/10
shutdown
!
interface GigabitEthernet1/0/11
no switchport
ip address 192.168.3.2 255.255.255.0
!
interface GigabitEthernet1/0/12
shutdown
!
interface GigabitEthernet1/0/13
shutdown
!
interface GigabitEthernet1/0/14
shutdown
!
interface GigabitEthernet1/0/15
shutdown
!
interface GigabitEthernet1/0/16
shutdown
2020 - 2024 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 22 of 24 www.netacad.com
Lab - Implement Advanced EIGRP
!
interface GigabitEthernet1/0/17
shutdown
!
interface GigabitEthernet1/0/18
shutdown
!
interface GigabitEthernet1/0/19
shutdown
!
interface GigabitEthernet1/0/20
shutdown
!
interface GigabitEthernet1/0/21
shutdown
!
interface GigabitEthernet1/0/22
shutdown
!
interface GigabitEthernet1/0/23
shutdown
!
interface GigabitEthernet1/0/24
shutdown
!
interface GigabitEthernet1/1/1
!
interface GigabitEthernet1/1/2
!
interface GigabitEthernet1/1/3
!
interface GigabitEthernet1/1/4
!
interface Vlan1
no ip address
!
router eigrp 98
network 192.168.0.0
network 192.168.1.0
network 192.168.2.0
network 192.168.3.0
eigrp stub connected summary
!
ip forward-protocol nd
ip http server
ip http secure-server
!
control-plane
2020 - 2024 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 23 of 24 www.netacad.com
Lab - Implement Advanced EIGRP
2020 - 2024 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 24 of 24 www.netacad.com