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.
2. Which command will clear all the translations active on your router?
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.
5. 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.
6. When creating a pool of global addresses, which of the following can be used instead of the netmask command?
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.
10. Which of the following is true when describing an anycast address?
Options
A. Packets addressed to a unicast address are delivered to a single interface.
B. Packets are delivered to all interfaces identified by the address. This is also called one-to-many addresses.
C. This address identifies multiple interfaces and the anycast packet is only delivered to one address. This address can also be called one-to-one-of-many.
D. These addresses are meant for nonrouting purposes, but they are almost globally unique so it is unlikely they will have an address overlap.
Correct Answer: This address identifies multiple interfaces and the anycast packet is only delivered to one address. This address can also be called one-to-one-of-many.
Explanation:
Anycast addresses identify multiple interfaces, which is the same as multicast; however, the big difference is that the anycast packet is only delivered to one address, the first one it finds defined in the terms of routing distance. This address can also be called one-to-one-of-many.