Chp3 Transport Layer
Chp3 Transport Layer
: Transport Layer
Sections & Objectives
Transport Layer Protocols
• Explain how transport layer protocols and services support communications across data
networks.
• Explain the purpose of the transport layer in managing the transportation of data in end-to-end
communication.
• Explain characteristics of the TCP and UDP protocols, including port numbers and their uses.
TCP and UDP
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 3
Transportation of Data
Role of the Transport Layer
Responsible for establishing a
temporary communication session
between two applications and
delivering data between them.
Link between the application layer
and the lower layers that are
responsible for network transmission.
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 4
Transportation of Data
Transport Layer Responsibilities
Tracking the Conversation -
Tracks each individual
conversation flowing between a
source and a destination
application.
Segmentation - Divides the data
into segments that are easier to
manage and transport. Header
used for reassembly is used for
tracking.
Identifying the Application -
Ensures that even with multiple
applications running on a device,
all applications receive the
correct data via port numbers.
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 5
Transportation of Data
Conversation Multiplexing
Segmenting the data into smaller chunks enables many different communications to be
multiplexed on the same network.
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 6
Transportation of Data
Transport Layer Reliability
TCP/IP provides two transport
layer protocols:
• Transmission Control Protocol
(TCP)
• Considered reliable which ensures
that all of the data arrives at the
destination.
• Additional fields needed in header
which increases size and delay.
• User Datagram Protocol (UDP)
• Does not provide for reliability.
• Fewer fields and is faster than TCP.
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 7
Transportation of Data
TCP TCP transport is similar to
sending tracked packages. If
a shipping order is broken up
into several packages, a
customer can check online to
see the order of the delivery.
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 8
Transportation of Data
TCP (Cont.)
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 9
Transportation of Data
TCP (Cont.) TCP Three Responsibilities:
Numbering and tracking data segments
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 10
Transportation of Data
UDP Use UDP for less overhead and
to reduce possible delays.
Best-effort delivery (unreliable)
No acknowledgment
Similar to a non-registered
letter
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 11
Transportation of Data
The Right Transport Layer Protocol for the Right Application
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 15
TCP and UDP Overview
UDP Header
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 16
TCP and UDP Overview
Multiple Separate Communications
Users expect to simultaneously receive and send email, view websites and make a
VoIP phone call
TCP and UDP manage multiple conversations by using unique identifiers called
port numbers
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 17
TCP and UDP Overview
Port Numbers
Source Port
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 18
TCP and UDP Overview
Socket Pairs
Source and destination port
placed in segment
Segments encapsulated in IP
packet
IP and port number = socket
Example: 192.168.1.7:80
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 19
TCP and UDP Overview
Port Number Groups
Well
Known
Port
Numbers
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 21
TCP and UDP
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 22
TCP Communication Process
TCP Server Process
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 23
TCP Communication Process
TCP Server Process (Cont.)
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 24
TCP Communication Process
TCP Connection Establishment
Step 2 – Server
acknowledges and
requests a session with
client. © 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 25
TCP Communication Process
TCP Session Termination
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 27
Reliability and Flow Control
TCP Reliability – Ordered Delivery
Sequence numbers are assigned
in the header of each packet.
Represents the first data byte of
the TCP segment.
During session setup, an initial
sequence number (ISN) is set -
represents the starting value of
the bytes.
As data is transmitted during the
session, the sequence number is
incremented by the number of
bytes that have been transmitted.
Missing segments can then be
identified.
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 28
Reliability and Flow Control
TCP Flow Control – Window Size and Acknowledgments
In the figure, the source is
transmitting 1,460 bytes of
data within each segment.
Window size agreed on
during 3-way handshake.
Typically, PC B will not
wait for 10,000 bytes
before sending an
acknowledgment.
PC A can adjust its send
window as it receives
acknowledgments from
PC B.
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 29
Reliability and Flow Control
TCP Flow Control – Congestion Avoidance
Congestion causes
retransmission of lost TCP
segments
Retransmission of segments
can make the congestion
worse
To avoid and control
congestion, TCP employs
several congestion handling
mechanisms, timers, and
algorithms
Example: Reduce the number
of bytes it sends before
receiving an acknowledgment
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 30
UDP Communication
UDP Low Overhead versus Reliability
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 31
UDP Communication
UDP Datagram Reassembly
UDP reassembles
data in order received
and forwards to
application
Application must
identify the proper
sequence
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 33
UDP Communication
UDP Client Processes
TCP frees
applications
from having to
manage
reliability
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 36
TCP or UDP
Applications that use UDP
Three types of
applications best
suited for UDP:
Live video and
multimedia
Simple request
and reply
Handle reliability
themselves
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 37