An Efficient Backoff Algorithm for QoS Guaranteeing in Wireless Networks

Size: px
Start display at page:

Download "An Efficient Backoff Algorithm for QoS Guaranteeing in Wireless Networks"

Transcription

1 An Efficient Backoff Algorithm for QoS Guaranteeing in Wireless Networks Xinhua Liu, Guojun Ma, HaiLan Kuang, Fangmin Li School of Information Engineering, Wuhan University of Technology, Wuhan, {liuxinhua, maguojun, kuanghailan, Abstract: Wireless networks are required to guarantee the Quality of Service (QoS), including throughput, fairness, delay, etc. IEEE MAC protocol employs a typical backoff mechanism, Binary Exponential Backoff (BEB) algorithm, to avoid collisions when multiple users try to access the shared wireless channel. Many works on QoS guaranteeing point out that the BEB algorithm introduces the unfairness and serious delay problem into channel access. To solve the problem above, this paper proposes a novel backoff algorithm, which adopts a retransmission counter to measure the network congestion situation. The proposed algorithm also divides the contention window interval into small intervals, and in different intervals, it leverages different backoff strategies. Performance of this algorithm is compared with BEB and other improved backoff algorithms through simulation. The analysis and simulation results show that the proposed backoff algorithm can provide better QoS guaranteeing in terms of throughput, fairness, and delay. Key Words: Backoff algorithm, QoS, throughput, Fairness, Delay 1 INTRODUCTION Wireless networks are widely applied in industry control, transportation management, military reconnaissance, multi-media interaction, etc. In different application scenarios, different Quality of Service (QoS) requirements have to be achieved. In the military and emergency applications [1], messages need to be transmitted timely and accurately. Thus it requires that the network can guarantee short end-to-end delay and high transmission reliability. And in the multi-media interaction scenario, different users want to transmit enormous data at the same time. Thus it requires that the network can guarantee fairness and high throughput. Existing researches on QoS guaranteeing in wireless networks mainly focus on designing effective protocols in physical layer, data-link layer, and network layer [2-4]. Protocols in the MAC sublayer of data-link layer play an important role in controlling packet transmissions on the wireless channel. It is required to coordinate channel access with minimizing collisions. Hence whether the channel is allocated properly by the MAC layer influences the QoS guaranteeing in wireless networks. Existing MAC protocols are mostly based on IEEE Distributed Coordination Function (DCF) [5], which employs the Carrier Sense Multiple Access with Collision Avoidance (CSMA/CA) mechanism. If a node starts to transmit packets on the channel without noticing that another node happens to transmit packets on the channel at the same time, collision would occur, which leads to bad network situation. Using the CSMA/CA mechanism, a node has to listen to the wireless channel for a while to make sure whether the channel is already used by other nodes before transmitting This work was supported by the Natural Science Foundation of Hubei Province(No.2014CFB869) and the Fundamental Research Funds for the Central Universities (No.2014-IV-136 and 2013-IV-079). packets. If the channel is idle, the node is permitted to access the wireless channel and transmit packets. Otherwise, it has to defer a random time according to the Binary Exponential Backoff (BEB) algorithm. When a node unsuccessfully transmitted a packet, the waiting time for the node will get doubled in order to reduce the probability of collisions in next access turn. The BEB backoff algorithm is an effective strategy to reduce the probability of collisions. However, it introduces some problems [6], such as unfairness, delay, throughput, etc. What s more, it cannot properly adapt the contention window to different network congestion situations. Thus, in this paper, we propose a modified backoff algorithm to overcome the shortcomings of BEB algorithm. Network congestion situations have impacts on the probability of successful packet transmissions. Intense congestion situations might lead to frequently unsuccessful packet transmissions. In this case, it is hard for nodes to transmit packets successfully in one time, and nodes have to retransmit packets after unsuccessful packet transmissions. Hence the packet retransmission counter is adopted in the proposed backoff algorithm to measure the congestion situation in wireless networks. Backoff strategies change according to different congestion situations. Besides, the whole contention window interval is divided into small intervals, and different intervals adopt different contention window changing strategies. The proposed algorithm aims at guaranteeing QoS of throughput, fairness, and delay. Extensive simulations are carried out to evaluate its performance compared to BEB and other improved backoff algorithms. Simulation results show that our proposed algorithm can achieve better QoS guaranteeing in terms of throughput, fairness, and delay. The remainder of this paper is organized as follows. Section 2 studies existing researches on backoff algorithms, including BEB algorithm and some typical improved backoff algorithms. Considering the network congestion /16/$31.00 c 2016 IEEE 5353

2 situation, a new backoff algorithm is proposed in section 3, which employs the packet retransmission counter to measure the network congestion situation, and makes different backoff strategies in different situations. In Section 4 performance evaluations are conducted. And the proposed algorithm is compared with other exsiting backoff algorithms in terms of throughput, fairness, and delay. Section 5 concludes the paper. 2 RELATED WORK 2.1 IEEE DCF Backoff Mechanism: BEB Algorithm IEEE DCF is a fundamental technique of the MAC protocol based on WLAN standard, which employs the CSMA/CA mechanism with the BEB backoff algorithm [7]. When a node wants to transmit packets, it defers for a random time according to the BEB algorithm, which forces the node to access the wireless channel after a waiting time. Multiple users choose the backoff time independently. More than one node may choose the same backoff time. Thus it decreases the probability of collisions. The length of the backoff time is shown as the following equation: Tbackoff = N Tslot (1) where T backoff is the actual backoff time, and N is a random integer, uniformly distributed within the interval (0, CW); CW denotes the contention window, which is between the minimum contention window CW min and the maximum contention window CW max; and T slot is the slot time de ned as 20 s by the physical layer. The BEB algorithm is the key point of the DCF mechanism, which can be briefly expressed as follows: when a node successfully transmits packets, the CW of the node will reset as the minimum contention window CW min; and if a collision happens or a node unsuccessfully transmits packets, the CW will get doubled. The value of CW can be calculated as follows: CWfailure = min( CW 2, CWmax) (2) CWsuccess = CWmin The value of CW, which varies in a certain range, can measure the ability of a node accessing the channel. The smaller the CW is, the shorter the backoff time is, and the higher the probability of a node successfully accessing the channel is. Since different nodes have different random backoff time, they can get into the channel with low probability of collisions. 2.2 BEB Shortcomings and Improved Algorithms The BEB algorithm has two shortcomings. First, it introduces unfairness problem [8]. As described in the last subsection, the node, which transmits packets successfully, resets its CW as the minimum contention window CW min, and other nodes, which failed to transmit packets or unsuccessfully access the channel, have to double their CW. In the next turn of contention, the node with smallest CW has the highest probability in accessing the channel, leading to a fairness problem. The fairness problem is caused by the drastic change of the CW, thus an alleviating method is to keep the CW change smoothly. What s more, when the packet is successfully transmitted, the CW will decrease to CW min, and the congestion situation will not be reflected properly. When the wireless channel is busy and collisions occur frequently, the CW of each failed node increases quickly. In this case, if a node transmits a packet successfully, its CW will reset to the CW min immediately, which brings the node an illusion that the channel is not busy now. In short, the BEB algorithm cannot reflect the channel situation. To overcome the shortcomings of the BEB algorithm, some improved algorithms are studied. The Slow Contention Window decrease (SD) algorithm [9] adopts the multiplicative decrease mechanism. When a node transmits a packet successfully, the CW decreases as half as before. SD algorithm will enhance the abilities of guaranteeing throughput and fairness, and it may introduce intolerant delay problem occasionally. The Multiplicative Increase and Linear Decrease (MILD) [10] algorithm employs gradual CW changing strategy against the drastic contention window changing strategy in BEB algorithm. When the number of active nodes in the network is large, the performance of MILD is much better than BEB. When the number of the nodes is small, the CW decreases slowly due to the linear decreasing, thus the extra delay problem is introduced. The Multiplicative Increase and Multiplicative/Linear Decrease (MIMLD) [11] algorithm adopts a multiplicative increase and multiplicative and linear decrease strategy in order to be adaptive to current network conditions. MIMLD algorithm adopts a new mechanism for the initial contention window choice. It has two initial contention windows named CW min and CW basic, and it chooses the initial contention window adaptively between CW min and CW basic. It can improve the performance of fairness and end-to-end delay. However, it cannot adapt itself to the network situation variations in time. Considering the changes of the network situation, a new adaptive backoff algorithm is proposed in this paper. 3 AN EFFICIENT BACKOFF ALGORITHM Our proposed algorithm adopts a boundary control parameter CW mid, dividing the whole contention interval into two small intervals (CW min, CW mid) and (CW mid, CW max), where CW min, CW mid and CW max are all constant integers as listed in Table I. (CW min, CW mid) is referred to as the light traffic load interval, and (CW mid, CW max) is the heavy traffic load interval. Network congestion situations have impacts on the probability of successful packet transmissions. Hence the packet retransmission counter is introduced in the proposed backoff algorithm to measure the congestion situation. The modified algorithm employs different CW changing strategies according to different traffic load intervals and retransmission counts. The algorithm is called as Retransmission Count Adaptive Backoff (RCAB) algorithm. The flow of RCAB algorithm is described as shown in Figure 1. In the RCAB algorithm, if the CW is located in the interval (CW min, CW mid), it supposes that the network contention is not intense. Hence, if a node failed to transmit a packet, the th Chinese Control and Decision Conference (CCDC)

3 CW will increase by a times. The value of a is chose in the range of from 1 to 2, and the best value of a is 1.8 through simulations. Thus the CW does not increase too fast when the traffic load is light. If a packet is transmitted successfully, it will subtract b from the current CW in order to keep the CW changing smoothly. And b is defined as the integer number 1 here. Fig. 1. The flow of RCAB Algorithm On the other hand, if the CW is located in (CW mid, CW max), the network contention now is intense. And we employ the packet retransmission counter to measure how intense the network congestion is. If the packet retransmission happens and retransmission times are fewer than Cr (Cr is the boundary times defined as the integer 4), the CW will increase by c times (c is defined as 1.5), where c is fewer than a, since the CW in the case of intense network contention is not expected to increase too fast. What s more, if the retransmission time is more than Cr, it suggests that the network contention is intense. The CW has to change more smoothly. And the CW adopts the linear increasing strategy instead of multiplicative increase strategy. It will add d (d is defined as the integer 2) to the current CW in order to make the CW increase smoothly. If transmission succeeds, the CW will be divided by e times (e is defined as 1.4), and e is a little smaller than c. If the packet retransmission count is more than the specified maximal retransmission time defined in physical layer, the CW will be reset as the initial value CW min. 4 PERFORMANCE EVALUATION In this section, we carry out simulations on NS-2.34[12], a discrete event simulator targeting at network research supported by UC-Berkeley University. The simulation scenario is built as follows to analyze and compare the RCAB algorithm with BEB and some other typical improved backoff algorithms mentioned before. Fig. 2. Simulation topology As shown in Figure 2, there are 4 nodes in a line, which are labeled Node 0, Node 1, Node 2 and Node 3. Every two neighbor nodes are separated 150 m. The transmission distance is 250 m. The solid lines stand for the traffic links. We put two traffic flows on the two solid lines at the same time. Flow 1 is put on the link from Node 0 to Node 1, and Flow 2 is put on the link from Node 2 to Node 3. The two senders (Node 0 and Node 2) are out of communication range of each other, but the receiver Node 1 of Flow 1 and sender Node 2 of Flow 2 are in the communication range of each other. If Node 0 is sending packets to Node 1 and Node 2 has some data to transmit to Node 3, Node 2 has to carry out the carrier sense first. As the Node 2 is in the communication range of Node 1, Node 2 will hear the transmission from Node 0 to Node 1, and learn that the channel is not available. Node 2 is prevented from transmitting messages to Node 3. Hence the hidden node problem occurs. As shown in Figure 2, Node 0 and Node 2 are hidden nodes to each other. The problem of hidden nodes can reduce the capacity of network because of the waste of the wireless channel. We evaluate the performance of the proposed algorithm in terms of throughput, fairness and delay in following subsections. And corresponding simulation parameters are listed in Table 1. Table 1. Simulation Parameters Parameter Value Parameter Value Slot Time 20 s CTS 304 bit SIFS Time 10 s ACK 304 bit DIFS Time 50 s CW min CW max RTS Threshold 3 kbit BEB PHY Header 192 bit SD MAC Header 224 bit MILD CW Duration 300 s CW min/ CW basic MIMLD RTS 352 bit 2/ CW max Packet Size 1 kbit CW min CW mid CW max RCAB Duration 100 s Throughput Comparison We put on two traffic flows at the same time in the network, and conduct simulations in NS2 to see throughput performances of two flows using the RCAB algorithm, the BEB algorithm and some other typical improved backoff algorithms. Figure 3 presents the throughput of the two different flows using BEB algorithm. We can see that the throughput of flow 2 grows with the increasing of the traffic load until the maximal throughput 710 kbps while the throughput of Flow 1 is restrained. It decreases with the increasing of the traffic th Chinese Control and Decision Conference (CCDC) 5355

4 load. The simulation results show that different traffic flows cannot get nearly equal throughput due to BEB algorithm. Figure 4 shows that the throughput of RCAB algorithm increases with the increasing of the traffic load until the max throughput about 800 kbps. From Figure 3 and Figure 4, we can see that when the traffic load is heavy (rate > 400kbps), the two different flows of RCAB algorithm get nearly equal throughput while the throughput of different flows of BEB algorithm is far away from each other. with the increasing of the traffic load until the maximal throughput. Fig. 5. Throughput of the total flows with BEB and RCAB algorithms Fig. 3. Throughput of two traffic flows of BEB algorithm Fig. 6. Throughput of the two traffic flows with different backoff algorithms Fig.4. Throughput of two traffic flows with RCAB We compare the total throughput between BEB and RCAB algorithm. From Figure 5, we can see that when the traffic load is light, the two different algorithms get nearly equal performance in terms of throughput. And when the network is in the state of heavy traffic load (for example, rate = 900 kbps), the RCAB algorithm reaches twice of the total throughput of BEB algorithm. So, the RCAB algorithm has better capacity of guaranteeing throughput than that of BEB algorithm. Figure 6 presents the throughput of two flows with different backoff algorithms, including SD algorithm, MILD algorithm, and MIMLD algorithm, which are mentioned in section II. This will be used to compare the fairness of the RCAB algorithm with existing typical improved backoff algorithms in the next subsection. We also find that the throughput of those improved backoff algorithm increases 4.2 Fairness Comparison In this subsection, we compare the fairness among different backoff algorithms. And fairness is the most important parameter in our algorithm. We employ the Fairness Index (FI), referred to reference [13], to measure the fairness performance. We denote { TH i i = 1, 2,, N } as the throughput of the ith link in the network, and N is the total number of links. The formula FI is defined as follows: TH max FI = (3) TH min Where TH max = max( TH i ), TH min = min( TH i ). i i The more the FI is, the more unfair for nodes to access the channel. When the value of FI is 1 or close to 1, the network achieves good performance in fairness. Figure 7 shows the fairness comparison between BEB and RCAB algorithm. When the traffic load of network is light (rate < 400bps), the two algorithms have almost the same th Chinese Control and Decision Conference (CCDC)

5 performance on fairness, but when the load is heavy (rate > 400 kbps), the RCAB algorithm gets better fairness performance than the BEB algorithm. The fairness comparison are carried out between RCAB algorithm and some typical improved backoff algorithms, using data as shown in Figure 6. And the result as shown in Figure 8 shows that RCAB algorithm has better capability of fairness guaranteeing than other backoff algorithms especially when the traffic load is heavy. We can also find that MILD algorithm achieves as good fairness performance as RCAB algorithm gets. So we compare the fairness between RCAB and MILD in different scenarios. algorithm. It can be concluded that the RCAB algorithm has better capability of fairness than other algorithms mentioned above. Fig. 9. Simulation topology for the FI comparison of MILD and RCAB Fig.7. Fairness performance with BEB and RCAB Fig. 8. Fairness performance with RCAB and other improved algorithms Simulation experience on different topologies is carried out to verify the validity of RCAB. There are two cells in Figure 9. Each cell contains a traffic flow. In cell C1, a traffic flow is built from Node 0 to Node 2. And in cell C2, a traffic flow is built from Node 5 to Node 7. The distance between two neighboring nodes is 50 m. As the transmission range is 250 m, all the nodes in cells C1 and C2 are in communication range of each other. We compare the fairness performance between MILD and RCAB. The result as shown in Figure 10 indicates that the RCAB algorithm achieves better fairness capability than the MILD Fig. 10. Fairness performance between MILD and RCAB 4.3 End-to-end Delay Comparison In this subsection, we carry out the end-to-end delay comparison among different backoff algorithms. The end-to-end delay of two thousand packets are recorded. Figure 11 shows that the end-to-end delay of the new RCAB algorithm is about 1.0 s while that of the BEB algorithm is about 2.5 s on average, so the performance of delay of RCAB is improved by 60% than that of BEB. What s more, the delay jitter of RCAB is much smaller that of BEB. We can also find that the end-to-end delay of the SD algorithm is worse than that of the BEB algorithm, since the SD algorithm adopts the fast increasing strategy when the packet transmission is failed and low decreasing mechanism when packet transmission is successful in order to get better fairness performance, ignoring the delay guaranteeing problem. The MILD algorithm gets similar results with the SD algorithm, and the jitter of the end-to-end delay changes more smoothly as the simulation goes on. The SD and MILD algorithm get better fairness guaranteeing at the cost of end-to-end delay guaranteeing. As shown in Figure 12, the capacity of delay guaranteeing of RCAB algorithm is improved by about 10% compared with MIMLD algorithm. The distribution of the packet of RCAB algorithm is more concentrative than that of MIMLD algorithm. Finally, we make a summary on the performance comparison with different backoff algorithms according to these simulation results above. Table shows us that our RCAB alogrithm, compared with BEB algorithm and other three types of typically backoff th Chinese Control and Decision Conference (CCDC) 5357

6 algorithms, can achieve better performance in terms of throughput, fairness, and dely. backoff algorithm. From our simulation results, it is observed that the proposed algorithm achieves better throughput, fairness and delay performance than that of BEB algorithm and other three types of typical backoff algorithms. REFERENCES Fig.11. End-to-end delay with different algorithms Fig.12. End-to-end delay with RCAB and MIMLD Backoff Algorithm TABLE.PERFORMANCE COMPARISON Throughput Fairness Delay BEB Bad Worst Bad SD Good Bad Bad MILD Good Good Bad MIMLD Good Bad Good RCAB Good Best Best 5 CONCLUSION In this paper, QoS guaranteeing of fairness, throughput and delay is achieved by proposing an efficient adaptive backoff algorithm based on IEEE MAC protocol. The proposed backoff algorithm employs the retransmission counter to measure the network status and divides the whole contention window interval into two small intervals. And in different small contention window interval, different backoff strategies are applied. We carry out related analysis and simulations to evaluate the performance of the proposed [1] Y. Gadallah and M. Serhani. A WSN-driven service discovery technique for disaster recovery using mobile ad hoc networks. Wireless Days (WD), 2011, pp. 1-5 [2] T. Duong, H. Zepernick, and M. Fiedler, Cross-Layer Design for Integrated Mobile Multimedia Networks with Strict Priority Traffic. IEEE Wireless Communications and Networking Conference (WCNC), 2010, pp. 1-6 [3] Young-Ae Jeon, Sang-Sung Choi, Sung-Woo Park and Dae-Young Kim. QoS routing for distributed MAC-based high rate wireless personal area networks. 5th International Conference on Computer Sciences and Convergence Information Technology (ICCIT), 2010, pp [4] J. Ben-Othman, L. Mokdad, and B.Yahya. An Energy Efficient Priority-Based QoS MAC Protocol for Wireless Sensor Networks. IEEE International Conference on Communications (ICC), 2011, pp. 1-6 [5] Editors of IEEE Wireless LAN Medium Access Control (MAC) and Physical Layer (PHY) speci cations, Draft Standard. IEEE , 1997 [6] S.Xu and T. Saadawi. Does the IEEE MAC protocol work well in multihop wireless ad hoc networks? IEEE Communicaitons Magazine, 2011, pp [7] Byung-Jae Kwak, Nah-Oak Song and L. Miller. Performance analysis of exponential backoff. IEEE/ACM Transactions on Networking, 2005, pp [8] K. Medepalli and F.A. Tobagi. On Optimization of CSMA/CA based Wireless LANs: Part I-Impact of Exponential Backoff. IEEE Internaltional Conference on Communications (ICC), 2006, pp [9] A. Ksentini, A. Nafaa, A. Gueroui and M. Naimi. Determinist contention window algorithm for IEEE IEEE 16th International Symposium on Personal, Indoor and Mobile Radio Communications, 2005, pp [10] Nah-Oak Song, Byung-Jae Kwak, J. Song and M. Miller. Enhancement of IEEE distributed coordination function with exponential increase exponential decrease backoff algorithm. IEEE 57th Semiannual Vehicular Technology Conference, 2003, pp [11] Vaduvur Bharghavan, Alan Demers, Scott Shenker. MACAW: a media access protocol for wireless LANs. Proceedings of the ACM SIGCOMM Conference on Communications Archiotctures, Protocols and Applications,1994, pp [12] [13] T.Ozugur, M.Naghshineh, P.Kermani, and J. Copeland. Fair media access for wireless LANs. IEEE Global Telecommunications Conference (GLOBECOM), 1999, pp th Chinese Control and Decision Conference (CCDC)

Mohamed Khedr.

Mohamed Khedr. Mohamed Khedr http://webmail.aast.edu/~khedr Tentatively Week 1 Week 2 Week 3 Week 4 Week 5 Week 6 Week 7 Week 8 Week 9 Week 10 Week 11 Week 12 Week 13 Week 14 Week 15 Overview Packet Switching IP addressing

More information

CSE 461: Wireless Networks

CSE 461: Wireless Networks CSE 461: Wireless Networks Wireless IEEE 802.11 A physical and multiple access layer standard for wireless local area networks (WLAN) Ad Hoc Network: no servers or access points Infrastructure Network

More information

Medium Access Control. MAC protocols: design goals, challenges, contention-based and contention-free protocols

Medium Access Control. MAC protocols: design goals, challenges, contention-based and contention-free protocols Medium Access Control MAC protocols: design goals, challenges, contention-based and contention-free protocols 1 Why do we need MAC protocols? Wireless medium is shared Many nodes may need to access the

More information

Impact of IEEE MAC Packet Size on Performance of Wireless Sensor Networks

Impact of IEEE MAC Packet Size on Performance of Wireless Sensor Networks IOSR Journal of Electronics and Communication Engineering (IOSR-JECE) e-issn: 2278-2834,p- ISSN: 2278-8735.Volume 10, Issue 3, Ver. IV (May - Jun.2015), PP 06-11 www.iosrjournals.org Impact of IEEE 802.11

More information

The MAC layer in wireless networks

The MAC layer in wireless networks The MAC layer in wireless networks The wireless MAC layer roles Access control to shared channel(s) Natural broadcast of wireless transmission Collision of signal: a /space problem Who transmits when?

More information

IEEE Medium Access Control. Medium Access Control

IEEE Medium Access Control. Medium Access Control IEEE 802.11 Medium Access Control EECS3214 3 April 2018 Medium Access Control reliable data delivery access control MAC layer covers three functional areas: security 2 1 MAC Requirements To avoid interference

More information

AN ANALYSIS OF THE MODIFIED BACKOFF MECHANISM FOR IEEE NETWORKS

AN ANALYSIS OF THE MODIFIED BACKOFF MECHANISM FOR IEEE NETWORKS AN ANALYSIS OF THE MODIFIED BACKOFF MECHANISM FOR IEEE 802.11 NETWORKS Marek Natkaniec, Andrzej R. Pach Department of Telecommunications University of Mining and Metallurgy al. Mickiewicza 30, 30-059 Cracow

More information

Performance analysis of Internet applications over an adaptive IEEE MAC architecture

Performance analysis of Internet applications over an adaptive IEEE MAC architecture Journal of the Franklin Institute 343 (2006) 352 360 www.elsevier.com/locate/jfranklin Performance analysis of Internet applications over an adaptive IEEE 802.11 MAC architecture Uthman Baroudi, Mohammed

More information

Simulation Based Analysis of the Impact of Hidden Terminal to the TCP Performance in Mobile Ad Hoc Networks

Simulation Based Analysis of the Impact of Hidden Terminal to the TCP Performance in Mobile Ad Hoc Networks Simulation Based Analysis of the Impact of Hidden Terminal to the TCP Performance in Mobile Ad Hoc Networks Abstract The hidden terminal is classified as the sending hidden terminal and receiving hidden

More information

Expanding the use of CTS-to-Self mechanism to improving broadcasting on IEEE networks

Expanding the use of CTS-to-Self mechanism to improving broadcasting on IEEE networks Expanding the use of CTS-to-Self mechanism to improving broadcasting on IEEE 802.11 networks Christos Chousidis, Rajagopal Nilavalan School of Engineering and Design Brunel University London, UK {christos.chousidis,

More information

The MAC layer in wireless networks

The MAC layer in wireless networks The MAC layer in wireless networks The wireless MAC layer roles Access control to shared channel(s) Natural broadcast of wireless transmission Collision of signal: a time/space problem Who transmits when?

More information

An Efficient Scheduling Scheme for High Speed IEEE WLANs

An Efficient Scheduling Scheme for High Speed IEEE WLANs An Efficient Scheduling Scheme for High Speed IEEE 802.11 WLANs Juki Wirawan Tantra, Chuan Heng Foh, and Bu Sung Lee Centre of Muldia and Network Technology School of Computer Engineering Nanyang Technological

More information

A Comparative Analysis on Backoff Algorithms to Optimize Mobile Network

A Comparative Analysis on Backoff Algorithms to Optimize Mobile Network Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology IJCSMC, Vol. 3, Issue. 7, July 2014, pg.771

More information

CMPE 257: Wireless and Mobile Networking

CMPE 257: Wireless and Mobile Networking CMPE 257: Wireless and Mobile Networking Katia Obraczka Computer Engineering UCSC Baskin Engineering Lecture 3 CMPE 257 Winter'11 1 Announcements Accessing secure part of the class Web page: User id: cmpe257.

More information

Project Report: QoS Enhancement for Real-Time Traffic in IEEE WLAN

Project Report: QoS Enhancement for Real-Time Traffic in IEEE WLAN Project Report: QoS Enhancement for Real-Time Traffic in IEEE802.11 WLAN Abstract A key issue in IEEE802.11 WLAN MAC is how to provide QoS support, especially for time-bounded traffic. Although much work

More information

A Backoff Algorithm for Improving Saturation Throughput in IEEE DCF

A Backoff Algorithm for Improving Saturation Throughput in IEEE DCF A Backoff Algorithm for Improving Saturation Throughput in IEEE 80.11 DCF Kiyoshi Takahashi and Toshinori Tsuboi School of Computer Science, Tokyo University of Technology, 1404-1 Katakura, Hachioji, Tokyo,

More information

Mohammad Hossein Manshaei 1393

Mohammad Hossein Manshaei 1393 Mohammad Hossein Manshaei manshaei@gmail.com 1393 1 An Analytical Approach: Bianchi Model 2 Real Experimentations HoE on IEEE 802.11b Analytical Models Bianchi s Model Simulations ns-2 3 N links with the

More information

E-BEB Algorithm to Improve Quality of Service on Wireless Ad-Hoc Networks

E-BEB Algorithm to Improve Quality of Service on Wireless Ad-Hoc Networks Research Journal of Applied Sciences, Engineering and Technology 4(7): 807-812, 2012 ISSN: 2040-7467 Maxwell Scientific Organization, 2012 Submitted: vember 10, 2011 Accepted: December 09, 2011 Published:

More information

CSC344 Wireless and Mobile Computing. Department of Computer Science COMSATS Institute of Information Technology

CSC344 Wireless and Mobile Computing. Department of Computer Science COMSATS Institute of Information Technology CSC344 Wireless and Mobile Computing Department of Computer Science COMSATS Institute of Information Technology Wireless Local Area Networks (WLANs) Part I Almost all wireless LANs now are IEEE 802.11

More information

Empirical Study of Mobility effect on IEEE MAC protocol for Mobile Ad- Hoc Networks

Empirical Study of Mobility effect on IEEE MAC protocol for Mobile Ad- Hoc Networks Empirical Study of Mobility effect on IEEE 802.11 MAC protocol for Mobile Ad- Hoc Networks Mojtaba Razfar and Jane Dong mrazfar, jdong2@calstatela.edu Department of Electrical and computer Engineering

More information

Wireless Local Area Network (IEEE )

Wireless Local Area Network (IEEE ) Wireless Local Area Network (IEEE 802.11) -IEEE 802.11 Specifies a single Medium Access Control (MAC) sublayer and 3 Physical Layer Specifications. Stations can operate in two configurations : Ad-hoc mode

More information

ICE 1332/0715 Mobile Computing (Summer, 2008)

ICE 1332/0715 Mobile Computing (Summer, 2008) ICE 1332/0715 Mobile Computing (Summer, 2008) Medium Access Control Prof. Chansu Yu http://academic.csuohio.edu/yuc/ Simplified Reference Model Application layer Transport layer Network layer Data link

More information

Media Access Control in Ad Hoc Networks

Media Access Control in Ad Hoc Networks Media Access Control in Ad Hoc Networks The Wireless Medium is a scarce precious resource. Furthermore, the access medium is broadcast in nature. It is necessary to share this resource efficiently and

More information

A New Full Duplex MAC Protocol to Solve the Asymmetric Transmission Time

A New Full Duplex MAC Protocol to Solve the Asymmetric Transmission Time A New Full Duplex MAC Protocol to Solve the Asymmetric Transmission Time Jin-Ki Kim, Won-Kyung Kim and Jae-Hyun Kim Department of Electrical and Computer Engineering Ajou University Suwon, Korea E-mail

More information

Priority Collision Resolution - Distributed Coordination Function for Distributed Wireless Networks

Priority Collision Resolution - Distributed Coordination Function for Distributed Wireless Networks Priority Collision Resolution - Distributed Coordination Function for Distributed Wireless etworks Xiaohui Ye *, Xin Liu #, S. J. Ben Yoo *, and Zhi Ding * * Department of Electrical and Computer Engineering,

More information

An Approach for Improving Performance of Back off Algorithm

An Approach for Improving Performance of Back off Algorithm International Journal of Computer Applications (975 8887) Volume 46 No.5, May 212 An Approach for Improving Performance of Back off Algorithm Swati Bhagoria Computer Engineering Department Shri G.S. Institute

More information

Medium Access Control (MAC) Protocols for Ad hoc Wireless Networks -IV

Medium Access Control (MAC) Protocols for Ad hoc Wireless Networks -IV Medium Access Control (MAC) Protocols for Ad hoc Wireless Networks -IV CS: 647 Advanced Topics in Wireless Networks Drs. Baruch Awerbuch & Amitabh Mishra Department of Computer Science Johns Hopkins University

More information

Department of Electrical and Computer Systems Engineering

Department of Electrical and Computer Systems Engineering Department of Electrical and Computer Systems Engineering Technical Report MECSE-6-2006 Medium Access Control (MAC) Schemes for Quality of Service (QoS) provision of Voice over Internet Protocol (VoIP)

More information

Rahman 1. Application

Rahman 1. Application Data Link layer Overview of IEEE 802.11 Application Presentation Session Transport LLC: On transmission, assemble data into a frame with address and CRC fields. On reception, disassemble frame, perform

More information

Logical Link Control (LLC) Medium Access Control (MAC)

Logical Link Control (LLC) Medium Access Control (MAC) Overview of IEEE 802.11 Data Link layer Application Presentation Session Transport LLC: On transmission, assemble data into a frame with address and CRC fields. On reception, disassemble frame, perform

More information

IEEE , Token Rings. 10/11/06 CS/ECE UIUC, Fall

IEEE , Token Rings. 10/11/06 CS/ECE UIUC, Fall IEEE 802.11, Token Rings 10/11/06 CS/ECE 438 - UIUC, Fall 2006 1 Medium Access Control Wireless channel is a shared medium Need access control mechanism to avoid interference Why not CSMA/CD? 10/11/06

More information

Wireless MACs: MACAW/802.11

Wireless MACs: MACAW/802.11 Wireless MACs: MACAW/802.11 Mark Handley UCL Computer Science CS 3035/GZ01 Fundamentals: Spectrum and Capacity A particular radio transmits over some range of frequencies; its bandwidth, in the physical

More information

Lecture 16: QoS and "

Lecture 16: QoS and Lecture 16: QoS and 802.11" CSE 123: Computer Networks Alex C. Snoeren HW 4 due now! Lecture 16 Overview" Network-wide QoS IntServ DifServ 802.11 Wireless CSMA/CA Hidden Terminals RTS/CTS CSE 123 Lecture

More information

Reliable Multicast Scheme Based on Busy Signal in Wireless LANs

Reliable Multicast Scheme Based on Busy Signal in Wireless LANs Journal of Modern Science and Technology Vol.2 No.1 March 2014. Pp.18-25 Reliable Multicast Scheme Based on Busy Signal in Wireless LANs Sunmyeng For unicast transmissions, the IEEE 802.11 WLAN MAC (Medium

More information

Wireless Local Area Networks (WLANs) Part I

Wireless Local Area Networks (WLANs) Part I Wireless Local Area Networks (WLANs) Part I Raj Jain Professor of CSE Washington University in Saint Louis Saint Louis, MO 63130 Jain@cse.wustl.edu These slides are available on-line at: http://www.cse.wustl.edu/~jain/cse574-08/

More information

Tarek Sheltami. CCSE COE 3/8/2008 1

Tarek Sheltami. CCSE COE  3/8/2008 1 Mobile Ad hoc Networks COE 549 Random Access I Tarek Sheltami KFUPM CCSE COE http://faculty.kfupm.edu.sa/coe/tarek/coe549.htm 3/8/2008 1 Outline Medium Access Control Protocols ALOHA BTMA CSMA Some simulation

More information

ECE442 Communications Lecture 3. Wireless Local Area Networks

ECE442 Communications Lecture 3. Wireless Local Area Networks ECE442 Communications Lecture 3. Wireless Local Area Networks Husheng Li Dept. of Electrical Engineering and Computer Science Spring, 2014 Wireless Local Networks 1 A WLAN links two or more devices using

More information

Topics for Today. More on Ethernet. Wireless LANs Readings. Topology and Wiring Switched Ethernet Fast Ethernet Gigabit Ethernet. 4.3 to 4.

Topics for Today. More on Ethernet. Wireless LANs Readings. Topology and Wiring Switched Ethernet Fast Ethernet Gigabit Ethernet. 4.3 to 4. Topics for Today More on Ethernet Topology and Wiring Switched Ethernet Fast Ethernet Gigabit Ethernet Wireless LANs Readings 4.3 to 4.4 1 Original Ethernet Wiring Heavy coaxial cable, called thicknet,

More information

Chapter 6 Wireless and Mobile Networks. Csci 4211 David H.C. Du

Chapter 6 Wireless and Mobile Networks. Csci 4211 David H.C. Du Chapter 6 Wireless and Mobile Networks Csci 4211 David H.C. Du Wireless LAN IEEE 802.11 a, b, g IEEE 802.15 Buletooth Hidden Terminal Effect Hidden Terminal Problem Hidden terminals A, C cannot hear each

More information

Multiple Access Links and Protocols

Multiple Access Links and Protocols Multiple Access Links and Protocols Two types of links : point-to-point PPP for dial-up access point-to-point link between Ethernet switch and host broadcast (shared wire or medium) old-fashioned Ethernet

More information

Medium Access Control. IEEE , Token Rings. CSMA/CD in WLANs? Ethernet MAC Algorithm. MACA Solution for Hidden Terminal Problem

Medium Access Control. IEEE , Token Rings. CSMA/CD in WLANs? Ethernet MAC Algorithm. MACA Solution for Hidden Terminal Problem Medium Access Control IEEE 802.11, Token Rings Wireless channel is a shared medium Need access control mechanism to avoid interference Why not CSMA/CD? 9/15/06 CS/ECE 438 - UIUC, Fall 2006 1 9/15/06 CS/ECE

More information

Wireless LANs. ITS 413 Internet Technologies and Applications

Wireless LANs. ITS 413 Internet Technologies and Applications Wireless LANs ITS 413 Internet Technologies and Applications Aim: Aim and Contents Understand how IEEE 802.11 wireless LANs work Understand what influences the performance of wireless LANs Contents: IEEE

More information

CS 348: Computer Networks. - WiFi (contd.); 16 th Aug Instructor: Sridhar Iyer IIT Bombay

CS 348: Computer Networks. - WiFi (contd.); 16 th Aug Instructor: Sridhar Iyer IIT Bombay CS 348: Computer Networks - WiFi (contd.); 16 th Aug 2012 Instructor: Sridhar Iyer IIT Bombay Clicker-1: Wireless v/s wired Which of the following differences between Wireless and Wired affect a CSMA-based

More information

CSMA based Medium Access Control for Wireless Sensor Network

CSMA based Medium Access Control for Wireless Sensor Network CSMA based Medium Access Control for Wireless Sensor Network H. Hoang, Halmstad University Abstract Wireless sensor networks bring many challenges on implementation of Medium Access Control protocols because

More information

CSE 6811 Ashikur Rahman

CSE 6811 Ashikur Rahman Data Link layer Application Overview of IEEE 802.11 LLC: On transmission, assemble data into a frame with address and CRC fields. On reception, disassemble frame, perform address recognition and CRC validation.

More information

Performance anomaly of b

Performance anomaly of b Laboratoire LSR Logiciels Systèmes Réseaux Software, Systems, Networks Performance anomaly of 802.11b Andrzej Duda LSR-IMAG Andrzej.Duda@imag.fr Joint work with Martin Heusse, Franck Rousseau, Gilles Berger-Sabbatel

More information

Data and Computer Communications. Chapter 13 Wireless LANs

Data and Computer Communications. Chapter 13 Wireless LANs Data and Computer Communications Chapter 13 Wireless LANs Wireless LAN Topology Infrastructure LAN Connect to stations on wired LAN and in other cells May do automatic handoff Ad hoc LAN No hub Peer-to-peer

More information

N-BEB: New Binary Exponential Back-off Algorithm for IEEE

N-BEB: New Binary Exponential Back-off Algorithm for IEEE N-BEB: New Binary Exponential Back-off Algorithm for IEEE 802.11 Mohammad Shurman 1, Bilal Al-Shua'b 2 (1) Jordan University of Science and Technology/Network Engineering and Security Department, Irbid,

More information

A Survey on Modified RTS/CTS Mechanism

A Survey on Modified RTS/CTS Mechanism A Survey on Modified RTS/CTS Mechanism Prachi Srivastava Computer Science and Engineering, MMMEC, Gorakhpur prachi.srivastava.itm@gmail.com Dayashankar Singh Computer Science and Engineering, MMMEC, Gorakhpur

More information

Analysis of Throughput and Energy Efficiency in the IEEE Wireless Local Area Networks using Constant backoff Window Algorithm

Analysis of Throughput and Energy Efficiency in the IEEE Wireless Local Area Networks using Constant backoff Window Algorithm International Journal of Computer Applications (975 8887) Volume 6 No.8, July Analysis of Throughput and Energy Efficiency in the IEEE 8. Wireless Local Area Networks using Constant backoff Window Algorithm

More information

Wireless Local Area Networks (WLANs)) and Wireless Sensor Networks (WSNs) Computer Networks: Wireless Networks 1

Wireless Local Area Networks (WLANs)) and Wireless Sensor Networks (WSNs) Computer Networks: Wireless Networks 1 Wireless Local Area Networks (WLANs)) and Wireless Sensor Networks (WSNs) Computer Networks: Wireless Networks 1 Wireless Local Area Networks The proliferation of laptop computers and other mobile devices

More information

Numerical Analysis of IEEE Broadcast Scheme in Multihop Wireless Ad Hoc Networks

Numerical Analysis of IEEE Broadcast Scheme in Multihop Wireless Ad Hoc Networks Numerical Analysis of IEEE 802.11 Broadcast Scheme in Multihop Wireless Ad Hoc Networks Jong-Mu Choi 1, Jungmin So 2, and Young-Bae Ko 1 1 School of Information and Computer Engineering Ajou University,

More information

EBA: An Enhancement of IEEE DCF via Distributed Reservation

EBA: An Enhancement of IEEE DCF via Distributed Reservation EBA: An Enhancement of IEEE 802.11 DCF via Distributed Reservation Jaehyuk Choi, Joon Yoo, Sunghyun Choi, Member, IEEE, and Chongkwon Kim, Member, IEEE Abstract The IEEE 802.11 standard for Wireless Local

More information

A Novel Framework for Radio Resource Management in IEEE Wireless LANs

A Novel Framework for Radio Resource Management in IEEE Wireless LANs Dublin Institute of Technology ARROW@DIT Conference papers Communications Network Research Institute 2005-01-01 A Novel Framework for Radio Resource Management in IEEE 802.11 Wireless LANs Mark Davis Dublin

More information

An Efficient Bandwidth Estimation Schemes used in Wireless Mesh Networks

An Efficient Bandwidth Estimation Schemes used in Wireless Mesh Networks An Efficient Bandwidth Estimation Schemes used in Wireless Mesh Networks First Author A.Sandeep Kumar Narasaraopeta Engineering College, Andhra Pradesh, India. Second Author Dr S.N.Tirumala Rao (Ph.d)

More information

Wireless Networked Systems

Wireless Networked Systems Wireless Networked Systems CS 795/895 - Spring 2013 Lec #6: Medium Access Control QoS and Service Differentiation, and Power Management Tamer Nadeem Dept. of Computer Science Quality of Service (802.11e)

More information

ECEN 5032 Data Networks Medium Access Control Sublayer

ECEN 5032 Data Networks Medium Access Control Sublayer ECEN 5032 Data Networks Medium Access Control Sublayer Peter Mathys mathys@colorado.edu University of Colorado, Boulder c 1996 2005, P. Mathys p.1/35 Overview (Sub)networks can be divided into two categories:

More information

A Performance Analysis of IEEE Networks in the Presence of Hidden Stations

A Performance Analysis of IEEE Networks in the Presence of Hidden Stations A Performance Analysis of IEEE 802.11 Networks in the Presence of Hidden Stations Marek Natkaniec, Andrzej R. Pach University of Mining and Metallurgy, Department of Telecommunications, Cracow, Poland

More information

Investigating MAC-layer Schemes to Promote Doze Mode in based WLANs

Investigating MAC-layer Schemes to Promote Doze Mode in based WLANs Investigating MAC-layer Schemes to Promote Doze Mode in 802.11-based WLANs V. Baiamonte and C.-F. Chiasserini CERCOM - Dipartimento di Elettronica Politecnico di Torino Torino, Italy Email: baiamonte,chiasserini

More information

AGOOD medium access control (MAC) protocol for wireless

AGOOD medium access control (MAC) protocol for wireless IEEE TRANSACTIONS ON WIRELESS COMMUNICATIONS, VOL. 3, NO. 3, MAY 2004 793 Design of MAC Protocols With Fast Collision Resolution for Wireless Local Area Networks Younggoo Kwon, Yuguang Fang, Senior Member,

More information

MAC in /20/06

MAC in /20/06 MAC in 802.11 2/20/06 MAC Multiple users share common medium. Important issues: Collision detection Delay Fairness Hidden terminals Synchronization Power management Roaming Use 802.11 as an example to

More information

EVALUATION OF EDCF MECHANISM FOR QoS IN IEEE WIRELESS NETWORKS

EVALUATION OF EDCF MECHANISM FOR QoS IN IEEE WIRELESS NETWORKS MERL A MITSUBISHI ELECTRIC RESEARCH LABORATORY http://www.merl.com EVALUATION OF EDCF MECHANISM FOR QoS IN IEEE802.11 WIRELESS NETWORKS Daqing Gu and Jinyun Zhang TR-2003-51 May 2003 Abstract In this paper,

More information

04/11/2011. Wireless LANs. CSE 3213 Fall November Overview

04/11/2011. Wireless LANs. CSE 3213 Fall November Overview Wireless LANs CSE 3213 Fall 2011 4 November 2011 Overview 2 1 Infrastructure Wireless LAN 3 Applications of Wireless LANs Key application areas: LAN extension cross-building interconnect nomadic access

More information

Remarks On Per-flow Differentiation In IEEE

Remarks On Per-flow Differentiation In IEEE Remarks On Per-flow Differentiation In IEEE 82.11 Imad Aad and Claude Castelluccia PLANETE project, INRIA Rhône-Alpes ZIRST - 655, Avenue de l Europe - Montbonnot. 38334 Saint Ismier Cedex - France [imad.aad,

More information

Collisions & Virtual collisions in IEEE networks

Collisions & Virtual collisions in IEEE networks Collisions & Virtual collisions in IEEE 82.11 networks Libin Jiang EE228a project report, Spring 26 Abstract Packet collisions lead to performance degradation in IEEE 82.11 [1] networks. The carrier-sensing

More information

Unit 7 Media Access Control (MAC)

Unit 7 Media Access Control (MAC) Unit 7 Media Access Control (MAC) 1 Internet Model 2 Sublayers of Data Link Layer Logical link control (LLC) Flow control Error control Media access control (MAC) access control 3 Categorization of MAC

More information

IEEE MAC Sublayer (Based on IEEE )

IEEE MAC Sublayer (Based on IEEE ) IEEE 802.11 MAC Sublayer (Based on IEEE 802.11-1999) Wireless Networking Sunghyun Choi, Associate Professor Multimedia & Wireless Networking Lab. (MWNL) School of Electrical Engineering Seoul National

More information

A Hybrid Distributed Coordination Function for Scalability and Inter-operability in Large-scale WLANs

A Hybrid Distributed Coordination Function for Scalability and Inter-operability in Large-scale WLANs A Hybrid Distributed Coordination Function for Scalability and Inter-operability in Large-scale WLANs Nakjung Choi, Seongil Han, Yongho Seok, Yanghee Choi and Taekyoung Kwon School of Computer Science

More information

WLAN Performance Aspects

WLAN Performance Aspects Mobile Networks Module C- Part 1 WLAN Performance Aspects Mohammad Hossein Manshaei Jean-Pierre Hubaux http://mobnet.epfl.ch 1 Performance Evaluation of IEEE 802.11(DCF) Real Experimentations HoE on IEEE

More information

ACK-based QoS Support and Throughput Improvement over WLANs

ACK-based QoS Support and Throughput Improvement over WLANs ACK-based QoS Support and Throughput Improvement over 802.11 WLANs Mehmet Fatih Tüysüz Department of Computer Engineering Harran University ftuysuz@harran.edu.tr ABSTRACT In IEEE 802.11 wireless network

More information

IEEE e QoS for Wireless LAN:

IEEE e QoS for Wireless LAN: IEEE 802.11e QoS for Wireless LAN: A Research Direction James Yu 12/09/2003 TDC Network Seminar 1 IEEE 802.11 MAC Layer Carrier Sense Multiple Access/Collision Avoidance (CSMA/CA) Different from CAMA/CD

More information

Local Area Networks NETW 901

Local Area Networks NETW 901 Local Area Networks NETW 901 Lecture 4 Wireless LAN Course Instructor: Dr.-Ing. Maggie Mashaly maggie.ezzat@guc.edu.eg C3.220 1 Contents What is a Wireless LAN? Applications and Requirements Transmission

More information

Announcements: Assignment 4 due now Lab 4 due next Tuesday Assignment 5 posted, due next Thursday

Announcements: Assignment 4 due now Lab 4 due next Tuesday Assignment 5 posted, due next Thursday ECE/CS 372 introduction to computer networks Lecture 15 Announcements: Assignment 4 due now Lab 4 due next Tuesday Assignment 5 posted, due next Thursday Credit for lecture slides to Professor Bechir Hamdaoui

More information

A Medium Access Control Protocol with Retransmission using NACK and Directional Antennas for Broadcasting in Wireless Ad-Hoc Networks

A Medium Access Control Protocol with Retransmission using NACK and Directional Antennas for Broadcasting in Wireless Ad-Hoc Networks A Medium Access Control Protocol with Retransmission using NACK and Directional Antennas for Broadcasting in Wireless Ad-Hoc Networks Yoriko Utsunomiya, Michito Takahashi, Masaki Bandai, and Iwao Sasase

More information

A Novel Contention Window Control Scheme Based on a Markov Chain Model in Dense WLAN Environment

A Novel Contention Window Control Scheme Based on a Markov Chain Model in Dense WLAN Environment 05 Third International Conference on Artificial Intelligence, Modelling and Simulation A Novel Contention Window Control Scheme Based on a Markov Chain Model in Dense WLAN Environment Yoshiaki Morino,

More information

CS/ECE 439: Wireless Networking. MAC Layer Road to Wireless

CS/ECE 439: Wireless Networking. MAC Layer Road to Wireless CS/ECE 439: Wireless Networking MAC Layer Road to Wireless Multiple Access Media Media access Controlling which frame should be sent over the link next Easy for point-to-point links; half versus full duplex

More information

standard. Acknowledgement: Slides borrowed from Richard Y. Yale

standard. Acknowledgement: Slides borrowed from Richard Y. Yale 802.11 standard Acknowledgement: Slides borrowed from Richard Y. Yang @ Yale IEEE 802.11 Requirements Design for small coverage (e.g. office, home) Low/no mobility High data rate applications Ability to

More information

An Enhanced IEEE Retransmission Scheme

An Enhanced IEEE Retransmission Scheme An Enhanced IEEE 802.11 Retransmission Scheme Hao-Li Wang, Jinghao Miao, J. Morris Chang Dept. of Electrical and Computer Engineering Iowa State University haoli, jhmiao, morris@iastate.edu Abstract In

More information

Performance Improvement In MANET By Using A Modified BEB Algorithm

Performance Improvement In MANET By Using A Modified BEB Algorithm Performance Improvement In MANET By Using A Modified BEB Algorithm Aparna S. Mankar 1, Mangla S. Madankar 2 1 ME Student, Wireless Communication & Computing, GHRCE Nagpur 2 Assistant Professor, Department

More information

LECTURE PLAN. Script. Introduction about MAC Types o ALOHA o CSMA o CSMA/CD o CSMA/CA

LECTURE PLAN. Script. Introduction about MAC Types o ALOHA o CSMA o CSMA/CD o CSMA/CA Course- B.Sc. Applied Physical Science (Computer Science) Year- IIIrd, Sem- Vth Subject Computer Science Paper- XVIIth, Computer Networks Lecture -11 Lecture Title- Medium Access Layer Script Today in

More information

A Directional MAC Protocol with the DATA-frame Fragmentation and Short Busy Advertisement Signal for Mitigating the Directional Hidden Node Problem

A Directional MAC Protocol with the DATA-frame Fragmentation and Short Busy Advertisement Signal for Mitigating the Directional Hidden Node Problem 2012 IEEE 23rd International Symposium on Personal, Indoor and Mobile Radio Communications - (PIMRC) A Directional MAC Protocol with the DATA-frame Fragmentation and Short Busy Advertisement Signal for

More information

Cooperative Communication Protocol based on Relay Node Grouping in Wireless Networks

Cooperative Communication Protocol based on Relay Node Grouping in Wireless Networks Cooperative Communication Protocol based on Relay Node Grouping in Wireless Networks Sunmyeng Kim Department of Computer Software Engineering, Kumoh National Institute of Technology 1 Daehak-ro, Gumi,

More information

Multiple Access Protocols

Multiple Access Protocols Multiple Access Protocols Computer Networks Lecture 2 http://goo.gl/pze5o8 Multiple Access to a Shared Channel The medium (or its sub-channel) may be shared by multiple stations (dynamic allocation) just

More information

UAMAC: Unidirectional-Link Aware MAC Protocol for Heterogeneous Ad Hoc Networks

UAMAC: Unidirectional-Link Aware MAC Protocol for Heterogeneous Ad Hoc Networks UAMAC: Unidirectional-Link Aware MAC Protocol for Heterogeneous Ad Hoc Networks Sung-Hee Lee, Jong-Mu Choi, and Young-Bae Ko College of Information and Communication, Ajou University, South Korea shlee@dmc.ajou.ac.kr,

More information

Directional Antenna based Time Division Scheduling in Wireless Ad hoc Networks

Directional Antenna based Time Division Scheduling in Wireless Ad hoc Networks Directional Antenna based Time Division Scheduling in Wireless Ad hoc Networks Li Shaohua and Dong-Ho Cho School of Electrical Engineering and Computer Science Korea Advanced Institute of Science and Technology

More information

Turning Hidden Nodes into Helper Nodes in IEEE Wireless LAN Networks

Turning Hidden Nodes into Helper Nodes in IEEE Wireless LAN Networks Turning Hidden Nodes into Helper Nodes in IEEE 82.11 Wireless LAN Networks Haithem Al-Mefleh and J. Morris Chang Dept. of Electrical and Computer Engineering Iowa State University, Ames, IA 511, USA {almehai,morris}@iastate.edu

More information

Achieving MAC Fairness in Wireless Ad-hoc Networks using Adaptive Transmission Control

Achieving MAC Fairness in Wireless Ad-hoc Networks using Adaptive Transmission Control Achieving MAC Fairness in Wireless Ad-hoc Networks using Adaptive Transmission Control Zhifei Li School of Computer Engineering Nanyang Technological University Singapore, 639798 Sukumar Nandi Dept. of

More information

CSMA/IC: A New Class of Collision free MAC Protocols for Ad Hoc Wireless Networks

CSMA/IC: A New Class of Collision free MAC Protocols for Ad Hoc Wireless Networks CSMA/IC: A New Class of Collision free MAC Protocols for Ad Hoc Wireless Networks Tiantong You (you@cs.queensu.ca) Department of Computing and Information Science Chi-Hsiang Yeh (yeh@ece.queensu.ca) Department

More information

Chapter 12 Multiple Access 12.1

Chapter 12 Multiple Access 12.1 Chapter 12 Multiple Access 12.1 Copyright The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 12.2 Figure 12.1 Data link layer divided into two functionality-oriented sublayers

More information

Performance Anomaly of b

Performance Anomaly of b Performance Anomaly of 8.11b Martin Heusse, Franck Rousseau, Gilles Berger-Sabbatel, Andrzej Duda LSR-IMAG Laboratory Grenoble, France email: {heusse, rousseau, gberger, duda}@imag.fr Abstract We analyze

More information

VHDL Modeling of the CSMA/CA

VHDL Modeling of the CSMA/CA VHDL Modeling of the CSMA/CA W.L. Pang, K. W. Chew, Florence Choong, E.S. Teoh Abstract The wireless communication is highly deployed due to it convenience of mobility. The wireless local area network,

More information

EDCA LIMITATION WITH HIGH TRAFFIC REAL TIME APPLICATIONS

EDCA LIMITATION WITH HIGH TRAFFIC REAL TIME APPLICATIONS EDCA LIMITATION WITH HIGH TRAFFIC REAL TIME APPLICATIONS 1 AHMED ABU-KHADRAH, 2 ZAHRILADHA ZAKARIA, 3 MOHDAZLISHAH OTHMAN 1,2,3 Centre for Telecommunication Research and Innovation (CeTRI), Faculty of

More information

Revealing the problems with medium access control protocol in multi hop wireless ad hoc networks

Revealing the problems with medium access control protocol in multi hop wireless ad hoc networks Revealing the problems with 802.11 medium access control protocol in multi hop wireless ad hoc networks Authors: Shugong Xo and Tarek Saadawi Presented by Jani Hautakorpi 1 / 28 Content Introduction Overview

More information

MAC. Fall Data Communications II 1

MAC. Fall Data Communications II 1 802.11 MAC Fall 2005 91.564 Data Communications II 1 RF Quality (ACK) Fall 2005 91.564 Data Communications II 2 Hidden Terminal (RTS/CTS) Fall 2005 91.564 Data Communications II 3 MAC Coordination Functions

More information

Throughput Improvement by Adjusting RTS Transmission Range for W-LAN Ad Hoc Network

Throughput Improvement by Adjusting RTS Transmission Range for W-LAN Ad Hoc Network Proceedings of the 2014 Federated Conference on Computer Science and Information Systems pp. 941 946 DOI: 10.15439/2014F437 ACSIS, Vol. 2 Throughput Improvement by Adjusting RTS Transmission Range for

More information

ECE 358 MAC Examples. Xuemin (Sherman) Shen Office: EIT 4155 Phone: x

ECE 358 MAC Examples. Xuemin (Sherman) Shen Office: EIT 4155 Phone: x ECE 358 MAC Examples Xuemin (Sherman) Shen Office: EIT 4155 Phone: x 32691 Email: xshen@bbcr.uwaterloo.ca Problem 1. Consider the following Aloha systems. (a) A group of N users share a 56 kbps pure Aloha

More information

Simulation Analysis of IEEE Non-beacon Mode at Varying Data Rates

Simulation Analysis of IEEE Non-beacon Mode at Varying Data Rates Simulation Analysis of IEEE 802.15.4 Non-beacon Mode at Varying Data Rates Z. Abbas, N. Javaid, M. A. Khan, S. Ahmed, U. Qasim, Z. A. Khan COMSATS Institute of IT, Islamabad, Pakistan. Mirpur University

More information

Link Layer II: MACA and MACAW

Link Layer II: MACA and MACAW Link Layer II: MACA and MACAW COS 463: Wireless Networks Lecture 5 Kyle Jamieson [Parts adapted from J. Kurose, K. Ross, D. Holmar] Medium access: Timeline Packet radio Wireless LAN Wired LAN ALOHAnet

More information

Wireless Local Area Networks. Networks: Wireless LANs 1

Wireless Local Area Networks. Networks: Wireless LANs 1 Wireless Local Area Networks Networks: Wireless LANs 1 Wireless Local Area Networks The proliferation of laptop computers and other mobile devices (PDAs and cell phones) created an obvious application

More information

/99/$10.00 (c) 1999 IEEE

/99/$10.00 (c) 1999 IEEE COLLISION-FREE MEDIUM ACCESS CONTROL SCHEME FOR AD-HOC NETWORKS Zygmunt J. Haas and Jing Deng School of Electrical Engineering Cornell University Ithaca, NY 14853 haas@ee.cornell.edu Siamak Tabrizi US

More information