A network administrator is configuring Port Address Translation (PAT) on a Cisco IOS router to allow internal hosts in the subnet to access the Internet using the public IP address on interface GigabitEthernet0/0/0. Internal users report that they cannot establish any outbound internet connections. The running configuration reveals the following details:
interface GigabitEthernet0/0/0
ip address 203.0.113.1 255.255.255.248
ip nat outside
!
interface GigabitEthernet0/0/1
ip address 172.16.50.1 255.255.255.0
!
ip access-list standard NAT_ACL
permit 172.16.50.0 0.0.0.255
!
ip nat inside source list NAT_ACL interface GigabitEthernet0/0/0 overload
Which configuration change must be made on the router to resolve this issue?
- Configure the ip nat inside command under interface GigabitEthernet0/0/1.Cevap
- BRemove the overload keyword from the ip nat inside source command.
- CChange the ACL source network to 172.32.50.0 0.0.0.255 because 172.16.50.0 is not a valid private IP range.
- DAppend an explicit permit any statement to the end of access-list NAT_ACL.
Cevap
Configure the ip nat inside command under interface GigabitEthernet0/0/1.
For Cisco IOS NAT to operate, at least one interface must be designated as 'ip nat inside' and at least one interface as 'ip nat outside'. In the provided configuration, interface GigabitEthernet0/0/1 lacks the 'ip nat inside' command, so packets arriving from internal hosts are not identified for translation.
Adım Adım Çözüm
Anahtar Kavram
Inside and Outside NAT Interface Designation
Tahmini Süre:1m 30s