5.2.3.6 Lab - Troubleshooting Basic EIGRP For IPv4 Swinburne V1.0
5.2.3.6 Lab - Troubleshooting Basic EIGRP For IPv4 Swinburne V1.0
0
Topology
LoopBack0
Serial Cables
already
connected
aa
Fa0/1 Fa0/0
PC Ethernet PC VAN
© 2013 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 1 of 9
Lab – Troubleshooting Basic EIGRP for IPv4
Addressing Table
EIGRP
Device Default Gateway
Router ID Interface IP Address
192.168.1.1/24
R1 1.1.1.1 Fa0/1 N/A
192.168.12.1/30
S0/0/0 (DCE) N/A
192.18.13.1/30
S0/0/1 N/A
R2 2.2.2.2
192.168.12.2/30
S0/0/0 N/A
192.168.23.1/30
S0/0/1 (DCE) N/A
192.168.3.1/24
R3 3.3.3.3 G0/0 N/A
192.168.13.2/30
S0/0/0 (DCE) N/A
192.168.23.2/30
S0/0/1 N/A
192.168.1.3/24 192.168.1.1
PC-A NIC
192.168.2.1/24
PC-B Loopback0 on R2
192.168.3.3/24 192.168.3.1
PC-C NIC
© 2013 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 2 of 9
Lab – Troubleshooting Basic EIGRP for IPv4
Objectives
Part 1: Build the Network and Load Device Configurations
Part 2: Troubleshoot Layer 3 Connectivity
Part 3: Troubleshoot EIGRP for IPv4
Background / Scenario
The Enhanced Interior Gateway Routing Protocol (EIGRP) is an advanced distance vector routing protocol
developed by Cisco Systems. EIGRP routers discover neighbors and establish and maintain adjacencies with
neighbor routers using Hello packets. An EIGRP router assumes that as long as it is receiving Hello packets
from a neighboring router, that neighbor is up and its routes remain viable.
EIGRP for IPv4 runs over the IPv4 network layer, communicating with other EIGRP IPv4 peers, and
advertising only IPv4 routesIn this lab, you will troubleshoot a network that runs EIGRP for IPv4. This network
is experiencing problems and you are tasked with finding the problems and correcting them.
Notes:
1. Make sure that the routers have been erased and have no startup
configurations. If you are unsure, contact your instructor.
2. Sample output is provided for the show commands. Your show output may
differ depending on your Lab Environment and the PCs, routers and switches
you are using.
3. It is important to be able to read and understand Routing Tables, in
preparation for the Network Topology Test.
4. To troubleshoot the R2 router you will need to use the Extended Ping to
specify the Loopback 0 IP address. Please ask your Instructor to show you
how to use the Extended Ping.
© 2013 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 3 of 9
Lab – Troubleshooting Basic EIGRP for IPv4
© 2013 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 4 of 9
Lab – Troubleshooting Basic EIGRP for IPv4
Router R2 Configuration:
conf t
hostname R2
no ip domain lookup
interface loopback0
ip address 192.168.2.1 255.255.255.0
interface Serial0/0/0
ip address 192.168.12.2 255.255.255.252
no shutdown
interface Serial0/0/1
bandwidth 128
ip address 192.168.23.1 255.255.255.0
no shutdown
router eigrp 1
network 192.168.12.0 0.0.0.3
network 192.168.23.0 0.0.0.3
passive-interface FastEthernet0/0
eigrp router-id 2.2.2.2
no shutdown
banner motd @
Student ID @
line con 0
logging synchronous
line vty 0 4
password cisco
login
transport input all
end
© 2013 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 5 of 9
Lab – Troubleshooting Basic EIGRP for IPv4
Router R3 Configuration:
conf t
hostname R3
no ip domain lookup
interface FastEthernet0/0
ip address 192.168.3.1 255.255.255.0
interface Serial0/0/0
ip address 192.168.13.2 255.255.255.252
no shutdown
interface Serial0/0/1
bandwidth 128
ip address 192.168.23.2 255.255.255.252
no shutdown
router eigrp 1
network 192.168.3.0
network 192.168.13.0 0.0.0.3
passive-interface FastEthernet0/0
eigrp router-id 3.3.3.3
banner motd @
Student ID @
line con 0
logging synchronous
line vty 0 4
password cisco
login
transport input all
end
© 2013 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 6 of 9
Lab – Troubleshooting Basic EIGRP for IPv4
Step 1: Verify that the interfaces listed in the Addressing Table are active and configured with
correct IP address information.
a. Issue the show ip interface brief command on all routers to verify that the interfaces are in an up/up
state. Record your findings.
____________________________________________________________________________________
____________________________________________________________________________________
____________________________________________________________________________________
b. Issue the show run interface command to verify IP address assignments on all router interfaces.
Compare the interface IP addresses against the Addressing Table and verify the subnet mask
assignments.
____________________________________________________________________________________
____________________________________________________________________________________
____________________________________________________________________________________
____________________________________________________________________________________
c. Issue the show interface interface-id command to verify bandwidth setting on the serial interfaces.
Record your findings.
____________________________________________________________________________________
____________________________________________________________________________________
____________________________________________________________________________________
d. Issue the show controllers interface-id command to verify that clock rates have been set to 128 Kb/s on
all DCE serial interfaces. Issue the show interface interface-id command to verify bandwidth setting on
the serial interfaces. Record your findings.
____________________________________________________________________________________
____________________________________________________________________________________
____________________________________________________________________________________
e. Resolve all problems found. Record the commands used to correct the issues.
____________________________________________________________________________________
____________________________________________________________________________________
____________________________________________________________________________________
____________________________________________________________________________________
____________________________________________________________________________________
© 2013 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 7 of 9
Lab – Troubleshooting Basic EIGRP for IPv4
____________________________________________________________________________________
____________________________________________________________________________________
____________________________________________________________________________________
____________________________________________________________________________________
____________________________________________________________________________________
Step 2: Verify that all interfaces are assigned to EIGRP for IPv4.
a. Issue the show ip protocols command to verify that EIGRP is running and that all networks are
advertised. This command also allows you to verify that the router ID is set correctly, and that the LAN
interfaces are set as passive interfaces. Record your findings.
____________________________________________________________________________________
____________________________________________________________________________________
____________________________________________________________________________________
b. Make the necessary changes based on the output from the show ip protocols command. Record the
commands that were used to correct the issues.
____________________________________________________________________________________
____________________________________________________________________________________
____________________________________________________________________________________
____________________________________________________________________________________
____________________________________________________________________________________
c. Re-issue the show ip protocols command to verify that your changes had the desired effect.
© 2013 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 8 of 9
Lab – Troubleshooting Basic EIGRP for IPv4
Reflection
Why would you troubleshoot EIGRP for IPv4 and EIGRP for IPv6 separately?
_______________________________________________________________________________________
_______________________________________________________________________________________
© 2013 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 9 of 9