To configure the PAC file of TMWS:
- Login to TMWS console through the Client Licensing Portal (CLP) or TMWS Admin Portal
- Go to Administration > Service Deployment > PAC Files.
- Create a New PAC File or Edit an Existing One.
- Click Edit in Advanced mode.
- Add the following script:
- For Single Network:
function Internal(ip) { return isInNet(ip, "[Network Address]", "[Network Subnet]"); } if (Internal(myIpAddress())) { return "DIRECT"; }
- For Multiple Networks: function Internal(ip) { return isInNet(ip, "[Network Address1]", "[Network Subnet1]") || isInNet(ip, "[Network Address2]", "[Network Subnet2]"); } if (Internal(myIpAddress())) { return "DIRECT"; }
- For Single Network:
Verification
The changes can be verified by doing the following:
- Go to the TMWS Diagnosis Page.
- Check if the status of "Connected to IWSaaS Proxy:" is set to NO.