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

Redirecting SSL traffic?

Status
Not open for further replies.

WilliamUT

IS-IT--Management
Oct 8, 2002
182
US
My SSL port for outgoing requests is 8443 and my incomming is 443. I have some users trying to access a secure site that is on 4443. Is there a way to tell the ISA server to forward anything sending from 8443 when on that site to 4443 and vise versa? Thanks

 
I just changed my incomming and outgoing to 443 but still have the same problem
 
I had a similar problem. Somebody pointed me to writing a special vbs that I had to run on the ISA server to open up the new ssl port. Below is my script. You would need to change the port numbers.

set isa=CreateObject("FPC.Root")
set _
tprange=isa.Arrays.GetContainingArray.ArrayPolicy.WebProxy.TunnelPortRanges
set tmp=tprange.AddRange("SSL 21455", 21450, 21459)
set tmp=tprange.AddRange("SSL 21", 21, 21)
tprange.Save

I won't pretend to understand what this is doing, so I probably can't answer any questions. But, this did work.

Dan
 
thanks i just found that in the book under tunneling :)
 
do you have to just run that script one time or each time you start up ISA?
 
Just one time or if you ever re-build the server. I believe it is changing the registry.

Dan
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top