Net 222: Communications and networks fundamentals ( Practical Part)

20
NET 222: COMMUNICATIONS AND NETWORKS FUNDAMENTALS (PRACTICAL PART) Tutorial 4: Chapter 7 Data & computer communications Networks and Communication Department 1

description

Net 222: Communications and networks fundamentals ( Practical Part). Tutorial 4 : Chapter 7 Data & computer communications . Stop-and-Wait ARQ. Simplest flow and error control protocol Data frames and ACK frames are numbered alternately (0,1) - PowerPoint PPT Presentation

Transcript of Net 222: Communications and networks fundamentals ( Practical Part)

Page 1: Net  222: Communications  and networks  fundamentals  ( Practical Part)

Networks and Communication Department

NET 222: COMMUNICATIONS AND NETWORKS FUNDAMENTALS (PRACTICAL PART)Tutorial 4: Chapter 7 Data & computer communications

1

Page 2: Net  222: Communications  and networks  fundamentals  ( Practical Part)

Stop-and-Wait ARQ

Simplest flow and error control protocol Data frames and ACK frames are numbered alternately (0,1) When receiver sends ACK1: it acknowledges data frame 0 and is

expecting data frame 1, ACK0 acknowledges data frame 1 and is expecting data frame 0

Sequence Numbers are incremented modulo 2. 1+1 = 0 , and 0+1=1 Receiver has a counter (R ) which hold the number of the expected

frame to be received. R is incremented by 1 modulo 2 when the expected frame is received.

The sender keeps a counter (S ) which holds the number of the last transmitted frame. S is incremented by 1 modulo 2 when the acknowledgement of the last transmitted frame is received and the next frame is transmitted

Page 3: Net  222: Communications  and networks  fundamentals  ( Practical Part)

Normal operation

Expected frame to be received

Last transmitted frame

Page 4: Net  222: Communications  and networks  fundamentals  ( Practical Part)

Stop-and-Wait ARQ – Cont’d

If the receiver detects an error in the frame it discards it If the receiver receives an out-of-order frame ( frame 0 instead of

frame 1 or vice versa), it knows that the expected frame is lost or damaged and discards the out-of-order frame and resend the previous ACK

The sending device keeps a copy of the last frame transmitted until it receives the right acknowledgment (ACK) for the frame

The sender starts a timer when it sends a frame. If an ACK is not received within the allocated time, the sender assumes that the frame was lost or damaged and resends it

Page 5: Net  222: Communications  and networks  fundamentals  ( Practical Part)

Stop-and-Wait ARQ, lost frame

Page 6: Net  222: Communications  and networks  fundamentals  ( Practical Part)

Networks and Communication Department

6

Stop-and wait ARQ Example

Page 7: Net  222: Communications  and networks  fundamentals  ( Practical Part)

Go-Back-N ARQ

Setup – Sender sliding window Frames are numbered sequentially using k-bit in the frame header

For k bits frame sequence numbers 0 – (2k –1), repeated k=3 (0,1,2,3,4,5,6,7,0, 1,2,3,4,5,6,7,…), k=4 (0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0, 1,2,3,4,5,6,7,8,....15,….),

Sender can send multiple frames while waiting for ACK, but total number of unacknowledged frames should not exceed 2k –1 which is called window

Window is an imaginary placeholder that covers the frames sequence numbers which can be in transit

The frames to the left of the window are already acknowledged and to the right can not be sent until window slides over them

Frames inside the window are outstanding (have been sent but not yet acknowledged OR will be sent soon once received from upper-layer)

Sender window will slide to frame number (i ) when (ACK i) is received. Sf : first outstanding frame , Sn : next frame to send

Page 8: Net  222: Communications  and networks  fundamentals  ( Practical Part)

Go-Back-N ARQ

Setup –Receiver sliding window The size of the receiver window is always 1 and points to the next expected frame

number to arrive This means that frames should arrive in order If the expected frame is received without errors, the receiver window slides over the next

sequence number. Operation The receiver sends a positive ACK if a frame has arrived without error and in order

(with the expected sequence number ) Receiver does not have to acknowledge each individual frame received correctly and in

order. Receiver can send cumulative ACK for several frames (ACK 5 acknowledges frames

(0,1,2,3,4) and expecting frame 5) If the frame is damaged or out-of-order, the receiver discards it (and stay silent) and

also discards all subsequent frames until it receives the one expected. In this case, no ACK will be transmitted

If the sender timer expires before receiving an ACK, it will resend ALL frames beginning with the one expired until the last one sent (Go-Back-N).

Page 9: Net  222: Communications  and networks  fundamentals  ( Practical Part)

Go-Back-N ARQ, normal operation

Sender window will slide to frame number (i ) when (ACK i) is received.

K=2Sequence # : 0 – (2k –1), 0 3

Window size: 2k –1 = 3

Window size=1

Page 10: Net  222: Communications  and networks  fundamentals  ( Practical Part)

Networks and Communication Department

10

Go-Back-N ARQ Example

Page 11: Net  222: Communications  and networks  fundamentals  ( Practical Part)

11

Go-Back-N ARQ Example

Networks and Communication Department

Timeout for frame 1

expired

Page 12: Net  222: Communications  and networks  fundamentals  ( Practical Part)

Selective-Reject ARQ

Setup-Window size (for both sender and receiver) For k bit sequence number the maximum window size 2k-1

Operation Sender in case of damaged or lost frame retransmits

Those which are negatively acknowledged Those for which timer expires

Receiver can accept out of order frames and buffer (store) them until the lost, damaged, or delayed frame arrives.

Receiver does not acknowledge out of order frames but buffers them only

If the receiver receives an out-of-order, error frame, it will send a frame called Negative Acknowledge (NAK or SREJ) with the number of the frame to be retransmitted only.

NAK improves the performance because it requests retransmission of the lost frame before the corresponding sender timer expires

Page 13: Net  222: Communications  and networks  fundamentals  ( Practical Part)

13

Selective Reject Example

Networks and Communication Department

K=3Sequence # = 0 – (2k –1), 0 7

Window size: 2k-1 =4

Window size: 2k-1 =4

Page 14: Net  222: Communications  and networks  fundamentals  ( Practical Part)

Networks and Communication Department

14

Question.

In the Go-Back-N ARQ Protocol, we can send several frames before receiving

acknowledgments. If a frame is lost or damaged, all outstanding frames sent before that frame are resent. In the Selective- Repeat ARQ protocol we avoid

unnecessary transmission by sending only the frames that are corrupted or missing. Both Go- Back-N and Selective-Repeat Protocols use sliding windows. In Go-Back-

N ARQ, if k is the number of bits for the sequence number, then the size of the send window must be at most ; the size of the receiver window is always 1.

In Selective- Repeat ARQ, the size of the sender and receiver window must be at most

Page 15: Net  222: Communications  and networks  fundamentals  ( Practical Part)

Networks and Communication Department

15

Question

A five-bit sequence number can create sequence numbers from 0 to 31. Thesequence number in the Nth packet is (N mod 32). This means that the 101thpacket has the sequence number (101 mod 32) or 5.

Page 16: Net  222: Communications  and networks  fundamentals  ( Practical Part)

Networks and Communication Department

16

Question

Page 17: Net  222: Communications  and networks  fundamentals  ( Practical Part)

Networks and Communication Department

17

Question

Page 18: Net  222: Communications  and networks  fundamentals  ( Practical Part)

Networks and Communication Department

18

Question

Draw the flow diagram of a system using Go back N ARQ protocol for five frames using 4-bits sequence numbers. Assume the fourth frame (frame 3) is lost.

size of Sender window: (2k –1) =15size of receiver window :1frames sequence numbers: 0 – (2k –1) = 0-15

Page 19: Net  222: Communications  and networks  fundamentals  ( Practical Part)

Networks and Communication Department

19

Page 20: Net  222: Communications  and networks  fundamentals  ( Practical Part)

20

Networks and Communication Department

Any Questions ?The End