Hello all,
I'm having a bit of trouble with configuring NAT on my cisco router. My local network is able to get out to the internet as the 192.168.0.0 network gets translated to 1.1.1.2. The problem is I have a web server in that same local network I want to access via a second inside global IP address (1.1.1.3). When I insert the static NAT command for the web server (192.168.0.100), it becomes unable to ping anything on the internet. I believe I should be able to ping 1.1.1.3 from a device on the internet
I've supplied the relevant commands here:
interface FastEthernet0/0
ip address 192.168.0.1 255.255.255.0
ip nat inside
interface FastEthernet0/1
ip address 1.1.1.2 255.255.255.248
ip nat outside
ip route 0.0.0.0 0.0.0.0 f0/1
ip nat inside source list 5 interface f0/1 overload
ip nat inside source static 192.168.0.100 1.1.1.3
ACL 5 contains:
permit 192.168.0.0 0.0.0.255
I've also tried the following instead of the static NAT line above but it didn't work either:
ip nat inside source static tcp 192.168.0.100 80 1.1.1.3 80
I will post the actual config later when I have access so there may be a typo or two in my paraphrasing, however I think I'm doing something fundamentally wrong using multiple internet IPs.