You are on page 1of 14

CCNA Training CCNA NAT SIM Question 1

Type text to search here...

Page 1 of 14

Submit Query

Home > CCNA NAT SIM Question 1

CCNA NAT SIM Question 1


June 15th, 2011 Go to comments
Question
A network associate is configuring a router for the CCNA Training company to provide internet access.
The ISP has provided the company six public IP addresses of 198.18.184.105 198.18.184.110. The
company has 14 hosts that need to access the internet simultaneously. The hosts in the CCNA Training
company LAN have been assigned private space addresses in the range of 192.168.100.17
192.168.100.30.
The task is to complete the NAT configuration using all IP addresses assigned by the ISP to provide
Internet access for the hosts in the Weaver LAN. Functionality can be tested by clicking on the host
provided for testing.
Configuration information
router name Weaver
inside global addresses 198.18.184.105 198.18.184.110/29
inside local addresses 192.168.100.17 192.168.100.30/28
number of inside hosts 14
The following have already been configured on the router
- The basic router configuration
- The appropriate interfaces have been configured for NAT inside and NAT outside
- The appropriate static routes have also been configured (since the company will be a stub network, no routing protocol will be required.)
- All passwords have been temporarily set to cisco

http://www.9tut.com/52-ccna-nat-sim-question

7/29/2012

CCNA Training CCNA NAT SIM Question 1

Page 2 of 14

Solution
Note: If you are not sure how NAT & PAT work, please read my Network Address Translation NAT
Tutorial. You can download this sim to practice here:
http://www.9tut.com/download/9tut.com_CCNA_NAT_sim_question.zip
The CCNA Training company has 14 hosts that need to access the internet simultaneously but we just
have 6 public IP addresses from 198.18.184.105 to 198.18.184.110/29. Therefore we have to use NAT
overload (or PAT)
Double click on the Weaver router to open it
Router>enable
Router#configure terminal
First you should change the routers name to Weaver
Router(config)#hostname Weaver
Create a NAT pool of global addresses to be allocated with their netmask (/29 = 255.255.255.248).
There were reports that the simulator in the real exam did not accept prefix-length keryword so you
should use netmask keyword.
Weaver(config)#ip nat pool mypool 198.18.184.105 198.18.184.110 netmask 255.255.255.248
Create a standard access control list that permits the addresses that are to be translated
Weaver(config)#access-list 1 permit 192.168.100.16 0.0.0.15
Establish dynamic source translation, specifying the access list that was defined in the prior step
Weaver(config)#ip nat inside source list 1 pool mypool overload

http://www.9tut.com/52-ccna-nat-sim-question

7/29/2012

CCNA Training CCNA NAT SIM Question 1

Page 3 of 14

This command translates all source addresses that pass access list 1, which means a source address from
192.168.100.17 to 192.168.100.30, into an address from the pool named mypool (the pool contains
addresses from 198.18.184.105 to 198.18.184.110)
Overload keyword allows to map multiple IP addresses to a single registered IP address (many-to-one)
by using different ports
The question said that appropriate interfaces have been configured for NAT inside and NAT outside
statements.
This is how to configure the NAT inside and NAT outside, just for your understanding:
Weaver(config)#interface fa0/0
Weaver(config-if)#ip nat inside
Weaver(config-if)#exit
Weaver(config)#interface s0/0
Weaver(config-if)#ip nat outside
Weaver(config-if)#end
Finally, we should save all your work with the following command:
Weaver#copy running-config startup-config
Check your configuration by going to Host for testing and type:
C:\>ping 192.0.2.114
The ping should work well and you will be replied from 192.0.2.114
Other lab-sims on this site:
CCNA NAT SIM Question 1
CCNA NAT SIM Question 2
CCNA Frame Relay Sim
CCNA Configuration SIM Question (RIPv2 SIM)
CCNA VTP SIM
CCNA EIGRP LAB
CCNA Drag and Drop SIM
CCNA Implementation SIM

http://www.9tut.com/52-ccna-nat-sim-question

7/29/2012

CCNA Training CCNA NAT SIM Question 1

Page 4 of 14

Comments
Comment pages
Previous 1 2 3 23
1. 9tut
May 3rd, 2012
@johnmaxwell: You cant configure the ISP router in the exam. The ISP router has been
configured to send traffic back to Weaver.
2. Thapa
May 10th, 2012
Hi,
@9tut
I am confused about Bomar(config)#access-list 1 deny any this command, just have a look on it
and let me know please.
A network associate is configuring a router for the Bomar Company to provide Internet access.
The ISP has provided the company with six Public IP addresses of 198.18.237.225
198.18.237.230. The company has 14 hosts that need to access the Internet simultaneously. The
hosts in the company LAN have been assigned private space addresses in the range of
192.168.16.33 192.168.16.46.
The following have already been configured on the router:
- The basic router configuration
- The appropriate interfaces have been configured for NAT inside and NAT outside.
- The appropriate static routes have also been configured (since the company will be a stub
network, no routing protocol will be required)
- All passwords have been temporarily set to cisco.
The task is to complete the NAT configuration using all IP addresses assigned by the ISP to
provide Internet access for the hosts in the Bomar LAN. You have successfully completed this
exercise when the host PC can ping the ISP.
Configuration Information:
Router Name Bomar
Inside Global Addresses 198.18.237.225 198.18.237.230/29
Inside Local Addresses 192.168.16.33 192.168.16.46/28
Number of inside hosts 14
Given answer is as mentioned as:
Bomar>ena
Bomar#configure terminal
Bomar(config)#access-list 1 permit 192.168.16.33 0.0.0.15
Bomar(config)#access-list 1 deny any
Bomar(config)#ip nat pool TestKiss 198.18.237.225 198.18.237.230 prefix-length 29
Bomar(config)#ip nat inside source list 1 pool TestKiss overload
Bomar(config)#interface fa0/0
Bomar(config-if)#ip nat inside
Bomar(config-if)#exit
Bomar(config)#interface s0/0
Bomar(config-if)#ip nat outside
Bomar(config-if)#end
Bomar# copy run start

http://www.9tut.com/52-ccna-nat-sim-question

7/29/2012

CCNA Training CCNA NAT SIM Question 1

Page 5 of 14

As I corrected is:
Bomar>ena
Bomar#configure terminal
Bomar(config)#access-list 1 permit 192.168.16.33 0.0.0.15
Bomar(config)#access-list 1 deny any
Bomar(config)#ip nat pool TestKiss 198.18.237.225 198.18.237.230 netmask 255.255.255.248
Bomar(config)#ip nat inside source list 1 pool TestKiss overload
Bomar(config)#interface fa0/0
Bomar(config-if)#ip nat inside
Bomar(config-if)#exit
Bomar(config)#interface s0/0
Bomar(config-if)#ip nat outside
Bomar(config-if)#end
Bomar# copy run start
3. John
May 12th, 2012
Today I passed with 986/1000 bcoz of Gods Grace & my effort also Thanx a lot to 9TUT.com &
Examcollection.com. my sims were EIGRP, VTP, ACL2 frm 9tut. Total question 48. I solved
those ques. very easily
1) i advice you that u 1st clear ur concept using study materials & notes (use Todd lammle
book.Its very helpful)
2) for dumps & Sims-> a) use 9tut. & other dumps are (Collisio.486q) (by.Jericho.632q)
(Bruce.564q) (by.DHARANI.615q) in those dumps there is lll bit difference. so pls go through
get it from examcollection.com
dont mug up only, understand the concept. in real exam options comes randomly.
dont worry exam is very very easy if u follow these advise you will get above
900..100% true
3) One question made me confuse:>
In which circumstance are multiple copies of the same unicast frame likely to be transmitted in the
Switched LAN?
A. During high traffic periods
B. In an improperly implemented redundant topology
C. After broken links are re-established
D. When upper-layer protocols require high reliability
E. When a dual ring topology is in use
I choose>B. In an improperly implemented redundant topology
thats why i lose 14 marks otherwise all ques 100% correct
I think the correct ans is:E. When a dual ring topology is in use
Pls check out this ques

http://www.9tut.com/52-ccna-nat-sim-question

7/29/2012

CCNA Training CCNA NAT SIM Question 1

Page 6 of 14

Best of luck guys..


4. Anonymous
May 14th, 2012
i got 986..thank you so much for help 9tut
5. osama alkenani
June 5th, 2012
planning to do the exam on 20th this month if any one has a valid dumbs amd sim plz email me on
alkenani_27@yahoo,com i really dont know how to get these dumbs and how to make sure they
are valid plz hellllllllppppppp
6. BMW
June 7th, 2012
@osama alkenani: Brother every thing is here on this site try to spare sometime and study here!
Ali
7. mohamed
June 8th, 2012
@john
after searching for the question that you think you lose 14 points well actually, Your answer is
write .
B. In an improperly implemented redundant topology.
look at this link fist question
http://www.9tut.com/ccna-switch-questions-2
8. Dyson
June 9th, 2012
- The appropriate static routes have also been configured (since the company will be a stub
network, no routing protocol will be required.) ip route 0.0.0.0 0.0.0.0 s0/0 is not put in the
answher
9. Dyson
June 9th, 2012
why The appropriate static routes have also been configured (since the company will be a stub
network, no routing protocol will be required.) ip route 0.0.0.0 0.0.0.0 s0/0 is not put in the
answer???
10. Abdul Fathah Mk
June 9th, 2012

http://www.9tut.com/52-ccna-nat-sim-question

7/29/2012

CCNA Training CCNA NAT SIM Question 1

Page 7 of 14

I passed last week.thanks 9tut for your great stuff


11. Mohamed
June 9th, 2012
why here the WCM = 0.0.0.15 any help please????
12. binhnguyenduc
June 12th, 2012
Sorry, if you use PAT, you have to config follow:
ip nat inside source list 1 interface serial 0/0 overload
Then you can ping from local to ISP.
13. GoodLuck!!
June 16th, 2012
What is the probability that this sim will appear in the exam?
14. Adel
June 19th, 2012
Dear Friends, please send to me the latest Dumps and SIM to
my E-mail: Romeo_Bahrain@Hotmail.com, my Exam will be in 28.06.12
i dont have enough time to study all the book or this site im no IT but i have to pass to get my
increment, 9tut is very nice site and very helpful, thanks 9tut and thanks to all.
15. Anonymous
June 21st, 2012
THX binhnguyenduc, with applying the list to the interface it now works!!!
16. ENG.Shaymaa
June 24th, 2012
hi.. in this sim after configuration nat i cant got the ping 192.0.2.114 in pc1
whyyyy?
17. shikha
June 27th, 2012
Hi john,
can u please send me dumps by (Collisio.486q) (Jericho.632q)
(Bruce.564q) (DHARANI.615q) in my mail id :shikharai2008@yahoo.com.
Thanks
18. GREEN
June 28th, 2012

http://www.9tut.com/52-ccna-nat-sim-question

7/29/2012

CCNA Training CCNA NAT SIM Question 1

Page 8 of 14

john the correct answer is in an impropely implemented topolog and this realy happen when you
not configured stp to block ports
19. Failed ICND2
June 30th, 2012
Hi Everyone, I am new to this forum, I have been studying endlessly and today I failed my ICND
2 exam. Can someone please send me the latest dumps please I understand most of the material I
know all evidence to the contrary but I am taking the exam again next Friday I would really like to
pass
any advice would be greatly appreciated
please email me at maximusb246@gmail.com
Please any help and good advice again would be greatly appreciated!!!!
Thanks everyone for their time and patience!!!
Best Regards,
Mike
20. ff
July 4th, 2012
I just miss my exam with a score of 788,
access-list 1 permit 192 . 0 does not work (incompatible version with this command)!
52 questions
90 minutes (in French)
time is very inadequate
21. Vane
July 5th, 2012
taking he test next saturday morning can somebody confirm is this sims are veru close to the r4eal
exam? please e-mail any updates to vbenavides58@yahoo.com
22. anon
July 8th, 2012
hi,
in ccna exam do they give the /29 ??
like in inside global addresses 198.18.184.105 198.18.184.110/29
do they mention the /29 there????
23. Anonymous
July 12th, 2012

http://www.9tut.com/52-ccna-nat-sim-question

7/29/2012

CCNA Training CCNA NAT SIM Question 1

Page 9 of 14

how can i view all the .vce files . i have a player but its only a trial version which allow only 5
questions. Please help me on this
nawab.ansh@gmail.com
thanks :)
24. Newbie-sl
July 14th, 2012
inside local addresses 192.168.100.17 192.168.100.30/28
this is wrong.these addresses belongs to two networks
192.168.100.112/28
192.168.100.128/28
so how to assign the acl?
25. anish
July 14th, 2012
hello friends.Thank GODI passed ccna few minutes ago.I got 930..Thanks to
9tut,Jericho,Collisio,Bruce and more exam collection..The sim was eigrp with as no:112,VTP and
ACLAnd guyz I did a biggest mistake such that during VTP sim after the first question I press
nextSo I lost the chance for the 4 remaining vtp sims..:( be carefulno need to worryany
help text me ani_tech4u@yahoo.com
26. Mike
July 14th, 2012
@newbie
inside local addresses 192.168.100.17 192.168.100.30/28
This is right, addresses in the same net, because of prefix 28 our magic number is 16, do all net
starts from 0 16 32 48 64 and so on.
So range from 17 and 30 in the same network.
Ta
27. Newbie-sl
July 15th, 2012
sorry yes mike.you are correct.thanks a lot
28. Shashank
July 16th, 2012
Hi passed the exam with 960 marks. thaks to 9tut &prepking dumps. EIGRP, ACL & VTP sim
was there.
29. Jihan

http://www.9tut.com/52-ccna-nat-sim-question

7/29/2012

CCNA Training CCNA NAT SIM Question 1

Page 10 of 14

July 18th, 2012


If youre looking to buy these articles make it way eaeisr.
30. ciscouser1977@gmail.com
July 20th, 2012
@anish.. I did the same thing and clicked next on the EIGRP sim and lost all points.. only I
failed :-(
Im taking it again next Thursday.. Would anyone know if I should get the same sims as long as
theyre giving them to everyone else?
31. ciscouser1977@gmail.com
July 20th, 2012
what I mean is they dont change the sims just because Im taking it over again??
32. jjj
July 22nd, 2012
i have a question for 9tut if i faild 3 weeks ago they change the labs for the next chance cause i m
gonig to try again the next monday. thanks for you answers.
33. stellamaris
July 25th, 2012
passed the exam with 894 points.made mistake in the access-list sim,instead of applying the
access-list to Fa0/1 interface so that the access-list can filter traffic coming from both the LAN
and the Core networks,i applied it to fa0/0 interface which resulted in me have 0%,so be careful
especially in access-list questions
Access-list questions:The task is to create and apply a numberd access-list with no more than
three statements that allow Host D should be able to use a web browser(HTTP)to access the
Finance Web Server.
-Other types of access from host D to the Finance Web Server should be blocked
All access from hosts in the Core or local LAN to the Finance Web Server should be blocked
-All hosts in the Core and local LAN should be able to access the Public Web Server
Solutions:
Router#configure terminal
Router(config)#access-list 100 permit tcp host x.x.x.x host x.x.x.x eq 80
-Other types of access from host D to the Finance Web Server should be blocked
All access from hosts in the Core or local LAN to the Finance Web Server should be blocked
Router(config)#access-list 100 deny ip any host x.x.x.x
-All hosts in the Core and local LAN should be able to access the Public Web Server
Router(config)#access-list 100 permit ip any any
Apply this access-list to Fa0/1 interface (outbound direction)
Router(config)#interface fa0/1
Router(config-if)#ip access-group 100 out
Router(config-if)#end
Router#copy running-config startup-config

http://www.9tut.com/52-ccna-nat-sim-question

7/29/2012

CCNA Training CCNA NAT SIM Question 1

Page 11 of 14

EIGRP Questions:the same as 9tut but they use home 1 and home 2
Home 2 just change the AS number from 22 to 122.nothing else
Home 1 just remove one network 192.168.96.0 and add a new network 192.168.88.0.The passive
interface willnt be removed because because of link between home 1 and ISP.
VTP Questions
Remains the same as 9tut but small modifications like 1)using show mac address-table to find a
port of a particular mac address
2)using show spanning-tree and show cdp neighbors to get the root bridge
3)Use of show vtp status.SWac3 revision no is higher than SwX so u have to replaced the vlan
4)Use of show vlan to get the default gateway of an interface
Try and go through examcollection.com especially 9tut,Jericho,Bruce and Collision
In the exam there is limited time so try and be fast so that time doesnt choke you,a sim may take
you 30 minutes to resolve the issue like what happened to me in access-list today,i was just
rushing the question because i was have 10 minutes left to 17 multiple choice questions and VTP
sim
Goodluck in your exams
34. Demarcus
July 26th, 2012
@ stellamaris, Thanks a lot. Im taking the exam in 4 hours and knowing what the popular sims
on it really helps me out. I should be good due to the fact that Ive completed all of the 9tut packet
tracer labs numerous times. For my study, ive used 9Tut, Pass4Sure, exam collection, and ICND
1 and 2 from Cisco.
35. Alboma
July 26th, 2012
Since its about dynamic NAT overload, after using host PC to test ping, you can go further check
the NAT table entries using show ip nat translations, and the table will shows the entries with the
IP addresses with the ports. Only entries show up after performing the test ping from the host.
36. cteo
July 28th, 2012
@stellamaris
i will be taking my exam next Mon 30 Julythanks a lot for the good hint :)
37. SK
July 29th, 2012
Did anyone get NAT sim in the exam??
Comment pages
Previous 1 2 3 23
1. No trackbacks yet.
Add a Comment
Name

http://www.9tut.com/52-ccna-nat-sim-question

7/29/2012

CCNA Training CCNA NAT SIM Question 1

Page 12 of 14

Submit Comment

Subscribe to comments feed


CCNA Configuration SIM Question Rapid Spanning Tree Protocol RSTP Tutorial

CCNA 640-802

CCNA Lab Sim


CCNA Basic Questions
CCNA Basic Questions 2
CCNA Cisco IOS Questions
CCNA Cisco IOS Questions 2
CCNA Cisco IOS Questions 3
CCNA OSI Model Questions
CCNA TCP/IP Model & Operation
CCNA Show Command Questions
CCNA Protocols & Services
CCNA Access List Questions
CCNA Access List Questions 2
CCNA WAN
CCNA WAN 2
CCNA IP Address Questions
CCNA IP Routing Questions
CCNA IP Routing Questions 2
CCNA RIP Questions
CCNA OSPF Questions
CCNA OSPF Questions 2
CCNA EIGRP Questions
CCNA EIGRP Questions 2
CCNA Security Questions
CCNA DHCP Questions
DHCP Group of Four Questions
CCNA NAT & PAT Questions
CCNA Drag and Drop 1
CCNA Drag and Drop 2
CCNA Drag and Drop 3
CCNA Drag and Drop 4
CCNA Drag and Drop 5
CCNA Switch Questions
CCNA Switch Questions 2
CCNA Switch Questions 3
CCNA VLAN Questions
CCNA VLAN Questions 2

http://www.9tut.com/52-ccna-nat-sim-question

7/29/2012

CCNA Training CCNA NAT SIM Question 1

Page 13 of 14

CCNA VTP Questions


CCNA Hotspot
CCNA STP Questions
CCNA STP Questions 2
CCNA IPv6 Questions
CCNA Subnetting
CCNA Subnetting Questions 2
CCNA Subnetting Questions 3
CCNA Subnetting Questions 4
CCNA Operations 1
CCNA Operations 2
CCNA Operations 3
CCNA Troubleshooting 1
CCNA Troubleshooting 2
CCNA Wireless
CCNA FAQs & Tips
Share your CCNA Experience

CCNA Self-Study

Practice CCNA GNS3 Labs


CCNA Knowledge

Network Resources

Free Router Simulators

ICND1/ICND2 Website

CCNP - ROUTE Website

CCNP - SWITCH Website

CCNP - TSHOOT Website

CCNA Voice Website

CCNA Wireless Website

CCNA Security Website

CCDA Website

CCIP Website

CCIE Written Website

http://www.9tut.com/52-ccna-nat-sim-question

7/29/2012

CCNA Training CCNA NAT SIM Question 1

Page 14 of 14

Support 9tut

Your contribution will help keep this site updated!

Top
Copyright 2010-2012 CCNA Training
Privacy Policy. Valid XHTML 1.1 and CSS 3.

http://www.9tut.com/52-ccna-nat-sim-question

7/29/2012

You might also like