Computer Science, asked by SidhuDhoni9206, 1 year ago

Explain transmission control protocol connection establishment and release process.

Answers

Answered by sweetpoonam522
0
The Transmission Control Protocol (TCP) is one of the main protocols of the Internet protocol suite. It originated in the initial network implementation in which it complemented the Internet Protocol (IP). Therefore, the entire suite is commonly referred to as TCP/IP. TCP provides reliable, ordered, and error-checked delivery of a stream of octets (bytes) between applications running on hosts communicating via an IP network. Major internet applications such as the World Wide Web, email, remote administration, and file transfer rely on TCP. Applications that do not require reliable data stream service may use the User Datagram Protocol (UDP), which provides a connectionless datagram service that emphasizes reduced latency over reliability.
Answered by hotelcalifornia
0

Transmission control protocol connection establishment and release process:

Connection Establishment:

  • TCP uses 3 way handshake.
  • The client sends an SYN to the server having the initial sequence number.
  • The server binds and listen at a port to start the connection. This establishement called a passive open.
  • Once the passive connection is established the client be active open.
  • The server sends a SYN-ACK , having the sequence number from server side an Acknowledgment of the client request.
  • At last the Client sends an Acknowledgment to the server and the transfer of data starts.

Connection Release:

  • When the client wants to end the connection it sends the FIN bit set to 1  to the Server and enters in waiting mode.
  • The Server when receiving the packet sends an ACK packet.
  • When the client receives the ACK packet and moves to waiting mode waiting for FIN bit set to 0.
  • The server then sends FIN bit to the client.
  • When the client receives the FIN segment, the client sends an acknowledgment to the server.

Learn more about TCP and UDP

What is the tcp and udp port numbers used by home group computers?

https://brainly.in/question/12514234

Compare the tcp header and the udp header list the fields in the tcp header that are missing from udp header give the reason for their absence.

https://brainly.in/question/1690346

Similar questions