An administrator examines the following output from a Cisco router after configuring Network Address Translation to map private addresses to a defined address pool:
text
Router# show ip nat statistics
Total active translations: 1 (0 static, 1 dynamic; 0 extended)
Outside interfaces:
GigabitEthernet0/1
Inside interfaces:
GigabitEthernet0/0
Hits: 14 Misses: 0
Dynamic mappings:
-- Inside Source
[id 1] access-list 10 pool NAT_POOL refcount 1
Users on the internal subnet report that only one device at a time can successfully communicate with external networks. Which configuration change will resolve this issue and allow multiple concurrent internal hosts to share the translation pool?
- Append the overload keyword to the ip nat inside source list 10 pool NAT_POOL command.Cevap
- BAdd the overload keyword to the ip nat pool NAT_POOL command definition.
- CModify Access Control List 10 to permit the public IP addresses contained within NAT_POOL.
- DReassign interface GigabitEthernet0/0 as ip nat outside and GigabitEthernet0/1 as ip nat inside.
Cevap
Append the overload keyword to the ip nat inside source list command to enable Port Address Translation.
The show ip nat statistics output reveals '0 extended translations', meaning the router is performing 1-to-1 dynamic NAT rather than Port Address Translation (PAT). Adding the overload keyword to the 'ip nat inside source list 10 pool NAT_POOL' statement enables port multiplexing, which permits multiple inside hosts to share pool addresses simultaneously.
Adım Adım Çözüm
Anahtar Kavram
Port Address Translation (PAT) / Inside Source NAT Overload Configuration