After adding Interior router, no routing updates are being exchanged between Perimeter and the new location. All other inter connectivity 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 configurations 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 Address are listed in the chart below
The Task is to identify the fault(s) and correct the router configurations 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 Address are listed in the chart below
Steps
- Add the network address of Fa0/0 interface of Perimeter router in EIGRP configuration. Because EIGRP neighbor relationship is not possible without the configuring connected interfaces.
Answer
Commands
First we should check the configuration of the Interior Router.
Click the console PC “F” and enter the following commands.
Interior> enable
Password: cisco
Interior# 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 Interior
!
enable secret 5 $1$mERr$hx5rVt7rPNoS4wqbXKX7m0
!
interface FastEthernet0/0
ip address 192.168.77.34 255.255.255.252
duplex auto
speed auto
!
interface FastEthernet0/1
ip address 192.168.60.65 255.255.255.240
duplex auto
speed auto
!
interface FastEthernet1/0
ip address 192.168.60.81 255.255.255.240
duplex auto
speed auto
!
router eigrp 22
network 192.168.77.0
network 192.168.60.0
no auto-summary
!
ip classless
!
line con 0
line vty 0 4
login
!
end
Interior#
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 Interior router with the following commands:
Interior# conf t
Interior(config)# no router eigrp 22
Interior(config)# router eigrp 222
Interior(config-router)# network 192.168.60.0
Interior(config-router)# network 192.168.77.0
Interior(config-router)# no auto-summary
Interior(config-router)# end
Interior# copy running-config startup-config
Second we should check the configuration of the Perimeter Router.
Click the console PC “G” and enter the following commands.
Perimeter> enable
Password: cisco
Perimeter# 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 Perimeter
!
enable secret 5 $1$mERr$hx5rVt7rPNoS4wqbXKX7m0
!
interface FastEthernet0/0
ip address 192.168.77.33 255.255.255.252
duplex auto
speed auto
!
interface Serial0/0
ip address 192.168.36.13 255.255.255.252
clock rate 64000
!
interface Serial0/1
ip address 192.168.60.25 255.255.255.252
clock rate 64000
!
interface Serial1/0
ip address 198.0.18.6 255.255.255.252
!
interface Serial1/1
no ip address
shutdown
!
interface Serial1/2
no ip address
shutdown
!
interface Serial1/3
no ip address
shutdown
!
router eigrp 222
network 192.168.36.0
network 192.168.60.0
network 192.168.85.0
network 198.0.18.0
no auto-summary
!
ip classless
ip route 0.0.0.0 0.0.0.0 198.0.18.5
!
line con 0
line vty 0 4
login
!
end
Perimeter#
Notice that it is missing a definition to the network Interior. Therefore we have to add it so that it can recognize Interior router
Perimeter# conf t
Perimeter(config)# router eigrp 222
Perimeter(config-router)# network 192.168.77.0
Perimeter(config-router)# end
Perimeter# copy running-config startup-config
Now the whole network will work well. You should check again with ping command from router Interior to other routers!
In Short:
Interior Router
Password: cisco Interior# conf t
Interior(config)# no router eigrp 22
Interior(config)# router eigrp 222
Interior(config-router)# network 192.168.60.0
Interior(config-router)# network 192.168.77.0
Interior(config-router)# no auto-summary
Interior(config-router)# end
Interior# copy running-config startup-config
Perimeter Router
Password: cisco Perimeter# conf t
Perimeter(config)# router eigrp 222
Perimeter(config-router)# network 192.168.77.0
Perimeter(config-router)# end
Perimeter# copy running-config startup-config
Download Lab file (requires packet tracer)
https://app.box.com/s/ge2m805g441q3eun4agu
https://app.box.com/s/ge2m805g441q3eun4agu
Some Modification in Question
After adding Interior router, no routing updates are being exchanged between Perimeter 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 Interior router.
2. Perimeter router does not advertise route to the new router Interior.
3. Internet Connection is not working all stations.
We need to correct the above two configuration mistakes to have full connectivity
Steps:
1. Interior Router: Change the Autonomous System Number of Interior
2. Perimiter Router: Add the network address of interface of Permiter that link between Perimeter and Interior.
3. Perimiter Router: Add default route and default-network.
Check the IP Address of S1/0 interface of Perimeter Router using show running-config command. (The interfaced used to connect to the ISP)
interface Serial1/0
ip address 198.0.18.6 255.255.255.252
!
For Internet sharing we have create a default route, and add default-network configuration. The IP address is 198.0.18.6/30. Then the next hop IP will be 198.0.18.5.
Interior Router
Interior>enable
Password: cisco Interior# conf t
Interior(config)# no router eigrp 22
Interior(config)# router eigrp 222
Interior(config-router)# network 192.168.60.0
Interior(config-router)# network 192.168.77.0
Interior(config-router)# no auto-summary
Interior(config-router)# end
Interior# copy running-config startup-config
Perimeter Router
Password: cisco Perimeter# conf t
Perimeter(config)# router eigrp 222
Perimeter(config-router)# network 192.168.77.0
Perimeter(config-router)# exit
Perimeter(config)# ip route 0.0.0.0 0.0.0.0 198.0.18.5
Perimeter(config)# ip default-network 198.0.18.0
Perimeter(config)# exit
Perimeter# copy running-config startup-config
Important:
If you refer the topology and IP chart, the Perimeter router uses Fa0/0 to connect Interior 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 <Interface Name> will deny EIGRP updates to specified interface. In that case we need to use #no passive-interface <Interface Name> 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 192.168.77.0
network 192.168.60.0 passive-interface FastEthernet 0/0
passive-interface Serial 1/0 no auto-summary
!
Then the command would be
Perimeter(config)#router eigrp 222
Perimeter(config-router)#no passive-interface Fa0/0 Perimeter(config-router)#end
Also Perimeter 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 Lab file (requires packet tracer)
https://app.box.com/s/xzb7e8chu1417vsoj5t7
Also Perimeter 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 Lab file (requires packet tracer)
https://app.box.com/s/xzb7e8chu1417vsoj5t7
Thanks so much these labs are very helpful
ReplyDeleteyou just need a route back from the isp router to the perimeter router else this simulation will not form full connectivity in any way
ReplyDeletePerimeter(config)# ip route 0.0.0.0 0.0.0.0 198.0.18.5
ReplyDeletePerimeter(config)# ip default-network 0.0.0.0
Perimeter(config)# exit
not ip default-network 198.0.18.0
or you can use this method :
Perimeter(config)# ip route 0.0.0.0 0.0.0.0 198.0.18.5
Perimeter(config)# router eigrp 222
Perimeter(config-router)# network 192.168.77.0
Perimeter(config-router)# redistribute static
Perimeter(config-router)# end
Guy i uploaded 2 lab files above.
ReplyDeleteI downloaded the lab file, but im getting this msg: file is not compatible with this version, i am using Cisco Packet Tracer5, should i upgrade to newer version?? plz help
ReplyDeleteThis comment has been removed by the author.
ReplyDeleteOk, there is something wrong with configuration of S0/0 on ISP router and the same applies to S1/0 of the Perimeter router.
ReplyDeleteInstead of this:
!
interface Serial1/0
ip address 198.0.18.6 255.255.255.252
!
we get this on PT lab file:
!
interface Serial1/0
ip address 198.0.18.6 255.255.255.0
!
In other words /24 not /30 on both serial interfaces of the ISP and Perimeter routers.
After trying mentioned modifications nothing helped. Running config doesn't show if serial 1/0 is passive or not. Any other thoughts of how to establish WEB connection to ISP from any of the PC's?
how to check internet connection after configuring default route? EIGRP lab
ReplyDeleteYou just need to ping the ISP router from another router ex: Remote1 & Remote2
ReplyDeletecan you please share some other links for EIGRP Sim New.pkt ? Thanks
ReplyDeleteplease upload the pkt. file again on another server i couldn't download it anymore
ReplyDeleteI can not download this lab :(
ReplyDeleteI can not download this lab :(
ReplyDeleteCan anyone give a reason why we don't see gateway of last resort set on gateway router even if we configured ip-default network and 0.0.0.0 0.0.0.0 ip add of isp port???....this is in regards to the EIGRP simulation question............I really appreciate for your timely response!
ReplyDeleteThe link
ReplyDeletehttps://app.box.com/s/xzb7e8chu1417vsoj5t7
is out of bandwidth. Please upload to other host.
Thx
Keep the good work.
Hugs
Can someone upload the LAB file... the link is out of bandwidth.
ReplyDeleteThanks
Here is the EIGRP Lab for packet tracer
ReplyDeletehttp://www.4shared.com/get/VVZAbq8M/EIGRP_Sim.html
@Anonymous
ReplyDeleteThank You for the 4shared link
don't we have to configurate "redistribute static" to pass the default route to the other routers?
ReplyDeletei wanna know how to remove the autonomus system number of the router i mean the process
ReplyDeleteHello Guys I hope you will be fine there.Now New CCNA (200-120) and CCNA security (640-554) Vouchers on special discount of 58% for World wide, with six months expiry date till you purchase. Each voucher cost 70USD.
ReplyDeleteDetails Required For CCNA Voucher For Discount Processing:
1-Full Name. 1st Name & Last Name (as you want to appear on certificate & documents)
2-Country.
3-City.
4-State.
5-Pin Code (or Area Code)
6-Residential Address (or where you can collect your Certificate or further correspondence
can be received)
7-Date of birth
Add me on Skype through this information which is written below:
Skype Name: rockon660
you can also email me at this email address which is written below:
madeelqaiser@gmail.com
If you have any Questions feel free to contact me.
Thanks,
Best regards,
Adeel
Dear brother khaled ben hammouda ,
ReplyDeleteThanks a lot for your help . I tried many times & spent too much time but failed but when i tried your 2nd solution redistributed static than it worked . May God bless you & keep you happy ever.
Regards: M.Raheel
But Dear Khaled ,one thing i want to ask that what network IP address will be there in static route instead of 192.168.77.0 ,if the IP address of Perimeter will be different ,i mean to ask why we gave 192.168.77.0 IP ??
ReplyDeleteIf in exam these ip will not be there than which iP will be chosen as .77 network is used by Perimeter & Interior router .
Please help
Regards:M.Raheel
Passed 200-120 exam Today with 958/1000. Do not waste time and money guys only testinside Purchased 100% valid dumps Lab was ACL2 Modifications & EIGRP with few but Same.
ReplyDelete200-120 dumps Testindie Q307 with secondary Key # in cheap price contact me at Mubasher95@Gmail.com
Good Luck!
Firstly I want to commend the folks who put this site together for providing such informative information. However, the network configuration information on the interior router is incorrect for the EIGRP Routing Protocol.
ReplyDeleteThe network ID's for the EIGRP process should be as follows:
router eigrp 222
network 192.168.77.28 0.0.0.3
network 192.168.60.24 0.0.0.3
network 192.168.36.12 0.0.0.3
network 198.0.18.4 0.0.0.3
no auto-summary
Please note you can only advertise network ID's for which the Router has a directly connected interface
The following networks do not exist on the Interior Router (typing the command show ip route connected will identify the true Network/Subnet ID's
router eigrp 222
network 192.168.36.0
network 192.168.60.0
network 192.168.85.0
network 198.0.18.0
Hope this helps; good luck in your Cisco Certification
My apologies I stated Interior earlier; the configuration given is for the Perimeter Router
ReplyDeletePer Cisco website http://www.cisco.com/en/US/tech/tk365/technologies_q_and_a_item09186a008012dac4.shtml#one
ReplyDeleteQ. Does EIGRP require an ip default-network command to propagate a default route?
A. Although EIGRP can propagate a default route using the default network method, it is not required. EIGRP redistributes default routes directly.
So why is the default-network command being used here?
@Anonymous
ReplyDeleteMy thoughts exactly, I thought EIGRP could/can propagate a default route using the default network method.
Hello Dears,
ReplyDeleteThere is something needs to be clarified in the EIGRP Lap attached:
The route 198.0.18.0 is actually missing in the EIGRP 222 on the Perimeter router "it's not as displayed above under show ip route"
You'll find instead another route 192.168.85.0 (Don't know what this has to do with the configurations) ??
Please advise?
BR
Hussein
This comment has been removed by a blog administrator.
ReplyDeleteThis comment has been removed by a blog administrator.
ReplyDeleteThis comment has been removed by a blog administrator.
ReplyDeletei just passed exam scored 1000/1000 … Thanks to 9tut, examtut and spintry…. for the excellent resources ….
ReplyDeletesims : ACL 1 , 2 & EIGRP
Must read Etherchannel: for new Q,,,,
Hi all, I'm not clear about below.
ReplyDeleteAlso Perimeter 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.
Dose it mean, remove only ==> Perimeter(config-router)#no passive-interface Fa0/0.
And, must be keep ==> passive-interface Serial 1/0, right?
So, after show run shoos be same below, right?
!
router eigrp 222
network 192.168.77.0
network 192.168.60.0
passive-interface Serial 1/0
no auto-summary
!
Plezzzzzzzzzzzzzzzzzzzz
I just used..
ReplyDeleteip route 0.0.0.0 0.0.0.0 198.0.18.5
And it's working..
Thanks a lot
i have activated eigrp 222 on isp router and it works fine
ReplyDeletei think ip default-network .... or .... ip route 0.0.0.0
ReplyDeleteand no need for redistribute because we need it only when ospf running
؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟
Address: 198.0.18.6 11000110.00000000.00010010.000001 10
ReplyDeleteNetmask: 255.255.255.252 = 30 11111111.11111111.11111111.111111 00
Wildcard: 0.0.0.3 00000000.00000000.00000000.000000 11
=>
Network: 198.0.18.4/30 11000110.00000000.00010010.000001 00 (Class C)
Broadcast: 198.0.18.7 11000110.00000000.00010010.000001 11
HostMin: 198.0.18.5 11000110.00000000.00010010.000001 01
HostMax: 198.0.18.6 11000110.00000000.00010010.000001 10
Hosts/Net: 2
NETWOK address will be ...18.4 instead of 18.5
Admin plz inform me, i think the default network should be 198.0.18.4 instead of 198.0.18.0,,plz correct me if i am wrong
ReplyDeletelabs are Still Valid, I got 1000/1000 yesterday (25th)
ReplyDeleteI got 3 sims ACL1,ACL2 and EIGRP (212). please read questions carefully and hard work.
Thanks examtut.
You can't use the #show run command on a CCNA exam!
ReplyDeleteUse sh ip protocols or sh ip eigrp instead.
ok can i say something does any of you know how the ip default-network command works beucause from what i can see here no one knows even the person who made this tutorial. Have a look here http://blog.ipexpert.com/2010/03/29/eigrp-ip-default-network-command/.
ReplyDeleteAnyway i don't know if any of you noticed but from this tutorial and from that video, you did not show the route to ISP and if it has a ping in ISP, if you look cosly you dont have a route to internet, and you do not advertise a default route into your domain with these commands: ip route 0.0.0.0 0.0.0.0 198.0.18.5 and ip default-network 198.0.18.0, i recommend you guys learn more about how these commands work, If you want ip default-network to work(without redistributioin) first you have to do on a classful network and that network must be in EIGRP( Ex: D. 1.1.1.1 /25 via 2.2.2.2), because if its not it will not be propagated into the whole domain, and secondly if it a classles network , then it gets complicated because when u issue the command a static route appears towards the classful net add of the classless net adress, then u have to redistribute and issue the comand n the other router from what i remember. anyway its a pin in the ass dont know what was cisco thinking when it was implelented.
just use : ip route 0.0.0.0 0.0.0.0 198.0.18.5 and redistribute static
or
ip route 0.0.0.0 0.0.0.0 198.0.18.5 and put the the command r(config-router)#network 0.0.0.0
Hello Guys good news for you that CCNA discounted and Microsoft vouchers are now available. Now New CCNA (200-120) vouchers on special discount of 58% for World wide, with six months expiry date till you purchase. Each voucher cost 70USD.
ReplyDeleteDetails Required For CCNA Voucher For Discount Processing:
1-Full Name. 1st Name & Last Name (as you want to appear on certificate & documents)
2-Country.
3-City.
4-State.
5-Pin Code (or Area Code)
6-Residential Address (or where you can collect your Certificate or further correspondence
can be received)
7-Date of birth
Add me on Skype through this information which is written below:
Skype Name: rockon660
you can also email me at this email address which is written below:
madeelqaiser@gmail.com
If you have any Questions feel free to contact me.
Thanks,
Best regards,
Adeel
i had passed my ccna exam with 972/1000 score on 12 feb.
ReplyDeletethe labs were acl1,acl2 and eigrp
acl 1 (same as it is)
eigrp (just change od AS and advertising a network (same as it is) with NO issue about passive interfaces and default network )
acl 2 (with bit modification)
"The task is to create and apply a numbered access-list with no more than three statements that
-> will allow ONLY host A web access to the Finance Web Server.
->All other traffic from A to finance server is denied.
->All traffic from lan servers(B,C,D) and core to the Finance Web Server is denied.
-> All other traffic is permitted to public server.
Guys, i am remote and is difficult for us this way to purchase the vce software to read the dumps. Please can anyone do a favore by sending it to me at browntoto14@yahoo.com
ReplyDeleteThanks
I practice the lab and i saw without advertise 198.0.18.0 or 198.0.18.4 network on EIGRP 222 I can't get Internet access from remote 1, remote 2 and also Interior routers. Does my answer complete the question without adding
ReplyDelete1) ip route 0.0.0.0 0.0.0.0 198.0.18.5 and
2) ip default-network 198.0.18.0
????
please someone answer me
Hi Gents, Where can I find ACL1, ACL2 and EIGRP sims ? Thank you in advance. Rgds
ReplyDeleteHi Everyone,
ReplyDeleteI pass CCNA today with 972/1000 and dump is valid also the all IP and number AS eigrp 12.
Thanks a lot at examtut and 9tut.
God blesse you.
Can anyone please tell us how to download the sim. In one of the recommended downloads its asking me to 'run' it. Is this alright or not?
ReplyDeleteScored 1000/1000. EIGRP lab was tough, some of the modifications were new, not mentioned here. Just know your concepts and you can do well. If anyone needs any kind of help or guidance on how to score full, add me on skype mohsin.jawed
ReplyDeletePeace off !!!
IN eigrp lab how do we know about the isp's ip address which is connected to the router perimeter's interface
ReplyDeletecan we just add the default route to perimeter router for internet connection in isp even if there is a route for it or not...
ReplyDeletehello!!!
ReplyDeleteAnyone know that scenarios come in the exam, and that things are different from the examples on this page?
Thanksss°°°°
For the modification
ReplyDeleteI noticed internet access can be rectified by
eigrp 222
Network 198.0.18.0
On the perimeter router.
Passed today with 1000.
ReplyDeleteSimulation was EIGRP with network statement missing and AS number incorrect.
Edge router to ISP was already configured for Default network and Static route to ISP. EIGRP was also defined for the network of ISP.. so no need to do anything except configuring EIGRP correctly in 2 routers.
Serial interface towards ISP in edge router was with passive interface command, but still, worked without disabling that. Serial interface was disabled so couldnot even go into the interface.. all the dumps are 100% valid. thanks all.
For this SIM:
ReplyDeleteIPs were different. AS number was giver 212 . router name were different.
Perimeter Router had already configured for EIGRP network for ISP.
final verification can be done by pinging all router and exit interface towards ISP in perimiter Router.
Serial interface towards ISP was disabled so can't login (actually don need to login)
Passive interface was defined on this serial port, however the passive interface disable command was disabled. EIGRP , Default, Network, and Statis route was already defined for the ISP network. .... don't get confused trying to add redistribute static command as that was also disabled. only thing had to be done was correct the router conf in perimeter and remote
How can we test if we have internet connection in ISP as for my testing its all Server Reset Connection. Though through the use of
ReplyDeleteroute eigrp 222
network 198.0.18.0
I can ping the ISP is it enough or do i need to configure something else to have the internet connection.
Please answer
thank you very much!
ACL1 ACL2 EIGRP
ReplyDeletehttps://www.youtube.com/watch?v=FO3eD6oAIRQ&index=2&list=PLW2Xk7jJ5ZSoFn2G_x0ql_S5AlKvaDaOZ
full ccna exam and dump
ReplyDeletehttps://www.youtube.com/watch?v=Q7cTJsVxebc&list=UUyppZ-pXVGuzXQEq8L8HEhg
More recent dumps are available at exams.cf/cisco/
ReplyDeleteI recommended http://www.grades4sure.com/200-120-exam-questions.html ! I passed my CCNA Routing and Switching 200-120 exam yesterday with the score 92%. You can try the demo before you pay for the order. 100% money back guarantee. You will lose nothing.
ReplyDeleteNow you don’t need take any stress about the Cisco 200-120 exam. We provide you latest exam questions 200-120 Practice Exam Questions. Try our free Cisco 200-120 study material. We have professional IT experts provide you important and accurate exam questions for your success. Our experts will help you to pass your 200-120 exam in first attempt. For free Cisco 200-120 Certification Exam visit us on http://www.cisexams.com/200-120-dumps
ReplyDeleteDownload Free 642-999 Dumps from Dumps4Download site. This is the best organization from certificated exam dumps. You can download any type of exam dumps from this site.
ReplyDeleteWatch video and share,
Download Exact 642-999 Exam Dumps Questions
We have been giving amazing examination guide and readiness material to the majority of our clients for quite a while now. Our dedicated specialists are working enthusiastically to give excellent test guide and concentrate material for the clients who need to pass affirmation tests in a solitary endeavor.
ReplyDeleteCertsmarket
You need to redistribute the static route on eigrp in order to get to ISP from internal router, which is rare because redistribution is out of CCNA objectives.
ReplyDeleteDifficulty of real 200-125 exam dumps demands the help from 200-125 study material which is the most reliable dumps stuff. I got prepared for my IT exam from the same util exam material. I simply downloaded Cisco 200-125 study guide from DumpsSure and aced for my certification.
ReplyDelete# 100% Passing Guarantee of 200-125 Exam
# 90 Days Free Updates of 200-125 Exam
# Full Money Back Guarantee on 200-125 Exam
Discount Offer! Use this Coupon Code to get 20% OFF ( Off20 )
HOT EXAMS
AZ-300 Dumps
HPE6-A67 Dumps
220-702 Dumps
SCS-C01 Dumps
AZ-100 Dumps
A00-240 Dumps
JK0-023 Dumps
300-370 Dumps
700-505 Dumps
1V0-605 Dumps
PMI-100 Dumps
2020 Latest DumpsSure Real Exam Dumps (PDF) Instant Download:
https://www.dumpssure.com