A network administrator configures Port Address Translation (PAT) on a Cisco IOS router so that internal hosts on the network can access external services through WAN interface GigabitEthernet0/0/1. The access list and global translation rules are configured as follows:
text
access-list 105 permit ip 10.10.50.0 0.0.0.255 any
ip nat inside source list 105 interface GigabitEthernet0/0/1 overload
During testing, internal clients cannot access external websites, and running `show ip nat translations` produces no output. An inspection of the interface configuration reveals:
text
interface GigabitEthernet0/0/0
description LAN Gateway
ip address 10.10.50.1 255.255.255.0
!
interface GigabitEthernet0/0/1
description WAN Interface
ip address 203.0.113.2 255.255.255.252
ip nat outside
Which configuration step on the router is required to enable successful address translation for the internal clients?
- Apply the command `ip nat inside` under interface GigabitEthernet0/0/0.Answer
- BApply the command `ip nat overload` under interface GigabitEthernet0/0/1.
- CReconfigure access list 105 to use a wildcard mask of `0.0.0.0` for the network.
- DApply the command `ip nat inside` under interface GigabitEthernet0/0/1.