What are the Operations on go back n protocol?

1 answer

Answer

1149657

2026-03-09 12:55

+ Follow

Java
Java

Go-Back-N ARQ is a specific instance of the Automatic Repeat-reQuest (ARQ) Protocol, in which the sending process continues to send a number of frames specified by a window size even without receiving an ACK packet from the receiver. The receiver process keeps track of sequence number of the next frame it expects to receive, and sends that number with every ACK it sends. The receiver will ignore any frame that does not have the exact sequence number it expects -- whether that frame is a "past" duplicate of a frame it has already ACK'ed, or whether that frame is a "future" frame past the lost packet it is waiting for. Once the sender has sent all of the frames in its window, it will detect that all of the frames since the first lost frame are outstanding, and will go back to sequence number of the last ACK it received from the receiver process and fill its window starting with that frame and continue the process over again.

A nice Java Applet can be found here:

Applets/go-back-n/go-back-n.html">http://media.pearsoncmg.com/aw/aw_kurose_network_2/Applets/go-back-n/go-back-n.html

ReportLike(0ShareFavorite

Copyright © 2026 eLLeNow.com All Rights Reserved.