I have a Cisco 4000 series router and am trying to forward port 80 to my web server. When I try to access my website from any computer I get a failure to connect. I know it is my router configs because I’ve tested the web server connected straight to the cable modem and everything works fine. Here is my configs:
!
version 12.0
service timestamps debug uptime
service timestamps log uptime
service password-encryption
!
hostname CougarRouter
!
enable secret 5 $1$irmt$MkCa6d3361d07QJoea6ok1
!
!
!
!
!
ip subnet-zero
no ip finger
ip name-server 68.105.29.12
ip name-server 68.105.28.11
!
!
!
process-max-time 200
!
interface Ethernet0
description Link to Internal Network
ip address 10.1.1.1 255.255.255.0
no ip unreachables
no ip directed-broadcast
ip nat inside
media-type 10BaseT
no cdp enable
!
interface Ethernet1
description Link to Web Server
ip address 10.1.2.1 255.255.255.0
no ip directed-broadcast
ip nat inside
media-type 10BaseT
no cdp enable
!
interface FastEthernet0
description Link to Internet
ip address 68.110.223.* 255.255.255.224
no ip redirects
no ip directed-broadcast
ip nat outside
no ip route-cache
no ip mroute-cache
full-duplex
no cdp enable
!
router rip
network 10.0.0.0
!
ip nat inside source list 1 interface FastEthernet0 overload
ip nat inside source static tcp 10.1.2.2 8080 interface FastEthernet0 8080
ip nat inside source static tcp 10.1.2.2 80 interface FastEthernet0 80
ip classless
ip route 0.0.0.0 0.0.0.0 68.110.223.161
ip route 0.0.0.0 0.0.0.0 10.1.2.2
no ip http server
!
access-list 1 permit 10.1.1.0 0.0.0.255
access-list 1 permit 10.1.2.0 0.0.0.255
no cdp run
!
line con 0
transport input none
line aux 0
line vty 0 4
password 7 140E1D08095673797D
login
!
end
Any help is appreciated,
-Jeff