Home > CCNA NAT SIM Question 1

CCNA NAT SIM Question 1

January 5th, 2014 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”

ccna_nat_sim_lab1

ccna_nat_sim_lab2

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 router’s 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

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

 

Comments
Comment pages
1 9 10 11 12 23
  1. avinash
    April 29th, 2014

    on the router

    weaver#conf t
    weaver(cofig)#int fa 0/0
    weaver(config-if)#ip access-group 1 in

  2. GBA
    May 3rd, 2014

    Your going to ruin the config if you do that @avinash. access-list 1 was created to allow configured ip inside the access-list to translate private ip to public ip using NAT.

  3. avinash
    May 6th, 2014

    @GBA if you can answer my ques
    what is the use of creating acl?if we don’t apply it on the interface

  4. Manic
    May 10th, 2014

    in this scenario the acl represents the list of hosts you are permitting out to the internet via PAT. without the acl the nat statement will do nothing. you must use an acl to say who can use the nat statement.

  5. theman
    May 18th, 2014

    you have to create an ACL to allow the nat pool traffic outbound on the outer interface. That question has been in the CCNA exam for years.

  6. help
    May 19th, 2014

    then this good or bad?

  7. help
    May 19th, 2014

    then this good or bad?

  8. gurdjieff
    May 27th, 2014

    I quite understand the exercise, what I dont understand is why I’m able to ping the ISP IP 192.0.2.114 before having done anything, I mean, I can ping the IP without having configured the NAT translations. Is it because Packet Tracer doesnt make any difference between public and private addresses? Thanks.

  9. kiro
    May 30th, 2014

    @gurdjieff easy as that ur pinging from the router which is connected to that network

    try from host before anything u wont suceseed until configuring every thing *_+

  10. Ali Abbasi
    June 1st, 2014

    @ avinash : Buddy you are right , I also try multiple time , but not able to ping End PC, Every time reply come from Created NAT Pool , After applying ACL on int F0/0 , Every things are going smooth , Thnx for sharing this.

    @ All : Without Applying ACl , if there any other solution , Please also share…

  11. Ali Abbasi
    June 1st, 2014

    @ gurdjieff : Dear you are able to ping because its directly connected to Local router ,

  12. sony
    June 5th, 2014

    Hi,
    what is the isp router password?

  13. rmi
    June 6th, 2014

    @sony
    read questions carefully!!!
    it mentions as ‘cisco’

  14. rmi
    June 6th, 2014

    @sony
    sorry I mis understood your question.

    the ISP password is noway

    it works

  15. PT not configured?
    June 7th, 2014

    For some reason the PT isn’t configured with the anything that is mentioned in the question (nat inside/outside, static routes, etc.) Also the activity within PT isn’t opening at all.

  16. sony
    June 10th, 2014

    Thaks

  17. Blue_sky
    June 16th, 2014

    www dot freevce dot com/Cisco.200-120.Actualtests.2013-12-10.by.Watson.314q.1636044324.vce.html
    free dumps

  18. anonymous
    June 24th, 2014

    @avinash

    access list 1 permit192.168.100.16 0.0.0.15 was used to permit network to ip nat inside source list 1 pool mypool overload.

    ACL’s has many uses.
    you can google it.

  19. edwin
    July 2nd, 2014

    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

    PLEASE AM CONFUSED HERE SOMEHOW. THE INFORMARTION GIVEN, I THINK THE SERIAL INTERFACE OF THE WEAVER ROUTER SUPPOSED TO HAVE EXACT IP ADD AS THE INSIDE GLOBAL BUT THE SIM PRACTICE IT HAVE IP ADD 192.0.2.113 AND ISP .114. CAN SOMEONE EXPLAIN TO ME THE CONFIG THAT CAN MAKE IT POSSIBLE FOR 192.168.100.17 TO PING 192.0.2.113 OR .114? COS AS I DID THE IT WAS EXPLAINED HERE WITH THE IP I CAN’T PING BUT WHEN I CHANGED THE S0/0 IP OF THE WEAVER ROUTER TO 198.18.184.105 AND ISP .106 I CAN THEN PING 192.168.100.17 TO 198.18.184.106. PLS MORE EXPLANATION NEEDED URGENTLY TO KNOW IF IN THE EXAM I CAN CHANGE THE IP? AM ABOUT WRITING MY EXAM NEXT WEEK.

  20. edwin
    July 2nd, 2014

    the inside global ip which interface does it belong to?

  21. ciokoy
    July 11th, 2014

    @avinash : no need to apply the acl to any interface. you may need to check also the pool name, its case sensitive. hope this comment may help, i also have an issue but it was resolved by checking it.

  22. twdang
    July 16th, 2014

    Pool mypool mask 255.255.255.248 too small; should be at least 0.0.0.0
    Start and end addresses on different subnets
    please help me fix

  23. HUNTER
    July 17th, 2014

    Is that a real exam question or just to practice ?

  24. Kai dejoy
    July 21st, 2014

    i just passed with 972 feeling happy…….
    i got ACL 1 with 1st and 2nd modification mix and eigrp 212 lab.

  25. nick
    July 31st, 2014

    why are we using “access-list 1 permit 192.168.100.16 0.0.0.15″ but not 192.168.100.17? thanks.

  26. Denie
    August 1st, 2014

    I passed today! Thanks to 9tut. Sim were ACL1, 2 mod 3 and EIGRP.

  27. Anonymous
    August 4th, 2014

    Am wondering about the implicit deny in access list. Aren’t we apply ip access list 1 permit ip any at the end of access list statement???

  28. DC
    August 4th, 2014

    what latest question comes out for simulation?

  29. Bibo
    August 7th, 2014

    I thought this labs would be more complex like pk skill integration challenges at the end of each chapter in the curriculum. There is literally nothing complex to do on this labs and they literally take 3min or less to solve. But I do appreciate the effort, will report back from my cert exam in a month time.

    @anon no we dont apply and implicit permit, in fact it depends on your acl configuration and “employee” needs. The structure varies depending on what and how much they want to deny or allow. Also that has nothing to do with this example, here you are just defining the range of private address that will be allowed for translation via the pool you defined. This acl gets binned to the public nat pool not a interface.

    @nick the 192.168.100.16 is used because its the network id the add 192.168.100.17 is the first usable address of the network assigned to PC1, its basic subnetting.

    @twdang the mask is not too small in this case you are only defining the netmask for available amount of address given witch is 6 (198.18.184.105-110) and the netmask that covers that amount of add is 255.255.255.248. It has nothing to do with network id or broadcasts address range.

  30. tomer nachum
    August 7th, 2014

    i scored 1000 this website is fu**ing greattttttttt

  31. San
    August 12th, 2014

    Passed 958/1000
    Thanks 9tut! Exactly same EIGRP ACL ACL2 Sims…
    also went through dumps really helped a lot!!!..
    Whatson, Giilibeast, Jennie and Mathew Dumps (examcollection.com)
    All 51 questions were from dumps…
    even if u dont study book and only go though dumps a few times then you will pass easily…
    just remember the answers given in dumps…

  32. ccna
    August 13th, 2014

    im wondering ppl that take it for the 2nd chance do they use the same pool of question or do they change it

  33. JS
    August 18th, 2014

    When i pinged the 10.0.0.2 on ISP under the simulation the packets get dropped at the weaver router so I added the static default routes on weaver and ISP and pinged the ping worked with original configuration, with out NAT implemented.

    Then added the configuration for the NAT on the Weaver and the ping from PC1 to 10.0.0.2 worked. This time with the sh ip nat translation commend I was able to see the NAT translation.

    It looks packet tracer does not care about the public and private ip address, the only way you can verify if the translation worked is to see it under sh ip nat trans

  34. Anonymous
    August 25th, 2014

    can anyone please email me the latest vce and dumps,taking the exam next week,my email add is shingai_mutambo@yahoo.com

  35. Gokul
    August 25th, 2014

    Just go through the labs in 9tut and dont worry about anything. I just wrote today and scored 972 out of 1000.

  36. Menu
    August 31st, 2014

    @Nick – I think its because we are using a subnet ( /28 ) so we are specifying the subnet network address (192.168.100.16 @ /28) – Someone correct me if Im wrong of course…
    The r

  37. Menu
    August 31st, 2014

    @Nick – I think its because we are using a subnet ( /28 ) so we are specifying the subnet network address (192.168.100.16 @ /28) – Someone correct me if Im wrong of course…
    The range of the IP’s given, all reside in the 2nd subnet – being from .16 – 31…

    Hope that helps..

  38. lotfilosophy
    August 31st, 2014

    salam alikoum :

    I wish good luck to all the candidates, I also prepare my CCNA 200-120 certification for this month inshalah .

    good luck

  39. lavanya
    September 2nd, 2014

    HI All,
    Please let me know in ACL-1 ,do they ask in Multiple choice form or we need to configure anything…Gotta doubt because it is placed in Simulations

  40. Anonymous
    September 9th, 2014

    Hi guys, Thanks 9TUT……Pass score 890 +….Very very very happy

  41. lavanya
    September 16th, 2014

    Passed the exam with 960……..thanks so lot 9tut……………………………………….party time

  42. Rahul
    September 16th, 2014

    Hello friends… Go to ccnalearn.cf to know all about ccna / dumps / exam problems / new questions.. etc all for free.
    Hope it helps all to learn and clear ccna 200-120 exam. http://www.ccnalearn.cf

  43. Pablo
    September 17th, 2014

    PLEASE NEED HELP –> send the latest dumps for CCNA 200-120 to pablo.sebastian.666@gmail.com Thanks . Going to exam next week

  44. Sudhakara.P.Y
    September 20th, 2014

    I’m going to take CCNA exam tomorrow. at 3pm…………..@Sr

    If you need any further information you can mail me: mrsrpy@gmail.com

  45. Mohamed Idris Mohamed
    September 26th, 2014

    الحمد لله Thanks Allah
    I pass my CCNA Exam today 25/9/2014 with score 1000/1000

    Refrance:
    1-Netacad Online Material (www.netacad.com)
    2-CBT Nugget Videos
    3-Sybex CCNA 200-120 study guide
    4-9tut.com

    Dumps:
    1-Waston
    2-Mattehw
    3-Gillbest
    4-Examtut

    Gillbest Dump and Waston Dump is quite perfect, Sims: ACL1, ACL2 (Modification3), EIGRP
    Hope success for all, Good luck.
    any help ask me http://www.facebook.com/habwara

  46. Mr g
    September 26th, 2014

    please the latest CCNA 200-120 Dumps and vce doing the test next Saturday glaucogb@gmail.com
    por favor ayuda..

  47. Levo
    October 6th, 2014

    are those gillbest, waston, matthew, dumps free ?
    gutnyc@yahoo.com

  48. Shakhawat
    October 14th, 2014

    is Nat sim is necessary?

  49. mostafijur Rahman
    November 3rd, 2014

    good

  50. Venkat
    November 21st, 2014

    good

Comment pages
1 9 10 11 12 23
  1. No trackbacks yet.
Add a Comment