An administrator notices that while the first host on the internal network () can access the internet, subsequent hosts are unable to establish outbound connections simultaneously. Inspecting Router1 reveals the following running configuration:
text
access-list 105 permit ip 10.1.10.0 0.0.0.255 any
ip nat pool EDGE_POOL 203.0.113.5 203.0.113.5 prefix-length 32
ip nat inside source list 105 pool EDGE_POOL
Command output from `show ip nat statistics` confirms:
text
Total active translations: 1 (0 static, 1 dynamic, 0 extended)
Outside interfaces: GigabitEthernet0/1
Inside interfaces: GigabitEthernet0/0
Hits: 142 Misses: 18
Dynamic mappings:
-- Inside Source
access-list 105 pool EDGE_POOL ref count 1
Which configuration modification must be applied to Router1 to allow all internal hosts on the network to share the single IP address assigned to `EDGE_POOL` concurrently?
- Append the overload keyword to the statement: ip nat inside source list 105 pool EDGE_POOL overloadCevap
- BModify the pool range in EDGE_POOL to include addresses from 172.16.0.0 to 172.35.255.255 to provide enough addresses for dynamic allocation
- CReplace the pool parameter with interface GigabitEthernet0/1 without additional keywords: ip nat inside source list 105 interface GigabitEthernet0/1
- DAdd a deny entry for host traffic at the end of access-list 105 to prevent implicit deny behavior from blocking NAT translations