the data link layer - university of technologythai/mmt1/slides/chapter3 the data...example data link...

46
The Data Link Layer Chapter 3 1

Upload: others

Post on 02-Apr-2020

5 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: The Data Link Layer - University of Technologythai/mmt1/slides/chapter3 The Data...Example Data Link Protocols • HDLC –High-Level Data Link Control • The Data Link Layer in the

The Data Link Layer

Chapter 3

1

Page 2: The Data Link Layer - University of Technologythai/mmt1/slides/chapter3 The Data...Example Data Link Protocols • HDLC –High-Level Data Link Control • The Data Link Layer in the

Data Link Layer Design Issues

• Services Provided to the Network Layer

• Framing

• Error Control

• Flow Control

2

Page 3: The Data Link Layer - University of Technologythai/mmt1/slides/chapter3 The Data...Example Data Link Protocols • HDLC –High-Level Data Link Control • The Data Link Layer in the

Functions of the Data Link Layer

• Provide service interface to the network layer

• Dealing with transmission errors

• Regulating data flow

• Slow receivers not swamped by fast senders

3

Page 4: The Data Link Layer - University of Technologythai/mmt1/slides/chapter3 The Data...Example Data Link Protocols • HDLC –High-Level Data Link Control • The Data Link Layer in the

Functions of the Data Link Layer (2)

Relationship between packets and frames.

4

Page 5: The Data Link Layer - University of Technologythai/mmt1/slides/chapter3 The Data...Example Data Link Protocols • HDLC –High-Level Data Link Control • The Data Link Layer in the

Services Provided to Network Layer

(a) Virtual communication.

(b) Actual communication. 5

Page 6: The Data Link Layer - University of Technologythai/mmt1/slides/chapter3 The Data...Example Data Link Protocols • HDLC –High-Level Data Link Control • The Data Link Layer in the

Services Provided to Network Layer (2)

Placement of the data link protocol.

6

Page 7: The Data Link Layer - University of Technologythai/mmt1/slides/chapter3 The Data...Example Data Link Protocols • HDLC –High-Level Data Link Control • The Data Link Layer in the

Framing

A character stream. (a) Without errors. (b) With one error.

7

Page 8: The Data Link Layer - University of Technologythai/mmt1/slides/chapter3 The Data...Example Data Link Protocols • HDLC –High-Level Data Link Control • The Data Link Layer in the

Framing (2)

(a) A frame delimited by flag bytes.

(b) Four examples of byte sequences before and after stuffing. 8

Page 9: The Data Link Layer - University of Technologythai/mmt1/slides/chapter3 The Data...Example Data Link Protocols • HDLC –High-Level Data Link Control • The Data Link Layer in the

Framing (3)

Bit stuffing

(a) The original data.

(b) The data as they appear on the line.

(c) The data as they are stored in receiver’s memory after destuffing.9

Page 10: The Data Link Layer - University of Technologythai/mmt1/slides/chapter3 The Data...Example Data Link Protocols • HDLC –High-Level Data Link Control • The Data Link Layer in the

Error Detection and Correction

• Error-Correcting Codes

• Error-Detecting Codes

10

Page 11: The Data Link Layer - University of Technologythai/mmt1/slides/chapter3 The Data...Example Data Link Protocols • HDLC –High-Level Data Link Control • The Data Link Layer in the

Error-Correcting Codes

Use of a Hamming code to correct burst errors.

11

Page 12: The Data Link Layer - University of Technologythai/mmt1/slides/chapter3 The Data...Example Data Link Protocols • HDLC –High-Level Data Link Control • The Data Link Layer in the

Error-Detecting Codes

Calculation of the polynomial code checksum.

12

Page 13: The Data Link Layer - University of Technologythai/mmt1/slides/chapter3 The Data...Example Data Link Protocols • HDLC –High-Level Data Link Control • The Data Link Layer in the

Elementary Data Link Protocols

• An Unrestricted Simplex Protocol

• A Simplex Stop-and-Wait Protocol

• A Simplex Protocol for a Noisy Channel

13

Page 14: The Data Link Layer - University of Technologythai/mmt1/slides/chapter3 The Data...Example Data Link Protocols • HDLC –High-Level Data Link Control • The Data Link Layer in the

Protocol Definitions

Continued

Some definitions needed in the protocols to follow.

These are located in the file protocol.h.14

Page 15: The Data Link Layer - University of Technologythai/mmt1/slides/chapter3 The Data...Example Data Link Protocols • HDLC –High-Level Data Link Control • The Data Link Layer in the

Protocol

Definitions

(ctd.)

Some definitions

needed in the

protocols to follow.

These are located in

the file protocol.h.15

Page 16: The Data Link Layer - University of Technologythai/mmt1/slides/chapter3 The Data...Example Data Link Protocols • HDLC –High-Level Data Link Control • The Data Link Layer in the

Unrestricted

Simplex

Protocol

16

Page 17: The Data Link Layer - University of Technologythai/mmt1/slides/chapter3 The Data...Example Data Link Protocols • HDLC –High-Level Data Link Control • The Data Link Layer in the

Simplex

Stop-and-

Wait

Protocol

17

Page 18: The Data Link Layer - University of Technologythai/mmt1/slides/chapter3 The Data...Example Data Link Protocols • HDLC –High-Level Data Link Control • The Data Link Layer in the

A Simplex Protocol for a Noisy Channel

A positive

acknowledgement

with retransmission

protocol.

Continued 18

Page 19: The Data Link Layer - University of Technologythai/mmt1/slides/chapter3 The Data...Example Data Link Protocols • HDLC –High-Level Data Link Control • The Data Link Layer in the

A Simplex Protocol for a Noisy Channel (ctd.)

A positive acknowledgement with retransmission protocol.19

Page 20: The Data Link Layer - University of Technologythai/mmt1/slides/chapter3 The Data...Example Data Link Protocols • HDLC –High-Level Data Link Control • The Data Link Layer in the

Sliding Window Protocols

• A One-Bit Sliding Window Protocol

• A Protocol Using Go Back N

• A Protocol Using Selective Repeat

20

Page 21: The Data Link Layer - University of Technologythai/mmt1/slides/chapter3 The Data...Example Data Link Protocols • HDLC –High-Level Data Link Control • The Data Link Layer in the

Sliding Window Protocols (2)

A sliding window of size 1, with a 3-bit sequence number.

(a) Initially.

(b) After the first frame has been sent.

(c) After the first frame has been received.

(d) After the first acknowledgement has been received.21

Page 22: The Data Link Layer - University of Technologythai/mmt1/slides/chapter3 The Data...Example Data Link Protocols • HDLC –High-Level Data Link Control • The Data Link Layer in the

A One-Bit Sliding Window Protocol

Continued 22

Page 23: The Data Link Layer - University of Technologythai/mmt1/slides/chapter3 The Data...Example Data Link Protocols • HDLC –High-Level Data Link Control • The Data Link Layer in the

A One-Bit Sliding Window Protocol (ctd.)

23

Page 24: The Data Link Layer - University of Technologythai/mmt1/slides/chapter3 The Data...Example Data Link Protocols • HDLC –High-Level Data Link Control • The Data Link Layer in the

A One-Bit Sliding Window Protocol (2)

Two scenarios for protocol 4. (a) Normal case. (b) Abnormal

case. The notation is (seq, ack, packet number). An asterisk

indicates where a network layer accepts a packet.24

Page 25: The Data Link Layer - University of Technologythai/mmt1/slides/chapter3 The Data...Example Data Link Protocols • HDLC –High-Level Data Link Control • The Data Link Layer in the

A Protocol Using Go Back N

Pipelining and error recovery. Effect on an error when

(a) Receiver’s window size is 1.

(b) Receiver’s window size is large. 25

Page 26: The Data Link Layer - University of Technologythai/mmt1/slides/chapter3 The Data...Example Data Link Protocols • HDLC –High-Level Data Link Control • The Data Link Layer in the

Sliding

Window

Protocol

Using Go

Back N

Continued 26

Page 27: The Data Link Layer - University of Technologythai/mmt1/slides/chapter3 The Data...Example Data Link Protocols • HDLC –High-Level Data Link Control • The Data Link Layer in the

Sliding Window Protocol Using Go Back N

Continued 27

Page 28: The Data Link Layer - University of Technologythai/mmt1/slides/chapter3 The Data...Example Data Link Protocols • HDLC –High-Level Data Link Control • The Data Link Layer in the

Sliding Window Protocol Using Go Back N

Continued 28

Page 29: The Data Link Layer - University of Technologythai/mmt1/slides/chapter3 The Data...Example Data Link Protocols • HDLC –High-Level Data Link Control • The Data Link Layer in the

Sliding Window Protocol Using Go Back N

29

Page 30: The Data Link Layer - University of Technologythai/mmt1/slides/chapter3 The Data...Example Data Link Protocols • HDLC –High-Level Data Link Control • The Data Link Layer in the

Sliding Window Protocol Using Go Back N (2)

Simulation of multiple timers in software.

30

Page 31: The Data Link Layer - University of Technologythai/mmt1/slides/chapter3 The Data...Example Data Link Protocols • HDLC –High-Level Data Link Control • The Data Link Layer in the

A Sliding Window Protocol Using Selective Repeat

Continued 31

Page 32: The Data Link Layer - University of Technologythai/mmt1/slides/chapter3 The Data...Example Data Link Protocols • HDLC –High-Level Data Link Control • The Data Link Layer in the

Continued

A Sliding Window Protocol Using Selective Repeat (2)

32

Page 33: The Data Link Layer - University of Technologythai/mmt1/slides/chapter3 The Data...Example Data Link Protocols • HDLC –High-Level Data Link Control • The Data Link Layer in the

A Sliding Window Protocol Using Selective Repeat (3)

Continued 33

Page 34: The Data Link Layer - University of Technologythai/mmt1/slides/chapter3 The Data...Example Data Link Protocols • HDLC –High-Level Data Link Control • The Data Link Layer in the

A Sliding Window Protocol Using Selective Repeat (4)

34

Page 35: The Data Link Layer - University of Technologythai/mmt1/slides/chapter3 The Data...Example Data Link Protocols • HDLC –High-Level Data Link Control • The Data Link Layer in the

A Sliding Window Protocol Using Selective Repeat (5)

(a) Initial situation with a window size seven.

(b) After seven frames sent and received, but not acknowledged.

(c) Initial situation with a window size of four.

(d) After four frames sent and received, but not acknowledged.

35

Page 36: The Data Link Layer - University of Technologythai/mmt1/slides/chapter3 The Data...Example Data Link Protocols • HDLC –High-Level Data Link Control • The Data Link Layer in the

Protocol Verification

• Finite State Machined Models

• Petri Net Models

36

Page 37: The Data Link Layer - University of Technologythai/mmt1/slides/chapter3 The Data...Example Data Link Protocols • HDLC –High-Level Data Link Control • The Data Link Layer in the

Finite State Machined Models

(a) State diagram for protocol 3. (b) Transmissions.

37

Page 38: The Data Link Layer - University of Technologythai/mmt1/slides/chapter3 The Data...Example Data Link Protocols • HDLC –High-Level Data Link Control • The Data Link Layer in the

Petri Net Models

A Petri net with two places and two transitions.

38

Page 39: The Data Link Layer - University of Technologythai/mmt1/slides/chapter3 The Data...Example Data Link Protocols • HDLC –High-Level Data Link Control • The Data Link Layer in the

Petri Net Models (2)

A Petri net model for protocol 3.39

Page 40: The Data Link Layer - University of Technologythai/mmt1/slides/chapter3 The Data...Example Data Link Protocols • HDLC –High-Level Data Link Control • The Data Link Layer in the

Example Data Link Protocols

• HDLC – High-Level Data Link Control

• The Data Link Layer in the Internet

40

Page 41: The Data Link Layer - University of Technologythai/mmt1/slides/chapter3 The Data...Example Data Link Protocols • HDLC –High-Level Data Link Control • The Data Link Layer in the

High-Level Data Link Control

Frame format for bit-oriented protocols.

41

Page 42: The Data Link Layer - University of Technologythai/mmt1/slides/chapter3 The Data...Example Data Link Protocols • HDLC –High-Level Data Link Control • The Data Link Layer in the

High-Level Data Link Control (2)

Control field of

(a) An information frame.

(b) A supervisory frame.

(c) An unnumbered frame.42

Page 43: The Data Link Layer - University of Technologythai/mmt1/slides/chapter3 The Data...Example Data Link Protocols • HDLC –High-Level Data Link Control • The Data Link Layer in the

The Data Link Layer in the Internet

A home personal computer acting as an internet host.

43

Page 44: The Data Link Layer - University of Technologythai/mmt1/slides/chapter3 The Data...Example Data Link Protocols • HDLC –High-Level Data Link Control • The Data Link Layer in the

PPP – Point to Point Protocol

The PPP full frame format for unnumbered mode operation.

44

Page 45: The Data Link Layer - University of Technologythai/mmt1/slides/chapter3 The Data...Example Data Link Protocols • HDLC –High-Level Data Link Control • The Data Link Layer in the

PPP – Point to Point Protocol (2)

A simplified phase diagram for bring a line up and down.45

Page 46: The Data Link Layer - University of Technologythai/mmt1/slides/chapter3 The Data...Example Data Link Protocols • HDLC –High-Level Data Link Control • The Data Link Layer in the

PPP – Point to Point Protocol (3)

The LCP frame types.

46