I have a Cisco Router configured with Nat Static translating internal network to another subnet to avoid subnet conflict
this is working fine, however internet browsing is not working with the overload statement. snapshot configuration as follows:
Router#
interface GigabitEthernet0/0
mtu 1400
ip address 184.170.143.94 255.255.255.240
ip nat outside
!
interface GigabitEthernet0/1
ip address 192.168.18.250 255.255.255.0
ip nat inside
!
ip nat inside source list 1 interface GigabitEthernet0/0 overload
ip nat inside source static network 192.168.18.0 172.19.18.0 /24 extendable
!
access-list 1 permit any
Router# show ip nat translation:
tcp 184.170.143.94:3389 192.168.18.66:3389 192.168.112.186:60555 192.168.112.186:60555
tcp 172.19.18.66:3389 192.168.18.66:3389 192.168.112.186:60884 192.168.112.186:60884
tcp 184.170.143.94:4200 192.168.18.66:4200 184.170.143.82:135 184.170.143.82:135
udp 172.19.18.66:51990 192.168.18.66:51990 4.2.2.1:53 4.2.2.1:53
udp 172.19.18.66:51990 192.168.18.66:51990 4.2.2.2:53 4.2.2.2:53
udp 172.19.18.66:55045 192.168.18.66:55045 4.2.2.1:53 4.2.2.1:53
udp 172.19.18.66:55045 192.168.18.66:55045 4.2.2.2:53 4.2.2.2:53
Please help with the internet browsing , it is not working
Thanks Hassan