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

Pix 506e config for OWA

Status
Not open for further replies.

hmcgillem

MIS
Jun 26, 2001
75
0
0
US
Can someone please help me with what I need to add to my PIX to allow OWA access?
 
OWA uses HTTP (TCP port 80) - ie it looks just like standard web traffic.

You just need a line similar to the following added to your existing access list:


access-list outsidein permit tcp a.b.c.d w.x.y.z eq 80

where a.b.c.d is the internal Exchange server
and w.x.y.z is the client trying to access it
 
If you have OWA with SSL, add port 443 to that.

You will need a static to point to your inside server as well.

static (inside,outside) tcp ExternalIP 80 InternalIP 80 netmask 255.255.255.255
static (inside,outside) tcp ExternalIP 443 InternalIP 443 netmask 255.255.255.255
access-list outside_in permit tcp any ExternalIP eq 443
access-list outside_in permit tcp any ExternalIP eq 80
access-group outside_in in insterface outside


With this you can also setup RPC via HTTPS without any changes to the firewall.


Brent
Systems Engineer / Consultant
CCNP, CCSP
 
Thank you both KiscoKid and Supergrrover! This is exactly what I needed!! I was doing it right to begin with, but for some reason the Pix didn't want to accept the changes. It took the changes this morning! Thanks!
 
KiscoKid,
In your post you have stated at the bottom:
"and w.x.y.z is the client trying to access it"
What if that address is everyone? Meaning, when we set up OWA, we want everyone to be able to access it. We have a similar statement in our config that may need to be changed, because our OWA is not working from the outside currently:
"access-list acl_in permit tcp any host 192.168.x.x eq www"
Should we change the 80? and is it that w.x.y.z needs to be the external address associated with that internal address (NAT)? Thanks in advance!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top