An enterprise router is configured to perform dynamic NAT for an internal LAN subnet using a NAT pool containing a single public IP address (). Network users report that while the first host connecting to an external server successfully establishes a session, all subsequent internal hosts fail to reach external destinations simultaneously.
Review the following excerpt from the router's configuration:
text
interface GigabitEthernet0/0
ip address 10.50.0.1 255.255.255.0
ip nat inside
!
interface GigabitEthernet0/1
ip address 203.0.113.1 255.255.255.248
ip nat outside
!
ip access-list standard LAN_SERVERS
permit 10.50.0.0 0.0.255.255
!
ip nat pool PUBLIC_POOL 203.0.113.2 203.0.113.2 netmask 255.255.255.248
ip nat inside source list LAN_SERVERS pool PUBLIC_POOL
Which configuration change will resolve the issue and permit concurrent internet access for multiple internal hosts?
- Append the overload keyword to the ip nat inside source list LAN_SERVERS pool PUBLIC_POOL command.Cevap
- BModify the ACL statement to permit 10.50.0.0 0.0.0.255 instead of 10.50.0.0 0.0.255.255.
- CChange the ip nat pool PUBLIC_POOL command to define a range spanning from 203.0.113.2 to 203.0.113.30.
- DRe-apply the ip helper-address command on interface GigabitEthernet0/1 targeting 203.0.113.2.