среда, 20 февраля 2013 г.

TMG - Нестандартный SSL порт / 12204 The specified Secure Sockets Layer (SSL) port is not allowed. Forefront TMG is not configured to allow SSL requests from this port. Most Web browsers use port 443 for SSL requests.



1)    Создать vbs скрипт AddTPRangesSSL. Прописать в нём ваш порт
      set isa=CreateObject("FPC.Root")
      set tprange=isa.GetContainingArray.ArrayPolicy.WebProxy.TunnelPortRanges
      set tmp=tprange.AddRange("SSL 8101", 8101, 8101)
      tprange.Save

2) Открываем cmd. Пишем cscript AddTPRangesSSL  Так вы добавите нестандартный порт.
3) Проверить все нестандартные порты можно скриптом ShowTPRanges:
    Sub ShowTPRanges()
    ' Create the root object.
    Dim root  ' The FPCLib.FPC root object
    Set root = CreateObject("FPC.Root")
    ' Declare the other objects needed.
    Dim isaArray     ' An FPCArray object
    Dim tpRanges     ' An FPCTunnelPortRanges collection
    Dim tpRange      ' An FPCTunnelPortRange object
    ' Get references to the array object
    ' and the collection of tunnel port ranges.
    Set isaArray = root.GetContainingArray()
    Set tpRanges = isaArray.ArrayPolicy.WebProxy.TunnelPortRanges
    ' If at least one tunnel port range is defined in the  
    ' collection, display the names and port ranges for all
    ' the tunnel port ranges.
    If tpRanges.Count > 0 Then
        For Each tpRange In tpRanges
            WScript.Echo tpRange.Name & ": " & tpRange.TunnelLowPort & "-" & tpRange.TunnelHighPort
        Next
    Else
        WScript.Echo "No tunnel port ranges are defined."
    End If
    End Sub
   ShowTPRanges

4)  Запускаем в cmd – cscript ShowTPRanges

Комментариев нет:

Отправить комментарий