Hello
I'm using ISA 2006 EE SP1, Single single for now (no nlb). I'm using
them for incoming traffic to a published web server. The web server is
configured to listen on the appropriate ports for ssl traffic (all on
the same ip), and tests out internally.
I've created web listeners with the appropriate port numbers
(Connections, "Enable SSL (HTTPS) connections on port: XXXX).
In the publishing rules, under "Bridging", I have "Redirect requests
to SSL port: xxxx" configured. This particular rule is using Kerberos
Constrained Delegation, and worked prior to changing the ports.
However, the rule just doesn't seem to work. Logging doesn't show the
traffic even hitting the ISA server.
Is there anything else I need to do, besides the below script? Or is
the script only meant to work for outgoing traffic?
Any help would be greatly appreciated.
I've used the below script which seemed to be necessary:
########################################################
Dim root
Dim tpRanges
Dim newRange
Set root = CreateObject("FPC.Root")
Set tpRanges =
root.GetContainingArray.ArrayPolicy.WebProxy.TunnelPortRanges
set newRange = tpRanges.AddRange("SSL xxxx", xxxx, xxxx)
tpRanges.Save
########################################################
Brett