Allow SSL request on an additional port : TMG / ISA
- Angelo Schalley
- Jul, 28, 2011
- ISA/TMG, Networking, security, Windows-Microsoft
- No Comments
“12204 The specified Secure Sockets Layer (SSL) port is not allowed. ISA Server is not configured to allow SSL requests from this port. Most Web browsers use port 443 for SSL requests.”
This is the log error you will see on TMG when attempting to connect to a site on a nonstandard SSL port. In my example the port is 10443 but of course if you are not using 443 it might as well be anything.
This is because be default TMG will only allow HTTPS connections on 443. This is know as the Tunnel Port Ranges or TPranges. To add your non standard port number or a range, you will need to run some scripts. You only need to run this on one of the array member since this is an array setting.
The Add TP Range Script
Create a text file and copy the following into it. Save the file as AddPort.vbs
Dim root
Dim tpRanges
Dim newRange
Set root = CreateObject(“FPC.Root”)
Set tpRanges = root.GetContainingArray.ArrayPolicy.WebProxy.TunnelPortRanges
set newRange = tpRanges.AddRange(“SSL 10443”, 10443, 10443)
tpRanges.Save