What is the problem with this NAT configuration? interface GigabitEthernet0/0 ip address 192.168.1.1 255.255.255.0 ip nat inside ! interface GigabitEthernet0/1 ip address 203.0.113.1 255.255.255.0 ! ip nat inside source list 1 interface GigabitEthernet0/1 overload access-list 1 permit 192.168.1.0 0.0.0.255
Without 'ip nat outside', the router does not know which interface is the outside for NAT.
Why this answer
The outside interface (GigabitEthernet0/1) is missing the 'ip nat outside' command, which is required for NAT to function.