Active Queue Management and Wireless Networks

Size: px
Start display at page:

Download "Active Queue Management and Wireless Networks"

Transcription

1 Active Queue Management and Wireless Networks Vikas Paliwal November 13, Introduction Considerable research has been done on internet dynamics and it has been shown that TCP s congestion avoidance mechanisms, while necessary and powerful, are not sufficient to provide good service in all circumstances. Basically, there is a limit to how much control can be accomplished from the edges of the network. Some mechanisms are needed in the routers to complement the endpoint congestion avoidance mechanisms. It is here that, active queue management(aqm) [1], an advanced form of router queue management that provides significant Internet performance improvement, comes into picture. Several techniques for AQM are available in the existing literature with varying degrees of efficacy. In this work, I will bring out the salient features of some of these techniques. Also, since our future work is to develop an effective congestion control mechanism for wireless networks, we will delve into new challenges posed by wireless networks in terms of congestion and AQM as opposed to wired networks. 2 Need for AQM The traditional technique for managing the router queues is to set a maximum length for each queue and, accept packets for the queue until the maximum length is reached, then reject subsequent packets. This technique is known as tail drop. Such queues suffer from several drawbacks like lock-out and full queues. AQM techniques address these issues and offer the following enhancements: Reduction in number of packets dropped using some queue management principle instead of dropping greater packets only when a queue does overflow. AQM techniques, among other targets, aim for keeping the average queue size small and hence reduce the delays seen by the flows. This is particularly important for interactive applications. 1

2 Prevention of lock-out behavior by ensuring that there will almost always be a buffer for an incoming packet. 3 AQM Techniques A greater interest in the field of router-level queue management was generated after the introduction of RED [2] algorithm. Subsequently, several variants of RED and other queue management algorithms were proposed offering improved performance. Some of the important proposed techniques are: 3.1 Random Early Detection (RED) RED technique make use of average queue length to avoid congestion. A REDbased router detects incipient congestion by computing the average queue size and if it exceeds a preset threshold, the router drops or marks each arriving packet with a certain probability, where the exact probability is a function of the average queue size. RED helps in keeping the average queue size low while allowing occassional bursts of packets in queue. Also, RED avoids the global synchronization of many connections decreasing their window at the same time. In RED, the average queue size is calculated using a low-pass filter with an exponential weighted moving average. The average queue size is compared to two thresholds, a minimum min th, and a maximum max th. When the average queue size is greater than the min th, no packets are marked, and when it exceeds max th, every arriving packet is marked. When the average queue size is between the maximum and the minimum threshold, each arriving packet is marked with a probability p a, where p a is a function of average queue size. Based on the basic framework in RED, several other forms of RED have been proposed: Adaptive RED, A-RED, adapts the value of maximum packet-marking probability, p b, to keeep the target average queue size between min th and max th [3]. Balanced RED, B-RED, drops packets based on the buffer occupancy of the flow, to achieve a more balanced bandwidth allocation in the presence of non-adaptive traffic [4]. RED with Preferential Drop, RED-PD, uses the packet drop history at the router to detect high-bandwidth flows in times of congestion, and preferentially drops packets from these high-bandwidth flows to control the bandwidth received by these flows at the congested queue [5]. Fair RED, FRED, uses per-active-connection accounting to make different dropping decisions for connections with different bandwidth usages [6]. 2

3 3.2 Random Exponential Marking :REM REM [7], offers high utilization and negligible loss and delay in a simple and scalable manner. It attempts to match user rates to network capacity while clearing buffers. Each queue that implements REM maintains a variable, price, as a congestion measure. Price is updated, periodically or asynchronously, based on rate mismatch (i.e. difference between input rate and link capacity) and queue mismatch(i.e. difference between queue length and target). The variable price is used to determine the marking probability. Also, REM uses sum of the link prices along a path as a measure of congestion in the path and embeds this into end-to-end marking probability. 3.3 Virtual Queue based AQM In this approach, a virtual queue [8] is maintained and is used in marking of packets. The router maintains a virtual queue with a capacity less than the capacity of the real queue and whose buffer size is equal to its real counterpart. Upon each packet arrival, fictitious packet is enqueued in the virtual queue if there is sufficient space in the buffer. If new packet overflows the virtual buffer, then the packet is discarded in virtual buffer and the real packet is marked by setting its ECN bit. This is easily implemented in an analogous manner to token bucket. However in an adaptive version [9] of this scheme, the virtual queue capacity is updated according to an equation and is dynamically adjusted offering greater utilization. 3.4 BLUE Algorithm BLUE [10] performs queue management based directly on packet loss and link utilization rather than on the instantaneous average queue length as in RED. BLUE maintains a single probability, p m, which it uses to mark (or drop) packets when they are enqueued. If the queue is continually dropping packets due to buffer overflow, BLUE increments p m, thus increasing the rate at which it sends back congestion notification. Conversely, if the queue becomes empty or if the link is idle, BLUE dcreases its marking probability. Thus BLUE learns the correct rate it needs to send back congestion notification. As an extension, Stochastic Fair BLUE (SFB), is an algorithm which can identify and rate-limit non-responsive flows using a very small amount of state information. 4 AQM in CDMA2000 Networks After having seen the various AQM schemes, it would be worthwhile to look at their effectiveness in the networks of our interest - CDMA data networks. With an expected increase in the data traffic on CDMA networks, congestion 3

4 at various levels on these networks becomes an issue. In a CDMA network, as apart from a fully wired network, congestion control mechanisms have to address additional problems like: The packet losses on the wireless link are hidden, so that the source only sees congestion induced losses. This is achieved by various techniques like error control, local retransmission that have various impacts on the TCP viz. increase in round-trip-time (RTT) and need to be seen from a fresher perspective. AQM can not be implemented at all the links in a CDMA network. Parts of the network especially, the base-stations (BTSs) and, to an extent, the base station controllers (BSCs), as opposed to routers in a wired networks, are minimal packet forwarding entities and are incapable of implementing computationally intensive AQM schemes. The network traffic is composed of both congestion-control compliant traffic like TCP and greedy, rogue traffic like CBR video, UDP etc. It is essential to allocate the resources in a fair manner so that compliant TCP flows are not unnecessarily penalized and non-compliant flows do not hog the bandwidth. Also, the relative composition of the traffic is known best at the gateway and BSCs only and not at the BTSs. All this calls for some AQM (preferably on a per-flow-basis) at the gateway and the BSCs. Based on the issues as discussed, we can now work out an AQM scheme for CDMA networks. The gateway to external internet can go with the standard RED scheme. However, the BSC must exploit both, its knowledge of relative composition of network traffic and the buffer overflows on the queues to base stations in the forward link, in form of an elaborate per-flow-based AQM like FRED (Fair RED) or SFB (Stochastic Fair Blue). Among these two, FRED excels over SFB in terms of lesser implementation complexity and greater reported fairness. The only overhead is that of maintaining a large buffer for effective protection against non-responsive flows. BTSs do not implement any kind of AQM and remain mere packet forwarders on forward and reverse links. So, an AQM scheme with RED gateway to external internet and FRED BSCs can effectively address the issue of congestion control in CDMA networks. 5 Conclusion In this work, I looked into various possible AQM schemes. Also, I tried to develop an effective AQM scheme for CDMA networks and argued why such a scheme is preferrable. References [1] Braden B, Clark D, Crowcroft J, Davie B, Deering S, Estrin D, Floyd S, Jacobson V, Minshall G, Partridge C, Peterson L, Ramakrishnan K, Shenker 4

5 S, Wroclawski J, Zhang L., Recommendations on queue management and congestion avoidance in the Internet, RFC 2309, April [2] Floyd S, Jacobson V, Random early detection gateways for congestion avoidance, IEEE/ACM Transactions on Networking, Aug [3] Feng W, Kandlur D, Saha D, Shin K, Techniques for Eliminating Packet Loss in Congested TCP/IP Networks, U. Michigan CSE-TR , Nov [4] Anjum F, Tassiulas L, Balanced-RED: An Algorithm to Achieve Fairness in the Internet, Infocom 1999, March [5] Mahajan R, Floyd S, RED with Preferential Dropping (RED-PD), IEEE/ACM Transactions on Networking, Sept [6] Lin D, Morris R, Dynamics of Random Early Detection, SIGCOMM 97 [7] Athuraliya S, Li V, Low S, Yin Q, REM: Active Queue Management, IEEE Transactions on Network, May [8] Gibbens R, Kelly F, Distributed connection acceptance control for a connectionless network, Proc. of 16th Intl. Teletraffic Congress, Edinburgh, Scotland, June [9] Kunniyur S, Srikant R, Analysis and Design of an Adaptive Virtual Queue Algorithm for Active Queue Management, Proc. ACM Sigcomm [10] Feng W, Shin K, Kandlur D, Saha D, The BLUE Active Queue Management Algorithms, UM CSE-TR , [11] Kohler E, Handley M, Floyd S, Padhye J, Datagram Congestion Control Protocol (DCCP), Work in Progress, draft-ietf-dccp-spec-04, Jun

Performance improvement of active queue management with per-flow scheduling

Performance improvement of active queue management with per-flow scheduling 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 239

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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 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

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

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

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

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

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

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

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

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

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

Technical Report KOM-TR-2007-01. Submitted by. Kálmán Graffi, Konstantin Pussep, Nicolas Liebau, Ralf Steinmetz

Technical Report KOM-TR-2007-01. Submitted by. Kálmán Graffi, Konstantin Pussep, Nicolas Liebau, Ralf Steinmetz Technische Universität Darmstadt Department of Electrical Engineering and Information Technology Department of Computer Science (Adjunct Professor) Multimedia Communications Lab Prof. Dr.-Ing. Ralf Steinmetz

More information

1. The subnet must prevent additional packets from entering the congested region until those already present can be processed.

1. The subnet must prevent additional packets from entering the congested region until those already present can be processed. Congestion Control When one part of the subnet (e.g. one or more routers in an area) becomes overloaded, congestion results. Because routers are receiving packets faster than they can forward them, one

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

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

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

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

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

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

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

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

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

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

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

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

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

ROUTER CONTROL MECHANISM FOR CONGESTION AVOIDANCE IN CDMA BASED IP NETWORK

ROUTER CONTROL MECHANISM FOR CONGESTION AVOIDANCE IN CDMA BASED IP NETWORK International Journal of Information Technology and Knowledge Management July-December 2010, Volume 2, No. 2, pp. 465-470 ROUTER CONTROL MECHANISM FOR CONGESTION AVOIDANCE IN CDMA BASED IP NETWORK V.Sumalatha1

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

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

A Review on Congestion Control

A Review on Congestion Control A Review on Congestion Control B. Subramani 1 Dr. T. Karthikeyan 2 Head, Dept of Information Technology, Dr.N.G.P Arts and Science College, Coimbatore, India 1 Associate Professor, Dept of Computer Science,

More information

Recommendations on Queue Management and Congestion Avoidance in the Internet

Recommendations on Queue Management and Congestion Avoidance in the Internet Network Working Group Request for Comments: 2309 Category: Informational B. Braden, USC/ISI D. Clark, MIT LCS J. Crowcroft, UCL B. Davie, Cisco Systems S. Deering, Cisco Systems D. Estrin, USC S. Floyd,

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

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

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

Applying Active Queue Management to Link Layer Buffers for Real-time Traffic over Third Generation Wireless Networks

Applying Active Queue Management to Link Layer Buffers for Real-time Traffic over Third Generation Wireless Networks Applying Active Queue Management to Link Layer Buffers for Real-time Traffic over Third Generation Wireless Networks Jian Chen and Victor C.M. Leung Department of Electrical and Computer Engineering The

More information

A Survey On Active Queue Management Mechanisms

A Survey On Active Queue Management Mechanisms 130 IJCSNS International Journal of Computer Science and Network Security, VOL.8 No.12, December 2008 A Survey On Active Queue Management Mechanisms G.Thiruchelvi 1 and J.Raja 2, 1 Periyar Maniammai University,Thanjavur,Tamilnadu,India

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

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

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

Nonlinear RED: A simple yet efficient active queue management scheme q

Nonlinear RED: A simple yet efficient active queue management scheme q Computer Networks 50 (2006) 3784 3794 www.elsevier.com/locate/comnet Nonlinear RED: A simple yet efficient active queue management scheme q Kaiyu Zhou *, Kwan L. Yeung, Victor O.K. Li Department of Electrical

More information

On the Evolution of End-to-end Congestion Control in the Internet: An Idiosyncratic View

On the Evolution of End-to-end Congestion Control in the Internet: An Idiosyncratic View On the Evolution of End-to-end Congestion Control in the Internet: An Idiosyncratic View Sally Floyd IMA Workshop on Scaling Phenomena in Communication Networks October 1999 1 Outline of talk: The danger

More information

Network management and QoS provisioning - QoS in the Internet

Network management and QoS provisioning - QoS in the Internet QoS in the Internet Inernet approach is based on datagram service (best effort), so provide QoS was not a purpose for developers. Mainly problems are:. recognizing flows;. manage the issue that packets

More information

Modeling Active Queue Management algorithms using Stochastic Petri Nets

Modeling Active Queue Management algorithms using Stochastic Petri Nets Modeling Active Queue Management algorithms using Stochastic Petri Nets Master Thesis Author: S. Dijkstra Supervising committee: prof. dr. ir. B.R.H.M. Haverkort dr. ir. P.T. de Boer ir. N.D. van Foreest

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

Sizing Internet Router Buffers, Active Queue Management, and the Lur e Problem

Sizing Internet Router Buffers, Active Queue Management, and the Lur e Problem Sizing Internet Router Buffers, Active Queue Management, and the Lur e Problem Christopher M. Kellett, Robert N. Shorten, and Douglas J. Leith Abstract Recent work in sizing Internet router buffers has

More information

Random Early Detection Gateways for Congestion Avoidance

Random Early Detection Gateways for Congestion Avoidance Random Early Detection Gateways for Congestion Avoidance Sally Floyd and Van Jacobson Lawrence Berkeley Laboratory University of California floyd@eelblgov van@eelblgov To appear in the August 1993 IEEE/ACM

More information

Active Queue Management

Active Queue Management Course of Multimedia Internet (Sub-course Reti Internet Multimediali ), AA 2010-2011 Prof. 6. Active queue management Pag. 1 Active Queue Management Active Queue Management (AQM) is a feature that can

More information

How to Design and Test a Packet Drop Management System

How to Design and Test a Packet Drop Management System A Queue Management System for Differentiated- Services IP Routers Goncalo Quadros, Antonio Alves, Joao Silva, Henrique Matos, Edmundo Monteiro, Fernando Boavida CISUC Center for Informatics and Systems

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

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

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

AN IMPROVED SNOOP FOR TCP RENO AND TCP SACK IN WIRED-CUM- WIRELESS NETWORKS

AN IMPROVED SNOOP FOR TCP RENO AND TCP SACK IN WIRED-CUM- WIRELESS NETWORKS AN IMPROVED SNOOP FOR TCP RENO AND TCP SACK IN WIRED-CUM- WIRELESS NETWORKS Srikanth Tiyyagura Department of Computer Science and Engineering JNTUA College of Engg., pulivendula, Andhra Pradesh, India.

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

Achieving QoS for TCP traffic in Satellite Networks with Differentiated Services

Achieving QoS for TCP traffic in Satellite Networks with Differentiated Services 1 Achieving QoS for TCP traffic in Satellite Networks with Differentiated Services Arjan Durresi 1, Sastri Kota 2, Mukul Goyal 1, Raj Jain 3, Venkata Bharani 1 1 Department of Computer and Information

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

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

Active Queue Management in MANETs A Primer on Network Performance optimization

Active Queue Management in MANETs A Primer on Network Performance optimization Active Queue Management in MANETs A Primer on Network Performance optimization 1. Shallu Bedi, 2. Gagangeet Singh Aujla, 3. Sahil Vashist 1. Research Scholar, Department of CSE Chandigarh Engineering College,

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

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

Management. bohacek@eecis.udel.edu khushboo@usc.edu arce@ece.udel.edu. Mike Davis. davis@eecis.udel.edu

Management. bohacek@eecis.udel.edu khushboo@usc.edu arce@ece.udel.edu. Mike Davis. davis@eecis.udel.edu 1 Signal Processing Challenges in Active Queue Management Stephan Bohacek Khushboo Shah Gonzalo R. Arce bohacek@eecis.udel.edu khushboo@usc.edu arce@ece.udel.edu Mike Davis davis@eecis.udel.edu Dept. Electrical

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

Active Queue Management Design Using Discrete-Event Control

Active Queue Management Design Using Discrete-Event Control Active Queue Management Design Using Discrete-Event Control Xue Liu School of Computer Science, McGill Univeristy Montreal, QC, Canada, H3A 2A7 Email: xueliu@cs.mcgill.ca Wenbo He University of Illinois

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

Research Topics Typical Models Supporting Measurements AQM, scheduling, differentiated services. A dumbbell topology, with aggregate traffic.

Research Topics Typical Models Supporting Measurements AQM, scheduling, differentiated services. A dumbbell topology, with aggregate traffic. Internet Research Needs Better Models Sally Floyd Eddie Kohler ICSI Center for Internet Research, Berkeley, California {floyd, kohler}@icir.org 1 INTRODUCTION Networking researchers work from mental models

More information

Improving our Evaluation of Transport Protocols. Sally Floyd Hamilton Institute July 29, 2005

Improving our Evaluation of Transport Protocols. Sally Floyd Hamilton Institute July 29, 2005 Improving our Evaluation of Transport Protocols Sally Floyd Hamilton Institute July 29, 2005 Computer System Performance Modeling and Durable Nonsense A disconcertingly large portion of the literature

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

Transport Layer Protocols

Transport Layer Protocols Transport Layer Protocols Version. Transport layer performs two main tasks for the application layer by using the network layer. It provides end to end communication between two applications, and implements

More information

A Power Efficient QoS Provisioning Architecture for Wireless Ad Hoc Networks

A Power Efficient QoS Provisioning Architecture for Wireless Ad Hoc Networks A Power Efficient QoS Provisioning Architecture for Wireless Ad Hoc Networks Didem Gozupek 1,Symeon Papavassiliou 2, Nirwan Ansari 1, and Jie Yang 1 1 Department of Electrical and Computer Engineering

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

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

Quality of Service on the Internet: Evaluation of the IntServ Architecture on the Linux Operative System 1

Quality of Service on the Internet: Evaluation of the IntServ Architecture on the Linux Operative System 1 Quality of Service on the Internet: Evaluation of the IntServ Architecture on the Linux Operative System 1 Elisabete Reis elreis@dei.uc.pt Polytechnic Institute of Coimbra Fernando Melo fmelor@dei.uc.pt

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

Managing Fairness and Application Performance with Active Queue Management in DOCSIS-based Cable Networks

Managing Fairness and Application Performance with Active Queue Management in DOCSIS-based Cable Networks Managing Fairness and Application Performance with Active Queue Management in DOCSIS-based Cable Networks James Martin School of Computing Clemson University Clemson, South Carolina jim.martin@cs.clemson.edu

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

An Active Queue Management for High Bandwidth-Delay Product Networks

An Active Queue Management for High Bandwidth-Delay Product Networks International Journal of Computer Theory and Engineering, Vol. 5, No. 5, October 213 An Active Queue Management for High Bandwidth-Delay Product Networks Shahram Jamali and Seyed Reza Zahedi Abstract As

More information

Research of TCP ssthresh Dynamical Adjustment Algorithm Based on Available Bandwidth in Mixed Networks

Research of TCP ssthresh Dynamical Adjustment Algorithm Based on Available Bandwidth in Mixed Networks Research of TCP ssthresh Dynamical Adjustment Algorithm Based on Available Bandwidth in Mixed Networks 1 Wang Zhanjie, 2 Zhang Yunyang 1, First Author Department of Computer Science,Dalian University of

More information

TCP Trunking for Bandwidth Management of Aggregate Traffic

TCP Trunking for Bandwidth Management of Aggregate Traffic TCP Trunking for Bandwidth Management of Aggregate Traffic H.T. Kung kung@eecs.harvard.edu Division of Engineering and Applied Sciences Harvard University Cambridge, MA 02138, USA S.Y. Wang shieyuan@csie.nctu.edu.tw

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

Fair adaptive bandwidth allocation: a rate control based active queue management discipline q

Fair adaptive bandwidth allocation: a rate control based active queue management discipline q Fair adaptive bandwidth allocation: a rate control based active queue management discipline q Abhinav Kamra a, 1, Huzur Saran a, Sandeep Sen a, Rajeev Shorey b,*,2 a Department of Computer Science and

More information

WEB APPLICATION PERFORMANCE PREDICTION

WEB APPLICATION PERFORMANCE PREDICTION WEB APPLICATION PERFORMANCE PREDICTION H. Karlapudi and J. Martin Department of Computer Science Clemson University Clemson, SC 9-9 Email: hkarlap, jim.martin@cs.clemson.edu ABSTRACT In this paper, we

More information

Effectiveness of close-loop congestion controls for DDoS attacks

Effectiveness of close-loop congestion controls for DDoS attacks Effectiveness of close-loop congestion controls for DDoS attacks Takanori Komatsu and Akira Namatame Mathematics and Computer Science, National Defence Academy of Japan Hashirimizu 1-10-20Yokosuka-shi,

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

Fair Stateless Aggregate Traffic Marking using. Active Queue Management Techniques

Fair Stateless Aggregate Traffic Marking using. Active Queue Management Techniques Fair Stateless Aggregate Traffic Marking using Active Queue Management Techniques Abhimanyu Das, Debojyoti Dutta, Ahmed Helmy Abstract In heterogeneous networks such as today s Internet, the differentiated

More information

Active Queue Management: Comparison of Sliding Mode Controller and Linear Quadratic Regulator

Active Queue Management: Comparison of Sliding Mode Controller and Linear Quadratic Regulator Active Queue Management: Comparison of Sliding Mode Controller and Linear Quadratic Regulator MAHDI JALILI-KHARAAJOO and ALIREZA DEHESTANI Iran Telecommunication Research Center P.O. Box: 4395'355 Tehran

More information