Which command will show you the summary of the NAT configuration?
Options
A. show ip nat translations
B. show ip nat statistics
C. debug ip nat
D. clear ip nat translations *
Correct Answer
show ip nat statistics
Explanation
The
show ip nat statistics command displays a summary of the NAT configuration as well as counts of active translation types, hits to an existing mapping, misses (causing an attempt to create a mapping), and expired translations.
Network Address Translation problems
Search Results
1. Which command will create a dynamic pool named Todd that will provide you with 30 global addresses?
Options
A. ip nat pool Todd 171.16.10.65 171.16.10.94 net 255.255.255.240
B. ip nat pool Todd 171.16.10.65 171.16.10.94 net 255.255.255.224
C. ip nat pool todd 171.16.10.65 171.16.10.94 net 255.255.255.224
D. ip nat pool Todd 171.16.10.1 171.16.10.254 net 255.255.255.0
Correct Answer: ip nat pool Todd 171.16.10.65 171.16.10.94 net 255.255.255.224
Explanation:
The command
ip nat pool <name> creates the pool that hosts can use to get onto the global Internet. What makes option B correct is that the range 171.16.10.65 through 171.16.10.94 includes 30 hosts, but the mask has to match 30 hosts as well, and that mask is 255.255.255.224. Option C is wrong because the pool name has a lower case "T" in the pool name. Pool name's are case sensitive.
2. Which of the following are disadvantages of using NAT?
Translation introduces switching path delays.
Conserves legally registered addresses.
Causes loss of end-to-end IP traceability.
Increases flexibility when connecting to the Internet.
Certain applications will not function with NAT enabled.
NAT is not perfect and can cause some issues in some networks, but most networks work just fine. NAT can cause delays and troubleshooting problems, and some applications just won't work.
3. Which command will show you all the translations active on your router?
The most popular use of NAT is if you want to connect to the Internet and you don't want hosts to have global (real) IP addresses, but option B and D are correct as well.
6. Which of the following would be a good starting point for troubleshooting if your router is not translating?
Options
A. Reboot.
B. Call Cisco.
C. Check your interfaces for the correct configuration.
As in access-lists, you must configure your interfaces before NAT will provide any translations. On the inside networks you would use the command
ip nat inside. On the outside interface, you will use the command
ip nat outside.