A network engineer is troubleshooting internet connectivity issues on a Cisco IOS router configured for Network Address Translation. Internal hosts on the network report that only one host can access external resources at any given time. Subsequent host traffic is dropped. The engineer inspects the router configuration and operational state using verification commands:
text
Router# show ip nat statistics
Total active translations: 1 (0 static, 1 dynamic, 1 extended)
Outside interfaces:
GigabitEthernet0/1
Inside interfaces:
GigabitEthernet0/0
Hits: 48 Misses: 12
CEF Translated packets: 48, Fast Switched packets: 0
Expired translations: 15
Dynamic mappings:
-- Inside Source
[id 1] access-list 101 pool INTERNET-POOL refcount 1
pool INTERNET-POOL: netmask 255.255.255.252
start 203.0.113.1 end 203.0.113.1
type generic, total addresses 1, allocated 1 (100%), misses 12
Router# show running-config | include ip nat
ip nat pool INTERNET-POOL 203.0.113.1 203.0.113.1 netmask 255.255.255.252
ip nat inside source list 101 pool INTERNET-POOL
access-list 101 permit ip 10.10.10.0 0.0.0.255 any
Which configuration change is required to allow all internal hosts on the network to share the single public IPv4 address simultaneously?
- Append the overload keyword to the command ip nat inside source list 101 pool INTERNET-POOL.Answer
- BExpand the pool range using the command ip nat pool INTERNET-POOL 203.0.113.1 203.0.113.254 netmask 255.255.255.0 without adding overload.
- CModify access-list 101 to specify permit ip 172.16.0.0 0.15.255.255 any because 10.10.10.0/24 is not a valid RFC 1918 private IPv4 subnet.
- DAdd an explicit deny ip any any entry at the end of access-list 101 to clear blocked active translation entries.