Q: What are the three steps of the TCP three-way handshake?
A: The three steps are:
- The client sends a connection request (
SYN) packet to the server, which includes the client's Initial Sequence Number (ISN). - The server responds with a
SYN-ACKpacket, which acknowledges the client's request and includes the server's own ISN. - The client sends an
ACKpacket back to the server, confirming the connection is established.