InterviewSolution
| 1. |
Describe A 3-way Tcp/ip Handshake? |
|
Answer» To establish a connection, TCP uses a 3-way handshake. Before a client attempts to connect with a SERVER, the server must first bind to a port to open it up for connections: this is called a passive open. Once the passive open is established then a client may initiate an active open. To establish a connection, the 3-way (or 3-step) handshake OCCURS:
At this point, both the client and server have received an acknowledgement of the connection. when we want to connect to server for COMMUNICATION we need to establish a connection between server and client. The procedure used for this is called 3-way handshake...this is described as follows
At this stage we say that client and server are connected To establish a connection, TCP uses a 3-way handshake. Before a client attempts to connect with a server, the server must first bind to a port to open it up for connections: this is called a passive open. Once the passive open is established then a client may initiate an active open. To establish a connection, the 3-way (or 3-step) handshake occurs: At this point, both the client and server have received an acknowledgement of the connection. when we want to connect to server for communication we need to establish a connection between server and client. The procedure used for this is called 3-way handshake...this is described as follows At this stage we say that client and server are connected |
|