A network administrator configures Port Address Translation (PAT) on a Cisco IOS router to allow hosts on the internal subnet to access external servers using a dynamic NAT pool. After applying the configuration, only the first host to send traffic successfully establishes an outbound connection. All subsequent internal hosts fail to reach external destinations.
The router configuration is as follows:
text
ip nat pool EDGE_POOL 198.51.100.10 198.51.100.10 netmask 255.255.255.252
access-list 105 permit ip 192.168.10.0 0.0.0.255 any
ip nat inside source list 105 pool EDGE_POOL
!
interface GigabitEthernet0/0
ip address 192.168.10.1 255.255.255.0
ip nat inside
!
interface GigabitEthernet0/1
ip address 198.51.100.9 255.255.255.252
ip nat outside
Which modification to the router configuration will resolve the connectivity failure for all remaining internal hosts?
- Append the overload keyword to the ip nat inside source list 105 pool EDGE_POOL command.Answer
- BModify access-list 105 to use the subnet mask 255.255.255.0 instead of the wildcard mask 0.0.0.255.
- CChange the IP addresses in ip nat pool EDGE_POOL to use an RFC 1918 private address block such as 172.16.10.10 172.16.10.10.
- DSwap the interface designations by configuring ip nat outside on GigabitEthernet0/0 and ip nat inside on GigabitEthernet0/1.