Technical Tip: Understanding Action='Close', 'Reset', and 'Timeout' in FortiGate Forward Traffic Logs
| Description | This article describes when reviewing Forward Traffic logs in FortiGate, administrators may see different action values such as close, reset, or timeout. These do not indicate UTM blocking, but instead describe how the session was terminated. This article explains the difference between them and how to interpret these log entries. | ||||||||||||
| Scope | FortiGate, Forward Traffic logs (policy-accepted sessions), Applicable to flow-based and proxy-based inspection. | ||||||||||||
| Solution |
The session ended normally. This typically happens when the client or server sends a TCP FIN to close the connection. For example, the user browses to a website, the page loads fully, client closes the session.
Log Example:
date=2025-08-18 src=10.21.4.3 dst=172.217.163.110 service=HTTPS action=close
The session was terminated using a TCP RST (reset) packet. The source of the TCP RST packet may originate from:
Key point: Not always a block: resets often originate from the endpoint, not the firewall.
Log example:
date=2025-08-18 src=10.21.4.3 dst=10.200.150.19 service=HTTPS action=reset
Possible Causes:
config system session-ttl. set session-ttl <----- For a custom services object defined under 'config firewall service custom'. set session-ttl <----- When defined in a firewall policy under 'config firewall policy'.
Log example:
date=2025-08-18 src=10.21.4.3 dst=192.168.1.20 service=HTTPS action=timeout
Troubleshooting Tips:
diagnose sniffer packet any "host <ip>" 4 0 l
diagnose debug reset diagnose debug flow show console enable diagnose debug flow show function-name enable diagnose debug flow filter addr x.x.x.x <----- The x.x.x.x should be the IP address to trace the flow for. diagnose debug flow show iprope en diagnose debug console timestamp enable diagnose debug flow trace start 100 diagnose debug enable Perform these steps to confirm whether FortiGate injected the reset to (policy/UTM block). Conclusion:
|
