Send one frame, wait for its ACK, then send the next — the simplest reliable protocol, but slow on long links.
Stop-and-Wait is the simplest ARQ (Automatic Repeat reQuest) scheme: send a single frame, then stop and wait for the receiver's ACK before sending anything else. Only one frame is ever in flight. If the ACK doesn't return before a timer expires, the sender assumes loss and retransmits.
0 and start a retransmission timer.ACK 0.1.After sending a frame, the sender does nothing until the ACK returns — roughly one round-trip time (RTT) later. With transmission time Tframe and one-way propagation Tprop, useful work happens only for Tframe out of every Tframe + 2·Tprop. Writing a = Tprop / Tframe, efficiency is `1 / (1 + 2a)`.
Plug in numbers: a 1 ms frame on a link with 20 ms one-way propagation gives a = 20, so efficiency = 1 / (1 + 40) ≈ 2.4%. The link sits idle ~97% of the time. That single fact is why pipelined windows (Go-Back-N, Selective Repeat) exist.