Home > CCNA – NAT & PAT Questions

CCNA – NAT & PAT Questions

February 28th, 2011 Go to comments

Here you will find answers to NAT & PAT Questions

Note: If you are not sure about NAT & PAT, please read my NAT tutorial.

Question 1

Refer to the exhibit. What does the (*) represent in the output?

02:16:29: NAT: s=10.10.0.2->1.2.4.2, d=1.2.4.1 [51607]
02:16:29: NAT: s=1.2.4.1, d=1.2.4.2->10.10.0.2 [55227]
62:16:29: NAT*: s=10.10.0.2->1.2.4.2, d=1.2.4.1 [51608]
02:16:29: NAT*: s=10.10.0.2->1.2.4.2, d=1.2.4.1 [51609]

A. Packet is destined for a local interface to the router.
B. Packet was translated, but no response was received from the distant device.
C. Packet was not translated, because no additional ports are available.
D. Packet was translated and fast switched to the destination.


Answer: D

Explanation

The above output is from the “debug ip nat” command. In this output, the first two lines show the Domain Name System (DNS) request and reply debugging output.

In the first line (DNS request):

s=10.10.0.2->1.2.4.2: source of the IP address (10.10.0.2) and how it is being translated (to 1.2.4.2)
d=1.2.4.1: destination address of the packet
[51607]: the IP identification number of the packet

In the second line (DNS reply):

s=1.2.4.1: source of the reply
d=1.2.4.2->10.10.0.2: how the destination is being translated

The remaining lines show debugging output from a Telnet connection from a host on the inside of the network to a host on the outside of the network. All Telnet packets, except for the first packet, were translated in the fast path, as indicated by the asterisk (*).

Note: If the connection is already established, the security appliance does not need to re-check packets and the packets are sent to the Fast Path.

(Reference: http://www.cisco.com/en/US/docs/ios/12_3t/debug/command/reference/dbg_i2gt.html)

Question 2

Refer to the exhibit. What command sequence will enable PAT from the inside to outside network?

ip nat pool isp-net 1.2.4.10 1.2.4.240 netmask 255.255.255.0
!
interface ethernet 1
description ISP Connection
ip address 1.2.4.2 255.255.255.0
ip nat outside
!
interface ethernet 0
description Ethernet to Firewall eth0
ip address 10.10.0.1 255.255.255.0
ip nat inside
!
access-list 1 permit 10.0.0.0 0.255.255.255

A. (config)# ip nat pool isp-net 1.2.4.2 netmask 255.255.255.0 overload
B. (config-if)# ip nat outside overload
C. (config)# ip nat inside source list 1 interface ethernet1 overload
D. (config-if)# ip nat inside overload


Answer: C

Explanation

The command “ip nat inside source list 1 interface ethernet1 overload” means:

+ “ip nat”: use NAT
+ “inside”: NAT from inside to outside
+ “source list 1″: the source addresses can be found in access list 1
+ “interface ethernet1″: NAT out of this interface
+ “overload”: use NAT overload (PAT)

Question 3

Refer to the exhibit. A junior network engineer has prepared the exhibited configuration file. What two statements are true of the planned configuration for interface fa0/1? (Choose two)

DMZ_nat_inside.jpg

A. The two FastEthernet interfaces will require NAT configured on two outside serial interfaces.
B. Address translation on fa0/1 is not required for DMZ Devices to access the Internet.
C. The fa0/1 IP address overlaps with the space used by s0/0.
D. The fa0/1 IP address is invalid for the IP subnet on which it resides.
E. Internet hosts may not initiate connections to DMZ Devices through the configuration that is shown.


Answer: B E

Explanation

Both inside FastEthernet interfaces can use only one outside interface to go to the Internet -> A is not correct.

DMZ devices use IP addresses in the range of 128.107.1.128/25 which are public IP addresses so they don’t need address translation to access the Internet -> B is correct.

The fa0/1 interface’s IP address is 128.107.1.254 255.255.255.128 (range from 128.107.1.128 to 128.107.1.255) while the IP address of s0/0 is 128.107.1.1 255.255.255.252 (ranges from 128.107.1.0 to 128.107.1.4) so they are not overlapped with each other -> C is not correct.

DMZ devices are in the range of 128.107.1.128/25 (from 128.107.1.128 to 128.107.1.255) and fa0/1 IP address (128.107.1.254) is a valid IP address on this subnet -> D is not correct.

DMZ devices (and other internal hosts) are using dynamic PAT, which is a type of dynamic NAT. With dynamic NAT, translations do not exist in the NAT table until the router receives traffic that requires translation. In other words, if DMZ devices communicate with outside hosts first, dynamic translation works fine. But if outside hosts communicate with DMZ devices first, no translation is created in NAT table and the packets will be dropped. This is the reason why “Internet hosts may not initiate connections to DMZ Devices through the configuration that is shown” -> E is correct.

Question 4

Refer to the exhibit. What statement is true of the configuration for this network?

DMZ_nat_inside.jpg

A. The configuration that is shown provides inadequate outside address space for translation of the number of inside addresses that are supported.
B. Because of the addressing on interface FastEthernet0/1, the Serial0/0 interface address will not support the NAT configuration as shown.
C. The number 1 referred to in the ip nat inside source command references access-list number 1.
D. ExternalRouter must be configured with static routers to network 172.16.2.0/24


Answer: C

Explanation

The “list 1″ refers to the access-list number 1.

Question 5

What are two benefits of using NAT? (choose two)

A. NAT protects network security because private networks are not advertised.
B. NAT accelerates the routing process because no modifications are made on the packets.
C. Dynamic NAT facilitates connections from the outside of the network.
D. NAT facilitates end-to-end communication when IPsec is enable.
E. NAT eliminates the need to re-address all host that require external access.
F. NAT conserves addresses through host MAC-level multiplexing.


Answer: A E

Explanation

By not reveal the internal Ip addresses, NAT adds some security to the inside network -> A is correct.

NAT has to modify the source IP addresses in the packets -> B is not correct.

Connection from the outside of the network through a “NAT” network is more difficult than a more network because IP addresses of inside hosts are hidden -> C is not correct.

In order for IPsec to work with NAT we need to allow additional protocols, including Internet Key Exchange (IKE), Encapsulating Security Payload (ESP) and Authentication Header (AH) -> more complex -> D is not correct.

By allocating specific public IP addresses to inside hosts, NAT eliminates the need to re-address the inside hosts -> E is correct.

NAT does conserve addresses but not through host MAC-level multiplexing. It conserves addresses by allowing many private IP addresses to use the same public IP address to go to the Internet -> F is not correct.

Question 6

Which two statements about static NAT translations are true? (choose two)

A. They are always present in the NAT table.
B. They allow connection to be initiated from the outside.
C. They can be configured with access lists, to allow two or more connections to be initiated from the outside.
D. They require no inside or outside interface markings because addresses are statically defined.


Answer: A B

Explanation

With static NAT, translations exist in the NAT translation table as soon as you configure static NAT command(s), and they remain in the translation table until you delete the static NAT command(s).

With dynamic NAT, translations do not exist in the NAT table until the router receives traffic that requires translation. Dynamic translations have a timeout period after which they are purged from the translation table.

-> A is correct.

Because static NAT translations are always present in the NAT table so outside hosts can initiate the connection without being dropped -> B is correct.

Static translations can not be configured with access lists. To configure static NAT, we only need to specify source IP, NAT IP, inside interface & outside interface.

-> C is not correct.

We have to specify which is the inside and outside interface -> D is not correct.

For your information, below is an example of configuring static NAT:

R0(config)#int f0/0
R0(config-if)#ip nat inside

R0(config-if)#int f0/1
R0(config-if)#ip nat outside

R0(config)#ip nat inside source static 10.0.0.1 200.0.0.2

(Reference: http://www.cisco.com/en/US/tech/tk648/tk361/technologies_tech_note09186a0080093f31.shtml)

Question 7

Refer to the exhibit. Which statement about packet addresses are true during data exchange when host A makes Web-request to WWW Server, considering that there is NAT overload scheme for data passing from Corp LAN hosts to outside networks in use?

NAT_Overload.jpg

A. Source 234.15.27.226:3015 and destination 234.15.27.225:80
B. Source 200.15.239.128:3015 and destination 192.168.10.34:80
C. Destination 192.168.10.11:3015 and source 200.15.239.128:80
D. Source 192.168.10.34:80 and destination 192.168.10.254:3015
E. Destination 234.15.27.225:3015 and source 200.15.239.128:80


Answer: E

Explanation

From A to Corp router:
+ Source: 192.168.10.34: 3015 & Destination: 200.15.239.128:80
From Corp to WWW Server:
+ Source: 234.15.27.225:3015 & Destination: 200.15.239.128:80
From WWW Server to Corp:
+ Source: 200.15.239.128:80 & Destination: 234.15.27.225:3015
From Corp to Host A:
+ Source: 200.15.239.128:80 & Destination: 192.168.10.34:3015

So the only correct answer is E (from WWW server to Corp)

Comments (268) Comments
Comment pages
1 3 4 5 6 892
  1. Oxo
    April 16th, 2013

    @ X I was a bit confused myself X. But it is correct. It is the only legitimate translation option given. Remember that the host is using NAT Overload. There is a typo though in that Host A is not on the same network as its Gateway. No traffic would get passed the Gateway with this config. But as I said I’m sure it is a typo.

  2. Bhargav
    April 17th, 2013

    any body wants ccna online training and have any doubts regarding concepts contact me bhargav.cisco@gmail.com

  3. dan
    April 18th, 2013

    the last damps of ccna 640-802 please
    I have exam the coming tuesday!!!!!!!!!!!!!!!!!
    danel5181@gmail.com

  4. z
    April 18th, 2013

    on Q7 : From A to corp router, y is the destination 200.15.239.128:80 ? if it is going to the Corp router?

  5. Chan
    April 28th, 2013

    Latest dump please sitting for exam on 30th…thx
    ckviper@gmail.com

  6. naif
    April 29th, 2013

    Please help i want to give ccna exam After 10 days please sent Latest dumps on
    naifhamed2000@yahoo.com

  7. jun
    May 2nd, 2013

    Hello. please help…i wanted to take ccna exam please send latest dump on juminda98@yahoo.com thank u so much.

  8. Zahid Ismail
    May 5th, 2013

    q5 in today exam

  9. Anonymous
    May 7th, 2013

    taking the ccna test in few days, can any body please send me the lates dumps to this email/ csalih30@yahoo.com.

  10. Anonymous
    May 7th, 2013

    any body knows if the ccna exam for the second time is the same as the first time/ meaning the labs.

  11. Anonymous
    May 9th, 2013

    IT ‘S SO HELPFUL…!

  12. montey
    May 11th, 2013

    Please help i want to give ccna exam next week please sent Latest dumps on montasier80@yahoo.com

  13. M Khan
    May 16th, 2013

    Could you Please send latest dumps on khurram9443@yahoo.com my CCNA Exam is on 25th
    Thanks

  14. tokkumma
    May 24th, 2013

    if somebody can tell me how many question there in the exam and somebody can remember some question?

  15. suresh
    May 25th, 2013

    poor percentage to me in this.need more practice..

  16. bruke h
    May 27th, 2013

    how many question from nat are included in paper any rough idea

  17. David Okeri
    May 29th, 2013

    Pliz i will sit for the exam next month, can someone send me the latest dumps on email: olesimbe@yahoo.com

  18. greeklunatic
    May 30th, 2013

    i am giving the exam next week. pls send me the latest dumps on greeklunatic8@hotmail.com
    thanks

  19. ALI
    May 31st, 2013

    Please email me latest dump that i am going for exam next months. ksitedu@yahoo.com

    Thanks

  20. Ahmed
    June 1st, 2013

    i am giving the exam next week. pls send me the latest dumps on a7medcis@gmail.com
    thanks

  21. vickyz
    June 1st, 2013

    Hello friends,
    I have a query from some requirement interview question. NEED to install a test server on a system and run the web application with in my LAN network say ipaddress 10.108.122.25 255.255.255.0(system IP )
    THAT application has to accessed by some X user outside the network from different STATE.
    The Manager asking me to provide an IP address to allow that X user to get access of this applicaiton for testing purpose.
    Please help me out with the query
    thank you all
    email:outlandish_05@yahoo.com

  22. Anonymous
    June 4th, 2013

    me genera ruido la septima pregunta

    se supone que en el 4 salto (el de regreso) deberia ser la IP de Corp cierto!???

  23. Juan
    June 14th, 2013

    Q7 Estoy de acuerdo, la unica respuesta que usar bien las ip origen y destino, porque el paquete debe llevar “ips publicas” y la A no es porque tiene como destino el siguiente salto, en tanto la E invierte las ips como respuesta y utiliza bien las ip origen y destino.

  24. dhan
    June 19th, 2013

    please assist.
    i will be takingthe exam next week. pls send me the latest dumps on dhan108585@gmail.com
    thanks

  25. Hosam Hamdy
    June 21st, 2013

    Please send me simpified papers and Latest questions at

    hosameldinawad2010@hotmail.com

  26. Anonymous
    June 26th, 2013

    pls send me the latest dumps on rafaa_it@hotmail.com

  27. Tanu
    June 30th, 2013

    Need latest dump exam on 21st July

    Please send me – tanvireee@yahoo.com

  28. Anonymous
    June 30th, 2013

    Someone has also the question of pass4sure?
    It will be a good exercise.
    Thks in adavance!!

  29. baby
    July 10th, 2013

    please help me, am going to take my ccna exam next week, please sent me the latest dump with this address. your fast action is appreciated.

    dmethiolove@gmail.com

  30. Anonymous
    July 12th, 2013

    pliz i am going to ccna exam next week

    ples sent me latest dumps

  31. Anonymous
    July 12th, 2013
  32. Anonymous
    July 17th, 2013

    I completed ccna pass4sure v10 653 questions .Which was realy helpful .
    refer this site latest exam questions available http://tr.im/4428f

  33. rose
    July 26th, 2013

    Finding difficulty in understanding NAT, PAT :(

  34. CCNA900
    July 29th, 2013

    Hi,

    I had Q6 in the exam today.

  35. Baloo
    July 29th, 2013

    pls i need the latest dumbs too igene14@yahoo.com

  36. JBS
    August 7th, 2013

    Tomorrow is my exam, wish me luck!

  37. Sri8720
    August 7th, 2013

    Request you to please send me the latest dumps to srinu8720@yahoo.com

  38. Evilseed
    August 12th, 2013

    got my exam on this aug.. can anyone send me the latest dumb.. papacrox90@yahoo.com ….. thank you so much ^^

  39. tomaz
    August 15th, 2013

    Good news to ccna and ccnp follower all pass4sure dumps with till date updates are available in http://123s.co/9tut9tut download the dump and prepare for your certificates.

  40. Wgomez
    August 21st, 2013

    i am giving the exam next week. pls send me the latest dumps on ed.go@live.com
    thanks

  41. Adeel
    August 25th, 2013

    Hello Guys I hope you will be fine there. I have CCNA (640-802) 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.

    Details 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

  42. lily
    August 25th, 2013

    great review.. thanks.

  43. busani
    August 30th, 2013

    hello
    Request you to please send me the latest dumps to swisstriller@gmail.com

  44. Vasile
    September 2nd, 2013

    Question 3 I think the correct answers are D, E. If we use /25 then .128 is the network address which is not a valid host.

  45. Vasile
    September 2nd, 2013

    Sorry, question 3 is correct. I was wrong.

  46. Max
    September 3rd, 2013

    Can somebody plz send me the latest dumps for CCNA .
    i have an exam on the 23 of September.
    email address is marjans1985@yahoo.com
    Thanks

  47. Walter
    September 5th, 2013

    CISCO says they are upgrading to the new exam on the 30th September, I want to take the exam before that date is it advisable or should i continue studying and wait for the new exam?
    somebody advice pls.

  48. Ryan Fahey
    September 7th, 2013

    @Walter

    If you believe you can be ready before September 30, take it now.
    There will be 10% or more new material on the Exam not covered in the standard materials.
    The study materials are rolling out, but it will take time before there are any dumps or questions available for you to study for the new material.

    All the present questions have dumps for you to study,
    and nobody can tell which test you took, you are just either CCNA certified or not.
    Also, who knows if there will be new SIMS involving IPV6 and others.

    Take the current one if you can .

  49. jasostrong
    September 11th, 2013

    Thanks 9tut. I made it. I passed my CCNA 200-120 today. The sim is Access-list 1 , Access-list 2 & EIGRP. A lot of new questions like Netflow, Syslog, SNMP, VRRP, and GLBP.

  50. Chibu
    September 11th, 2013

    Failed the exam today, scores 762/ EIGRP,ACL2,VTP.

Comment pages
1 3 4 5 6 892
Add a Comment