0% found this document useful (0 votes)
254 views8 pages

CCNA Certification EIGRP Configuration Lab Simulation

The document describes troubleshooting a network connectivity issue where a new router was added but not receiving routing updates. The issue was fixed by changing the EIGRP AS number on one router and adding the new router's network to the EIGRP configuration on another router.

Uploaded by

ergu vfuko fghui
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
254 views8 pages

CCNA Certification EIGRP Configuration Lab Simulation

The document describes troubleshooting a network connectivity issue where a new router was added but not receiving routing updates. The issue was fixed by changing the EIGRP AS number on one router and adding the new router's network to the EIGRP configuration on another router.

Uploaded by

ergu vfuko fghui
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

CCNA Certification – EIGRP Configuration Lab Simulation

[Link]/[Link]

February 19,
2017

Lab Simulation Question – EIGRP

[Link] has a small network that is using EIGRP as its IGP. All routers should be
running an EIGRP AS number of 12. Router MGT is also running static routing to the ISP.
[Link] has recently adding the ENG router. Currently, the ENG router does not have
connectivity to the ISP router. All other interconnectivity and Internet access for the
existing locations of the company are working properly.

The task is to identify the fault(s) and correct the router configuration(s) to
provide full connectivity between the routers.

Access to the router CLI can be gained by clicking on the appropriate host.
All passwords on all routers are cisco.
IP addresses are listed in the chart below.

MIGT
Fa0/0 – [Link]
S1/0 – [Link]
S0/0 – [Link]
S0/1 – [Link]

1/8
ENG
Fa0/0 – [Link]
Fa1/0 – [Link]
Fa0/1 – [Link]

Parts1
Fa0/0 – [Link]
Fa0/1 – [Link]
S0/0 – [Link]

Parts2
Fa0/0 – [Link]
Fa0/1 – [Link]
S0/1 – [Link]

Answer:
First we should check the configuration of the ENG Router.
Click the console PC “F” and enter the following commands.

2/8
ENG> enable
Password: cisco
ENG# show running-config
Building configuration...
Current configuration : 770 bytes
!
version 12.2
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
hostname ENG
!
enable secret 5 $1$mERr$hx5rVt7rPNoS4wqbXKX7m0
!
interface FastEthernet0/0
ip address [Link] [Link]
duplex auto
speed auto
!
interface FastEthernet0/1
ip address [Link] [Link]
duplex auto
speed auto
!
interface FastEthernet1/0
ip address [Link] [Link]
duplex auto
speed auto
!
router eigrp 22
network [Link]
network [Link]
no auto-summary
!
ip classless
!
line con 0
line vty 0 4
login
!
end
ENG#

From the output above, we know that this router was wrongly configured with an
autonomous number (AS) of 22. When the AS numbers among routers are mismatched,
no adjacency is formed.
(You should check the AS numbers on other routers for sure)
To solve this problem, we simply re-configure router ENG router with the following
commands:

3/8
ENG# conf t
ENG(config)# no router eigrp 22
ENG(config)# router eigrp 12
ENG(config-router)# network [Link]
ENG(config-router)# network [Link]
ENG(config-router)# no auto-summary
ENG(config-router)# end
ENG# copy running-config startup-config

Second we should check the configuration of the MGT Router.


Click the console PC “G” and enter the following commands.

MGT> enable
Password: cisco
MGT# show running-config

Building configuration…
Current configuration : 1029 bytes
!
version 12.2
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
hostname MGT
!
enable secret 5 $1$mERr$hx5rVt7rPNoS4wqbXKX7m0
!
interface FastEthernet0/0
ip address [Link] [Link]
duplex auto
speed auto
!
interface Serial0/0
ip address [Link] [Link]
clock rate 64000
!
interface Serial0/1
ip address [Link] [Link]
clock rate 64000
!
interface Serial1/0
ip address [Link] [Link]
!
interface Serial1/1
4/8
no ip address
shutdown
!
interface Serial1/2
no ip address
shutdown
!
interface Serial1/3
no ip address
shutdown
!
router eigrp 12
network [Link]
network [Link]
network [Link]
network [Link]
no auto-summary
!
ip classless
ip route [Link] [Link] [Link]
!
line con 0
line vty 0 4
login
!
end
MGT#

Notice that it is missing a definition to the network ENG. Therefore we have to add it so
that it can recognize ENG router

MGT# conf t
MGT(config)# router eigrp 12
MGT(config-router)# network [Link]
MGT(config-router)# end
MGT# copy running-config startup-config

Now the whole network will work well. You should check again with ping command from
router ENG to other routers!

In Short:
ENG Router

5/8
ENG>enable
Password: cisco ENG# conf t
ENG(config)# no router eigrp 22
ENG(config)# router eigrp 12
ENG(config-router)# network [Link]
ENG(config-router)# network [Link]
ENG(config-router)# no auto-summary
ENG(config-router)# end
ENG# copy running-config startup-config

MGT Router

MGT>enable
Password: cisco MGT# conf t
MGT(config)# router eigrp 12
MGT(config-router)# network [Link]
MGT(config-router)# end
MGT# copy running-config startup-config

Some Modification in Question


After adding ENG Router, no routing updates are being exchanged between MGT and
the new location. All other inter connectivity for the existing locations of the company
are working properly.
But Internet connection for existing location including Remote1 and Remote2 networks
are not working.

Faults Identified:
1. Incorrect Autonomous System Number configured in ENG Router.
2. MGT Router does not advertise route to the new router ENG.
3. Internet Connection is not working all stations.
We need to correct the above two configuration mistakes to have full connectivity
Steps:
1. ENG Router: Change the Autonomous System Number of ENG
2. Perimiter Router: Add the network address of interface of Permiter that link between
MGT and
ENG.
3. Perimiter Router: Add default route and default-network.
Check the IP Address of S1/0 interface of MGT Router using show running-config
command.

(The interfaced used to connect to the ISP)


!
interface Serial1/0
ip address [Link] [Link]
!

6/8
For Internet sharing we have create a default route, and add default-network
configuration. The IP address is [Link]/30. Then the next hop IP will be [Link].
ENG Router

ENG>enable
Password: cisco ENG# conf t
ENG(config)# no router eigrp 22
ENG(config)# router eigrp 12
ENG(config-router)# network [Link]
ENG(config-router)# network [Link]
ENG(config-router)# no auto-summary
ENG(config-router)# end
ENG# copy running-config startup-config

MGT Router

MGT>enable
Password: cisco MGT# conf t
MGT(config)# router eigrp 12
MGT(config-router)# network [Link]
MGT(config-router)# exit
MGT(config)# ip route [Link] [Link] [Link]
MGT(config)# ip default-network [Link]
MGT(config)# exit
MGT# copy running-config startup-config

Important:
If you refer the topology and IP chart, the MGT Router uses Fa0/0 to connect ENG
Router, S0/0 used to connect Remote1, and S0/1 used to connect Remote2.
Refer to the command show running-config, the command #PASSIVE-INTERFACE will
deny EIGRP updates to specified interface. In that case we need to use #no
passiveinterface to allow the routing updates to be passed to that interface. For example
when used the #show run command and we see the output like below.

!
router eigrp 22
network [Link]
network [Link]
passive-interface FastEthernet 0/0
passive-interface Serial 1/0
no auto-summary
!

Then the command would be

MGT(config)#router eigrp 12
MGT(config-router)#no passive-interface Fa0/0
MGT(config-router)#end

7/8
Also MGT Router connect to the ISP router using Serial 1/0. If you seen passive-interface
s1/0, then do not remove it using #no passive-interface s1/0 command.

Download Cisco Packet Tracer EIGRP Lab .pka file

Download Cisco Packet Tracer EIGRP Lab .pka file


1 file(s) 99.16 KB

Download
This content is locked!
Please support us, use one of the buttons below to unlock the content.

like
tweet
share
follow us
error
or wait 199s

8/8

You might also like