Monday, July 15, 2013
What is a virtual circuit? What are the advantages of virtual circuit?
Posted by
Sunflower
at
7/15/2013 05:21:00 PM
0
comments
Labels: Bandwidth, Computer Network, Connection, Connection less, Data, Frames, Layer 2/3, Layer 4, Network, Nodes, Packets, Protocols, Telecommunications, Transmit, Virtual, Virtual Circuits
|
| Subscribe by Email |
|
Thursday, March 11, 2010
How to support a reliable communication in transport layer ?
At the Transport layer, each particular set of pieces flowing between a source application and a destination application is known as a conversation.To identify each segment of data, the Transport layer adds to the piece a header containing binary data. This header contains fields of bits. It is the values in these fields that enable different Transport layer protocols to perform different functions.
Reliability means ensuring that each piece of data that the source sends arrives at the destination. At the Transport layer the three basic operations of reliability are:
- tracking transmitted data.
- acknowledging received data.
- retransmitting any unacknowledged data.
This requires the processes of Transport layer of the source to keep track of all the data pieces of each conversation and the retransmit any of data that did were not acknowledged by the destination. The Transport layer of the receiving host must also track the data as it is received and acknowledge the receipt of the data. These reliability processes place additional overhead on the network resources due to the acknowledgement, tracking, and retransmission. To support these reliability operations, more control data is exchanged between the sending and receiving hosts. This control information is contained in the Layer 4 header.
Determining the Need for Reliability
Applications, such as databases, web pages, and e-mail, require that all of the sent data arrive at the destination in its original condition, in order for the data to be useful. Any missing data could cause a corrupt communication that is either incomplete or unreadable. Therefore, these applications are designed to use a Transport layer protocol that implements reliability.
Posted by
Sunflower
at
3/11/2010 01:28:00 PM
0
comments
Labels: Acknowledging, Destination, Layer 4, Models, Open System Interconnection Reference Model, OSI, Reliability, Retransmitting, Source, Tracking, Transport layer
|
| Subscribe by Email |
|
Wednesday, March 10, 2010
The Transport Layer - Layer 4 of OSI model
The Transport Layer of the OSI model is responsible for delivering messages between networked hosts. The Transport Layer should be responsible for fragmentation and reassembly.
- This layer converts the data received from the upper layers into segments and prepares them for transport.
- The Transport layer is responsible for end-to-end (source-to-destination) delivery of entire messages.
- It allows data to be transferred reliably and uses sequencing to make sure that the order of packets is maintained.
- It also provides services such as error checking and flow control.
- In case IP, lost packets arriving out of order must be reordered.
- The size and complexity of a transport protocol depends on the type of service it can get from the network layer.
- The transport layer can accept relatively large messages, but there are strict message size limits imposed by the network (or lower) layer.
- Two transport protocols, Transmission Control Protocol (TCP) and User Datagram Protocol (UDP), sits at the transport layer.
- TCP establishes connections between two hosts on the network through 'sockets' which are determined by the IP address and port number. It keeps a track of the packet delivery order and the packets that must be resent.
- UDP provides a low overhead transmission service, but with less error checking.
- The Transport layer protocols are either connectionless or connection-oriented.
- Connection-oriented means that a connection (a virtual link) must be established before any actual data can be exchanged. e.g. TCP.
- In Connectionless, the sender does not establish a connection before it sends data, it just sends it without guaranteeing delivery. e.g. UDP.
Data Segmentation
Data segmentation is the process by which the transport layer uniquely handles all data passed to and from different upper-level applications. For example, if a user is browsing the web and checking email at the same time, each program would be passing data and waiting for a reply on a unique port number. The Transport layer ensures that data is passed to the correct application.
Posted by
Sunflower
at
3/10/2010 01:04:00 PM
0
comments
Labels: Data, Data Segmentation, Layer 4, Layers, Models, Open Systems Interconnection, OSI, Protocols, TCP, Transport layer, UDP
|
| Subscribe by Email |
|