Created on 08-14-2024 01:59 AM Edited on 08-14-2024 02:00 AM By Anthony_E
Description |
This article describes how to process when encountering signature update problems such as Av signature updates, and ISDB objects. |
Scope |
FortiClient, Windows. |
Solution |
When Forticlient requests signature updates it should try to reach out to destinations that are already defined in the documentation:
Here, below connectivity control script for Powershell that can visualize the attempts:
$fortiguards = @( @{ Hostname = "forticlient.fortinet.net"; Port = 80 }, @{ Hostname = "myforticlient.fortinet.net"; Port = 80 }, @{ Hostname = "usforticlient.fortinet.net"; Port = 80 }, @{ Hostname = "fctusupdate.fortinet.net"; Port = 443 }, @{ Hostname = "fctupdate.fortinet.net"; Port = 443 }, @{ Hostname = "fcteuupdate.fortinet.net"; Port = 443 } ) foreach ($fortiguard in $fortiguards) { $hostname = $fortiguard.Hostname $port = $fortiguard.Port $result = Test-NetConnection -ComputerName $hostname -Port $port # Display the result if ($result.TcpTestSucceeded) { Write-Host "Connection to $hostname on port $port succeeded." } else { Write-Host "Connection to $hostname on port $port failed." } }
The provided script simply gives specified ports for selection whether if failed or working via port succeeded and port failed. To provide smooth connectivity to destinations there should be a firewall rule for destinations over Fortiguard via dynamic address object before applying other rules.
To trigger the resync process for dynamic signature update, the following command can be used. Opening the FortiClient About page triggers update_task manually but if any troubleshooting is required at this stage. If already opening the FortiClient about page before running those commands, the update_task is already running a warning.
Open a CLI window:
cd C:\Program Files\Fortinet\FortiClient\ update_task -d
C:\Program Files\Fortinet\FortiClient\ vir_sig -> vir_sig_1
If there are still observed issues while reported by several endpoints after the provided steps, a support ticket can be created to troubleshoot further details. |
The Fortinet Security Fabric brings together the concepts of convergence and consolidation to provide comprehensive cybersecurity protection for all users, devices, and applications and across all network edges.
Copyright 2024 Fortinet, Inc. All Rights Reserved.