Está en la página 1de 3

CCNA Training CCNA NAT SIM Question 2

Type text to search here...

Page 1 of 10

Submit Query

Home > CCNA NAT SIM Question 2

CCNA NAT SIM Question 2


February 5th, 2014 Go to comments
Question

You work as a network technician at 9tut.com. Study the exhibit carefully. You are required to perform configurations to enable Internet
access. The Router ISP has given you six public IP addresses in the 198.18.32.65 198.18.32.70/29 range.
9tut.com has 62 clients that needs to have simultaneous internet access. These local hosts use private IP addresses in the 192.168.6.65
192.168.6.126/26 range.
You need to configure Router1 using the PC1 console.
You have already made basic router configuration. You have also configured the appropriate NAT interfaces; NAT inside and NAT
outside respectively.
Now you are required to finish the configuration of Router1.

Solution
Note: If you are not sure how NAT & PAT work, please read my Network Address Translation NAT
Tutorial. You can download a similar sim to practice here:
http://www.9tut.com/download/9tut.com_CCNA_NAT_sim_question.zip
The company has 62 hosts that need to access the internet simultaneously but we just have 6 public IP
addresses from 198.18.32.65 to 198.18.32.70/29 => we have to use NAT overload (or PAT)
Double click on PC1 to access Router1s command line interface
Router1>enable
Router1#configure terminal

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

9/16/2014

CCNA Training CCNA NAT SIM Question 2

Page 2 of 10

Create a NAT pool of global addresses to be allocated with their netmask (notice that /29 = 248)
Router1(config)#ip nat pool mypool 198.18.32.65 198.18.32.70 netmask 255.255.255.248
Create a standard access control list that permits the addresses that are to be translated
Router1(config)#access-list 1 permit 192.168.6.64 0.0.0.63
Establish dynamic source translation, specifying the access list that was defined in the prior step
Router1(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.6.65 to 192.168.6.126, into an address from the pool named mypool (the pool contains
addresses from 198.18.32.65 to 198.18.32.70)
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:
Router1(config)#interface fa0/0
Router1(config-if)#ip nat inside
Router1(config-if)#exit
Router1(config)#interface s0/0
Router1(config-if)#ip nat outside
Before leaving Router1, you should save the configuration:
Router1(config)#end (or Router1(config-if)#end)
Router1#copy running-config startup-config
Check your configuration by going to PC2 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 Access List Sim
CCNA NAT SIM Question 1

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

9/16/2014

CCNA Training CCNA NAT SIM Question 2

Page 3 of 10

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
Previous 1 10 11 12 35
1. TechGoliath
May 27th, 2014
https://app.box.com/s/ljdgzhhzaubocmmutjje !BAM! pretty sure this is a lab!
2. Sergio
May 28th, 2014
@TechGoliath
Theres no questions in the pkt file.. im assuming the questions are similar to the NAT lab sim
here at 9tut.. am i correct??? if it is.. then its a piece of cake :)
3. sony
June 5th, 2014
guys, have any one work out why this NAT Sim2 not working ? cant ping to ISP 192.0.2.114
ping from router is fine but not from testing PC
4. Carlos
June 6th, 2014
try to run debugs, try to see if you are able to see the traffic reaching the router.
Debug ip nat
debug ip icmp
If you can run those two commands while keeping a continuos ping going. you should be able to
find the issue. Double check your ACL associated to the nat statement :D
5. Jedi
June 8th, 2014

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

9/16/2014

También podría gustarte