I am a newbie at router configurations. The following is the running-config from my cisco router. I have a dynamic IP from an ISP that I would like to route port 80 to a specific private ip address. I'm running the firewall and nat on the router. I thought I had configured it correctly but when I try to hit the webserver by the public IP address, I still get the page cannot be displayed error on my browser. Can someone tell me what I am doing wrong?
Thanks in advance,
Jafo
Current configuration : 3413 bytes
!
version 12.2
service timestamps debug uptime
service timestamps log uptime
service password-encryption
!
hostname
!
enable password !
memory-size iomem 25
ip subnet-zero
!
!
no ip domain-lookup
ip dhcp excluded-address 10.x.x.1 10.x.x.101
!
ip dhcp pool 1
network 10.x.x.x 255.255.255.0
default-router 10.x.x.1
dns-server xxx.xxx.xxx.xxx xxx.xxx.xxx.xxx
!
ip inspect max-incomplete high 1100
ip inspect one-minute high 1100
ip inspect name FastEthernet_0 tcp
ip inspect name FastEthernet_0 udp
ip inspect name FastEthernet_0 cuseeme
ip inspect name FastEthernet_0 ftp
ip inspect name FastEthernet_0 h323
ip inspect name FastEthernet_0 rcmd
ip inspect name FastEthernet_0 realaudio
ip inspect name FastEthernet_0 smtp
ip inspect name FastEthernet_0 streamworks
ip inspect name FastEthernet_0 vdolive
ip inspect name FastEthernet_0 sqlnet
ip inspect name FastEthernet_0 tftp
ip audit notify log
ip audit po max-events 100
ip ssh time-out 120
ip ssh authentication-retries 3
vpdn enable
!
vpdn-group pppoe
request-dialin
protocol pppoe
!
!
!
!
!
interface Ethernet0
description connected to Internet
no ip address
no keepalive
half-duplex
pppoe enable
pppoe-client dial-pool-number 1
!
interface FastEthernet0
description connected to EthernetLAN
ip address 10.x.x.1 255.255.255.0
ip access-group 103 in
ip nat inside
ip inspect FastEthernet_0 in
ip tcp adjust-mss 1452
speed auto
!
interface Dialer1
description connected to Internet
ip address negotiated
ip access-group 104 in
ip mtu 1492
ip nat outside
encapsulation ppp
dialer pool 1
dialer-group 2
ppp authentication chap pap callin
ppp chap hostname xxxxxxx
ppp chap password
ppp pap sent-username xxxxxxxx password
!
router rip
version 2
passive-interface Dialer1
network 10.0.0.0
no auto-summary
!
ip nat inside source list 2 interface Dialer1 overload
ip nat inside source static tcp 10.x.x.100 80 interface Ethernet0 80
ip classless
ip route 0.0.0.0 0.0.0.0 Dialer1
no ip http server
ip pim bidir-enable
!
!
access-list 1 permit 10.x.x.0 0.0.0.255
access-list 2 permit 10.x.x.0 0.0.0.255
access-list 100 permit ip any any
access-list 101 deny ip any any
access-list 102 permit udp any eq rip any eq rip
access-list 102 permit tcp host 10.x.x.100 any eq www
access-list 102 permit ip host 10.x.x.100 any
access-list 102 permit tcp host 10.x.x.101 any eq www
access-list 102 permit ip host 10.x.x.101 any
access-list 102 permit tcp any any eq 7070
access-list 102 permit udp any any eq bootpc
access-list 102 permit udp any any eq bootps
access-list 102 permit tcp any any range 7648 7649
access-list 102 permit udp any any eq domain
access-list 102 permit tcp any any eq finger
access-list 102 permit tcp any any range ftp-data ftp
access-list 102 permit tcp any any eq 1720
access-list 102 permit tcp any any eq www
access-list 102 permit tcp any any eq 144
access-list 102 permit udp any any eq 2049
access-list 102 permit tcp any any eq 2049
access-list 102 permit udp any gt 1023 any
access-list 102 permit tcp any gt 1023 any
access-list 102 permit tcp any any eq nntp
access-list 103 permit ip any any
access-list 104 deny ip any any
dialer-list 2 protocol ip permit
!
snmp-server community public RO
!
line con 0
exec-timeout 0 0
password
login
line aux 0
line vty 0 4
password
login
!
end
Thanks in advance,
Jafo
Current configuration : 3413 bytes
!
version 12.2
service timestamps debug uptime
service timestamps log uptime
service password-encryption
!
hostname
!
enable password !
memory-size iomem 25
ip subnet-zero
!
!
no ip domain-lookup
ip dhcp excluded-address 10.x.x.1 10.x.x.101
!
ip dhcp pool 1
network 10.x.x.x 255.255.255.0
default-router 10.x.x.1
dns-server xxx.xxx.xxx.xxx xxx.xxx.xxx.xxx
!
ip inspect max-incomplete high 1100
ip inspect one-minute high 1100
ip inspect name FastEthernet_0 tcp
ip inspect name FastEthernet_0 udp
ip inspect name FastEthernet_0 cuseeme
ip inspect name FastEthernet_0 ftp
ip inspect name FastEthernet_0 h323
ip inspect name FastEthernet_0 rcmd
ip inspect name FastEthernet_0 realaudio
ip inspect name FastEthernet_0 smtp
ip inspect name FastEthernet_0 streamworks
ip inspect name FastEthernet_0 vdolive
ip inspect name FastEthernet_0 sqlnet
ip inspect name FastEthernet_0 tftp
ip audit notify log
ip audit po max-events 100
ip ssh time-out 120
ip ssh authentication-retries 3
vpdn enable
!
vpdn-group pppoe
request-dialin
protocol pppoe
!
!
!
!
!
interface Ethernet0
description connected to Internet
no ip address
no keepalive
half-duplex
pppoe enable
pppoe-client dial-pool-number 1
!
interface FastEthernet0
description connected to EthernetLAN
ip address 10.x.x.1 255.255.255.0
ip access-group 103 in
ip nat inside
ip inspect FastEthernet_0 in
ip tcp adjust-mss 1452
speed auto
!
interface Dialer1
description connected to Internet
ip address negotiated
ip access-group 104 in
ip mtu 1492
ip nat outside
encapsulation ppp
dialer pool 1
dialer-group 2
ppp authentication chap pap callin
ppp chap hostname xxxxxxx
ppp chap password
ppp pap sent-username xxxxxxxx password
!
router rip
version 2
passive-interface Dialer1
network 10.0.0.0
no auto-summary
!
ip nat inside source list 2 interface Dialer1 overload
ip nat inside source static tcp 10.x.x.100 80 interface Ethernet0 80
ip classless
ip route 0.0.0.0 0.0.0.0 Dialer1
no ip http server
ip pim bidir-enable
!
!
access-list 1 permit 10.x.x.0 0.0.0.255
access-list 2 permit 10.x.x.0 0.0.0.255
access-list 100 permit ip any any
access-list 101 deny ip any any
access-list 102 permit udp any eq rip any eq rip
access-list 102 permit tcp host 10.x.x.100 any eq www
access-list 102 permit ip host 10.x.x.100 any
access-list 102 permit tcp host 10.x.x.101 any eq www
access-list 102 permit ip host 10.x.x.101 any
access-list 102 permit tcp any any eq 7070
access-list 102 permit udp any any eq bootpc
access-list 102 permit udp any any eq bootps
access-list 102 permit tcp any any range 7648 7649
access-list 102 permit udp any any eq domain
access-list 102 permit tcp any any eq finger
access-list 102 permit tcp any any range ftp-data ftp
access-list 102 permit tcp any any eq 1720
access-list 102 permit tcp any any eq www
access-list 102 permit tcp any any eq 144
access-list 102 permit udp any any eq 2049
access-list 102 permit tcp any any eq 2049
access-list 102 permit udp any gt 1023 any
access-list 102 permit tcp any gt 1023 any
access-list 102 permit tcp any any eq nntp
access-list 103 permit ip any any
access-list 104 deny ip any any
dialer-list 2 protocol ip permit
!
snmp-server community public RO
!
line con 0
exec-timeout 0 0
password
login
line aux 0
line vty 0 4
password
login
!
end