I can't seem to get my Cisco 827 router to allow incoming connections to the http port on an internal server with private IP. I configured NAT like this:
ip nat inside source static tcp 192.168.0.1 80 interface Dialer0 80
and this should open up and forward port 80 in theory, but it doesn't. I read all kinds of docs and group posts and it seems that I'm doing everything right. Or am I? My ISP is Tiscali and I have a dynamic public IP. Could this pronlem be linked to something at my ISP? I'm currently running a web server (with DydDNS) using Alcatel Speed Touch Home ADSL modem and have no problems there (no NAT or port forwarding with this), but when I hook up the Cisco827 I can't open any incoming ports. I even moved the router's integrated web server to port 8080 to avoid any conflicts. Here's my config, can anyone please tell me what is possibly wrong with it:
version 12.1 no service pad service timestamps debug uptime service timestamps log uptime no service password-encryption ! hostname Router ! enable secret 5 encrypted.pw.here ! ip subnet-zero ! interface Ethernet0 ip address 192.168.0.75 255.255.255.0 ip nat inside ! interface ATM0 no ip address no atm ilmi-keepalive pvc 8/35 encapsulation aal5mux ppp dialer dialer pool-member 1 ! bundle-enable dsl operating-mode auto ! interface Dialer0 ip address negotiated ip nat outside encapsulation ppp dialer pool 1 ppp chap hostname user.nane.here ppp chap password 7 encrypted.pw.here ppp pap sent-username user.nane.here password 7 encrypted.pw.here ! interface Dialer1 no ip address no cdp enable ! ip nat inside source list 1 interface Dialer0 overload ip nat inside source static tcp 192.168.0.1 80 interface Dialer0 80 ip classless ip route 0.0.0.0 0.0.0.0 Dialer0 no ip http server ip http port 8080 ! access-list 1 permit 192.168.0.0 0.0.0.255 ! line con 0 exec-timeout 0 0 transport input none stopbits 1 line vty 0 4 password pw.here login ! scheduler max-task-time 5000 end
Thanks in advance