Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Table of Contents
stylenone

...

For FAQ, go here Webex deployment FAQ

Details

Consent sign in Azure app

  1. Register to AGAT Azure application, this is required for signing-in to the Admin Portal with your Microsoft credentials How to configure the SphereShield Azure App for Sign in and groups?

Install Configure certificate in your clients.

  1. Download and install AGAT Root CA on Webex client’s machines How to install client certificate - Trusted Root CA for Teams / Webex Proxy

Configure and deploy PAC file

  1. Prepare a PAC file following below “Webex PAC” to redirect Webex traffic to the AGAT proxy. The server and port will be provided by AGAT. Plan the deployment of the PAC file to all Webex clients

Expand
titleWebex PAC

function FindProxyForURL(url, host) {

Code Block
if (shExpMatch(host, "*.infra.webex.com"))
	return "DIRECT";

if (shExpMatch(host, "*0.webex.com") || shExpMatch(host, "*1.webex.com") || shExpMatch(host, "*2.webex.com") || shExpMatch(host, "*3.webex.com") || shExpMatch(host, "*4.webex.com") || shExpMatch(host, "*5.webex.com") || shExpMatch(host, "*6.webex.com") || shExpMatch(host, "*7.webex.com") || shExpMatch(host, "*8.webex.com") || shExpMatch(host, "*9.webex.com"))
	return "DIRECT";

var proxylist = new Array(
    "*.ciscospark.com*",
    "*.ciscowebex.com*",
    "*.wbx2.com*",
    "*.webex.com*",
    "*.webexconnect.com*",
	"*.ciscosparkcontent.com*",
	"*.ord1.clouddrive.com*",
	"*.dfw1.clouddrive.com*",
	"*.iad3.clouddrive.com*",
	"*.rackcdn.com*",
	"*.huron-dev.com*",
	"*.giphy.com*",
	"*.a1.ciscospark.com*",
	"*.a6.ciscospark.com*",
	"*.a7.ciscospark.com*",
	"*.b1.ciscospark.com*",
	"*.b2.ciscospark.com*",
	"*.d1.ciscospark.com*",
	"*.e1.ciscospark.com*",
	"*.f1.ciscospark.com*",
	"*.g1.ciscospark.com*",
	"*.h1.ciscospark.com*",
	"*.i1.ciscospark.com*",
	"*.j1.ciscospark.com*",
	"*.k1.ciscospark.com*",
	"*.l1.ciscospark.com*",
	"*.m1.ciscospark.com*",
	"*.n1.ciscospark.com*"
);
// Return our proxy name for matched domains/hosts
for(var i=0; i<proxylist.length; i++) {
    var value = proxylist[i];
    if ( shExpMatch(host, value) ) {
        return "PROXY server:port";
    }
}



return "DIRECT";

}

Create Webex integration

This process needs to be done with a Compliance Officer and Full admin user

...

  1. Wait for AGAT to provide you with the link to your Admin Portal

  2. Login to http://developer.webex.com/

  3. Go to “Start Building Apps

  4. Choose Create an Integration

  5. Fill in these fields as follows. In the Redirect URL, enter the customer’s Admin Portal URL and add /account/webexauth

  6. Select the following scopes for Webex Teams:

...