0% found this document useful (0 votes)
48 views26 pages

CH6-Random-Access 3

This chapter discusses multiple access protocols that allow multiple stations to share a common communication channel or transmission medium. It describes both random access protocols like ALOHA and slotted ALOHA and controlled access protocols like reservation, polling, and token passing. CSMA protocols including CSMA/CD and CSMA/CA are also covered, along with the exponential backoff algorithm used in Ethernet to reduce collisions after failed transmission attempts.

Uploaded by

Rounak Raj
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
48 views26 pages

CH6-Random-Access 3

This chapter discusses multiple access protocols that allow multiple stations to share a common communication channel or transmission medium. It describes both random access protocols like ALOHA and slotted ALOHA and controlled access protocols like reservation, polling, and token passing. CSMA protocols including CSMA/CD and CSMA/CA are also covered, along with the exponential backoff algorithm used in Ethernet to reduce collisions after failed transmission attempts.

Uploaded by

Rounak Raj
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPT, PDF, TXT or read online on Scribd
You are on page 1/ 26

Chapter 12

Multiple Access

12.1
Figure 12.1 Data link layer divided into two functionality-oriented sublayers

Upper sublayer – responsible for data link control


•Called LLC – for flow and error control
Lower sublayer - responsible for resolving access the shared media
•Called MAC – for multiple acceess resolution

12.2
Figure 12.2 Taxonomy of multiple-access protocols discussed in this chapter

12.3
12-1 RANDOM ACCESS
In random access or contention methods, no station is
superior to another station and none is assigned the
control over another. No station permits, or does not
permit, another station to send. At each instance, a
station that has data to send uses a procedure defined
by the protocol to make a decision on whether or not to
send. The decision depends on the state of the medium
(idle or busy).
Topics discussed in this section:
ALOHA
Carrier Sense Multiple Access
Carrier Sense Multiple Access with Collision Detection
Carrier Sense Multiple Access with Collision Avoidance
12.4
Figure 12.3 Frames in a pure ALOHA network

Pure ALOHA:

1. Each station sends a frame whenever is has a frame to send

2. One channel to share, possibility of collision between frames from different stations

12.5
Figure 12.4 Procedure for pure ALOHA protocol

12.6
Figure 12.5 Vulnerable time for pure ALOHA protocol

12.7
Figure 12.6 Frames in a slotted ALOHA network

Slotted ALOHA:

1. We divide the time into slots and force the station to send only at the beginning of the time slot

12.8
Figure 12.7 Vulnerable time for slotted ALOHA protocol

12.9
Figure 12.8 Space/time model of the collision in CSMA

CSMA – each station first listen to the medium before sending

Principle : “sense before transmit” or “listen before talk”


12.10
Figure 12.9 Vulnerable time in CSMA

12.11
Figure 12.10 Behavior of three persistence methods

1-Persistent-after station

finds the line idle, send its

frame

Nonpersistent-senses the

line; idle: sends

immediately; not idle: waits

random amount of time and

senses again

p-Persistent-the channel has

time slots with duration


12.12
Figure 12.11 Flow diagram for three persistence methods

12.13
Figure 12.12 Collision of the first bit in CSMA/CD

Figure 12.13 Collision and abortion in CSMA/CD

12.14 CSMA/CD- Augments CSMA algorithm to handle collision


Example 12.5 (Minimum frame size)

A network using CSMA/CD has a bandwidth of 10 Mbps.


If the maximum propagation time (including the delays in
the devices and ignoring the time needed to send a
jamming signal, as we see later) is 25.6 μs, what is the
minimum size of the frame?
Solution
The frame transmission time is Tfr = 2 × Tp = 51.2 μs.
This means, in the worst case, a station needs to transmit
for a period of 51.2 μs to detect the collision. The
minimum size of the frame is 10 Mbps × 51.2 μs = 512
bits or 64 bytes. This is actually the minimum size of the
frame for Standard Ethernet.
12.15
Figure 12.14 Flow diagram for the CSMA/CD (Page 375)

12.16
Figure 12.15 Energy level during transmission, idleness, or collision

Zero level–channel is idle

Normal level–successfully captured channel and sending frame

Abnormal level-collision and energy twice the normal level

12.17
Figure 12.16 Timing in CSMA/CA

Avoid collisions on wireless network because they cannot be detected

IFS- In CSMA/CA, the IFS can also be used to define the priority of a station or a frame.

Contention window- In CSMA/CA, if the station finds the channel busy,


it does not restart the timer of the contention window;
it stops the timer and restarts it when the channel becomes idle.

Acknowledgment- Positive acknowledgment and time out timer guarantee receiver has
received the frame

12.18
Figure 12.17 Flow diagram for CSMA/CA

12.19
Exponential Backoff Algorithm
 Ethernet uses the exponential backoff algorithms to determine the
best duration of the random waiting period after the collision
happens
 Algorithm:
 Set “slot time” equal to 2*maximum propagation delay + Jam
sequence transmission time (= 51.2 usec for Ethernet 10-Mbps
LAN)
 After Kth collision, select a random number (R) between 0 and
2k –1 and wait for a period equal to (R*slot time) then retransmit
when the medium is idle, for example:
 After first collision (K=1), select a number (R) between 0 and 2 1 –1
{0 ,1} and wait for a period equal to R*slot times (Wait for a period 0
usec or 1x51.2 usec) then retransmit when the medium is idle
 Do not increase random number range, if K=10
  Maximum interval {0 – 1023}

 Give up after 16 unsuccessful attempts and report failure to higher


layers
Exponential Backoff Algorithm
 Reduces the chance of two waiting stations picking the
same random waiting time
 When network traffic is light, it results in minimum
waiting time before transmission
 As congestion increases ( traffic is high), collisions
increase, stations backoff by larger amounts to reduce the
probability of collision.
 Exponential Back off algorithm gives last-in, first-out
effect
 Stations with no or few collisions will have the chance to transmit
before stations that have waited longer because of their previous
unsuccessful transmission attempts.
12-2 CONTROLLED ACCESS

In controlled access, the stations consult one another


to find which station has the right to send. A station
cannot send unless it has been authorized by other
stations. We discuss three popular controlled-access
methods.

Topics discussed in this section:


Reservation
Polling
Token Passing

12.22
Figure 12.18 Reservation access method

Reservation-station needs to make a reservation before sending data

12.23
Figure 12.19 Select and poll functions in polling access method

Polling – one device as primary station and the other device as secondary station

Select – primary device wants to send data to secondary device, secondary device gets ready to

receive

Poll – primary device solicits (ask) transmissions from secondary devices

12.24
Token passing – stations in network organized in a logical ring – predecessor and

successor

Token – gives station right to access the channel; needs token management

Physical ring – station sends the token to successor

Dual ring – uses second ring which operates in reverse direction

Bus ring (token bus) - stations are connected to single cable called bus, but make

logical ring

12.25
Figure 12.20 Logical ring and physical topology in token-passing access method

12.26

You might also like