Testing Connectivity with a Browser
Procedure
- Set up the end user account.
- Decide the traffic forwarding method, and use a test machine to connect to TMWS by this method.
- Browse any website.Connectivity with TMWS is working when the TMWS captive portal page displays.
- Type the credentials used for the end user account.
Testing Connectivity with the Diagnostics Web Page
TMWS will not prompt a user to log on if
the credentials have been provided within the last 30 days. In this case, the
diagnostic tool is useful for testing. The user should already have an account and
has already logged on successfully before.
Procedure
- Open a web browser and go to http://diagnose.iws-hybrid.trendmicro.com.TMWS is working properly when the connection status for TMWS is "Yes".
Testing Policies
It can take up to one (1) minute for a
policy to take effect once it is set on the
management console.
Procedure
- Enable a policy and set the action to 'Block'.
- Open a URL or run an application that the policy is supposed to block.
- When prompted by TMWS, log on with a
user account that is subject to the policy.
-
If the policy is working, the browser will block access and display event details.
-
If the policy is not working, return to the policy and check the configuration. Also, verify that the browser is connecting through a proxy to TMWS.
-
Accessing Internal Sites
Because TMWS is outside your network, it
may not have access to your internal sites. Administrators can configure TMWS to allow users to
access internal sites.
Procedure
- If using a direct proxy server, modify the browser settings to include the restricted
internal
sites:
-
Microsoft Edge
-
Click the More icon in the top-right corner of the browser.
-
Go to.The Automatic proxy setup window appears.
-
Under Manual proxy setup, turn on Use a proxy server and specify the local sites to access.
-
-
Google Chrome
-
Click the wrench icon located at the top-right corner of the browser.
-
Go to.The Internet Properties window appears.
-
Click LAN Settings.
-
Under Proxy server, click Advanced.
-
Under Exceptions, specify the local sites to access.
-
-
Mozilla Firefox
-
Click the Open menu icon in the top-right corner of the browser, and then select Options.
-
Click the General tab, and under Network Proxy, click Settings.The Connection Settings window appears.
-
Under No Proxy for:, specify the local sites to access.
-
-
Apple Safari
-
Go to.
-
Choose the method that the computer uses to connect to the Internet, and then click Advanced.The Network window appears.
-
Click the Proxies tab.
-
Under Bypass proxy settings for these Hosts & Domains, specify the local sites to access.
-
-
- If using a PAC file:
- Open the TMWS management console and go to .
- Duplicate the default PAC file.
- Make one of the following changes to the duplicated PAC file:
-
Modify the PAC file to do DNS queries first and to judge whether the IP address is internal or external. If it is internal, do not forward the request to TMWS. To do this, change the value of
DNSNeedResolve
toTRUE
. For example:var DNSNeedResolve = true;
-
Modify the PAC file and specify the URL of internal sites to allow using the
SkipHosts
variable with the following code:var SkipHosts = ["<internal IP/hostname>", "<internal IP/hostname>"]; for (var i in SkipHosts) { if (shExpMatch(host, SkipHosts[i])) { return 'DIRECT'; } }
Note
Do not change the order of variables or other content within the PAC file.
-