SlideShare a Scribd company logo
1 of 50
Instructor Materials
Chapter 9: Transport Layer
CCNA Routing and Switching
Introduction to Networks v6.0
3© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
Chapter 9: Transport Layer
Introduction to Networks 6.0 Planning
Guide
Chapter 9: Transport Layer
CCNA Routing and Switching
Introduction to Networks v6.0
14© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
 9.1 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.
 9.2 TCP and UDP
• Compare the operations of transport layer protocols in supporting end-to-end
communication.
• Explain how TCP session establishment and termination processes facilitate reliable communication.
• Explain how TCP protocol data units are transmitted and acknowledged to guarantee delivery.
• Describe the UDP client processes to establish communication with a server.
• Determine whether high-reliability TCP transmissions, or non-guaranteed UDP transmissions, are best
suited for common applications.
Chapter 9 - Sections & Objectives
15© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
9.1 Transport Layer Protocols
16© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
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.
17© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
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.
18© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
Transportation of Data
Conversation Multiplexing
 Segmenting the data into smaller chunks enables many different communications to be
multiplexed on the same network.
19© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
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.
20© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
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.
21© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
Transportation of Data
TCP (Cont.)
22© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
Transportation of Data
TCP (Cont.) TCP Three Responsibilities:
 Numbering and tracking data segments
 Acknowledging received data
 Retransmitting any unacknowledged
data after a certain period of time
23© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
Use UDP for less overhead and
to reduce possible delays.
 Best-effort delivery (unreliable)
 No acknowledgment
 Similar to a non-registered
letter
Transportation of Data
UDP
24© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
 TCP - databases, web
browsers, and email
clients require that all
data that is sent arrives
at the destination in its
original condition.
 UDP - if one or two
segments of a live
video stream fail to
arrive, if disruption in
the stream, may not be
noticeable to the user.
Transportation of Data
The Right Transport Layer Protocol for the Right Application
25© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
 Establishing a Session
• Connection-oriented protocol
• Ensures the application is ready to receive the data
• Negotiate the amount of traffic that can be forwarded at a given time
 Reliable Delivery
• Ensuring that each segment that the source sends arrives at the destination
 Same-Order Delivery
• Numbering & Sequencing the segments guarantees reassembly into the proper order
 Flow Control
• Regulate the amount of data the source transmits
TCP and UDP Overview
TCP Features
26© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
TCP and UDP Overview
TCP Header
 Source and Destination Port used to identify
application
 Sequence number used for data reassembly
 Acknowledgement number indicates data
has been received and ready for next byte
from source
 Header length – length of TCP segment
header
 Control bits – purpose and function of TCP
segment
 Window size – number of bytes that can be
accepted at one time
 Checksum – Used for error checking of
segment header and data
20 Bytes Total
27© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
TCP and UDP Overview
UDP Features
28© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
 UDP is a stateless protocol – no tracking
 Reliability handled by application
TCP and UDP Overview
UDP Header
29© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
 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
TCP and UDP Overview
Multiple Separate Communications
30© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
 Source Port
• Originating application port that is
dynamically generated by sending
device
• Example: Each separate HTTP
conversation is tracked based on
the source ports.
 Destination Port
• Tell the destination what service is
being requested
• Example: Port 80 web services are
being requested
TCP and UDP Overview
Port Numbers
31© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
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
 Sockets enable multiple
processes to be
distinguished
 Source port acts as a return
address
32© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
TCP and UDP Overview
Port Number Groups
 Well-known Ports (Numbers 0 to 1023) - These numbers are reserved for
services and applications.
 Registered Ports (Numbers 1024 to 49151) - These port numbers are
assigned by IANA to a requesting entity to use with specific processes or
applications.
 Dynamic or Private Ports (Numbers 49152 to 65535) - Usually assigned
dynamically by the client’s OS and used to identify the client application
during communication.
33© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
TCP and UDP Overview
Port Number Groups (Cont.)
Well
Known
Port
Numbers
34© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
TCP and UDP Overview
The netstat Command
 Network utility that
can be used to verify
connections
 By default, will
attempt to resolve IP
addresses to domain
names and port
numbers to well-
known applications
 -n option used to
display IPs and ports
in numerical form
35© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
9.2 TCP and UDP
36© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
TCP Communication Process
TCP Server Process
37© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
TCP Communication Process
TCP Server Process (Cont.)
38© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
 Step 1 – Initiating
client requests a
session with server.
TCP Communication Process
TCP Connection Establishment
 Step 2 – Server
acknowledges and
requests a session with
client.
 Step 3 – Client acknowledges
communication session with
server.
39© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
 To close a connection, the Finish (FIN) control flag must
be set in the segment header.
 To end each one-way TCP session, a two-way
handshake, consisting of a FIN segment and an
Acknowledgment (ACK) segment, is used.
 To terminate a single conversation supported by TCP, four
exchanges are needed to end both sessions.
TCP Communication Process
TCP Session Termination
40© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
 The three-way handshake:
• Establishes that the destination device is present on
the network.
• Verifies that the destination device has an active
service and is accepting requests on the destination
port number that the initiating client intends to use.
• Informs the destination device that the source client
intends to establish a communication session on
that port number.
 The six bits in the Control Bits field of the TCP
segment header are also known as flags.
• RST flag is used to reset a connection when an
error or timeout occurs
TCP Communication Process
TCP Three-way Handshake Analysis
41© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
TCP Communication Process
Video Demonstration - TCP 3-Way Handshake
SYN
SYN, ACK
ACK
42© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
TCP Communication Process
Lab – Using Wireshark to Observe the TCP 3-Way Handshake
43© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
 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.
Reliability and Flow Control
TCP Reliability – Ordered Delivery
44© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
Reliability and Flow Control
Video Demonstration - TCP Reliability – Sequence Numbers and
Acknowledgments
45© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
Reliability and Flow Control
Video Demonstration – Data Loss and Retransmission
46© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
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.
47© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
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
48© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
UDP Communication
UDP Low Overhead versus Reliability
 UDP not connection-
oriented
 No retransmission,
sequencing, and flow
control
 Functions not
provided by the
transport layer
implemented
elsewhere
49© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
UDP Communication
UDP Datagram Reassembly
UDP: Connectionless and Unreliable
 UDP reassembles
data in order received
and forwards to
application
 Application must
identify the proper
sequence
50© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
UDP Communication
UDP Server Processes and Requests
Note: The Remote
Authentication Dial-in
User Service
(RADIUS) server
shown in the figure
provides
authentication,
authorization, and
accounting services to
manage user access.
51© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
UDP Communication
UDP Client Processes
Clients Sending UDP Requests
52© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
UDP Communication
UDP Client Processes (Cont.)
Clients Sending UDP Requests
53© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
UDP Communication
Lab – Using Wireshark to Examine a UDP DNS Capture
54© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
TCP or UDP
Applications that use TCP
TCP frees
applications
from having to
manage
reliability
55© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
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
56© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
TCP or UDP
Lab – Using Wireshark to Examine TCP and UDP Captures
57© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
9.3 Chapter Summary
58© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
Conclusion
Packet Tracer – TCP and UDP Communications
59© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
 Explain how transport layer protocols and services support communications across data networks.
 Compare the operations of transport layer protocols in supporting end-to-end communication.
Conclusion
Chapter 9: Transport Layer
Transport Layer Protocols and TCP/UDP Comparison

More Related Content

What's hot

CCNA v6.0 ITN - Chapter 03
CCNA v6.0 ITN - Chapter 03CCNA v6.0 ITN - Chapter 03
CCNA v6.0 ITN - Chapter 03Irsandi Hasan
 
CCNA 1 Routing and Switching v5.0 Chapter 4
CCNA 1 Routing and Switching v5.0 Chapter 4CCNA 1 Routing and Switching v5.0 Chapter 4
CCNA 1 Routing and Switching v5.0 Chapter 4Nil Menon
 
CCNA 2 Routing and Switching v5.0 Chapter 7
CCNA 2 Routing and Switching v5.0 Chapter 7CCNA 2 Routing and Switching v5.0 Chapter 7
CCNA 2 Routing and Switching v5.0 Chapter 7Nil Menon
 
CCNA v6.0 ITN - Chapter 01
CCNA v6.0 ITN - Chapter 01CCNA v6.0 ITN - Chapter 01
CCNA v6.0 ITN - Chapter 01Irsandi Hasan
 
CCNA 2 Routing and Switching v5.0 Chapter 4
CCNA 2 Routing and Switching v5.0 Chapter 4CCNA 2 Routing and Switching v5.0 Chapter 4
CCNA 2 Routing and Switching v5.0 Chapter 4Nil Menon
 
CCNA 2 Routing and Switching v5.0 Chapter 5
CCNA 2 Routing and Switching v5.0 Chapter 5CCNA 2 Routing and Switching v5.0 Chapter 5
CCNA 2 Routing and Switching v5.0 Chapter 5Nil Menon
 
CCNA 1 Routing and Switching v5.0 Chapter 6
CCNA 1 Routing and Switching v5.0 Chapter 6CCNA 1 Routing and Switching v5.0 Chapter 6
CCNA 1 Routing and Switching v5.0 Chapter 6Nil Menon
 
Ccnp presentation day 4 sd-access vs traditional network architecture
Ccnp presentation   day 4  sd-access vs traditional network architectureCcnp presentation   day 4  sd-access vs traditional network architecture
Ccnp presentation day 4 sd-access vs traditional network architectureSagarR24
 
CCNA 2 Routing and Switching v5.0 Chapter 6
CCNA 2 Routing and Switching v5.0 Chapter 6CCNA 2 Routing and Switching v5.0 Chapter 6
CCNA 2 Routing and Switching v5.0 Chapter 6Nil Menon
 
CCNA v6.0 ITN - Chapter 06
CCNA v6.0 ITN - Chapter 06CCNA v6.0 ITN - Chapter 06
CCNA v6.0 ITN - Chapter 06Irsandi Hasan
 
CCNA 2 Routing and Switching v5.0 Chapter 2
CCNA 2 Routing and Switching v5.0 Chapter 2CCNA 2 Routing and Switching v5.0 Chapter 2
CCNA 2 Routing and Switching v5.0 Chapter 2Nil Menon
 
CCNA SUMMER TRAINNING PPT
CCNA SUMMER TRAINNING PPTCCNA SUMMER TRAINNING PPT
CCNA SUMMER TRAINNING PPTNishant Goel
 
CCNA Basic Switching and Switch Configuration
CCNA Basic Switching and Switch ConfigurationCCNA Basic Switching and Switch Configuration
CCNA Basic Switching and Switch ConfigurationDsunte Wilson
 
CCNAv5 - S1: Chapter 5 - Ethernet
CCNAv5 - S1: Chapter 5 - EthernetCCNAv5 - S1: Chapter 5 - Ethernet
CCNAv5 - S1: Chapter 5 - EthernetVuz Dở Hơi
 
CCNAv5 - S3: Chapter2 Lan Redundancy
CCNAv5 - S3: Chapter2 Lan RedundancyCCNAv5 - S3: Chapter2 Lan Redundancy
CCNAv5 - S3: Chapter2 Lan RedundancyVuz Dở Hơi
 
CCNA Introducing Networks
CCNA Introducing NetworksCCNA Introducing Networks
CCNA Introducing NetworksDsunte Wilson
 
CCNA 1 Routing and Switching v5.0 Chapter 9
CCNA 1 Routing and Switching v5.0 Chapter 9CCNA 1 Routing and Switching v5.0 Chapter 9
CCNA 1 Routing and Switching v5.0 Chapter 9Nil Menon
 
ITN_Module_2.pptx
ITN_Module_2.pptxITN_Module_2.pptx
ITN_Module_2.pptxAshok R
 
CCNA Course Training Presentation
CCNA Course Training PresentationCCNA Course Training Presentation
CCNA Course Training PresentationRohit Singh
 

What's hot (20)

CCNA v6.0 ITN - Chapter 03
CCNA v6.0 ITN - Chapter 03CCNA v6.0 ITN - Chapter 03
CCNA v6.0 ITN - Chapter 03
 
CCNA 1 Routing and Switching v5.0 Chapter 4
CCNA 1 Routing and Switching v5.0 Chapter 4CCNA 1 Routing and Switching v5.0 Chapter 4
CCNA 1 Routing and Switching v5.0 Chapter 4
 
CCNA 2 Routing and Switching v5.0 Chapter 7
CCNA 2 Routing and Switching v5.0 Chapter 7CCNA 2 Routing and Switching v5.0 Chapter 7
CCNA 2 Routing and Switching v5.0 Chapter 7
 
CCNA v6.0 ITN - Chapter 01
CCNA v6.0 ITN - Chapter 01CCNA v6.0 ITN - Chapter 01
CCNA v6.0 ITN - Chapter 01
 
CCNA 2 Routing and Switching v5.0 Chapter 4
CCNA 2 Routing and Switching v5.0 Chapter 4CCNA 2 Routing and Switching v5.0 Chapter 4
CCNA 2 Routing and Switching v5.0 Chapter 4
 
CCNA 2 Routing and Switching v5.0 Chapter 5
CCNA 2 Routing and Switching v5.0 Chapter 5CCNA 2 Routing and Switching v5.0 Chapter 5
CCNA 2 Routing and Switching v5.0 Chapter 5
 
CCNA 1 Routing and Switching v5.0 Chapter 6
CCNA 1 Routing and Switching v5.0 Chapter 6CCNA 1 Routing and Switching v5.0 Chapter 6
CCNA 1 Routing and Switching v5.0 Chapter 6
 
Ccnp presentation day 4 sd-access vs traditional network architecture
Ccnp presentation   day 4  sd-access vs traditional network architectureCcnp presentation   day 4  sd-access vs traditional network architecture
Ccnp presentation day 4 sd-access vs traditional network architecture
 
CCNA 2 Routing and Switching v5.0 Chapter 6
CCNA 2 Routing and Switching v5.0 Chapter 6CCNA 2 Routing and Switching v5.0 Chapter 6
CCNA 2 Routing and Switching v5.0 Chapter 6
 
CCNA v6.0 ITN - Chapter 06
CCNA v6.0 ITN - Chapter 06CCNA v6.0 ITN - Chapter 06
CCNA v6.0 ITN - Chapter 06
 
CCNA 2 Routing and Switching v5.0 Chapter 2
CCNA 2 Routing and Switching v5.0 Chapter 2CCNA 2 Routing and Switching v5.0 Chapter 2
CCNA 2 Routing and Switching v5.0 Chapter 2
 
CCNA SUMMER TRAINNING PPT
CCNA SUMMER TRAINNING PPTCCNA SUMMER TRAINNING PPT
CCNA SUMMER TRAINNING PPT
 
Subnet calculation Tutorial
Subnet calculation TutorialSubnet calculation Tutorial
Subnet calculation Tutorial
 
CCNA Basic Switching and Switch Configuration
CCNA Basic Switching and Switch ConfigurationCCNA Basic Switching and Switch Configuration
CCNA Basic Switching and Switch Configuration
 
CCNAv5 - S1: Chapter 5 - Ethernet
CCNAv5 - S1: Chapter 5 - EthernetCCNAv5 - S1: Chapter 5 - Ethernet
CCNAv5 - S1: Chapter 5 - Ethernet
 
CCNAv5 - S3: Chapter2 Lan Redundancy
CCNAv5 - S3: Chapter2 Lan RedundancyCCNAv5 - S3: Chapter2 Lan Redundancy
CCNAv5 - S3: Chapter2 Lan Redundancy
 
CCNA Introducing Networks
CCNA Introducing NetworksCCNA Introducing Networks
CCNA Introducing Networks
 
CCNA 1 Routing and Switching v5.0 Chapter 9
CCNA 1 Routing and Switching v5.0 Chapter 9CCNA 1 Routing and Switching v5.0 Chapter 9
CCNA 1 Routing and Switching v5.0 Chapter 9
 
ITN_Module_2.pptx
ITN_Module_2.pptxITN_Module_2.pptx
ITN_Module_2.pptx
 
CCNA Course Training Presentation
CCNA Course Training PresentationCCNA Course Training Presentation
CCNA Course Training Presentation
 

Similar to Transport Layer Protocols and TCP/UDP Comparison

CCNA (R & S) Module 01 - Introduction to Networks - Chapter 9
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 9CCNA (R & S) Module 01 - Introduction to Networks - Chapter 9
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 9Waqas Ahmed Nawaz
 
It nv51 instructor_ppt_ch9
It nv51 instructor_ppt_ch9It nv51 instructor_ppt_ch9
It nv51 instructor_ppt_ch9newbie2019
 
CCNA RS_NB - Chapter 5
CCNA RS_NB - Chapter 5CCNA RS_NB - Chapter 5
CCNA RS_NB - Chapter 5Irsandi Hasan
 
CCNA RS_ITN - Chapter 7
CCNA RS_ITN - Chapter 7CCNA RS_ITN - Chapter 7
CCNA RS_ITN - Chapter 7Irsandi Hasan
 
CCNA 1 Routing and Switching v5.0 Chapter 7
CCNA 1 Routing and Switching v5.0 Chapter 7CCNA 1 Routing and Switching v5.0 Chapter 7
CCNA 1 Routing and Switching v5.0 Chapter 7Nil Menon
 
Ccna v5-S1-Chapter 7
Ccna v5-S1-Chapter 7Ccna v5-S1-Chapter 7
Ccna v5-S1-Chapter 7Hamza Malik
 
Networking essentials lect3
Networking essentials lect3Networking essentials lect3
Networking essentials lect3Roman Brovko
 
Chapter 07 - Transport Layer
Chapter 07 - Transport LayerChapter 07 - Transport Layer
Chapter 07 - Transport LayerYaser Rahmati
 
Chapter 7 : Transport layer
Chapter 7 : Transport layerChapter 7 : Transport layer
Chapter 7 : Transport layerteknetir
 
CCNAv5 - S1: Chapter 7 - Transport Layer
CCNAv5 - S1: Chapter 7 - Transport LayerCCNAv5 - S1: Chapter 7 - Transport Layer
CCNAv5 - S1: Chapter 7 - Transport LayerVuz Dở Hơi
 
محمد مشاري
محمد مشاريمحمد مشاري
محمد مشاريmaherrrrz
 
Transport Layer [Autosaved]
Transport Layer [Autosaved]Transport Layer [Autosaved]
Transport Layer [Autosaved]Ram Dutt Shukla
 
Chapter Five - Transport Layer.pptx
Chapter Five - Transport Layer.pptxChapter Five - Transport Layer.pptx
Chapter Five - Transport Layer.pptxGirT2
 
16.) layer 3 (basic tcp ip routing)
16.) layer 3 (basic tcp ip routing)16.) layer 3 (basic tcp ip routing)
16.) layer 3 (basic tcp ip routing)Jeff Green
 
OSI Transport Layer
OSI Transport LayerOSI Transport Layer
OSI Transport LayerSachii Dosti
 
Www ccnav5 net_ccna_1_chapter_7_v5_0_exam_answers_2014
Www ccnav5 net_ccna_1_chapter_7_v5_0_exam_answers_2014Www ccnav5 net_ccna_1_chapter_7_v5_0_exam_answers_2014
Www ccnav5 net_ccna_1_chapter_7_v5_0_exam_answers_2014Đồng Quốc Vương
 
Final networks lab manual
Final networks lab manualFinal networks lab manual
Final networks lab manualJaya Prasanna
 

Similar to Transport Layer Protocols and TCP/UDP Comparison (20)

CCNA (R & S) Module 01 - Introduction to Networks - Chapter 9
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 9CCNA (R & S) Module 01 - Introduction to Networks - Chapter 9
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 9
 
It nv51 instructor_ppt_ch9
It nv51 instructor_ppt_ch9It nv51 instructor_ppt_ch9
It nv51 instructor_ppt_ch9
 
CCNA RS_NB - Chapter 5
CCNA RS_NB - Chapter 5CCNA RS_NB - Chapter 5
CCNA RS_NB - Chapter 5
 
CCNA RS_ITN - Chapter 7
CCNA RS_ITN - Chapter 7CCNA RS_ITN - Chapter 7
CCNA RS_ITN - Chapter 7
 
CCNA 1 Routing and Switching v5.0 Chapter 7
CCNA 1 Routing and Switching v5.0 Chapter 7CCNA 1 Routing and Switching v5.0 Chapter 7
CCNA 1 Routing and Switching v5.0 Chapter 7
 
Ccna v5-S1-Chapter 7
Ccna v5-S1-Chapter 7Ccna v5-S1-Chapter 7
Ccna v5-S1-Chapter 7
 
Networking essentials lect3
Networking essentials lect3Networking essentials lect3
Networking essentials lect3
 
Chapter 07 - Transport Layer
Chapter 07 - Transport LayerChapter 07 - Transport Layer
Chapter 07 - Transport Layer
 
Chapter 7 : Transport layer
Chapter 7 : Transport layerChapter 7 : Transport layer
Chapter 7 : Transport layer
 
CCNAv5 - S1: Chapter 7 - Transport Layer
CCNAv5 - S1: Chapter 7 - Transport LayerCCNAv5 - S1: Chapter 7 - Transport Layer
CCNAv5 - S1: Chapter 7 - Transport Layer
 
محمد مشاري
محمد مشاريمحمد مشاري
محمد مشاري
 
Transport Layer
Transport LayerTransport Layer
Transport Layer
 
Transport Layer [Autosaved]
Transport Layer [Autosaved]Transport Layer [Autosaved]
Transport Layer [Autosaved]
 
Unit 5.Transport Layer.pptx
Unit 5.Transport Layer.pptxUnit 5.Transport Layer.pptx
Unit 5.Transport Layer.pptx
 
Lecture set 7
Lecture set 7Lecture set 7
Lecture set 7
 
Chapter Five - Transport Layer.pptx
Chapter Five - Transport Layer.pptxChapter Five - Transport Layer.pptx
Chapter Five - Transport Layer.pptx
 
16.) layer 3 (basic tcp ip routing)
16.) layer 3 (basic tcp ip routing)16.) layer 3 (basic tcp ip routing)
16.) layer 3 (basic tcp ip routing)
 
OSI Transport Layer
OSI Transport LayerOSI Transport Layer
OSI Transport Layer
 
Www ccnav5 net_ccna_1_chapter_7_v5_0_exam_answers_2014
Www ccnav5 net_ccna_1_chapter_7_v5_0_exam_answers_2014Www ccnav5 net_ccna_1_chapter_7_v5_0_exam_answers_2014
Www ccnav5 net_ccna_1_chapter_7_v5_0_exam_answers_2014
 
Final networks lab manual
Final networks lab manualFinal networks lab manual
Final networks lab manual
 

More from Irsandi Hasan

VMware vShield - Overview
VMware vShield - OverviewVMware vShield - Overview
VMware vShield - OverviewIrsandi Hasan
 
CCNA RS_NB - Chapter 11
CCNA RS_NB - Chapter 11CCNA RS_NB - Chapter 11
CCNA RS_NB - Chapter 11Irsandi Hasan
 
CCNA RS_NB - Chapter 10
CCNA RS_NB - Chapter 10CCNA RS_NB - Chapter 10
CCNA RS_NB - Chapter 10Irsandi Hasan
 
CCNA RS_NB - Chapter 9
CCNA RS_NB - Chapter 9CCNA RS_NB - Chapter 9
CCNA RS_NB - Chapter 9Irsandi Hasan
 
CCNA RS_NB - Chapter 8
CCNA RS_NB - Chapter 8CCNA RS_NB - Chapter 8
CCNA RS_NB - Chapter 8Irsandi Hasan
 
CCNA RS_NB - Chapter 7
CCNA RS_NB - Chapter 7CCNA RS_NB - Chapter 7
CCNA RS_NB - Chapter 7Irsandi Hasan
 
CCNA RS_NB - Chapter 6
CCNA RS_NB - Chapter 6CCNA RS_NB - Chapter 6
CCNA RS_NB - Chapter 6Irsandi Hasan
 
CCNA RS_NB - Chapter 4
CCNA RS_NB - Chapter 4CCNA RS_NB - Chapter 4
CCNA RS_NB - Chapter 4Irsandi Hasan
 
CCNA RS_NB - Chapter 3
CCNA RS_NB - Chapter 3CCNA RS_NB - Chapter 3
CCNA RS_NB - Chapter 3Irsandi Hasan
 
CCNA RS_NB - Chapter 2
CCNA RS_NB - Chapter 2CCNA RS_NB - Chapter 2
CCNA RS_NB - Chapter 2Irsandi Hasan
 
CCNA RS_NB - Chapter 1
CCNA RS_NB - Chapter 1CCNA RS_NB - Chapter 1
CCNA RS_NB - Chapter 1Irsandi Hasan
 
CCNA RS_ITN - Chapter 11
CCNA RS_ITN - Chapter 11CCNA RS_ITN - Chapter 11
CCNA RS_ITN - Chapter 11Irsandi Hasan
 
CCNA RS_ITN - Chapter 10
CCNA RS_ITN - Chapter 10CCNA RS_ITN - Chapter 10
CCNA RS_ITN - Chapter 10Irsandi Hasan
 
CCNA RS_ITN - Chapter 9
CCNA RS_ITN - Chapter 9CCNA RS_ITN - Chapter 9
CCNA RS_ITN - Chapter 9Irsandi Hasan
 
CCNA RS_ITN - Chapter 8
CCNA RS_ITN - Chapter 8CCNA RS_ITN - Chapter 8
CCNA RS_ITN - Chapter 8Irsandi Hasan
 
CCNA RS_ITN - Chapter 6
CCNA RS_ITN - Chapter 6CCNA RS_ITN - Chapter 6
CCNA RS_ITN - Chapter 6Irsandi Hasan
 
CCNA RS_ITN - Chapter 5
CCNA RS_ITN - Chapter 5CCNA RS_ITN - Chapter 5
CCNA RS_ITN - Chapter 5Irsandi Hasan
 
CCNA RS_ITN - Chapter 4
CCNA RS_ITN - Chapter 4CCNA RS_ITN - Chapter 4
CCNA RS_ITN - Chapter 4Irsandi Hasan
 

More from Irsandi Hasan (18)

VMware vShield - Overview
VMware vShield - OverviewVMware vShield - Overview
VMware vShield - Overview
 
CCNA RS_NB - Chapter 11
CCNA RS_NB - Chapter 11CCNA RS_NB - Chapter 11
CCNA RS_NB - Chapter 11
 
CCNA RS_NB - Chapter 10
CCNA RS_NB - Chapter 10CCNA RS_NB - Chapter 10
CCNA RS_NB - Chapter 10
 
CCNA RS_NB - Chapter 9
CCNA RS_NB - Chapter 9CCNA RS_NB - Chapter 9
CCNA RS_NB - Chapter 9
 
CCNA RS_NB - Chapter 8
CCNA RS_NB - Chapter 8CCNA RS_NB - Chapter 8
CCNA RS_NB - Chapter 8
 
CCNA RS_NB - Chapter 7
CCNA RS_NB - Chapter 7CCNA RS_NB - Chapter 7
CCNA RS_NB - Chapter 7
 
CCNA RS_NB - Chapter 6
CCNA RS_NB - Chapter 6CCNA RS_NB - Chapter 6
CCNA RS_NB - Chapter 6
 
CCNA RS_NB - Chapter 4
CCNA RS_NB - Chapter 4CCNA RS_NB - Chapter 4
CCNA RS_NB - Chapter 4
 
CCNA RS_NB - Chapter 3
CCNA RS_NB - Chapter 3CCNA RS_NB - Chapter 3
CCNA RS_NB - Chapter 3
 
CCNA RS_NB - Chapter 2
CCNA RS_NB - Chapter 2CCNA RS_NB - Chapter 2
CCNA RS_NB - Chapter 2
 
CCNA RS_NB - Chapter 1
CCNA RS_NB - Chapter 1CCNA RS_NB - Chapter 1
CCNA RS_NB - Chapter 1
 
CCNA RS_ITN - Chapter 11
CCNA RS_ITN - Chapter 11CCNA RS_ITN - Chapter 11
CCNA RS_ITN - Chapter 11
 
CCNA RS_ITN - Chapter 10
CCNA RS_ITN - Chapter 10CCNA RS_ITN - Chapter 10
CCNA RS_ITN - Chapter 10
 
CCNA RS_ITN - Chapter 9
CCNA RS_ITN - Chapter 9CCNA RS_ITN - Chapter 9
CCNA RS_ITN - Chapter 9
 
CCNA RS_ITN - Chapter 8
CCNA RS_ITN - Chapter 8CCNA RS_ITN - Chapter 8
CCNA RS_ITN - Chapter 8
 
CCNA RS_ITN - Chapter 6
CCNA RS_ITN - Chapter 6CCNA RS_ITN - Chapter 6
CCNA RS_ITN - Chapter 6
 
CCNA RS_ITN - Chapter 5
CCNA RS_ITN - Chapter 5CCNA RS_ITN - Chapter 5
CCNA RS_ITN - Chapter 5
 
CCNA RS_ITN - Chapter 4
CCNA RS_ITN - Chapter 4CCNA RS_ITN - Chapter 4
CCNA RS_ITN - Chapter 4
 

Recently uploaded

Contact Rya Baby for Call Girls New Delhi
Contact Rya Baby for Call Girls New DelhiContact Rya Baby for Call Girls New Delhi
Contact Rya Baby for Call Girls New Delhimiss dipika
 
Magic exist by Marta Loveguard - presentation.pptx
Magic exist by Marta Loveguard - presentation.pptxMagic exist by Marta Loveguard - presentation.pptx
Magic exist by Marta Loveguard - presentation.pptxMartaLoveguard
 
Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja Vip
Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja VipCall Girls Service Adil Nagar 7001305949 Need escorts Service Pooja Vip
Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja VipCall Girls Lucknow
 
定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一
定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一
定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一Fs
 
Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)
Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)
Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)Dana Luther
 
定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一
定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一
定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一Fs
 
Font Performance - NYC WebPerf Meetup April '24
Font Performance - NYC WebPerf Meetup April '24Font Performance - NYC WebPerf Meetup April '24
Font Performance - NYC WebPerf Meetup April '24Paul Calvano
 
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一
定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一
定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一Fs
 
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一z xss
 
定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一
定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一
定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一Fs
 
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012rehmti665
 
Git and Github workshop GDSC MLRITM
Git and Github  workshop GDSC MLRITMGit and Github  workshop GDSC MLRITM
Git and Github workshop GDSC MLRITMgdsc13
 
Call Girls Near The Suryaa Hotel New Delhi 9873777170
Call Girls Near The Suryaa Hotel New Delhi 9873777170Call Girls Near The Suryaa Hotel New Delhi 9873777170
Call Girls Near The Suryaa Hotel New Delhi 9873777170Sonam Pathan
 
Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作
Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作
Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作ys8omjxb
 
Blepharitis inflammation of eyelid symptoms cause everything included along w...
Blepharitis inflammation of eyelid symptoms cause everything included along w...Blepharitis inflammation of eyelid symptoms cause everything included along w...
Blepharitis inflammation of eyelid symptoms cause everything included along w...Excelmac1
 
Top 10 Interactive Website Design Trends in 2024.pptx
Top 10 Interactive Website Design Trends in 2024.pptxTop 10 Interactive Website Design Trends in 2024.pptx
Top 10 Interactive Website Design Trends in 2024.pptxDyna Gilbert
 

Recently uploaded (20)

Contact Rya Baby for Call Girls New Delhi
Contact Rya Baby for Call Girls New DelhiContact Rya Baby for Call Girls New Delhi
Contact Rya Baby for Call Girls New Delhi
 
Magic exist by Marta Loveguard - presentation.pptx
Magic exist by Marta Loveguard - presentation.pptxMagic exist by Marta Loveguard - presentation.pptx
Magic exist by Marta Loveguard - presentation.pptx
 
Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja Vip
Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja VipCall Girls Service Adil Nagar 7001305949 Need escorts Service Pooja Vip
Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja Vip
 
Hot Sexy call girls in Rk Puram 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in  Rk Puram 🔝 9953056974 🔝 Delhi escort ServiceHot Sexy call girls in  Rk Puram 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in Rk Puram 🔝 9953056974 🔝 Delhi escort Service
 
定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一
定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一
定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一
 
Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)
Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)
Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)
 
定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一
定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一
定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一
 
Font Performance - NYC WebPerf Meetup April '24
Font Performance - NYC WebPerf Meetup April '24Font Performance - NYC WebPerf Meetup April '24
Font Performance - NYC WebPerf Meetup April '24
 
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
 
定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一
定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一
定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一
 
young call girls in Uttam Nagar🔝 9953056974 🔝 Delhi escort Service
young call girls in Uttam Nagar🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Uttam Nagar🔝 9953056974 🔝 Delhi escort Service
young call girls in Uttam Nagar🔝 9953056974 🔝 Delhi escort Service
 
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一
 
定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一
定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一
定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一
 
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
 
Git and Github workshop GDSC MLRITM
Git and Github  workshop GDSC MLRITMGit and Github  workshop GDSC MLRITM
Git and Github workshop GDSC MLRITM
 
Call Girls Near The Suryaa Hotel New Delhi 9873777170
Call Girls Near The Suryaa Hotel New Delhi 9873777170Call Girls Near The Suryaa Hotel New Delhi 9873777170
Call Girls Near The Suryaa Hotel New Delhi 9873777170
 
Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作
Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作
Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作
 
Model Call Girl in Jamuna Vihar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in  Jamuna Vihar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in  Jamuna Vihar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Jamuna Vihar Delhi reach out to us at 🔝9953056974🔝
 
Blepharitis inflammation of eyelid symptoms cause everything included along w...
Blepharitis inflammation of eyelid symptoms cause everything included along w...Blepharitis inflammation of eyelid symptoms cause everything included along w...
Blepharitis inflammation of eyelid symptoms cause everything included along w...
 
Top 10 Interactive Website Design Trends in 2024.pptx
Top 10 Interactive Website Design Trends in 2024.pptxTop 10 Interactive Website Design Trends in 2024.pptx
Top 10 Interactive Website Design Trends in 2024.pptx
 

Transport Layer Protocols and TCP/UDP Comparison

  • 1. Instructor Materials Chapter 9: Transport Layer CCNA Routing and Switching Introduction to Networks v6.0
  • 2. 3© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential Chapter 9: Transport Layer Introduction to Networks 6.0 Planning Guide
  • 3. Chapter 9: Transport Layer CCNA Routing and Switching Introduction to Networks v6.0
  • 4. 14© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential  9.1 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.  9.2 TCP and UDP • Compare the operations of transport layer protocols in supporting end-to-end communication. • Explain how TCP session establishment and termination processes facilitate reliable communication. • Explain how TCP protocol data units are transmitted and acknowledged to guarantee delivery. • Describe the UDP client processes to establish communication with a server. • Determine whether high-reliability TCP transmissions, or non-guaranteed UDP transmissions, are best suited for common applications. Chapter 9 - Sections & Objectives
  • 5. 15© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 9.1 Transport Layer Protocols
  • 6. 16© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 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.
  • 7. 17© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 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.
  • 8. 18© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential Transportation of Data Conversation Multiplexing  Segmenting the data into smaller chunks enables many different communications to be multiplexed on the same network.
  • 9. 19© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 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.
  • 10. 20© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 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.
  • 11. 21© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential Transportation of Data TCP (Cont.)
  • 12. 22© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential Transportation of Data TCP (Cont.) TCP Three Responsibilities:  Numbering and tracking data segments  Acknowledging received data  Retransmitting any unacknowledged data after a certain period of time
  • 13. 23© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential Use UDP for less overhead and to reduce possible delays.  Best-effort delivery (unreliable)  No acknowledgment  Similar to a non-registered letter Transportation of Data UDP
  • 14. 24© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential  TCP - databases, web browsers, and email clients require that all data that is sent arrives at the destination in its original condition.  UDP - if one or two segments of a live video stream fail to arrive, if disruption in the stream, may not be noticeable to the user. Transportation of Data The Right Transport Layer Protocol for the Right Application
  • 15. 25© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential  Establishing a Session • Connection-oriented protocol • Ensures the application is ready to receive the data • Negotiate the amount of traffic that can be forwarded at a given time  Reliable Delivery • Ensuring that each segment that the source sends arrives at the destination  Same-Order Delivery • Numbering & Sequencing the segments guarantees reassembly into the proper order  Flow Control • Regulate the amount of data the source transmits TCP and UDP Overview TCP Features
  • 16. 26© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential TCP and UDP Overview TCP Header  Source and Destination Port used to identify application  Sequence number used for data reassembly  Acknowledgement number indicates data has been received and ready for next byte from source  Header length – length of TCP segment header  Control bits – purpose and function of TCP segment  Window size – number of bytes that can be accepted at one time  Checksum – Used for error checking of segment header and data 20 Bytes Total
  • 17. 27© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential TCP and UDP Overview UDP Features
  • 18. 28© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential  UDP is a stateless protocol – no tracking  Reliability handled by application TCP and UDP Overview UDP Header
  • 19. 29© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential  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 TCP and UDP Overview Multiple Separate Communications
  • 20. 30© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential  Source Port • Originating application port that is dynamically generated by sending device • Example: Each separate HTTP conversation is tracked based on the source ports.  Destination Port • Tell the destination what service is being requested • Example: Port 80 web services are being requested TCP and UDP Overview Port Numbers
  • 21. 31© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 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  Sockets enable multiple processes to be distinguished  Source port acts as a return address
  • 22. 32© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential TCP and UDP Overview Port Number Groups  Well-known Ports (Numbers 0 to 1023) - These numbers are reserved for services and applications.  Registered Ports (Numbers 1024 to 49151) - These port numbers are assigned by IANA to a requesting entity to use with specific processes or applications.  Dynamic or Private Ports (Numbers 49152 to 65535) - Usually assigned dynamically by the client’s OS and used to identify the client application during communication.
  • 23. 33© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential TCP and UDP Overview Port Number Groups (Cont.) Well Known Port Numbers
  • 24. 34© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential TCP and UDP Overview The netstat Command  Network utility that can be used to verify connections  By default, will attempt to resolve IP addresses to domain names and port numbers to well- known applications  -n option used to display IPs and ports in numerical form
  • 25. 35© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 9.2 TCP and UDP
  • 26. 36© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential TCP Communication Process TCP Server Process
  • 27. 37© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential TCP Communication Process TCP Server Process (Cont.)
  • 28. 38© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential  Step 1 – Initiating client requests a session with server. TCP Communication Process TCP Connection Establishment  Step 2 – Server acknowledges and requests a session with client.  Step 3 – Client acknowledges communication session with server.
  • 29. 39© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential  To close a connection, the Finish (FIN) control flag must be set in the segment header.  To end each one-way TCP session, a two-way handshake, consisting of a FIN segment and an Acknowledgment (ACK) segment, is used.  To terminate a single conversation supported by TCP, four exchanges are needed to end both sessions. TCP Communication Process TCP Session Termination
  • 30. 40© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential  The three-way handshake: • Establishes that the destination device is present on the network. • Verifies that the destination device has an active service and is accepting requests on the destination port number that the initiating client intends to use. • Informs the destination device that the source client intends to establish a communication session on that port number.  The six bits in the Control Bits field of the TCP segment header are also known as flags. • RST flag is used to reset a connection when an error or timeout occurs TCP Communication Process TCP Three-way Handshake Analysis
  • 31. 41© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential TCP Communication Process Video Demonstration - TCP 3-Way Handshake SYN SYN, ACK ACK
  • 32. 42© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential TCP Communication Process Lab – Using Wireshark to Observe the TCP 3-Way Handshake
  • 33. 43© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential  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. Reliability and Flow Control TCP Reliability – Ordered Delivery
  • 34. 44© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential Reliability and Flow Control Video Demonstration - TCP Reliability – Sequence Numbers and Acknowledgments
  • 35. 45© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential Reliability and Flow Control Video Demonstration – Data Loss and Retransmission
  • 36. 46© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 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.
  • 37. 47© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 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
  • 38. 48© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential UDP Communication UDP Low Overhead versus Reliability  UDP not connection- oriented  No retransmission, sequencing, and flow control  Functions not provided by the transport layer implemented elsewhere
  • 39. 49© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential UDP Communication UDP Datagram Reassembly UDP: Connectionless and Unreliable  UDP reassembles data in order received and forwards to application  Application must identify the proper sequence
  • 40. 50© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential UDP Communication UDP Server Processes and Requests Note: The Remote Authentication Dial-in User Service (RADIUS) server shown in the figure provides authentication, authorization, and accounting services to manage user access.
  • 41. 51© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential UDP Communication UDP Client Processes Clients Sending UDP Requests
  • 42. 52© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential UDP Communication UDP Client Processes (Cont.) Clients Sending UDP Requests
  • 43. 53© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential UDP Communication Lab – Using Wireshark to Examine a UDP DNS Capture
  • 44. 54© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential TCP or UDP Applications that use TCP TCP frees applications from having to manage reliability
  • 45. 55© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 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
  • 46. 56© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential TCP or UDP Lab – Using Wireshark to Examine TCP and UDP Captures
  • 47. 57© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential 9.3 Chapter Summary
  • 48. 58© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential Conclusion Packet Tracer – TCP and UDP Communications
  • 49. 59© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential  Explain how transport layer protocols and services support communications across data networks.  Compare the operations of transport layer protocols in supporting end-to-end communication. Conclusion Chapter 9: Transport Layer