Important note about SSL VPN compatibility for 20.0 MR1 with EoL SFOS versions and UTM9 OS. Learn more in the release notes.

This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Proxy Profile auf Terminal Server

Hallo zusammen,

wir setzen seit kurzem Citrix XEN App ein und ich bekomme bisher die Proxy Profile nicht zum laufen. Im normalen Clientbereich läuft alles wunderbar.

Server OS: Windows Server 2012R2
Browser: IE11
Betriebsmodus: Standard (Active Directory SSO)
Automatische Proxy Konfiguration:

function FindProxyForURL(url, host)
{
   //The following URLs will not be proxied
   if (shExpMatch(url, "*domainfirma.local*"))
         return "DIRECT";
   if (shExpMatch(url, "*domainfirma.de*"))
         return "DIRECT";
   if (shExpMatch(host, "10.10.*"))
         return "DIRECT";
   if (shExpMatch(host, "10.11.*"))

// Set the desired proxy server for local addresses
   if (isInNet(myIpAddress(), "10.10.0.0", "255.255.0.0"))
         return "PROXY 10.1.X.X:8080" ;
   if (isInNet(myIpAddress(), "10.11.X.18", "255.255.255.255"))
         return "PROXY 10.1.X.X:8080" ;

   // For all other networks, do not proxy
   return "DIRECT" ;
}

Die 10.X.X.18 ist einer der XEN Server. Hat jemand eine TS - Proxy Konfiguration am laufen oder eine Idee wo der Fehler liegen könnte?

Cu, Abyss_X


This thread was automatically locked due to age.
Parents
  • Poste doch mal bitte eine Zeile aus dem Webfilterlog wo so ein Request zu sehen ist und wie die Reihenfolge der Proxyprofile aussieht.

    Gruß
    Manfred
  • Im Webfilter Log taucht kein Eintrag auf, dafür tauchen natürlich im Firewall LOG geblockte zugriffe vom Xen Server ins Internet auf.

    Die Profile sehen wie folgt aus:

    1. Strikt User (nur definierte Webseiten) AD auth.
    2. Std. User (Std. Access) AD auth.
    3. Full User (Full Access) AD auth.
    4. Default Content Filter Action - Tranzparenzmodus Browser Auth.

    Der user welcher in der AD Gruppe der Std. User ist bekommt sofort das Profil 4 und soll sich am Browser authentifizieren.

    Cu, Abyss_X
Reply
  • Im Webfilter Log taucht kein Eintrag auf, dafür tauchen natürlich im Firewall LOG geblockte zugriffe vom Xen Server ins Internet auf.

    Die Profile sehen wie folgt aus:

    1. Strikt User (nur definierte Webseiten) AD auth.
    2. Std. User (Std. Access) AD auth.
    3. Full User (Full Access) AD auth.
    4. Default Content Filter Action - Tranzparenzmodus Browser Auth.

    Der user welcher in der AD Gruppe der Std. User ist bekommt sofort das Profil 4 und soll sich am Browser authentifizieren.

    Cu, Abyss_X
Children
No Data