You run the following command on a FortiGate: diagnose sys session filter dport 443 diagnose sys session list Output: proto=6 proto_state=01 duration=3600 expire=3599 What does the 'proto_state=01' indicate?
proto_state=01 indicates the session is being initiated (SYN seen).
Why this answer
In FortiGate session diagnostics, 'proto_state=01' for TCP (proto=6) indicates the session is in the 'init' state, meaning only the initial SYN packet has been observed and the three-way handshake has not yet completed. This is a transient state before the session transitions to 'established' (proto_state=02) once the final ACK of the handshake is received.
Exam trap
The trap here is that candidates often assume 'proto_state=01' means 'established' because they associate '1' with 'active' or 'open', but FortiGate uses a specific state numbering where '01' explicitly means the TCP handshake is incomplete.
How to eliminate wrong answers
Option A is wrong because 'proto_state=01' is the init state, not the established state; the established state is represented by 'proto_state=02' in FortiGate session output. Option C is wrong because UDP and ICMP sessions do not use TCP state tracking and would not show 'proto_state=01' for TCP; they typically show 'proto_state=00' or no state value. Option D is wrong because a session being torn down (FIN or RST received) would show a different state, such as 'proto_state=04' (close) or 'proto_state=05' (timewait), not '01'.