Tải bản đầy đủ (.ppt) (22 trang)

Tài liệu giảng dạy CCNA - module 01 chapter 07 - Fundamentals of TCP and UDP

Bạn đang xem bản rút gọn của tài liệu. Xem và tải ngay bản đầy đủ của tài liệu tại đây (374.95 KB, 22 trang )

1
Module 01
InterNetwork Overview
Chapter 07
Fundamentals of TCP and UDP
2
Table of Content
1
Typical features of layer 4
2
The Transmission Control Protocol
3
The User Datagram Protocol
3
1. Typical Features of OSI Layer 4
4
Introduction to transport layer

The primary duties of the transport layer are to transport
and regulate the flow of information from the source to the
destination, reliably and accurately.

The transport layer defines end-to-end connectivity
between host applications

Transport services include the following basic services:

Segmentation of upper-layer application data

Establishment of end-to-end operations


Transport of segments from one end host to another
end host

Flow control provided by sliding windows

Reliability provided by sequence numbers and
acknowledgments
5
2. The Transmission Control
Protocol
6
TCP: Three way handshaking
A B
7
TCP: Window and Acknowledgment
8
TCP: Sliding window and
Acknowledgment
9
TCP: Sequence and acknowledgment
1
0
Transport Layer: TCP

TCP supplies a reliably transportation between end-user
applications.

These are its characteristics:

Connection-oriented.


Supplies a virtual circuit between end-user applications

Breacking outgoing messages into segments and
reassembles messages at the destination.

Resends anything not received by acknowledgement.

Flow control: Windowing.

The protocols that use TCP include: FTP, HTTP SMTP,
Telnet.
1
1
TCP Header format
R
F
C
-
7
6
1
R
F
C
-
7
6
1
1

2
TCP Header format: Port number

Source Port 16 bits.

Destination Port 16 bits.

Source Port 16 bits.

Destination Port 16 bits.
1
3
TCP Header format: Sequence

Sequence Number: 32 bits

The sequence number of the
first data octet in this segment
(except when SYN is present).

Sequence Number: 32 bits

The sequence number of the
first data octet in this segment
(except when SYN is present).
1
4
TCP Header format: Acknowledgment

Acknowledgment Number: 32 bits


This field contains the value of the
next sequence number the sender of
the segment is expecting to receive.

Acknowledgment Number: 32 bits

This field contains the value of the
next sequence number the sender of
the segment is expecting to receive.
1
5
TCP Header format: Code bits

Control Bits: 8 bits

ACK: Acknowledgment field significant

RST: Reset the connection

SYN: Synchronize sequence numbers

FIN: No more data from sender

Control Bits: 8 bits

ACK: Acknowledgment field significant

RST: Reset the connection


SYN: Synchronize sequence numbers

FIN: No more data from sender
1
6
TCP Header format: Window

Window: 16 bits

The number of data octets beginning
with the one indicated in the
acknowledgment field which the sender
of this segment is willing to accept.

Window: 16 bits

The number of data octets beginning
with the one indicated in the
acknowledgment field which the sender
of this segment is willing to accept.
1
7
Transport Layer: UDP

UDP transports data unreliably between hosts. Following
are the characteristics:

Connectionless.

Unreliable, no software checking for message delivery


Transmit messages, does not need reassemble incoming
messages.

Without acknowledgements.

Error processing and retransmission must be handled by
higher layer protocols.

The protocols that use UDP include: TFTP, SNMP, DHCP,
DNS .
1
8
UDP Header format

UDP is a simple protocol that exchanges datagrams,
without acknowledgments or guaranteed delivery.
R
F
C
-
7
6
8
R
F
C
-
7
6

8
1
9
TCP and UDP port numbers

Both TCP and UDP use port (or socket) numbers to pass
information to the upper layers.
R
F
C
-
1
7
0
0
R
F
C
-
1
7
0
0
2
0
Range of ports

2 bytes: 0 – 65535.

Numbers below 255 : for public applications.


Numbers from 255 - 1023 : assigned to
companies for marketable applications.

Numbers above 1023 : are unregulated.

End systems use port numbers to select proper
applications.

Originating source port numbers are dynamically assigned
by the source host; usually, it is a number larger than
1023.
2
1
Telnet port number
2
2
Summary

TCP:

Connection-oriented.

Supplies a virtual circuit between end-user applications

Breacking outgoing messages into segments and reassembles
messages at the destination.

Resends anything not received by acknowledgement.


Flow control: Windowing

UDP:

Connectionless.

Unreliable, no software checking for message delivery

Transmit messages, does not need reassemble incoming
messages.

Without acknowledgements.

Error processing and retransmission must be handled by
higher layer protocols.

×