- When a frame is transmitted
for the first time:
- If there was a collision,
the
first
retransmission attempt will use:
k = k + 1 = 0 + 1 = 1
N = 2k - 1 = 21 - 1 = 2 - 1 = 1
|
For the
first re-transmission attempt,
the node will picks
a
random number
r from
the range:
This range is
suitable when there are
very few (about 2)
nodes involved in the collision
- It the node
is involved in
another collision
while trying to
transmit the
same frame,
then:
k = k + 1 = 1 + 1 = 2
N = 2k - 1 = 22 - 1 = 4 - 1 = 3
|
So the
second
retransmission attempt
for the same frame will
use a
random number
r from
the range:
The node is adjusting to
accomodate for a
larger number of nodes
(i.e., a heavier loaded situation)
- If there is another collision,
the
third
retransmission attempt
of the same frame will use:
- And so on...
|