1 / 29

Medium Access Control in Wireless networks

Medium Access Control in Wireless networks. Wireless MAC classification. Wireless MAC. Centralized. Distributed. Polling. Guaranteed or controlled access. Random access. Aloha MACA(CSMA/CA) MACAW. Aloha. A node transmits a packet whenever a packet arrives.

pennie
Télécharger la présentation

Medium Access Control in Wireless networks

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Medium Access Control in Wireless networks

  2. Wireless MAC classification Wireless MAC Centralized Distributed Polling Guaranteed or controlled access Random access Aloha MACA(CSMA/CA) MACAW

  3. Aloha • A node transmits a packet whenever a packet arrives. • In the absence of an acknowledgement, the node retransmit after waiting for a randomly chosen interval. • Does this work well?

  4. Slotted Aloha arrive

  5. Listen before talk(transmitting) A node can transmit only if the channel is idle. Carrier sensing is useful to reduce the possibility that a new transmission will collide with on-going transmission. How to determine whether a channel is idle? Carrier Sensing Multiple Access

  6. power distance SINR • SINR is signal (S) to interference (I) and noise (N) ratio • SINR = S / (I + N) • Decrease in SINR results in a decrease in reliability of reception D B C A S I

  7. power distance Carrier Sensing(CS) threshold • If receiver power < CS threshold, then channel is idle B A B’s CS Threshold

  8. It makes slots smaller than packet size. Transmit in each slot with probability p if a channel is idle. What value should p be? How long is the slot size? slot size = carrier sensing delay + prop delay + RX/Tx turnaround delay Smaller slot size reduces idle time comparing with the slotted Aloha where a slot size is a maximum packet size. Carrier Sensing and p-Persistence

  9. Because of hidden terminals, this doesn’t always work well in wireless. Because of exposed terminals, will reduce throughput in wireless Collision occurs at the receiver, not at the sender, so the sender listening isn’t very helpful. Carrier Sensing is not enough

  10. Hidden terminal problem • Node B can communicate with A and C, but A and C cannot hear each other. • When A transmits to B, C cannot detect the transmission using carrier sensing. So if C transmits, collision will happen at node B. A B C

  11. Exposed terminal problem • When node B send a packet to node A, node C hears transmission and keeps quite. • But C does not need to be quiet for transmission between C and D. A B C D

  12. power distance How does CS threshold affect the two problems? • If C’ threshold is lowered, then C can detect A’s transmission. So C can defer transmission. (reduces hidden terminal problem) • But it can worsens the exposed terminal problem. Why? D B C A S threshold

  13. What happens if we decrease the CS threshold? Will it make the network throughput increased? Then what is optimal threshold?

  14. It is a way of avoiding hidden terminal problem. A receiver transmits busy tone when receiving data. All nodes hearing busy tone keep silent. Busy tone is using a separate channel. Busy Tone

  15. Get rid of carrier sensing of CSMA, and adds collision avoidance. claims that carrier sensing is useless because of hidden terminal problem. Use RTS/CTS packets Designed for packet radio networks MACA

  16. When node A wants to send a packet to node B, node A first sends a Request-to-Send(RTS) to node B. On receiving RTS, node B responds by sending Clear-to-Send(CTS) if B can receive the packet. When nodes overhear a CTS, they keep quiet for the duration of the transfer. Does MACA eliminate all collisions due to hidden terminals? Collision avoidance in MACA

  17. There are distributed and centralized components. Distributed Coordinated Function (DCF) Point Coordination Function (PCF) PCF uses polling where AP controls as a central node. DCF uses a random access protocol called CSMA/CAwhich is a slightly modified version of MACA. IEEE 802.11 MAC: CSMA/CA

  18. Near/far problem Transmission is so loud at sender it drowns out all other transmissions. (What I hear doesn’t exactly match what I talk.) Receiver’s signal is much weaker thansender’s signal because of path loss. Sender can’t necessarily hear what receiver is receiving, so can’t tell if collision occurred. Why doesn’t collision detection work in wireless?

  19. It uses RTS-CTS exchange to reduce the hidden terminal problem. It uses ACK to achieve reliability. Any node receiving RTS and CTS can’t transmit for the duration of the transfer. This collision avoidance(CA) is used because collision cost is higher than in wired network(Ethernet). Should waste much longer idle time IEEE 802.11 DCF

  20. CSMA/CA • Physical carrier sense and virtual carrier sense using Network Allocation Vector (NAV) • NAV is updated at each node based on the overheard RTS/CTS/DATA/ACK packets, each of which specifies the duration of a pending transmission time. • Nodes keep silent when they sense virtually as well as physically. Wait for NAV A B RTS DATA C CTS ACK Wait for NAV D

  21. CTS RTS NAV=10 NAV< 10 A B C D E F

  22. Reserved area ACK DATA NAV<10 NAV<10 A B C D E F

  23. In 802.11 physical carrier sense is mandatory, while virtual carrier sense is optional. RTS-CTS exchange is overhead. But if data collision cost is high, it is better to use RTS-CTS. But in reality no one uses RTS/CTS. Why?

  24. Backoff interval is similar to p-persistent implementation of Ethernet. When transmitting a packet, a node chooses a backoff interval in the range [0,cw], where cw is contention window. Decrement the backoff interval by 1 each slot when the channel is idle. But countdown is suspended if the channel is busy. When backoff interval reaches 0, transmit a RTS. Backoff Interval

  25. CW1 = 25 CW1 = 5 wait RTS+DATA RTS+DATA wait CW2 = 10 CW2 = 20 CW2 = 15 Backoff interval example Node 1 and 2 have backoff interval CW1 and CW2 respectively. CW = [0, 31]

  26. The length of the backoff interval affects throughput. Choosing a large cw leads to large backoff interval and results in long waiting time. Choosing a small cw leads to larger number of collisions. Since the number of nodes attempting to transmit simultaneously may change with time, some mechanism to change cw is needed. In IEEE 802.11 DCF, cw is chosen dynamically depending on collision occurrence. Backoff interval

  27. When a node fails to receive CTS in response to its RTS, it doubles its cw. When a node transmits data successfully, it restores cw to the initial cw (minimum cw). So cw reduces much faster than it increases. If this is true, the binary exponential backoff is not fair. Binary exponential backoff in 802.11

  28. Backoff interval and fairness [0,1] [0,2] [0,4] [0,1] A RTS RTS data data cw=1 cw=2 cw=2 cw=1 cw=1 [0,1] [0,2] [0,4] B RTS RTS wait wait cw=4 cw=1 cw=2

  29. The packet header has the sender’s backoff counter. Then all nodes copy this value into their backoff coutners, and basically all have the same cw. Everyone starts from the same cw after successful packet transmission. Mild decrease after success After collision, increase interval by factor of 1.5 Upon success, decrease interval by 1 MACAW: Backoff algorithm

More Related