Site home page
(news and notices)

Get alerts when Linktionary is updated

Book updates and addendums

Get info about the Encyclopedia of Networking and Telecommunicatons, 3rd edition (2001)

Download the electronic version of the Encyclopedia of Networking, 2nd edition (1996). It's free!

Contribute to this site

Electronic licensing info

 

 

Transport Protocols and Services

Related Entries    Web Links    New/Updated Information

  
Search Linktionary (powered by FreeFind)

Note: Many topics at this site are reduced versions of the text in "The Encyclopedia of Networking and Telecommunications." Search results will not be as extensive as a search of the book's CD-ROM.

Transport protocols occupy layer 4 of the OSI protocol model. The protocols at this level provide connection-oriented sessions and reliable data delivery services. The transport layer sits on top of layer 3 networking services. In the Internet Protocol suite, TCP provides transport services, while IP provides network services. In Novell's SPX/IPX protocol suite, SPX (Sequenced Packet Exchange) provides transport services, while IPX (Internetwork Packet Exchange) provides network services. NetBIOS is also a transport layer protocol.

Network layer protocols like IP provide best effort services-that is, they deliver packets but don't guarantee that the packets will actually be delivered. Think about the postal service. It delivers letters, but you don't know that it was received unless you arrange to have a delivery confirmation returned to you. Some applications, such as real-time voice and video, do not need TCP's services. In a real-time stream, it does not make sense to recover a lost packet. Speed of delivery is more important, so UDP (a limited services transport protocol) is used.

Transport layer protocols provide delivery guarantees that are essential for file transfers and mission-critical applications. TCP uses IP, but adds the reliability services at the cost of more overhead and slightly reduced performance. These services operate over a "virtual connection" that is established between sender and receiver. When a session begins, the sender uses a handshaking technique to establish a connection with the receiver. During the session, sender and receiver engage in a dialog that manages the flow of data to prevent from overflowing the receiver and confirms the receipt of TCP segments. A communication session goes like this:

  1. Establish a connection (virtual circuit).

  2. Negotiate session parameters.

  3. Manage data transfers and ensure that data is reliably delivered.

  4. Terminate the connection.

The services provided by transport protocols are listed below with links to appropriate topics. You should also refer to "TCP (Transmission Control Protocol)" for detailed information on the Internet's transport protocol. A related section is "UDP (User Datagram Protocol)."

  • Connection setup and multiplexing    The sender must contact the receiver before its starts sending data packets. They engage in a three-way handshake operation to establish the connection, then start transmitting data. A single computer can establish multiple connections with multiple computers at the same time, a feature called multiplexing (since the packets for these different connections are transmitted over the same network connection). See "Connection Establishment" for details.

  • Flow control mechanisms    While slow start and congestion control are used to avoid network congestion, flow controls help prevent the sender from overflowing the receiver with too much data. These controls are essential because the receiver drops packets when it is overloaded and those packets must be retransmitted, potentially increasing network congestion and reducing system performance. See "Flow-Control Mechanisms."

  • Slow start and congestion control    Once a connection has been made, the sender starts sending packets, slowly at first so it does not overwhelm the network. If congestion is not bad, it picks up the pace. This is called "slow start." Later, congestion controls help the sender scale back if the network gets busy. See "Congestion Control Mechanisms" for more details.

  • Reliability services    These services are used to retransmit corrupt, lost, and dropped packets. Positive acknowledgements confirm to the sender that the recipient actually received a packet (failure to transmit this acknowledgement means "resend the packet"). Sequencing is used to number packets so that packets can be put back in order and lost packets can be detected. Error checking detects corrupted packets. Refer to "Reliable Data Delivery Services" and "TCP (Transmission Control Protocol)" for more information.



Copyright (c) 2001 Tom Sheldon and Big Sur Multimedia.
All rights reserved under Pan American and International copyright conventions.