Showing posts with label transport layer. Show all posts
Showing posts with label transport layer. Show all posts

Saturday, August 1, 2015

The Transport Layer(TCP/IP model)

Previous

The layer above the internet layer is the transport layer.It is designed to allow peer entities on source and destination hosts to carry on a conversation just as in OSI transport layer. Two end to end transport protocols have been defined here.
The first one TCP(Transmission Control Protocol) is a reliable connection oriented protocol that allows a byte stream originating on 1 machine to be delivered without error on any other machine on internet.
TCP also handle flow control to make sure a fast server cannot swamp a slow receiver.
The second protocol,UDP,(User Datagram Protocol) is an unreliable,connectionless protocol for applications that do not want TCP's sequencing or flow control and wish to provide their own.It is widely used for one shot,client-server type request-reply queries and applications in which prompt delivery is more important than accurate delivery such as transmitting speech or video.


Next

Wednesday, July 15, 2015

OSI model-Network Layer,Transport Layer

Previous

Network Layer
This layer controls the operation of the subnet,how packets are routed from source to destination.
If too many packets are present, such congestion is controlled by network layer.
n/w layer allows heterogeneous n/ws to be interconnected.

Transport Layer
The basic function of the transport layer is to accept data from above,split it up into smaller units if need be,pass these to n/w layer and ensure that pieces all arrive correctly at the other end.
The transport layer is a true end-to-end layer,air the way from source to destination.
The difference between layer1 through 3,which are chained and layers4 through 7,which are end-to-end.

To be continued..