What is Pure ALOHA? (original) (raw)

Last Updated : 3 Oct, 2025

Pure ALOHA is the original form of the ALOHA protocol. In this approach, A station transmits a frame whenever it has data to send. Since there is only one shared channel, there is always a risk of collisions between frames from different stations.

Pure-ALOHA

Pure ALOHA

**Note: To ensure reliable communication, the receiver sends an acknowledgment (ACK) for each correctly received frame. If the sender does not receive an ACK within a time-out period, it assumes a collision has occurred and retransmits the frame.

Key Mechanism

  1. **Transmission: A user sends a packet immediately when it is ready.
  2. **Acknowledgment: The receiver responds with an ACK if the frame is received correctly.
  3. **Collision Handling: If no ACK is received, the sender assumes a collision occurred.
  4. **Random Back-off: Before retransmitting, the sender waits for a random back-off time to reduce the chance of repeated collisions.

Features of Pure ALOHA

Vulnerable Time in Pure ALOHA

Collisions in Pure ALOHA occur if packets overlap at any point.

**Note: The vulnerable period for a packet in Pure ALOHA is 2 × t_p. If another transmission starts within this period, both packets will be destroyed.

Throughput Analysis of Pure ALOHA

The efficiency of Pure ALOHA can be calculated using probability.

**Throughput (S): S = G \times e^{-2G}

**where:

**Maximum Throughput: Throughput is maximized when\text{G = 0.5}, S_{\text{max}} = 0.5 \times e^{-1} \approx 0.184. This means that only 18.4\% of the channel capacity is effectively used for successful transmission, while the rest is wasted due to collisions.

Advantages

Disadvantages