A network administrator configures dynamic NAT on a Cisco IOS router using an IP pool named `INTERNET_POOL` ( to ) for hosts in the internal network. During testing, users observe that after two internal hosts establish outbound connections, no other internal hosts can access external sites. The output of `show ip nat statistics` shows total translations equal to ( static, dynamic, extended).
Configuration snippet:
text
ip nat pool INTERNET_POOL 198.51.100.1 198.51.100.2 netmask 255.255.255.252
access-list 15 permit 10.20.30.0 0.0.1.255
ip nat inside source list 15 pool INTERNET_POOL
Which TWO statements correctly identify the root cause of this issue and the solution required to allow all internal hosts to translate concurrently? (Select two.)
- The current `ip nat inside source` command configures dynamic 1-to-1 NAT, which exhausts the pool after assigning both available public IP addresses.Answer
- Appending the `overload` keyword to the `ip nat inside source` command enables Port Address Translation (PAT), allowing multiple internal hosts to share pool IP addresses using unique Layer 4 port numbers.Answer
- CThe access list wildcard mask `0.0.1.255` matches public IPv4 ranges outside RFC 1918, preventing internal traffic on from matching access-list 15.
- DThe NAT pool subnet mask `255.255.255.252` restricts translation memory capacity to two total host entries regardless of port utilization.