A network engineer is troubleshooting outbound connectivity failures on a Cisco IOS router. Internal devices on subnet can establish a maximum of two concurrent Internet connections. Additional hosts experience connection timeouts. The output of `show ip nat statistics` displays:
Total active translations: 2 (0 static, 2 dynamic, 0 extended)
Outside interfaces: GigabitEthernet0/1
Inside interfaces: GigabitEthernet0/0
Hits: 842 Misses: 412
Dynamic mappings:
-- Inside Source
[id 1] access-list 10 pool PUBLIC_POOL refcount 2
pool PUBLIC_POOL: netmask 255.255.255.252
start 198.51.100.1 end 198.51.100.2
type generic, total addresses 2, allocated 2 (100%), misses 412
The current running configuration contains `ip nat inside source list 10 pool PUBLIC_POOL`.
Which configuration change on the router will allow all internal hosts on subnet to share the existing pool addresses concurrently without adding new public IP addresses?
- Append the overload keyword to the ip nat inside source list 10 pool PUBLIC_POOL command.Answer
- BModify access list 10 to permit public IP addresses in the range 172.32.0.0/12 instead of private subnets.
- CChange the subnet mask of PUBLIC_POOL to 255.255.255.0 while keeping the start and end IP addresses set to 198.51.100.1 and 198.51.100.2.
- DConfigure ip nat outside on interface GigabitEthernet0/0 and ip nat inside on interface GigabitEthernet0/1.