Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

web server

Status
Not open for further replies.

DManigo

ISP
Joined
Mar 16, 2005
Messages
71
Location
US
running-config

ip dhcp excluded-address 192.168.1.1
!
ip dhcp pool cisco
network 192.168.1.0 255.255.255.0
domain-name sprinthsd.net
dns-server 207.217.126.81 207.217.77.82 207.217.120.83
default-router 192.168.1.1
!
bridge irb
!
interface Ethernet0
ip address 192.168.1.1 255.255.255.0
ip nat inside
hold-queue 100 out
!
interface ATM0
no ip address
no atm ilmi-keepalive
pvc 8/35
encapsulation aal5snap
!
dsl operating-mode auto
bridge-group 1
!
interface BVI1
ip address 63.162.201.72 255.255.255.0
ip nat outside
!
ip nat inside source list 1 interface BVI1 overload
ip nat inside source static tcp 192.168.1.4 80 63.162.201.72 80 extendable
ip classless
ip route 0.0.0.0 0.0.0.0 63.162.201.1
ip http server
!
access-list 1 permit 192.168.1.0 0.0.0.255
bridge 1 protocol ieee
bridge 1 route ip
!
I verified web site address (192.168.1.4) in IIS, from command prompt, nslookup pointing to static IP. through IE, web site not resolving. Is there something with my 827 config I need to change?
 
did some reading, ran term mon, debug ip nat detailed, command; LAN translating correctly, email on 192.168.1.4 translating correctly, then this:

NAT: expiring 63.162.201.72 (192.168.1.4) udp 4831 (4831)
NAT: expiring 63.162.201.72 (192.168.1.4) udp 4832 (4832)
NAT: expiring 63.162.201.72 (192.168.1.4) udp 4833 (4833)
NAT: expiring 63.162.201.72 (192.168.1.4) tcp 4834 (4834)
NAT: expiring 63.162.201.72 (192.168.1.4) tcp 4835 (4835)

when trying to hit internal web server, router is not translating correctly. Will continue to read some more, but as always looking for help.
 
Hey again....you may want to put in the following to exclude it as well:
ip dhcp excluded-address 192.168.1.4
Don't want to double up on addresses...don't think this is your problem but could cause others down the road.
 
Just noticed something else....need to issue no ip http server from the config prompt.....router is also running web services and will cause problems.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top