Cisco 851 won't NAT port 80

I am trying to map all incoming Internet port 80 traffic to an internal web server. I have successfully done this with several other services like FTP, SMTP and POP3. See my running config below:

ip nat inside source list 1 interface FastEthernet4 overload ip nat inside source static tcp 192.168.1.101 17307 interface FastEthernet4 17307 ip nat inside source static tcp 192.168.1.101 6881 interface FastEthernet4 6881 ip nat inside source static tcp 192.168.1.132 993 interface FastEthernet4 993 ip nat inside source static tcp 192.168.1.128 6100 interface FastEthernet4 6100 ip nat inside source static tcp 192.168.1.128 25 interface FastEthernet4 25 ip nat inside source static tcp 192.168.1.132 990 interface FastEthernet4 990 ip nat inside source static tcp 192.168.1.132 5000 interface FastEthernet4 5000 ip nat inside source static tcp 192.168.1.132 110 interface FastEthernet4 110 ip nat inside source static tcp 192.168.1.125 21 interface FastEthernet4 21 ip nat inside source static tcp 192.168.1.115 80 interface FastEthernet4 80

The port 80 mapping does not work. All HTTP traffic from the Internet is redirected to the Cisco SDM login page. Disabling SDM doens't work either - I get 'Unable to connect'. I've searched everywhere for an answer but haven't been able to find anything. Why can I successfully forward to all the ports listed about except for port 80?

Any help is appreciated!

--Paul

Reply to
Pau
Loading thread data ...

| I am trying to map all incoming Internet port 80 traffic to an internal web server. I have successfully done this with | several other services like FTP, SMTP and POP3. See my running config below: | | ip nat inside source list 1 interface FastEthernet4 overload | ip nat inside source static tcp 192.168.1.101 17307 interface FastEthernet4

17307 | ip nat inside source static tcp 192.168.1.101 6881 interface FastEthernet4 6881 | ip nat inside source static tcp 192.168.1.132 993 interface FastEthernet4 993 | ip nat inside source static tcp 192.168.1.128 6100 interface FastEthernet4 6100 | ip nat inside source static tcp 192.168.1.128 25 interface FastEthernet4 25 | ip nat inside source static tcp 192.168.1.132 990 interface FastEthernet4 990 | ip nat inside source static tcp 192.168.1.132 5000 interface FastEthernet4 5000 | ip nat inside source static tcp 192.168.1.132 110 interface FastEthernet4 110 | ip nat inside source static tcp 192.168.1.125 21 interface FastEthernet4 21 | ip nat inside source static tcp 192.168.1.115 80 interface FastEthernet4 80 | | | The port 80 mapping does not work. All HTTP traffic from the Internet is redirected to the Cisco SDM login page. | Disabling SDM doens't work either - I get 'Unable to connect'. I've searched everywhere for an answer but haven't been | able to find anything. Why can I successfully forward to all the ports listed about except for port 80? | | Any help is appreciated!

Try changing the port on which SDM listens.

X(config)#http server enable

You can then connect with a browser like this:

https://interface_ip_address:

Example: X(config)#http server enable 60000 This command will change the listening port to 60000

https://192.168.100.1:60000 After changing the listening port you should be able to forward port 80.

Reply to
Morph

Cabling-Design.com Forums website is not affiliated with any of the manufacturers or service providers discussed here. All logos and trade names are the property of their respective owners.