Performance improvement of active queue management with per-flow scheduling

Size: px
Start display at page:

Download "Performance improvement of active queue management with per-flow scheduling"

Transcription

1 Performance improvement of active queue management with per-flow scheduling Masayoshi Nabeshima, Kouji Yata NTT Cyber Solutions Laboratories, NTT Corporation 1-1 Hikari-no-oka Yokosuka-shi Kanagawa Japan {nabeshima.masayoshi, Abstract Active queue management (AQM) has two main objectives. One is to achieve high throughput and low average queueing delay simultaneously. The other is to achieve fair bandwidth allocation among competing flows. Although many algorithms have been proposed and investigated in an effort to fulfil the goal of AQM, there are few studies on AQM with per-flow scheduling. This is because longest queue drop (), which is commonly used as a queue management discipline with per-flow scheduling, has good performance in terms of throughput and fairness. However, suffers from long queueing delays. In addition, it cannot support explicit congestion notification (ECN). Accordingly, for AQM with per-flow scheduling, we can specify the following requirements: (1) it achieves simultaneously lower average queueing delays than and the same throughput as. (2) it achieves the same degree of fairness as. (3) it achieves lower packet loss ratios than when flows are ECN capable. This paper proposes a new AQM that fulfils these requirements. In, packets are dropped probabilistically before the buffer is full. The probability is maintained for each active flow. The probability of the flow with the longest queue length is increased when the network is congested. Simulations confirm that our mechanism achieves the requirements set for AQM with per-flow scheduling. 1 Introduction The number of people who use the Internet has been increasing. There is no doubt that the Internet is becoming a public communication infrastructure that rivals the public switched telephone network (PSTN). However, some essential features must be provided if it is to be accepted more widely. One is to allocate bandwidth fairly among competing flows. Queue management plays an important role in fair bandwidth allocation. From the point of dropping packets, queue management can be classified into two cat- 1

2 egories. The first category is passive queue management (PQM), which does not drop packets until the buffer is full. Drop tail is a well-known example of PQM. The second category is active queue management (AQM) [1], which drops packets probabilistically before the buffer is full. AQM has two main objectives. One is to achieve high throughput and low average queueing delay simultaneously. The other is to achieve fair bandwidth allocation among competing flows. Many algorithms have been proposed and investigated in an effort to fulfil the goal of AQM. They can be classified into three types: AQM without per-flow information (AQM1), AQM with per-flow information (AQM2), and AQM with perflow scheduling (AQM3). For each flow, AQM1 and AQM2 use a single queue, while AQM3 uses a separate queue. AQM2 and AQM 3 maintain per-flow information while AQM1 does not. In general, AQM1 is the least complex to implement, but it has the worst performance as regards fair bandwidth allocation. Conversely, AQM3 is the most complex to implement, but it achieves the fairest bandwidth allocation. AQM2 provides an intermediate solution. Random early detection (RED) [2], BLUE [3], and random early marking (REM) [4] are examples of AQM1. Flow RED (FRED) [5], balanced RED (BRED) [6], and BRED with virtual buffer occupancy (BRED/VBO) [7] are examples of AQM2. However, AQM3 has had few proposals. This is because longest queue drop (), which is commonly used as a queue management discipline with per-flow scheduling, has good performance in terms of throughput and fairness. The authors in [8] show that with per-flow scheduling achieves much fairer bandwidth allocation than RED with per-flow scheduling. In the discipline, when a new packet arrives at a router, if the buffer is full the router chooses the flow with the longest queue length. The router then drops the front packet from the buffer of the chosen flow. The discipline is classified as PQM because no packets are dropped until the buffer is full. Thus, it has two drawbacks. One is that the queue length is likely to be full for a long period of time. This results in long queueing delays. The other is that the discipline cannot support explicit congestion notification (ECN) [9]. To support ECN, routers are required to mark a packet before the buffer is full. This means that AQM routers can support ECN while PQM routers cannot. Since the discipline is PQM, it cannot provide end-nodes with any of the advantages of ECN. Therefore, the requirements for AQM3 can be specified as follows. The first is to achieve simultaneously lower average queueing delays than and the same throughput as. The second is to achieve the same degree of fairness as. The third is to achieve lower packet loss ratios than when flows are ECN 2

3 capable. This paper proposes a new AQM3 that satisfies these requirements. In our mechanism, packets are dropped probabilistically before the buffer is full. The probability is maintained for each active flow. The probability of the flow with the longest queue length is increased when the network is congested. Flows whose sending rate exceeds the fair share rate tend to be chosen as the one with the longest queue length. Thus, it is reasonable to increase the packet dropping probability of such flows. The remainder of this paper is organised as follows. Section 2 overviews conventional queue management disciplines with per-flow scheduling. Section 3 describes our proposed AQM3. Section 4 uses computer simulations to confirm that can achieve the requirements set for AQM3. Finally, conclusions are provided in Section 5. 2 Queue management discipline with per-flow scheduling In this section, we describe two conventional queue management disciplines: and RED. is the most commonly used queue management discipline with per-flow scheduling. RED is the most well-known AQM1 and it can be used as AQM Longest queue drop () The logic of is that flows whose sending rate exceeds the fair share rate are likely to have longer queues. Thus, it is desirable to drop packets of such flows preferentially to achieve fair bandwidth allocation. When a new packet arrives at a router, if the buffer is full the router chooses the flow whose queue length is the longest. The router then drops the front packet from the buffer of the chosen flow. Drop-from-front informs the traffic senders about the packet loss earlier than that in the drop-tail case. This increases throughput. Though can achieve a high degree of throughput and fairness, it has two shortcomings. The first is that average queueing delays become long because the queue length is likely to be full for a long period of time. The second is that cannot support ECN. Since ECN is expected to be used widely in the future Internet, queue management disciplines with per-flow scheduling need to support ECN. The authors in [10] proposed two new queue management disciplines: throughput DRR (TDRR) and queue state DRR (QSDRR). They showed that when their 3

4 proposed mechanisms were used, short-lived TCP flows had better performance than when was used. However, TDRR and QSDRR possess the same problems as because they are classified as PQM. 2.2 Random early detection (RED) When a new packet arrives at a RED router, the router determines whether the packet should be accepted or not based on the average queue length avg and two thresholds mint H and maxt H. Specifically, if avg is below mint H, the packet is accepted. If avg lies between the two thresholds, the packet is dropped probabilistically. If avg is above maxt H, the packet is dropped. The average queue length at time t is calculated by the following low pass filter. avg(t) = (1 w) avg(t 1) + w q(t) w is a weight parameter, and q(t) is the instantaneous queue length at time t. w determines the time constant of the low pass filter. In [2], w is set to The optimal values of mint H and maxt H depend on the desired average queue size. In [2], mint H is set to five packets. maxt H is set to three times mint H. The basic idea behind RED is that a router detects incipient congestion by the relationship between avg and the two thresholds, and notifies flows of the decision result. This results in keeping the average queue length low. As the authors in [8] showed, however, RED with per-flow scheduling does not have the same degree of fairness as with per-flow scheduling. This means that RED does not achieve one of the AQM3 requirements. 3 Proposed mechanism First, we define the following parameters. B = buffer size Q = total queue length of active flows T H = predefined threshold qlen[i] = queue length of flow i P [i] = packet dropping probability of flow i prevt ime[i] = time when the previous update of P [i] occurred minit V L = minimum time interval between two successive updates of P [i] N = total number of active flows 4

5 now = current time Note that a flow is defined as active if it has at least one packet in its buffer. When a new packet of flow i arrives at a router, the router calculates the value of EQ that represents Q plus the size of the arriving packet. In addition, if the router does not maintain the state of flow i, P [i] is set to zero. If (EQ > B), the router chooses the flow with the longest queue length. The router then drops the front packet from the buffer of the chosen flow. That is, when EQ exceeds B, and behave the same. If (EQ B), the router chooses the flow whose queue length is the longest. If the chosen flow is ECN capable, the router marks the first unmarked packet with probability P [L]. L is the identifier of the chosen flow. If flow L is non-ecn capable, the router drops the front packet from the buffer of flow L with probability P [L]. When a packet of flow i is transmitted, if qlen[i] is 0 the router eliminates the state of flow i. That is, routers maintain the states of only active flows. The value of P [i] is updated as follow. When a new packet arrives, if (EQ > T H) we check whether (now prevt ime[l]) is more than minit V L. L is the identifier of the flow whose qlen is the longest. If the condition is true, P [L] is increased by α; α is the increase parameter. prevt ime[l] is then set to now. When a packet of flow i is transmitted, if (P [i] > 0) and (Q/N > qlen[i]), we check whether (now prevt ime[i]) is more than minit V L. If the condition is true, P [i] is decreased to β P [i]; β is the decrease parameter. prevt ime[i] is then set to now. The logic behind the update is as follows. Flows whose sending rate exceeds the fair share rate tend to be chosen as the one with the longest queue length. Thus, it is reasonable to increase the packet dropping probability of such flows. Q/N represents the average buffer occupancy of each active flow. If (Q/N > qlen[i]), the current queue length of flow i is less than the average. Thus, it is desirable to decrease the packet dropping probability of flow i. For completeness, the pseudo-code of the proposed mechanism is shown in the appendix. We describe how our proposed scheme can support ECN flows because ECN support is one of the biggest difference between and. The TCP sender sets the ECN capable transport (ECT) bit in the IP header of data packets to inform routers that it supports ECN. Routers choose the flow with the longest queue length. If the flow is ECN capable, the routers mark the first unmarked packet with probability P [L] by setting the congestion experienced (CE) bit in the IP header. If the TCP receiver receives a packet with CE bit set, it sets the ECN-echo (ECE) bit in the TCP header of the subsequent ACK packet. The 5

6 receiver continues to set the ECE bit until it receives a data packet with the congestion window reduced (CWR) bit set. This provides robustness against the loss of an ACK packet with ECE bit set. When the TCP sender receives an ACK packet with ECE bit set, it halves its congestion window. In addition, the sender sets the CWR bit in the TCP header of the next data packet after the reduction of the window. The TCP sender reacts once per RTT to ACK packets whose ECE bits are set. 4 Simulated performance As described before, there are three AQM3 requirements. One is to achieve, simultaneously, lower average queueing delays than and the same throughput as. Another is to achieve the same degree of fairness as. The other is to achieve lower packet loss ratios than when flows are ECN capable. We simulated the performance of to confirm that it can fulfil these requirements. We compared it against and Adaptive RED (ARED) [11]. ARED is an enhanced version of RED. The characteristic of ARED is that it tunes its parameters automatically to increase the robustness of RED. In ARED, network operators set only the target queue length. mint H and maxt H are set based on the target queue length. The weight parameter w is set as a function of the link bandwidth. 4.1 Simulation model All simulations were performed using ns-2 [12]. We used TCP and UDP traffic generation codes from the ns-2 distribution. Packet size was 1000 bytes. For TCP, the SACK option [13], and the timestamp option [14] were used. We changed the maximum advertised window to 64 packets. The other parameters took the default values of the simulator. For UDP, the sending rate was set to twice its fair share rate. The start time of each flow was randomised in the range 0 to 5 secs in each simulation run. Though can be used in conjunction with any per-flow scheduling algorithm, we tested it with the deficit round robin (DRR) scheduling algorithm [15]. The code of DRR with is also available from the ns-2 distribution. For DRR, Quantum was 1000 bytes. For ARED, the target queue length was 50 packets. The other parameter values were the same as in [11]. For, T H was 50 packets and minit V L was 100 msec. The increase parameter α was The decrease parameter β was 0.9. The simulation time was 100 seconds. We repeated each simulation 10 times and the average values of these simulations are reported below. Note that the first 6

7 50 seconds of each run were not considered in determining the results. We used the single congested link topology shown in Figure 1. Congestion occurred on the link between routers 1 and 2. Router 1 was the bottleneck point. Each output link had a capacity of 100 Mbps. The propagation delay between routers was 10 ms. The propagation delay between the router and source/destination i (i = 1, 2,...) was set to (i mod 5) ms. 4.2 Scenario A In scenario A, we investigated the performance of each scheme when TCP and UDP flows co-exist. When the total number of flows was N, we assumed that flows 1 to (N 1) were TCP, and flow N was UDP Fairness This section evaluated each mechanism in terms of fairness. In the first simulation, the total number of flows was fixed to 10. The buffer size was varied from 60 to 250 packets. Figure 2 shows Jain s fairness index [16] versus the buffer size. The fairness index is defined as follows. ( Ni ) 2 x i fairness index = N N i x 2 i,where x i : measured throughput of flow i N: total number of flows The fairness index always lies between 0 and 1. An value closer to 1 represents a higher degree of fairness. We can see that achieves approximately the same degree of fairness as. Their fairness index is more than 0.99 regardless of the buffer size. On the other hand, ARED has the worst performance. In ARED, UDP flows receive much more bandwidth than TCP flows. This is because the packet dropping policy in ARED focuses on only TCP flows. This result clarifies that merely using the scheduling policy, without an appropriate queue management discipline, does not lead to good performance. In the second simulation, the buffer size was fixed to 250 packets. The total number of flows was varied from 10 to 50. Figure 3 shows the fairness index versus the total number of flows. Our mechanism achieves approximately the same degree of fairness as regardless of the total number of flows. The fairness index of ARED approaches 1 as the total number of flows increases. The reason is that the sending rate of flow N, which is UDP, is decreased as the total number of flows 7

8 increases. In other words, the influence of flow N on TCP flows declines as the total number of flows increases. From these results, it is apparent that ARED fails to achieve the AQM3 requirements. Thus, we will not consider ARED hereafter Throughput and average queueing delay This section evaluated each mechanism in terms of throughput and average queueing delay. In the first simulation, the total number of flows was fixed to 10. The buffer size was varied from 60 to 250 packets. Figure 4 shows throughput versus the buffer size. Throughput in Figure 4 represents the sum of the throughput of each flow and it is normalised by the bottleneck link capacity, 100 Mbps. We can see that achieves approximately the same degree of throughput as. Their throughput is more than 0.99 regardless of the buffer size. Figure 5 shows average queueing delay versus the buffer size. For each data packet, we measured the time from when it arrives at router 1 until it was transmitted from the router. We can see that achieves lower average queueing delay than. Since probabilistically drops packets before the buffer is full, the average queue length in is lower than that in. In the second simulation, the buffer size was fixed to 250 packets. The total number of flows was varied from 10 to 50. Figure 6 shows throughput versus the total number of flows. Our mechanism achieves approximately the same throughput as regardless of the total number of flows. Figure 7 shows average queueing delay versus the total number of flows. We can see that achieves lower average queueing delay than. Thus, we can say that achieves lower average queueing delay than while matching its throughput Packet loss ratio This section evaluated each mechanism in terms of packet loss ratio when TCP flows were ECN capable. In the first simulation, the total number of flows was fixed to 10. The buffer size was varied from 60 to 250 packets. Figure 8 shows packet loss ratio versus the buffer size. We can see that achieves lower packet loss ratios than. In, when the buffer size was more than 150 packets the packet loss ratio was 0. In the second simulation, the buffer size was fixed to 250 packets. The total number of flows was varied from 10 to 50. In, the packet loss ratio was 0 regardless of the total number of flows. In, on the other hand, the packet loss ratio was always more than Thus, we can say that can achieve lower packet loss ratios than when flows are ECN capable. From the 8

9 results in scenario A, we state that fulfils the AQM3 requirements in an environment where TCP and UDP flows co-exist. 4.3 Scenario B In scenario B, we investigated the performance of each scheme when TCP flows have different RTTs. The total number of flows was assumed to 50. The propagation delay between the router and source/destination i (i = 1, 2,..., 50) was set to (i mod r) ms. The value of r was varied from 10 to 50. We call the parameter r the RTT factor. The buffer size was fixed to 250 packets. Figure 9 shows the fairness index versus the RTT factor. The fairness indices of and decrease as the RTT factor increases. This is because the higher the RTT factor, the larger the differences of RTTs. The fairness index of is better than that of. However, the fairness index of our mechanism is always more than Figure 10 shows throughput versus the RTT factor. Throughput in Figure 10 represents the sum of the throughput of each flow and it is normalised by the bottleneck link capacity, 100 Mbps. The throughputs of and are more than 0.99 regardless of the RTT factor. Figure 11 shows average queueing delay versus the RTT factor. We can see that achieves lower average queueing delay than. We measured the packet loss ratio when all flows were ECN capable. In our mechanism, the packet loss ratio was 0 regardless of the RTT factor. In, on the other hand, the packet loss ratio was always more than From the results in scenario B, we state that fulfils the AQM3 requirements in an environment where TCP flows have different RTTs. 4.4 Scenario C In scenario C, we investigated the performance of each scheme when the flow traverses more than one congested link. We used the topology shown in Figure 12. All links between routers were congested. The propagation delay between routers was 5 ms. The propagation delay between the router and source/destination i (i = 1, 2,...) was set to (i mod 5) ms. Flows 1 to 25 were the target flows and traversed more than one congested link. The other flows were the cross flows and traversed only one congested link. All flows were TCP. Figure 13 shows the fairness index versus the number of congested links. The fairness indices of and are more than 0.99 regardless of the 9

10 number of congested links. Figure 14 shows throughput versus the number of congested links. Throughput in Figure 10 represents the sum of the throughput of each target flow and it is normalised by 50 Mbps. The throughput of is higher than that of. However, the difference is approximately 1Mbps. Figure 15 shows average queueing delay versus the number of congested links. When the number of congested links is N 1, we measured the time from when a data packet arrives at router 1 until the packet has been transmitted from router N 1. We can see that achieves lower average queueing delay than. We measured the packet loss ratio when all flows were ECN capable. In our mechanism, the packet loss ratio was 0 regardless of the number of congested links. In, on the other hand, the packet loss ratio was always more than From the results in scenario C, we state that fulfils the AQM3 requirements under the multiple congested links topology. 5 Conclusions This paper has proposed a new queue management discipline with per-flow scheduling. In, the packet dropping probability P is maintained for each active flow. When a packet arrives at a router, the router calculates the value of EQ, which represents the total queue length plus the size of the arriving packet. If EQ exceeds buffer size B, the router chooses the flow with the longest queue length. The router then drops the front packet from the buffer of the chosen flow. That is, and behave the same when EQ exceeds B. If (EQ B), the router chooses the flow with the longest queue length. The router then marks the first unmarked packet or drops the front packet with probability P of the chosen flow. The value of P is updated as follows. When a packet arrives, if EQ exceeds the predefined threshold, P of the flow with the longest queue length is increased. When a packet of flow i is transmitted, if the buffer occupancy of flow i is less than the average, P of flow i is decreased. We evaluated the performance of our mechanism by computer simulations. Fairness, throughput, average queueing delay, and packet loss ratio were used as performance metrics. The simulations clarified that could achieve approximately the same degree of fairness and throughput as. Moreover, could achieve smaller average queueing delay and packet loss ratios than. In short, can fulfil the requirements for AQM with per-flow scheduling. 10

11 References [1] B. Braden, D. Clark, J. Crowcroft, B. Davie, S. Deering, D. Estrin, S. Floyd, V. Jacobson, G. Minshall, C. Partridge, L. Peterson, K. Ramakrishnan, S. Shenker, J. Wroclawski, and L. Zhang. Recommendation on queue management and congestion avoidance in the Internet. RFC2309, April [2] S. Floyd and V. Jacobson. Random early detection gateways for congestion avoidance. IEEE/ACM Trans. Netwoking, 1: , Aug [3] W. Feng, K. Shin, D. Kandlur, and D. Saha. The BLUE active queue management algorithms. IEEE/ACM Trans. Networking, 10: , Aug [4] S. Athuraliya, S. Low, V. Li, and Q. Yin. REM: Active queue management. IEEE Network, 15(3):48 53, May/June [5] D. Lin and R. Morris. Dynamics of random early detection. ACM SIGCOMM 97, pages , Sept [6] F. Anjum and L. Tassiulas. Fair bandwidth sharing among adaptive and nonadaptive flows in the Internet. IEEE INFOCOM, pages , March [7] M. Nabeshima. Improving the performance of active buffer management with per-flow information. IEEE Communications Letters, 6(7): , July [8] B. Suter, T. Lakshman, D. Stiliadis, and A. Choudhury. Design consideration for supporting TCP with per-flow queueing. IEEE INFOCOM, pages , March [9] K. Ramakrishnan, S. Floyd, and D. Black. The addition of explicit congestion notification (ECN) to IP. RFC3168, Sept [10] A. Kantawala and J. Turner. Queue management for short-lived TCP flows in backbone routers. IEEE GLOBECOM, pages , Nov [11] S. Floyd, R. Gummadi, and S. Shenker. Adaptive RED: An algorithm for increasing the robustness of RED s active queue management. available from [12] S. McCanne and S. Floyd. NS simulator, version available from http: // 11

12 [13] M. Mathis, J. Mahdavi, S. Floyd, and A. Romanow. TCP selective acknowledgement options. RFC 2018, Oct [14] V. Jacobson, R. Braden, and B. Borman. TCP extensions for high performance. RFC 1185, May [15] M. Shreedhar and G. Varghese. Efficient fair queuing using deficit round robin. IEEE/ACM Trans. Networking, 4: , June [16] R. Jain. The art of computer systems performance analysis. John Wiley and Sons, New York,

13 Appendix: Pseudo-code of our proposed mechanism When a packet of flow i arrives EQ = Q+ size of the arriving packet; if (EQ > T H) inc P(); if (EQ > B) while (EQ > B) { choose flow L whose qlen is the longest; drop the front packet from the buffer of flow L; EQ = EQ size of the dropped packet; } the arriving packet is accepted; else { choose flow L whose qlen is the longest; rnd is a random number in the range 0.0 to 1.0; if (P [L] rnd) { if (flow L is ECN capable) mark the first unmarked packet of flow L; else // non-ecn capable drop the front packet from the buffer of flow L; } the arriving packet is accepted; } When a packet of flow i is transmitted if ((P [i] > 0) and (Q/N > qlen[i])) { diff = now prevt ime[i]; if (diff > minit V L) { P [i] = P [i] β prevt ime[i] = now; } } inc P() { L is the identifier of the flow with the longest queue length; diff = now prevt ime[l]; 13

14 if (diff > minit V L) { P [L] = P [L] + α; if (P [L] > 1)P [L] = 1 prevt ime[l] = now; } } 14

15 List of Figure Captions Figure 1. Single congested link topology. Figure 2. Fairness index versus buffer size when TCP and UDP flows co-exist. Figure 3. Fairness index versus total number of flows when TCP and UDP flows co-exist. Figure 4. Throughput versus buffer size when TCP and UDP flows co-exist. Figure 5. Average queueing delay versus buffer size when TCP and UDP flows co-exist. Figure 6. Throughput versus total number of flows when TCP and UDP flows coexist. Figure 7. Average queueing delay versus total number of flows when TCP and UDP flows co-exist. Figure 8. Packet loss ratio versus buffer size when TCP and UDP flows co-exist. Figure 9. Fairness index versus RTT factor when TCP flows have different RTTs. Figure 10. Throughput versus RTT factor when TCP flows have different RTTs. Figure 11. Average queueing delay versus RTT factor when TCP flows have different RTTs. Figure 12. Multiple congested links topology. Figure 13. Fairness index versus number of congested links. Figure 14. Throughput versus number of congested links. Figure 15. Average queueing delay versus number of congested links. 15

16 S 1 D 1 S 2 Router 1 Router 2 bottleneck link D 2 S N D N Figure 1: Single congested link topology. 1.0 ARED Fairness index Buffer size [packets] Figure 2: Fairness index versus buffer size when TCP and UDP flows co-exist. 16

17 1.0 Fairness index 0.9 ARED Total number of flows Figure 3: Fairness index versus total number of flows when TCP and UDP flows co-exist Throughput Buffer size [packets] Figure 4: Throughput versus buffer size when TCP and UDP flows co-exist. 17

18 Average queueing delay [sec] Buffer size [packets] Figure 5: Average queueing delay versus buffer size when TCP and UDP flows co-exist. 18

19 1.00 Throughput Total number of flows Figure 6: Throughput versus total number of flows when TCP and UDP flows co-exist Average queueing delay [sec] Total number of flows Figure 7: Average queueing delay versus total number of flows when TCP and UDP flows co-exist. 19

20 10 2 Packet loss ratio Buffer size [packets] Figure 8: Packet loss ratio versus buffer size when TCP and UDP flows co-exist. 1.0 Fairness index RTT factor Figure 9: Fairness index versus RTT factor when TCP flows have different RTTs. 20

21 1.00 Throughput RTT factor Figure 10: Throughput versus RTT factor when TCP flows have different RTTs Average queueing delay [s] RTT factor Figure 11: Average queueing delay versus RTT factor when TCP flows have different RTTs. 21

22 Flows1-25 Sources Router 1 Flows26-50 Destinations Router 2 Flows(25N-24)-(25N) Destinations Router N Flows26-50 Sources Flows51-75 Sources Flows1-25 Destinations Figure 12: Multiple congested links topology. 1.0 Fairness index Number of congested links Figure 13: Fairness index versus number of congested links. 22

23 1.00 Throughput Number of congested link Figure 14: Throughput versus number of congested links Average queueing delay [s] Number of congested links Figure 15: Average queueing delay versus number of congested links. 23

Active Queue Management and Wireless Networks

Active Queue Management and Wireless Networks Active Queue Management and Wireless Networks Vikas Paliwal November 13, 2003 1 Introduction Considerable research has been done on internet dynamics and it has been shown that TCP s congestion avoidance

More information

Performance Analysis of AQM Schemes in Wired and Wireless Networks based on TCP flow

Performance Analysis of AQM Schemes in Wired and Wireless Networks based on TCP flow International Journal of Soft Computing and Engineering (IJSCE) Performance Analysis of AQM Schemes in Wired and Wireless Networks based on TCP flow Abdullah Al Masud, Hossain Md. Shamim, Amina Akhter

More information

17: Queue Management. Queuing. Mark Handley

17: Queue Management. Queuing. Mark Handley 17: Queue Management Mark Handley Queuing The primary purpose of a queue in an IP router is to smooth out bursty arrivals, so that the network utilization can be high. But queues add delay and cause jitter.

More information

Assessing the Impact of Multiple Active Queue Management Routers

Assessing the Impact of Multiple Active Queue Management Routers Assessing the Impact of Multiple Active Queue Management Routers Michele C. Weigle Department of Computer Science Old Dominion University Norfolk, VA 23529 mweigle@cs.odu.edu Deepak Vembar and Zhidian

More information

Comparative Analysis of Congestion Control Algorithms Using ns-2

Comparative Analysis of Congestion Control Algorithms Using ns-2 www.ijcsi.org 89 Comparative Analysis of Congestion Control Algorithms Using ns-2 Sanjeev Patel 1, P. K. Gupta 2, Arjun Garg 3, Prateek Mehrotra 4 and Manish Chhabra 5 1 Deptt. of Computer Sc. & Engg,

More information

GREEN: Proactive Queue Management over a Best-Effort Network

GREEN: Proactive Queue Management over a Best-Effort Network IEEE GlobeCom (GLOBECOM ), Taipei, Taiwan, November. LA-UR -4 : Proactive Queue Management over a Best-Effort Network Wu-chun Feng, Apu Kapadia, Sunil Thulasidasan feng@lanl.gov, akapadia@uiuc.edu, sunil@lanl.gov

More information

Novel Approach for Queue Management and Improvisation of QOS for Communication Networks

Novel Approach for Queue Management and Improvisation of QOS for Communication Networks Novel Approach for Queue Management and Improvisation of QOS for Communication Networks J. Venkatesan 1, S. Thirumal 2 1 M. Phil, Research Scholar, Arignar Anna Govt. Arts College, Cheyyar, T.V Malai Dt,

More information

Robust Router Congestion Control Using Acceptance and Departure Rate Measures

Robust Router Congestion Control Using Acceptance and Departure Rate Measures Robust Router Congestion Control Using Acceptance and Departure Rate Measures Ganesh Gopalakrishnan a, Sneha Kasera b, Catherine Loader c, and Xin Wang b a {ganeshg@microsoft.com}, Microsoft Corporation,

More information

Adaptive Virtual Buffer(AVB)-An Active Queue Management Scheme for Internet Quality of Service

Adaptive Virtual Buffer(AVB)-An Active Queue Management Scheme for Internet Quality of Service Adaptive Virtual Buffer(AVB)-An Active Queue Management Scheme for Internet Quality of Service Xidong Deng, George esidis, Chita Das Department of Computer Science and Engineering The Pennsylvania State

More information

Rate-Based Active Queue Management: A Green Algorithm in Congestion Control

Rate-Based Active Queue Management: A Green Algorithm in Congestion Control Rate-Based Active Queue Management: A Green Algorithm in Congestion Control Balveer Singh #1, Diwakar Saraswat #2 #1 HOD Computer Sc. & Engg. #2 Astt. Prof. Computer Sc. & Engg PKITM Mathura (UP) India

More information

Congestion Control Review. 15-441 Computer Networking. Resource Management Approaches. Traffic and Resource Management. What is congestion control?

Congestion Control Review. 15-441 Computer Networking. Resource Management Approaches. Traffic and Resource Management. What is congestion control? Congestion Control Review What is congestion control? 15-441 Computer Networking What is the principle of TCP? Lecture 22 Queue Management and QoS 2 Traffic and Resource Management Resource Management

More information

About the Stability of Active Queue Management Mechanisms

About the Stability of Active Queue Management Mechanisms About the Stability of Active Queue Management Mechanisms Dario Bauso, Laura Giarré and Giovanni Neglia Abstract In this paper, we discuss the influence of multiple bottlenecks on the stability of Active

More information

Aggregate Traffic Performance with Active Queue Management and Drop from Tail

Aggregate Traffic Performance with Active Queue Management and Drop from Tail Aggregate Traffic Performance with Active Queue Management and Drop from Tail Gianluca Iannaccone Sprint ATL Adrian Court Burlingame CA 9400 gianluca@sprintlabs.com Martin May Activia Networks Parc of

More information

Approximate fair bandwidth allocation: A method for simple and flexible traffic management

Approximate fair bandwidth allocation: A method for simple and flexible traffic management Forty-Sixth Annual Allerton Conference Allerton House, UIUC, Illinois, USA September 23-26, 2008 ThC1.3 Approximate fair bandwidth allocation: A method for simple and flexible traffic management Rong Pan,

More information

About the Stability of Active Queue Management mechanisms

About the Stability of Active Queue Management mechanisms About the Stability of Active Queue Management mechanisms Giovanni Neglia, Dario Bauso, and Laura Giarré Dipartimento di Ing. Elettrica, DIE Università di Palermo Palermo, Italia +39-966286 Email: {giovanni.neglia@tti.unipa.it,}

More information

Master s Thesis. A Study on Active Queue Management Mechanisms for. Internet Routers: Design, Performance Analysis, and.

Master s Thesis. A Study on Active Queue Management Mechanisms for. Internet Routers: Design, Performance Analysis, and. Master s Thesis Title A Study on Active Queue Management Mechanisms for Internet Routers: Design, Performance Analysis, and Parameter Tuning Supervisor Prof. Masayuki Murata Author Tomoya Eguchi February

More information

RWM and Network Congestion Management

RWM and Network Congestion Management Department of Computer Science and Engineering University of Texas at Arlington Arlington, TX 769 Complementing Current Active Queue Management Schemes with Receiver- Window Modification (RWM) Visvasuresh

More information

DESIGN OF ACTIVE QUEUE MANAGEMENT BASED ON THE CORRELATIONS IN INTERNET TRAFFIC

DESIGN OF ACTIVE QUEUE MANAGEMENT BASED ON THE CORRELATIONS IN INTERNET TRAFFIC DESIGN OF ACTIVE QUEUE MANAGEMENT BASED ON THE CORRELATIONS IN INTERNET TRAFFIC KHALID S. AL-AWFI AND MICHAEL E. WOODWARD { k.s.r.alawf, m.e.woodward }@bradford.ac.uk Department of Computing, University

More information

Passive Queue Management

Passive Queue Management , 2013 Performance Evaluation of Computer Networks Objectives Explain the role of active queue management in performance optimization of TCP/IP networks Learn a range of active queue management algorithms

More information

On Packet Marking Function of Active Queue Management Mechanism: Should It Be Linear, Concave, or Convex?

On Packet Marking Function of Active Queue Management Mechanism: Should It Be Linear, Concave, or Convex? On Packet Marking Function of Active Queue Management Mechanism: Should It Be Linear, Concave, or Convex? Hiroyuki Ohsaki and Masayuki Murata Graduate School of Information Science and Technology Osaka

More information

Analysis and Detection of a Denial-of-Service Attack Scenario generated by TCP Receivers to Edge Network

Analysis and Detection of a Denial-of-Service Attack Scenario generated by TCP Receivers to Edge Network Analysis and Detection of a Denial-of-Service Attack Scenario generated by TCP Receivers to Edge Network V. Anil Kumar 1 and Dorgham Sisalem 2 (anil@cmmacs.ernet.in, sisalem@fokus.fhg.de) 1 CSIR Centre

More information

Using median filtering in active queue management for telecommunication networks

Using median filtering in active queue management for telecommunication networks Using median filtering in active queue management for telecommunication networks Sorin ZOICAN *, Ph.D. Cuvinte cheie. Managementul cozilor de aşteptare, filtru median, probabilitate de rejectare, întârziere.

More information

Practical Appraisal of Distinguish Active Queue Management Algorithms

Practical Appraisal of Distinguish Active Queue Management Algorithms 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. 4, Issue. 5, May 2015, pg.496

More information

An Adaptive RIO (A-RIO) Queue Management Algorithm

An Adaptive RIO (A-RIO) Queue Management Algorithm An Adaptive RIO (A-RIO) Queue Management Algorithm Julio Orozco 1,2 and David Ros 1 1 GET/ENST Bretagne, Rue de la Châtaigneraie, CS 1767, 35576 Cesson Sévigné Cedex, France 2 IRISA/INRIA Rennes, Campus

More information

Improving the Performance of TCP Using Window Adjustment Procedure and Bandwidth Estimation

Improving the Performance of TCP Using Window Adjustment Procedure and Bandwidth Estimation Improving the Performance of TCP Using Window Adjustment Procedure and Bandwidth Estimation R.Navaneethakrishnan Assistant Professor (SG) Bharathiyar College of Engineering and Technology, Karaikal, India.

More information

TCP/IP Over Lossy Links - TCP SACK without Congestion Control

TCP/IP Over Lossy Links - TCP SACK without Congestion Control Wireless Random Packet Networking, Part II: TCP/IP Over Lossy Links - TCP SACK without Congestion Control Roland Kempter The University of Alberta, June 17 th, 2004 Department of Electrical And Computer

More information

AN ACTIVE QUEUE MANAGEMENT ALGORITHM FOR REDUCING PACKET LOSS RATE

AN ACTIVE QUEUE MANAGEMENT ALGORITHM FOR REDUCING PACKET LOSS RATE Maematical and Computational Applications, Vol. 4, No., pp. 65-72, 29. Association for Scientific Research AN ACTIVE QUEUE MANAGEMENT ALGORITHM OR REDUCING PACKET LOSS RATE Babek Abbasov Department of

More information

Analyzing Marking Mod RED Active Queue Management Scheme on TCP Applications

Analyzing Marking Mod RED Active Queue Management Scheme on TCP Applications 212 International Conference on Information and Network Technology (ICINT 212) IPCSIT vol. 7 (212) (212) IACSIT Press, Singapore Analyzing Marking Active Queue Management Scheme on TCP Applications G.A.

More information

Active Queue Management

Active Queue Management Active Queue Management TELCOM2321 CS2520 Wide Area Networks Dr. Walter Cerroni University of Bologna Italy Visiting Assistant Professor at SIS, Telecom Program Slides partly based on Dr. Znati s material

More information

Active Queue Management A router based control mechanism

Active Queue Management A router based control mechanism Active Queue Management A router based control mechanism Chrysostomos Koutsimanis B.Sc. National Technical University of Athens Pan Gan Park B.Sc. Ajou University Abstract In this report we are going to

More information

Fuzzy Active Queue Management for Assured Forwarding Traffic in Differentiated Services Network

Fuzzy Active Queue Management for Assured Forwarding Traffic in Differentiated Services Network Fuzzy Active Management for Assured Forwarding Traffic in Differentiated Services Network E.S. Ng, K.K. Phang, T.C. Ling, L.Y. Por Department of Computer Systems & Technology Faculty of Computer Science

More information

REM: Active Queue Management

REM: Active Queue Management : Active Queue Management Sanjeewa Athuraliya and Steven H. Low, California Institute of Technology Victor H. Li and Qinghe Yin, CUBIN, University of Melbourne Abstract We describe a new active queue management

More information

Adaptive Head-to-Tail: Active Queue Management based on implicit congestion signals

Adaptive Head-to-Tail: Active Queue Management based on implicit congestion signals Adaptive Head-to-Tail: Active Queue Management based on implicit congestion signals Stylianos Dimitriou, Vassilis Tsaoussidis Department of Electrical and Computer Engineering Democritus University of

More information

Performance Analysis Of Active Queue Management (AQM) In VOIP Using Different Voice Encoder Scheme

Performance Analysis Of Active Queue Management (AQM) In VOIP Using Different Voice Encoder Scheme Performance Analysis Of Active Queue Management (AQM) In VOIP Using Different Voice Encoder Scheme Samir Eid Mohammed, Mohamed H. M. Nerma Abstract: Voice over Internet Protocol (VoIP) is a rapidly growing

More information

Seamless Congestion Control over Wired and Wireless IEEE 802.11 Networks

Seamless Congestion Control over Wired and Wireless IEEE 802.11 Networks Seamless Congestion Control over Wired and Wireless IEEE 802.11 Networks Vasilios A. Siris and Despina Triantafyllidou Institute of Computer Science (ICS) Foundation for Research and Technology - Hellas

More information

Protagonist International Journal of Management And Technology (PIJMT) Online ISSN- 2394-3742. Vol 2 No 3 (May-2015) Active Queue Management

Protagonist International Journal of Management And Technology (PIJMT) Online ISSN- 2394-3742. Vol 2 No 3 (May-2015) Active Queue Management Protagonist International Journal of Management And Technology (PIJMT) Online ISSN- 2394-3742 Vol 2 No 3 (May-2015) Active Queue Management For Transmission Congestion control Manu Yadav M.Tech Student

More information

Network congestion, its control and avoidance

Network congestion, its control and avoidance MUHAMMAD SALEH SHAH*, ASIM IMDAD WAGAN**, AND MUKHTIAR ALI UNAR*** RECEIVED ON 05.10.2013 ACCEPTED ON 09.01.2014 ABSTRACT Recent years have seen an increasing interest in the design of AQM (Active Queue

More information

Improving Internet Quality of Service through Active Queue Management in Routers

Improving Internet Quality of Service through Active Queue Management in Routers www.ijcsi.org 279 Improving Internet Quality of Service through Active Queue Management in Routers Gamal Attiya 1 and Heba El-Khobby 2 1 Dept. of Computer Science and Engineering, Faculty of Electronic

More information

Adaptive CHOKe: An algorithm to increase the fairness in Internet Routers

Adaptive CHOKe: An algorithm to increase the fairness in Internet Routers 382 Adaptive CHOKe: An algorithm to increase the fairness in Internet Routers K.Chitra Assistant Professor of Computer Science, D.J. Academy for Managerial Excellence Coimbatore, Tamil Nadu, India. Email:

More information

Active Queue Management (AQM) based Internet Congestion Control

Active Queue Management (AQM) based Internet Congestion Control Active Queue Management (AQM) based Internet Congestion Control October 1 2002 Seungwan Ryu (sryu@eng.buffalo.edu) PhD Student of IE Department University at Buffalo Contents Internet Congestion Control

More information

Survey on AQM Congestion Control Algorithms

Survey on AQM Congestion Control Algorithms Survey on AQM Congestion Control Algorithms B. Kiruthiga 1, Dr. E. George Dharma Prakash Raj 2 1 School of Computer Science and Engineering, Bharathidasan University, Trichy, India 2 School of Computer

More information

Investigation and Comparison of MPLS QoS Solution and Differentiated Services QoS Solutions

Investigation and Comparison of MPLS QoS Solution and Differentiated Services QoS Solutions Investigation and Comparison of MPLS QoS Solution and Differentiated Services QoS Solutions Steve Gennaoui, Jianhua Yin, Samuel Swinton, and * Vasil Hnatyshin Department of Computer Science Rowan University

More information

LRU-RED: An active queue management scheme to contain high bandwidth flows at congested routers

LRU-RED: An active queue management scheme to contain high bandwidth flows at congested routers LRU-RED: An active queue management scheme to contain high bandwidth flows at congested routers Smitha A. L. Narasimha Reddy Dept. of Elec. Engg., Texas A & M University, College Station, TX 77843-3128,

More information

Performance Evaluation of Active Queue Management Using a Hybrid Approach

Performance Evaluation of Active Queue Management Using a Hybrid Approach 1196 JOURNAL OF COMPUTERS, VOL. 7, NO. 5, MAY 2012 Performance Evaluation of Active Queue Management Using a Hybrid Approach Chin-Ling Chen* Chia-Chun Yu Department of Information Management, National

More information

Chapter 4. VoIP Metric based Traffic Engineering to Support the Service Quality over the Internet (Inter-domain IP network)

Chapter 4. VoIP Metric based Traffic Engineering to Support the Service Quality over the Internet (Inter-domain IP network) Chapter 4 VoIP Metric based Traffic Engineering to Support the Service Quality over the Internet (Inter-domain IP network) 4.1 Introduction Traffic Engineering can be defined as a task of mapping traffic

More information

shakeel_1965@yahoo.com, adli@cs.usm.my, bashahmad@gmail.com, hossamjanwer@yahoo.com

shakeel_1965@yahoo.com, adli@cs.usm.my, bashahmad@gmail.com, hossamjanwer@yahoo.com COMPARATIVE STUDY OF CONGESTION CONTROL TECHNIQUES IN HIGH SPEED NETWORKS SHAKEEL AHMAD, 2, ADLI MUSTAFA, BASHIR AHMAD 2, ARJAMAND BANO 3 AND AL-SAMMARRAIE HOSAM 4 School of Mathematical Sciences, University

More information

TCP based Denial-of-Service Attacks to Edge Network: Analysis and Detection

TCP based Denial-of-Service Attacks to Edge Network: Analysis and Detection TCP based Denial-of-Service Attacks to Edge Network: Analysis and Detection V. Anil Kumar 1 and Dorgham Sisalem 2 1 CSIR Centre for Mathematical Modelling and Computer Simulation, Bangalore, India 2 Fraunhofer

More information

The Effects of Active Queue Management and Explicit Congestion Notification on Web Performance

The Effects of Active Queue Management and Explicit Congestion Notification on Web Performance The Effects of Active Queue Management and Explicit Congestion Notification on Web Performance Long Le Jay Aikat Kevin Jeffay F. Donelson Smith Department of Computer Science University of North Carolina

More information

Analysis of Internet Transport Service Performance with Active Queue Management in a QoS-enabled Network

Analysis of Internet Transport Service Performance with Active Queue Management in a QoS-enabled Network University of Helsinki - Department of Computer Science Analysis of Internet Transport Service Performance with Active Queue Management in a QoS-enabled Network Oriana Riva oriana.riva@cs.helsinki.fi Contents

More information

SJBIT, Bangalore, KARNATAKA

SJBIT, Bangalore, KARNATAKA A Comparison of the TCP Variants Performance over different Routing Protocols on Mobile Ad Hoc Networks S. R. Biradar 1, Subir Kumar Sarkar 2, Puttamadappa C 3 1 Sikkim Manipal Institute of Technology,

More information

A Novel Aggressiveness-Prevention Scheme in 4G Flat-Rate Pricing

A Novel Aggressiveness-Prevention Scheme in 4G Flat-Rate Pricing A Novel Aggressiveness-Prevention Scheme in 4G Flat-Rate Pricing Business Model 1 *1 Department of Finance, Graduate Institute of Business and Management, National Formosa University E-Mail: cfli@nfu.edu.tw;

More information

Packet Queueing Delay

Packet Queueing Delay Some Active Queue Management Methods for Controlling Packet Queueing Delay Mahmud H. Etbega Mohamed, MSc PhD 2009 Design and Performance Evaluation of Some New Versions of Active Queue Management Schemes

More information

Quality of Service using Traffic Engineering over MPLS: An Analysis. Praveen Bhaniramka, Wei Sun, Raj Jain

Quality of Service using Traffic Engineering over MPLS: An Analysis. Praveen Bhaniramka, Wei Sun, Raj Jain Praveen Bhaniramka, Wei Sun, Raj Jain Department of Computer and Information Science The Ohio State University 201 Neil Ave, DL39 Columbus, OH 43210 USA Telephone Number: +1 614-292-3989 FAX number: +1

More information

EVALUATION OF ACTIVE QUEUE MANAGEMENT ALGORITHMS

EVALUATION OF ACTIVE QUEUE MANAGEMENT ALGORITHMS İstanbul Ticaret Üniversitesi Fen Bilimleri Dergisi Yıl:4 Sayı:7 Bahar 2005/1 s.123-140 EVALUATION OF ACTIVE QUEUE MANAGEMENT ALGORITHMS Serhat ÖZEKES * ABSTRACT Active Queue Management (AQM) is a very

More information

TCP, Active Queue Management and QoS

TCP, Active Queue Management and QoS TCP, Active Queue Management and QoS Don Towsley UMass Amherst towsley@cs.umass.edu Collaborators: W. Gong, C. Hollot, V. Misra Outline motivation TCP friendliness/fairness bottleneck invariant principle

More information

Adaptive or Active Queue Management

Adaptive or Active Queue Management Adaptive or Active Queue Management Prof. C. Tschudin, M. Sifalakis, T. Meyer, & M. Monti University of Basel Cs321 - HS 2013 Overview Queue management inside Internet s routers Issues arising with queue

More information

Queuing Algorithms Performance against Buffer Size and Attack Intensities

Queuing Algorithms Performance against Buffer Size and Attack Intensities Global Journal of Business Management and Information Technology. Volume 1, Number 2 (2011), pp. 141-157 Research India Publications http://www.ripublication.com Queuing Algorithms Performance against

More information

International Journal of Scientific & Engineering Research, Volume 6, Issue 7, July-2015 1169 ISSN 2229-5518

International Journal of Scientific & Engineering Research, Volume 6, Issue 7, July-2015 1169 ISSN 2229-5518 International Journal of Scientific & Engineering Research, Volume 6, Issue 7, July-2015 1169 Comparison of TCP I-Vegas with TCP Vegas in Wired-cum-Wireless Network Nitin Jain & Dr. Neelam Srivastava Abstract

More information

Quality of Service versus Fairness. Inelastic Applications. QoS Analogy: Surface Mail. How to Provide QoS?

Quality of Service versus Fairness. Inelastic Applications. QoS Analogy: Surface Mail. How to Provide QoS? 18-345: Introduction to Telecommunication Networks Lectures 20: Quality of Service Peter Steenkiste Spring 2015 www.cs.cmu.edu/~prs/nets-ece Overview What is QoS? Queuing discipline and scheduling Traffic

More information

The Role of Packet-dropping Mechanisms in QoS Differentiation

The Role of Packet-dropping Mechanisms in QoS Differentiation The Role of Packet-dropping Mechanisms in QoS Differentiation Goncalo Quadros, Antonio Alves, Edmundo Monteiro, Fernando Boavida CISUC Centro de Informática e Sistemas da Universidade de Coimbra Departamento

More information

NEW ACTIVE QUEUE MANAGEMENT MECHANISM FOR REDUCING PACKET LOSS RATE

NEW ACTIVE QUEUE MANAGEMENT MECHANISM FOR REDUCING PACKET LOSS RATE NEW ACTIVE QUEUE MANAGEMENT MECHANISM FOR REDUCING PACKET LOSS RATE Mrs S. Malarvizhi Professor, Department of M.C.A, K.S.Rangasamy College of Technology, Tiruchengode -637215 E-Mail: smalarvizzhi@yahoo.com

More information

Requirements for Simulation and Modeling Tools. Sally Floyd NSF Workshop August 2005

Requirements for Simulation and Modeling Tools. Sally Floyd NSF Workshop August 2005 Requirements for Simulation and Modeling Tools Sally Floyd NSF Workshop August 2005 Outline for talk: Requested topic: the requirements for simulation and modeling tools that allow one to study, design,

More information

Adaptive RED: An Algorithm for Increasing the Robustness of RED s Active Queue Management. by Ramakrishna Gummadi.

Adaptive RED: An Algorithm for Increasing the Robustness of RED s Active Queue Management. by Ramakrishna Gummadi. Adaptive RED: An Algorithm for Increasing the Robustness of RED s Active Queue Management by Ramakrishna Gummadi Research Project Submitted to the Department of Electrical Engineering and Computer Sciences,

More information

Active Queue Management for Flow Fairness and Queue Stability

Active Queue Management for Flow Fairness and Queue Stability 1 Active Queue Management for Flow Fairness and Queue Stability Jong-hwan Kim, Hyunsoo Yoon and Ikjun Yeom Abstract Two major goals of queue management are flow fairness and queue stability. However, most

More information

The Interaction of Forward Error Correction and Active Queue Management

The Interaction of Forward Error Correction and Active Queue Management The Interaction of Forward Error Correction and Active Queue Management Tigist Alemu, Yvan Calas, and Alain Jean-Marie LIRMM UMR 5506 CNRS and University of Montpellier II 161, Rue Ada, 34392 Montpellier

More information

Comparing Different Active Queue Management Techniques

Comparing Different Active Queue Management Techniques International Journal of Emerging Research in Management &Technology Research Article May 2015 Comparing Different Active Queue Management Techniques Nancy Research Scholar, Department of Computer Science

More information

SHIV SHAKTI International Journal of in Multidisciplinary and Academic Research (SSIJMAR) Vol. 4, No. 3, June 2015 (ISSN 2278 5973)

SHIV SHAKTI International Journal of in Multidisciplinary and Academic Research (SSIJMAR) Vol. 4, No. 3, June 2015 (ISSN 2278 5973) SHIV SHAKTI International Journal of in Multidisciplinary and Academic Research (SSIJMAR) Vol. 4, No. 3, June 2015 (ISSN 2278 5973) RED Routing Algorithm in Active Queue Management for Transmission Congesstion

More information

Assessment of Active Queue Management algorithms by using NS2 simulator

Assessment of Active Queue Management algorithms by using NS2 simulator ISSN : 2248-9622, Vol. 4, Issue 3( Version 1), March 214, pp.798-82 RESEARCH ARTICLE Assessment of Active Queue Management algorithms by using NS2 simulator Kamal Preet Kaur*, Navdeep Kaur**, Gurjeevan

More information

Router-assisted congestion control. Lecture 8 CS 653, Fall 2010

Router-assisted congestion control. Lecture 8 CS 653, Fall 2010 Router-assisted congestion control Lecture 8 CS 653, Fall 2010 TCP congestion control performs poorly as bandwidth or delay increases Shown analytically in [Low01] and via simulations Avg. TCP Utilization

More information

Delay-Based Early Congestion Detection and Adaptation in TCP: Impact on web performance

Delay-Based Early Congestion Detection and Adaptation in TCP: Impact on web performance 1 Delay-Based Early Congestion Detection and Adaptation in TCP: Impact on web performance Michele C. Weigle Clemson University Clemson, SC 29634-196 Email: mweigle@cs.clemson.edu Kevin Jeffay and F. Donelson

More information

XCP-i : explicit Control Protocol for heterogeneous inter-networking of high-speed networks

XCP-i : explicit Control Protocol for heterogeneous inter-networking of high-speed networks : explicit Control Protocol for heterogeneous inter-networking of high-speed networks D. M. Lopez-Pacheco INRIA RESO/LIP, France Email: dmlopezp@ens-lyon.fr C. Pham, Member, IEEE LIUPPA, University of

More information

Active Queue Management

Active Queue Management Active Queue Management Rong Pan Cisco System EE384y Spring Quarter 2006 Outline Queue Management Drop as a way to feedback to TCP sources Part of a closed-loop Traditional Queue Management Drop Tail Problems

More information

Congestion Control Using Multilevel Explicit Congestion Notification

Congestion Control Using Multilevel Explicit Congestion Notification Vol. 3 IPSJ Digital Courier Feb. 2007 Regular Paper Congestion Control Using Multilevel Explicit Congestion Notification Arjan Durresi, 1 Leonard Barolli, 2 Raj Jain 3 and Makoto Takizawa 4 Congestion

More information

Lecture Objectives. Lecture 07 Mobile Networks: TCP in Wireless Networks. Agenda. TCP Flow Control. Flow Control Can Limit Throughput (1)

Lecture Objectives. Lecture 07 Mobile Networks: TCP in Wireless Networks. Agenda. TCP Flow Control. Flow Control Can Limit Throughput (1) Lecture Objectives Wireless and Mobile Systems Design Lecture 07 Mobile Networks: TCP in Wireless Networks Describe TCP s flow control mechanism Describe operation of TCP Reno and TCP Vegas, including

More information

Impact of DDoS Attacks on Different Services Using Various AQM Techniques

Impact of DDoS Attacks on Different Services Using Various AQM Techniques International Journal of Computer Sciences and ngineering Open Access Research aper Volume-, Issue- -ISS: - Impact of DDoS Attacks on Different Services Using Various AQM echniques Arshdeep Singh *, akhvinder

More information

Bandwidth Allocation for Non-Responsive Flows with Active Queue Management

Bandwidth Allocation for Non-Responsive Flows with Active Queue Management Bandwidth Allocation for Non-Responsive Flows with Active Queue Management Ed Bowen, Clark Jeffries IBM Microelectronics, Research Triangle Park, NC 27709, USA edbowen,clajef @us.ibm.com Lukas Kencl, Andreas

More information

Australian Journal of Basic and Applied Sciences. Fuzzy Based Active Queue Management In Distributed Wireless Network.

Australian Journal of Basic and Applied Sciences. Fuzzy Based Active Queue Management In Distributed Wireless Network. ISSN:1991-8178 Australian Journal of Basic and Applied Sciences Journal home page: www.ajbasweb.com Fuzzy Based Active Queue Management In Distributed Wireless Network. B.Shajahan Associate Professor /

More information

Performance Evaluation of AQM Techniques in PIM-DM Multicast Network for SRM Protocol

Performance Evaluation of AQM Techniques in PIM-DM Multicast Network for SRM Protocol Performance Evaluation of AQM Techniques in PIM-DM Multicast Network for SRM Protocol Shaveta Harsh K Verma Ashish Kumar ABSTRACT The focus of this work is to study the behavior of various queue management

More information

Buffer Management Schemes for Supporting TCP in Gigabit Routers with Per-flow Queueing

Buffer Management Schemes for Supporting TCP in Gigabit Routers with Per-flow Queueing Buffer Management Schemes for Supporting TCP in Gigabit Routers with Per-flow Queueing B. Suter, T. V. Lakshman, D. Stiliadis, and A. K. Choudhury Abstract Recently, there has been much interest in using

More information

SFED: A Rate Control Based Active Queue Management Discipline

SFED: A Rate Control Based Active Queue Management Discipline IBM IRL RESEARCH REPORT SFED: A Rate Control Based Active Queue Management Discipline Abhinav Kamra, Sundeep Kapila, Varun Khurana, Vikas Yadav, Rajeev Shorey, Huzur Saran & Sandeep uneja. IBM India Research

More information

La couche transport dans l'internet (la suite TCP/IP)

La couche transport dans l'internet (la suite TCP/IP) La couche transport dans l'internet (la suite TCP/IP) C. Pham Université de Pau et des Pays de l Adour Département Informatique http://www.univ-pau.fr/~cpham Congduc.Pham@univ-pau.fr Cours de C. Pham,

More information

# % # % & &( ) & & + ) ),,, ) & & ## )&&. ),,, ) & & ## )&&. / 012 3 2/1 4 ) (.

# % # % & &( ) & & + ) ),,, ) & & ## )&&. ),,, ) & & ## )&&. / 012 3 2/1 4 ) (. ! # % # % & &( ) & & + ) ),,, ) & & ## )&&. ),,, ) & & ## )&&. / 012 3 2/1 4 ) (. 5 Controlling TCP Incast Congestion in Data Centre Networks Akintomide Adesanmi Lotfi Mhamdi School of Electronic and Electrical

More information

Bandwidth Allocation for Non-Responsive Flows with Active Queue Management

Bandwidth Allocation for Non-Responsive Flows with Active Queue Management Bandwidth Allocation for Non-Responsive Flows with Active Queue Management Ed Bowen, Clark Jeffries IBM Microelectronics, Research Triangle Park, NC 27709, USA edbowen,clajef @us.ibm.com Lukas Kencl, Andreas

More information

RBA-RIO Rate Based Adaptive Red With In and Out. Algorithm for DiffServ AF PHB

RBA-RIO Rate Based Adaptive Red With In and Out. Algorithm for DiffServ AF PHB RBA-RIO Rate Based Adaptive Red With In and Out Algorithm for DiffServ AF PHB Zhang Mgjie Zhu Peidong Su Jshu Lu Xicheng School of Computer, National University of Defense Technology, Changsha 410073,

More information

Dynamic Congestion-Based Load Balanced Routing in Optical Burst-Switched Networks

Dynamic Congestion-Based Load Balanced Routing in Optical Burst-Switched Networks Dynamic Congestion-Based Load Balanced Routing in Optical Burst-Switched Networks Guru P.V. Thodime, Vinod M. Vokkarane, and Jason P. Jue The University of Texas at Dallas, Richardson, TX 75083-0688 vgt015000,

More information

TCP over Wireless Networks

TCP over Wireless Networks TCP over Wireless Networks Raj Jain Professor of Computer Science and Engineering Washington University in Saint Louis Saint Louis, MO 63130 Audio/Video recordings of this lecture are available at: http://www.cse.wustl.edu/~jain/cse574-10/

More information

Performance evaluation of TCP connections in ideal and non-ideal network environments

Performance evaluation of TCP connections in ideal and non-ideal network environments Computer Communications 24 2001) 1769±1779 www.elsevier.com/locate/comcom Performance evaluation of TCP connections in ideal and non-ideal network environments Hala ElAarag, Mostafa Bassiouni* School of

More information

Why Congestion Control. Congestion Control and Active Queue Management. Max-Min Fairness. Fairness

Why Congestion Control. Congestion Control and Active Queue Management. Max-Min Fairness. Fairness Congestion Control and Active Queue Management Congestion Control, Efficiency and Fairness Analysis of TCP Congestion Control A simple TCP throughput formula RED and Active Queue Management How RED wors

More information

A Framework For Evaluating Active Queue Management Schemes

A Framework For Evaluating Active Queue Management Schemes A Framework For Evaluating Active Queue Management Schemes Arkaitz Bitorika, Mathieu Robin, Meriel Huggard Department of Computer Science Trinity College Dublin, Ireland Email: {bitorika, robinm, huggardm}@cs.tcd.ie

More information

Data Networks Summer 2007 Homework #3

Data Networks Summer 2007 Homework #3 Data Networks Summer Homework # Assigned June 8, Due June in class Name: Email: Student ID: Problem Total Points Problem ( points) Host A is transferring a file of size L to host B using a TCP connection.

More information

4 High-speed Transmission and Interoperability

4 High-speed Transmission and Interoperability 4 High-speed Transmission and Interoperability Technology 4-1 Transport Protocols for Fast Long-Distance Networks: Comparison of Their Performances in JGN KUMAZOE Kazumi, KOUYAMA Katsushi, HORI Yoshiaki,

More information

Chapter 6 Congestion Control and Resource Allocation

Chapter 6 Congestion Control and Resource Allocation Chapter 6 Congestion Control and Resource Allocation 6.3 TCP Congestion Control Additive Increase/Multiplicative Decrease (AIMD) o Basic idea: repeatedly increase transmission rate until congestion occurs;

More information

Effects of Filler Traffic In IP Networks. Adam Feldman April 5, 2001 Master s Project

Effects of Filler Traffic In IP Networks. Adam Feldman April 5, 2001 Master s Project Effects of Filler Traffic In IP Networks Adam Feldman April 5, 2001 Master s Project Abstract On the Internet, there is a well-documented requirement that much more bandwidth be available than is used

More information

An enhanced TCP mechanism Fast-TCP in IP networks with wireless links

An enhanced TCP mechanism Fast-TCP in IP networks with wireless links Wireless Networks 6 (2000) 375 379 375 An enhanced TCP mechanism Fast-TCP in IP networks with wireless links Jian Ma a, Jussi Ruutu b and Jing Wu c a Nokia China R&D Center, No. 10, He Ping Li Dong Jie,

More information

Cable Modem Buffer Management in DOCSIS Networks

Cable Modem Buffer Management in DOCSIS Networks Cable Modem Buffer Management in DOCSIS Networks Jim Martin, James Westall School of Computing Clemson University Clemson, SC jim.martin,westall @cs.clemson.edu Terry Shaw, Greg White CableLabs Louisville,

More information

Adaptive RED: An Algorithm for Increasing the Robustness of RED s Active Queue Management

Adaptive RED: An Algorithm for Increasing the Robustness of RED s Active Queue Management Adaptive RED: An Algorithm for Increasing the Robustness of RED s Active Queue Management Sally Floyd, Ramakrishna Gummadi, and Scott Shenker AT&T Center for Internet Research at ICSI August 1, 21, under

More information

Active Queue Management of TCP Flows with Self-scheduled Linear Parameter Varying Controllers

Active Queue Management of TCP Flows with Self-scheduled Linear Parameter Varying Controllers IT J OMPUT OMMU, ISS 1841-9836 8(6):838-844, December, 213. Active Queue Management of TP Flows with Self-scheduled Linear Parameter Varying ontrollers. Kasnakoglu osku Kasnakoglu TOBB University of Economics

More information

Mitigating Congestion-Based Denial of Service Attacks with Active Queue Management

Mitigating Congestion-Based Denial of Service Attacks with Active Queue Management Mitigating Congestion-Based Denial of Service Attacks with Active Queue Management Harkeerat Bedi Dept of Computer Science University of Memphis Memphis, Tennessee 38152 Email: hsbedi@memphisedu Sankardas

More information

Edge-based active queue management

Edge-based active queue management Edge-based active queue management L. Zhu, N. Ansari, G. Cheng and K. Xu Abstract: In the paper, a new framework of active queue management, namely, edge-based active queue management (), is proposed.

More information

Robustness to Packet Reordering in High-speed Networks

Robustness to Packet Reordering in High-speed Networks 13 Robustness to Packet Reordering in High-speed Networks Sumitha Bhandarkar and A. L. Narasimha Reddy Dept. of Electrical and Computer Engineering Texas A & M University sumitha,reddy @ee.tamu.edu Abstract

More information