InterviewSolution
Saved Bookmarks
This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your knowledge and support exam preparation. Choose a topic below to get started.
| 1. |
Which command will create a dynamic pool named Todd that will provide you with 30 global addresses? |
| Answer» 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 command will clear all the translations active on your router? |
| Answer» The command clear ip nat translations * will clear all the active NAT entries in your translation table. | |
| 3. |
Which command will show you the summary of the NAT configuration? |
| Answer» 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. | |
| 4. |
Which are considered the methods of NAT? |
| Answer» You can configure NAT three ways on a Cisco router: static, dynamic, and NAT Overload (PAT). | |
| 5. |
Which command will show you all the translations active on your router? |
| Answer» The command show ip nat translations will show you the translation table containing all the active NAT entries. | |
| 6. |
Which command would you place on interface on a private network? |
| Answer» 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. | |
| 7. |
Port Address Translation is also termed what? |
| Answer» Another term for port address translation is NAT Overload because that is the command used to enable port address translation. | |
| 8. |
Which command will allow you to see real-time translations on your router? |
| Answer» The command debug ip nat will show you in real time the translations occurring on your router. | |
| 9. |
Which command would you place on interface connected to the Internet? |
| Answer» 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. | |