Created on
09-28-2018
07:13 AM
Edited on
05-16-2024
10:00 PM
By
Anthony_E
Description
- Login to the appliance CLI
CentOS: Login as root and enter:
cd /var/named/chroot/var/log/
FortiNAC-OS: Login as admin and enter:
execute enter-shell
cd /var/named/chroot/var/log/
- Generate a list of domains resolving to the isolation interface IP address. Run one of the following commands:
Option 1: Generates a list of domains all isolated hosts attempted to access.
grep PassThru named.log* | cut -d' ' -f11 | sort | uniq -c | sort -rg
Option 2: Generate a list of domains a specific isolated host attempted to access.
grep <IP-Address-of-Host> -A1 named.log | grep PassThru | cut -d' ' -f10 |sort | uniq -c | sort -rg
Example:
grep 192.168.4.5 -A1 named.log | grep PassThru | cut -d' ' -f10 |sort | uniq -c | sort -rg
Note:
If no results return, change the column value (-f) from 10 to 11.
- Review the resulting list. The most commonly attempted domains are at the top of the file along with the number of times the domain was attempted to be accessed unsuccessfully.
Output example (actual list will be much longer):
2556 udbn4b.centralus.cloudapp.azure.com
2276 www.msftconnecttest.com
1584 wu-bg-shim.trafficmanager.net
- Use the results from the previous step to determine which domains should be added to the Allowed Domains list for proper IP resolution. Depending upon company policies, it may not be desirable to add all the missing domains. For a list of domains, see Domains to Add to Allowed Domains List reference manual in the Document Library.
- Add the domains to the Allowed Domains List and save. For instructions see section Allowed domains in the Administration Guide.
- Verify the domain resolves to the appropriate IP address the 'dig' command in the CLI. For instructions see KB article Verify IP resolution of a domain when in isolation.
Note:
The 'dig' command can be used to view the IP resolution of a specific domain, including any c-names used during resolution.
Those c-names should also added to the Allowed Domains List .
- Flush the DNS cache on the computer. This ensures new DNS queries are sent and the domain names added to the list are resolved properly.
- Reconnect to the portal and confirm behavior.
- If the behavior persists, additional domains may need to be added.