Complete the code to identify the first step in TCP connection termination.
The first step in TCP connection termination is when the client sends a [1] flag to the server.
The client initiates connection termination by sending a FIN flag to the server, indicating it wants to close the connection.
Complete the code to describe the second step in TCP connection termination.
After receiving the FIN flag, the server responds with a [1] flag to acknowledge the request.
The server sends an ACK flag to acknowledge the client's FIN request, confirming it received the termination request.
Fix the error in describing the third step of TCP connection termination.
The server sends a [1] flag to the client to indicate it also wants to close the connection.The server sends a FIN flag to the client to indicate it wants to close its side of the connection as well.
Fill both blanks to describe the final step in TCP connection termination.
The client responds with a [1] flag to acknowledge the server's [2] flag, completing the termination.
The client sends an ACK flag to acknowledge the server's FIN flag, completing the four-way handshake termination process.
Fill all three blanks to complete the summary of the TCP four-way handshake termination sequence.
Step 1: Client sends [1] flag. Step 2: Server replies with [2] flag. Step 3: Server sends [3] flag.
The correct sequence is: Client sends FIN, server replies with ACK, then server sends FIN to close its side.