Views:

To configure the PAC file of TMWS:

  1. Login to TMWS console through the Client Licensing Portal (CLP) or TMWS Admin Portal
  2. Go to Administration > Service Deployment > PAC Files.
  3. Create a New PAC File or Edit an Existing One.
  4. Click Edit in Advanced mode.
  5. 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"; }

Verification

The changes can be verified by doing the following:

  1. Go to the TMWS Diagnosis Page.
  2. Check if the status of "Connected to IWSaaS Proxy:" is set to NO.
 
There are no known issues for this procedure. However, since the traffic will bypass TMWS, scanning will not be performed.