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 Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

accessing internal web server with external IP

Status
Not open for further replies.

rha298

IS-IT--Management
Nov 19, 2008
4
US
I'm trying to access unsuccessfully an internal web server by its external address through a PIX running 6.3. The PIX seems not to allow inbound packets from its own external address space. Is there any workarounds or fixes for this situation?

Thanks

Dick
 
There are two ways to fix this:
1) Create a split brain DNS setup within your environment. Add a zone that identically mirrors your publicly hosted domain and create all of the necessary Host (A) records

or (preferred)

2) Alter your static NAT entry for this server like so:
Code:
Pix(config)# static (inside,outside) <outside_ip> <inside_ip> netmask 255.255.255.255 [b]dns[/b]
The dns keyword will rewrite the dns response. Here's a good link from Cisco regarding this:

I hate all Uppercase... I don't want my groups to seem angry at me all the time! =)
- ColdFlame (vbscript forum)
 
Thanks for the reply.

I saw that link and as soon as I saw ASA Version 7.2(1) I backed away since I'm have a old PIX 520 running 6.3 (5)

I had decided to run with option #1 until I replace the PIX with newer hardware.

Thanks again

I think I'm going to like this place!!
 
rha, that code is actually for both ASA 7.2 and PIX 6.2 and up. It's up to you either way.

I hate all Uppercase... I don't want my groups to seem angry at me all the time! =)
- ColdFlame (vbscript forum)
 
Thanks for your input. I finally had a chance to try Cisco docs that were posted. I see it build the out bound connections but it got torn down "bytes 0 SYN Timeout"

Dec 11 16:35:46 pix Dec 11 2008 17:09:13: %PIX-6-302013: Built outbound TCP connection 129887714 for DMZ1:172.30.150.20/443 (x.x.x.x/443) to inside:172.16.4.109/2743 (172.30.150.20/2743)


Dec 11 16:36:10 pix Dec 11 2008 17:09:37: %PIX-6-302014: Teardown TCP connection 129887167 for DMZ1:172.30.150.20/443 to inside:172.16.4.109/2738 duration 0:02:02 bytes 0 SYN Timeout


Dec 11 16:37:48 pix Dec 11 2008 17:11:15: %PIX-6-302014: Teardown TCP connection 129887714 for DMZ1:172.30.150.20/443 to inside:172.16.4.109/2743 duration 0:02:01 bytes 0 SYN Timeout

 
I spoke to soon. It is now working. thank you all very much. This has been nagging me for awhile

Thanks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top