Forum Discussion

iancognito's avatar
iancognito
Copper Contributor
Jan 08, 2019

MS Teams App and Video: Proxy

There are 2 Proxies that my organisation uses (I have no control whatsoever over them or the rules)

 

Proxy: .X1 allows Outlook app to connect to server, to function. It also allows Teams to function but NOT with video conferencing.

Proxy: .X2 allows for full Teams functionality but cuts off Outlook connection.

 

My PAC is like the below but it is not being taken up by Teams. Is there a way to direct Teams (or in fact Outlook) to a different proxy from the one specified in Internet Options>Connections>LAN Settings

 

function FindProxyForURL(url, host)
{
if (
dnsDomainIs(host, "*.teams.microsoft.com")
)
return "XX.XX.XX.X2:8080";
else { return "PROXY XX.XX.XX.X1:8080; DIRECT";}
}

 

1 Reply

Resources