SlideShare a Scribd company logo
1 of 6
Download to read offline
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
__________________________________________________________________________________________
Volume: 02 Issue: 09 | Sep-2013, Available @ http://www.ijret.org 548
CONGESTION CONTROL IN COMPUTER NETWORKS USING A
MODIFIED RED AQM ALGORITHM
Mohit Shrivastav1
, Santanu Mukherjee2
, Sandeep Gonnade3
1
Dept of Computer Science & Engineering, School of Engineering & IT,MATS University,Raipur
2
Dept of Computer Science and Engineering, Bhilai School of Technology, Durg
3
Department of Computer Science & Engineering, School Of Engineering & IT,MATS University, Raipur
mohit11282@gmail.com, msantanu@hotmail.com, sandeep_gonnade@yahoo.co.in
Abstract
Congestion control plays an important role in network resource management in very large networks with heavy traffic. Active Queue
Management (AQM) algorithms are one of the approaches to resolve the congestion problems. Majority of AQM algorithms mainly
focus on single queued links. The input queued switches are limited in throughput and output queued switches require a large speedup
factor so our attention is directed towards Combined Input and Output Queued (CIOQ) switches. A simple modification to the RED
AQM algorithm is proposed in this paper in order to account for the presence of both input and output queues in the switch. The
weighted sum of input and output queue lengths are specifically used as the congestion measure instead of just the output queue
length. The average backlog in the switch is significantly reduced in the low speedup region by using our modified algorithm as
compared to RED without this modification. Simulations show that the loss rate in the modified RED slightly larger than that in
traditional RED but the output queue length in modified RED is tremendously reduced. The congestion measure which is computed
using weighting factor results in reduction of the average backlog. Using our modified algorithm simulations indicate improvement in
the queue length and switch utilization.
Keywords: Combined Input and Output Queued (CIOQ), Active Queue Management (AQM), Random Early Detection
(RED), congestion, congestion control
------------------------------------------------------------------------***---------------------------------------------------------------------
1. INTRODUCTION
Consider a network where sources compete for bandwidth and
buffer space while being unaware of current state of resources
and unaware of each other. In this setting, congestion arises
when the demand for bandwidth exceeds the available link
capacity. This leads to performance degradation in the network
as packet losses increase and link utilization decreases. To
avoid these problems, some kind of organization and control of
traffic is needed. One way to perform congestion control is to
use Active Queue Management (AQM) in the routers. The
basic idea behind an AQM algorithm is to sense the congestion
level within the network and inform the packet sources about
this so that they reduce their sending rate. Many AQM
algorithms have been proposed so far, such as RED [7],
GREEN [5], REM [1] and BLUE [6]. In particular, there have
been several modifications to RED. Some references in this
area include Dynamic RED (DRED) [9], Adaptive RED [8],
Stabilized RED (SRED) [11], Jacobson et al. [10] and many
others. However, these approaches mainly focus on output
queued switches. Most practical routers have input queues also,
as this would help reduce the required speedup in the switch.
The implementation of flow-based AQM algorithms on
combined input output queued (CIOQ) switches has been
studied in [4] through simulations. The paper uses the GREEN
algorithm; the rates used as input to the algorithm incorporate,
in addition to the output queue arrival rates, the rates of the
input side VOQs. This idea is important since in a CIOQ
switch, congestion affects input queues as well as output
queues. In this paper, we look at the impact of input queues on
the design of queue-based AQM algorithms. Specifically, we
propose a modification of the Random Early Detection (RED)
algorithm to account for the presence of the input queue.
Instead of using the output queue length as a congestion
measure, we use a weighted sum of the input and output queue
occupancies. The key advantage of this is that the RED
(output) queue need not get filled up as much as in original
RED to start reacting to congestion. To study the effect of this
change, simulations were performed in network simulator (ns)
for a 4 Ă— 4 and a 16 Ă— 16 CIOQ switch with virtual output
queues (VOQs). Results show that our fairly simple
modification of the RED algorithm significantly reduces the
backlog hence reducing the packet queuing delay. Simulations
prove that the utilization remains unaffected as compared to the
original RED. The weighting factor given to the input queue
length in the congestion measure is a critical parameter. We
can use it to strike a balance between reducing the average
backlog and preventing the loss rate from becoming too high.
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
__________________________________________________________________________________________
Volume: 02 Issue: 09 | Sep-2013, Available @ http://www.ijret.org 549
The remaining part of this paper is organized as follows.
Sections 2 and 3 give a brief review on AQM and switching.
Section 4 discusses the effect of input queues on AQM design,
and describes our proposed modification to RED. Simulation
settings and results are presented in Section 5, and finally,
Section 6 gives directions for future work.
2. AQM BACKGROUND
This section describes the various types of congestion control
mechanisms usually employed in the Internet with emphasis on
AQM.
A. Congestion Control
The objective of congestion control is to achieve efficiency i.e.
maximum utilization, minimum queue size and minimum
packet drops while giving fair access to all the sources. There
are mainly two approaches to congestion control – end system
congestion control and network-centric congestion control. In
end system congestion control, senders detect the congestion
and react to it accordingly. TCP is an important example of this
approach. When a packet is dropped, the sender assumes that
congestion has occurred and reduces the sending rate. When a
packet is successfully transmitted, senders increase their rate.
The other approach is network-centric congestion control. The
idea behind this is that since routers have more information
about the state of the network, they can be useful in detecting
congestion and should take part in the decision of congestion
control. Routers actually measure the congestion level by
comparing input traffic to capacity and by looking at the queue
size; thus, they can send feedback as soon as they notice that
the queue length is growing. Therefore, the average queue
length doesn’t have to be as large as in the previous approach.
Routers could also be used to give priorities to some sources as
compared to others. An important example of network-centric
congestion control is Active Queue Management
B. Active Queue Management
AQM refers to a class of algorithms designed to provide
improved queuing mechanisms for routers. These schemes are
called active because they dynamically signal congestion to
sources even before the queue overflows; either explicitly, by
marking packets (e.g. Explicit Congestion Notification) or
implicitly, by dropping packets. There are two design
considerations in any AQM - first, how the congestion in the
network is measured and next how this measure is used to
compute the probability of dropping packets [1]. Queue based
AQMs couple congestion notification rate to queue size. The
AQMs currently employed on the Internet, such as Droptail
and RED belong to this category. Another example of a queue
based AQM is BLUE [6]. The drawback of this is that a
backlog of packets is inherently necessitated by the control
mechanism, as congestion is observed only when the queue
length is positive. This creates unnecessary delay and jitter.
Flow based AQMs, on the other hand, determine congestion
and take action based on the packet arrival rate. Some
examples are REM [1] and GREEN [5]. For such schemes, the
target utilization can be achieved irrespective of backlog. In
this project, we focus on queue based AQMs, Droptail and
RED, which will be explained in more detail below.
1. Droptail: Droptail is the simplest AQM algorithm, and is
most widely used in the Internet. Under Droptail, when
queue overflow occurs, arriving packets are dropped.
Although it is simple to implement, and has been tested
and used for many years, it was shown to interact badly
with TCP’s congestion control mechanisms and to lead to
poor performance. Congested links have high queue size
and high loss rate.
2. Random Early Detection - RED: RED [7] has the
potential to overcome some of the problems discovered in
Drop-Tail such as synchronization of TCP flows and
correlation of the drop events (multiple packets being
dropped in sequence) within a TCP flow. Packets are
randomly dropped before the buffer is full, and the drop
probability increases with the average queue size. RED is
also a queue based AQM mechanism. RED gateways
require the user to specify five parameters: the maximum
buffer size or queue limit (QL), the minimum (minth) and
maximum (maxth) thresholds of the “RED region”, the
maximum dropping probability (maxp), and the weight
factor (wq) used to calculate the average queue size. It uses
early packet dropping in an attempt to control the
congestion level, limit queuing delays, and avoid buffer
overflows. Fig. 1 shows the dropping probability of RED
AQM as a function of the average queue length. Early
packet dropping starts when the average queue size
exceeds minth, shown in the figure. The average queue
size (Qavg) is calculated as an exponentially weighted
moving average using the following formula:
(1)
Where qinst is the instantaneous queue size This weighted
moving average captures the notion of long-lived
congestion better than the instantaneous queue size. Had
the instantaneous queue size been used as the congestion
metric, short-lived traffic spikes would lead to early packet
drops. So a rather under-utilized router that receives a
burst of packets can be deemed congested if one uses the
instantaneous queue size. The average queue size, on the
other hand, acts as a low pass filter that allows spikes to go
through the router without forcing any packet drops
(unless, of course, the burst is larger than the queue limit).
The user can configure wq and minth so that a RED router
does not allow short-lived congestion to continue
uninterrupted for more than a predetermined amount of
time. This functionality allows RED to maintain high
throughput and keep per-packet delays low. Next, we will
give a brief introduction about switching in routers to
show the motivation behind CIOQ switches.
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
__________________________________________________________________________________________
Volume: 02 Issue: 09 | Sep-2013, Available @ http://www.ijret.org 550
Fig. 1. Dropping Probability of RED AQM
3. SWITCHING SURVEY
The surveys on switching mechanisms are as follows.
A. Output-Queued Switches
An output-queued (OQ) switch is one in which only output
links have buffers. Whenever a packet arrives at any input, it is
immediately routed to the destination of the packet. Thus, no
packet has to wait on the input side. For this switch to work,
the switching fabric must have a speedup of n, the number of
inputs (or outputs) of the switch. Speedup is the relative speed
of the switching fabric compared to the speed of the input or
output links. This strategy is known to maximize the
throughput of the switch, as long as no input or output is over-
subscribed. However, the main drawback is that this switch
architecture is not scalable.
B. Input-Queued Switches
An input-queued (IQ) switch is one which has buffers only on
the input side. The input buffers can hold the packets which
couldn’t be processed due to contention. Consequently,
speedup required in the switch fabric is low and the switch
architecture is scalable and can work for the high line rate case
also. However, the main drawback with the IQ switches is
head-of-line blocking. It limits the maximum throughput of the
switch to 58.6 % [2]. Virtual Output Queues: The problem of
HOL blocking can be circumvented by the concept of virtual
output queues (VOQs). Here, each input maintains a separate
input queue for each output. The only problem is that the
number of queues on the input side will scale with the square
of the number of inputs or outputs. This is the price paid for the
enhancement in throughput.
C. Combined Input Output Queued Switches
This is the most general type of switch. As the name suggests,
there are buffers both on the input side and output side. The
speedup of the switch can be anything between 1 and n. It has
been shown that a CIOQ switch with a speedup of 2 can
emulate an outputqueued switch, and therefore, achieve 100 %
throughput. [3] To avoid the problem of HOL blocking, it is
possible to have a CIOQ switch with virtual output queues on
the input side. Thus, a CIOQ switch helps to combine the
advantages of IQ and OQ switches.
4. IMPACT OF INPUT QUEUE LENGTH ON RED
Traditionally, AQM algorithms assume that routers have only
output queues. However, as explained in the earlier section,
practical switches have input queues as well, in order to lower
the required speedup. This paper aims to investigate why and
how an AQM algorithm will be affected by the presence of
input queues in routers in addition to output queues. The
question is how AQMs need to be modified to incorporate the
fact that switches have both input and output buffers.
A. Effect on Congestion Measure
As mentioned before, one of the important considerations in
any AQM is how exactly the level of congestion is measured at
a particular router. In queue-based AQMs, the queue length is
used as a measure. Consider a CIOQ switch in a congested
network. The output queue will start filling as the congestion
builds up. The point to note is that the effect of congestion will
be felt on the input side also causing the input buffers to fill up.
In other words, the effect of congestion is distributed between
the input and output queues. Therefore, a reliable measure of
congestion should incorporate both the queue lengths. This is
particularly true when the speedup is low (around 1-1.5). If the
speedup is high, then the switch will behave like an output
queued switch and the input queue occupancy will be small.
Thus we focus on the low speedup region.
B. Modification Proposed
The modification we proposed is to use the sum of input and
output lengths as the congestion measure. To be more specific,
consider the RED AQM formula for the average backlog given
in (1). The instantaneous queue length in this formula is
replaced by the weighted sum of qoutput and qinput where
qoutput is the length of the output queue and qinput is the sum
of lengths of all VOQs corresponding to that output. In this
way, the input queue length also contributes to the probability
of dropping packets. The dropping itself is done only from the
output queue, as the AQM is applied only to the output queue.
Thus, we get:
(2)
Where v is the weighting factor for the input queue length This
parameter is important because it provides a means to balance
the reduction in the average backlog on the one hand, and the
increase in the loss rate on the other hand. The key advantage
of this is that the RED (output) queue need not get filled up as
much as in original RED to start reacting to congestion. An
important point to note is that, only if VOQs are used, it is easy
to take into account the input queue length meant for a
particular output. If instead, normal input queues are used, then
it is difficult to find out how much of the input queue length is
due to packets meant for a particular output. Thus, this strategy
is best implemented only in VOQ based switches. The AQM
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
__________________________________________________________________________________________
Volume: 02 Issue: 09 | Sep-2013, Available @ http://www.ijret.org 551
block at each output needs to know the sum of VOQ lengths
corresponding to that output, besides the output queue length
itself. Obtaining the sum of lengths is possible as all the queues
are within the same switch.
5. SIMULATION SETTINGS AND RESULTS
A. Simulation Models
To evaluate the performance of our suggested change to RED
algorithm for CIOQ switches, we performed simulations in ns
and compared the modified RED with the original RED
algorithm as well as Droptail. We performed simulations in a 4
Ă— 4 and a 16 Ă— 16 CIOQ switch. In order to simulate an n Ă— n
switch with speedup s, we set the capacities of the internal
links of the switch equal to s/n times the capacity of the input
link (set to 1 Mbps) since there are n internal links coming out
of each input. We approximate a round-robin scheduling
algorithm by allowing all the n2 internal links to carry packets
simultaneously but at a lower rate. The main difference from a
real switch is that packets are sent one by one from an input in
a real switch, whereas in this simulation, they can be sent
together. Consequently, at an output, packets from different
inputs may arrive together. The effect is that the output sees
slightly more bursty traffic than in a real switch. However, this
is a minor effect and can be neglected. Each source node is
capable of hosting a random number of TCP sessions. For a
duration of 100 seconds, each TCP session originates from a
random source and terminates at a random sink. The duration
of each TCP session is randomly selected between 3 seconds
and 13 seconds for the 4Ă—4 case and between 3 seconds and 53
seconds for the 16 Ă— 16. The input and output buffer sizes are
both 20. Droptail is used for all the queues on the input side.
The choice of v is crucial, and it involves a tradeoff between
backlog reduction and a rise in loss rate. If it is too low, the
effect of input queues will not be felt in the congestion
measure. If it is too high, this would lead to too many packets
getting dropped thereby reducing the utilization and increasing
the loss rate. The parameter v is set at 0.5 for the 4 Ă— 4 case and
0.125 for the 16Ă—16 case. For the simulation, these values were
chosen by trial and error. Future work could include a rigorous
analysis for the optimal value of v. For the RED AQM, we set
the minth to 5 and the maxth to 15. The weight qw is set to
0.004 and maxp is 0.1.
B. Simulation Results
1. Input and Output Queue Lengths: Fig. 2 displays the
average input and output queue lengths when the modified
RED algorithm is used in the AQM unit for the output
buffer, for the 4 Ă— 4 switch. The corresponding simulations
were performed for original RED and Droptail, and the
results are shown for comparison. For this simulation, 800
TCP sessions are started at random times. Speedup is
varied from 1.1 to 2.5. As can be seen, the input queue
lengths for the three algorithms are roughly the same, and
they decrease when the speedup of the switches increase.
When the speedup is about 2 or higher, the average length
of the input queue is very low, which implies that the
switch is fast enough to handle all the input packets
instantaneously, and the packets only queue at the output
side. On the output side, as expected, the Drop-tail queue
has the longest average output queue length, since it only
starts dropping when the buffer overflows, whereas RED
starts dropping packets before that. Also, when the
speedup is low, the output queue length for modified RED
is significantly lower than that for original RED. This is
because in the low speedup range, the input queues are
long, as shown in Fig. 2.
Fig. 2. Average Input and Output Queue Lengths vs
Speedup for 4 Ă— 4 switch (Load 800 TCP sessions)
And when this is included in the congestion measure for
the modified RED, the dropping probability is much
higher than that for the original RED. However, when the
speedup is high and the input queue length approaches
zero, there is essentially no difference between the original
RED and the modified RED, and their two output queue
length curves approach each other when speedup s ≥ 2.
Fig. 2 has demonstrated that our modification to the RED
algorithm does help in reducing the average queue length
for CIOQ switch, and this in turn implies that the average
delay for each packet traversing through this switch is
reduced.
2. Utilization and Loss Rate: We also measured the
utilization and loss rate of the 4 Ă— 4 switch. Speedup is
fixed at 1.1 and the load is varied from 80 to 800 TCP
sessions. We chose the speedup to be 1.1, because the
effect of the input queue is felt only for low speedup (1 to
1.5). Utilization is the ratio of the average number of bits
received per second and the link capacity. Loss rate is the
ratio of the number of packets dropped and the number of
packets sent.
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
__________________________________________________________________________________________
Volume: 02 Issue: 09 | Sep-2013, Available @ http://www.ijret.org 552
Fig.3. Loss Rate and Utilization of the 4 Ă— 4 switch at speedup
s = 1.1.
From Fig. 3, we observe that the performance of original RED
and modified RED are almost the same in terms of utilization
and loss rate. This means that the gain obtained in terms of
backlog in the modified RED algorithm does not cause
degradation in utilization and loss rate.
We show in figures 4 and 5 the same set of results for the
16Ă—16 switch. In this case, for the queue length simulations,
6400 TCP sessions are started at random times. Speedup is
varied from 1.1 to 2.7. For the loss rate and utilization, speedup
is fixed at 1.4 and the load is varied from 640 to 6400 TCP
sessions. We observe again that our modified RED algorithm
significantly reduces the average output queue length with
marginal impact on the utilization and the loss rate
Fig4. Average Input and Output Queue Lengths vs Speedup for
16 Ă— 16 switch (Load 6400 TCP sessions)
Fig5. Loss Rate and Utilization of the 16Ă—16 switch at speedup
s = 1.4.
CONCLUSIONS
CIOQ switches are an important class of switches due to their
good throughput and the low speedup required. In this paper,
we studied the effect of input queues on the RED AQM. We
have proposed the inclusion of the input queue length also in
the congestion measure and have shown through simulations
that this modification reduces the average backlog in the switch
significantly when speedup is low. At the same time, it has
been shown that the modified RED has almost the same
utilization and loss rate as the original RED algorithm.
Moreover, the modification that we have suggested is very
simple, and it is easy to implement in practice. Possible
extension of this work includes analysis of the performance of
the modified algorithm and assessment of its stability. It would
also be useful to study analytically how the weighting given to
the input and output queue lengths while computing the
congestion measure affects the tradeoff between dropping too
many packets on one extreme and not including the input
queue’s effects at all on the other extreme.
REFERENCES
[1] S. Athuraliya, V. H. Li, S. H. Low, and Q. Yin, “REM:
Active Queue Management,” IEEE Network, vol. 15, no.
3, pp 48-53, May 2001.
[2] M. Karol, M. Hluchyj and S. Morgan, “Input versus
Output Queuing an a Space Division Switch,” IEEE Trans.
Communications, Vol. 35, pp. 1347-1356, 1987.
[3] B. Prabhakar and N. McKeown, “On the Speedup
Required for Combined Input and Output Queued
Switching,” Automatica, Vol. 35, pp. 1909-1920,
December 1999.
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
__________________________________________________________________________________________
Volume: 02 Issue: 09 | Sep-2013, Available @ http://www.ijret.org 553
[4] M. Karol, M. Hluchyj and S. Morgan, “Input versus
Output Queuing an a Space Division Switch,” IEEE Trans.
Communications, Vol. 35, pp. 1347-1356, 1987.
[5] Sally Floyd, Ramakrishna Gummadi, and Scott Shenker,
“Adaptive RED: An Algorithm for Increasing the
Robustness of RED’s Active Queue
Management,”Technical report, ICSI, August 1, 2001
[6] J. Aweya, M. Ouellette, D. Y. Montuno and A. Cha--
pman, “An Optimization-oriented View of Random Early
Detection,” Computer Communications, 2001
[7] V. Jacobson, K. Nichols, and K. Poduri, “RED in a
Different Light,” Technical Report, September 1999
[8] T. Ott, T. Lakshman, L. Wong. “SRED: Stabilized
RED,”Infocom,1999

More Related Content

What's hot

Performance Evaluation of Personal Ad-hoc Area Network Based on Different Mob...
Performance Evaluation of Personal Ad-hoc Area Network Based on Different Mob...Performance Evaluation of Personal Ad-hoc Area Network Based on Different Mob...
Performance Evaluation of Personal Ad-hoc Area Network Based on Different Mob...IRJET Journal
 
Dynamic Shaping Method using SDN And NFV Paradigms
Dynamic Shaping Method using SDN And NFV ParadigmsDynamic Shaping Method using SDN And NFV Paradigms
Dynamic Shaping Method using SDN And NFV ParadigmsIJCNCJournal
 
Proportional-integral genetic algorithm controller for stability of TCP network
Proportional-integral genetic algorithm controller for stability of TCP network Proportional-integral genetic algorithm controller for stability of TCP network
Proportional-integral genetic algorithm controller for stability of TCP network IJECEIAES
 
Modified rts cts exchange mechanism for manet
Modified rts cts exchange mechanism for manetModified rts cts exchange mechanism for manet
Modified rts cts exchange mechanism for manetIAEME Publication
 
A comparative study on synchronization algorithms for various modulation tech...
A comparative study on synchronization algorithms for various modulation tech...A comparative study on synchronization algorithms for various modulation tech...
A comparative study on synchronization algorithms for various modulation tech...IAEME Publication
 
Performing Network Simulators of TCP with E2E Network Model over UMTS Networks
Performing Network Simulators of TCP with E2E Network Model over UMTS NetworksPerforming Network Simulators of TCP with E2E Network Model over UMTS Networks
Performing Network Simulators of TCP with E2E Network Model over UMTS NetworksAM Publications,India
 
A Study of Message Authentication Protocol with Reduced Computation in Vehicu...
A Study of Message Authentication Protocol with Reduced Computation in Vehicu...A Study of Message Authentication Protocol with Reduced Computation in Vehicu...
A Study of Message Authentication Protocol with Reduced Computation in Vehicu...IRJET Journal
 
PERFORMANCE OF OLSR MANET ADOPTING CROSS-LAYER APPROACH UNDER CBR AND VBR TRA...
PERFORMANCE OF OLSR MANET ADOPTING CROSS-LAYER APPROACH UNDER CBR AND VBR TRA...PERFORMANCE OF OLSR MANET ADOPTING CROSS-LAYER APPROACH UNDER CBR AND VBR TRA...
PERFORMANCE OF OLSR MANET ADOPTING CROSS-LAYER APPROACH UNDER CBR AND VBR TRA...IJCNCJournal
 
IRJET- Online Failure Prediction for Railway Transportation System based ...
IRJET-  	  Online Failure Prediction for Railway Transportation System based ...IRJET-  	  Online Failure Prediction for Railway Transportation System based ...
IRJET- Online Failure Prediction for Railway Transportation System based ...IRJET Journal
 
Exploiting 2-Dimensional Source Correlation in Channel Decoding with Paramete...
Exploiting 2-Dimensional Source Correlation in Channel Decoding with Paramete...Exploiting 2-Dimensional Source Correlation in Channel Decoding with Paramete...
Exploiting 2-Dimensional Source Correlation in Channel Decoding with Paramete...IJECEIAES
 
Robust Resource Allocation in Relay Node Networks for Optimization Process
Robust Resource Allocation in Relay Node Networks for Optimization ProcessRobust Resource Allocation in Relay Node Networks for Optimization Process
Robust Resource Allocation in Relay Node Networks for Optimization ProcessIJCERT
 
A041203010014
A041203010014A041203010014
A041203010014IOSR-JEN
 
Distributed Traffic management framework
Distributed Traffic management frameworkDistributed Traffic management framework
Distributed Traffic management frameworkSaurabh Nambiar
 

What's hot (16)

Performance Evaluation of Personal Ad-hoc Area Network Based on Different Mob...
Performance Evaluation of Personal Ad-hoc Area Network Based on Different Mob...Performance Evaluation of Personal Ad-hoc Area Network Based on Different Mob...
Performance Evaluation of Personal Ad-hoc Area Network Based on Different Mob...
 
Dynamic Shaping Method using SDN And NFV Paradigms
Dynamic Shaping Method using SDN And NFV ParadigmsDynamic Shaping Method using SDN And NFV Paradigms
Dynamic Shaping Method using SDN And NFV Paradigms
 
Proportional-integral genetic algorithm controller for stability of TCP network
Proportional-integral genetic algorithm controller for stability of TCP network Proportional-integral genetic algorithm controller for stability of TCP network
Proportional-integral genetic algorithm controller for stability of TCP network
 
Modified rts cts exchange mechanism for manet
Modified rts cts exchange mechanism for manetModified rts cts exchange mechanism for manet
Modified rts cts exchange mechanism for manet
 
A comparative study on synchronization algorithms for various modulation tech...
A comparative study on synchronization algorithms for various modulation tech...A comparative study on synchronization algorithms for various modulation tech...
A comparative study on synchronization algorithms for various modulation tech...
 
Performing Network Simulators of TCP with E2E Network Model over UMTS Networks
Performing Network Simulators of TCP with E2E Network Model over UMTS NetworksPerforming Network Simulators of TCP with E2E Network Model over UMTS Networks
Performing Network Simulators of TCP with E2E Network Model over UMTS Networks
 
A Study of Message Authentication Protocol with Reduced Computation in Vehicu...
A Study of Message Authentication Protocol with Reduced Computation in Vehicu...A Study of Message Authentication Protocol with Reduced Computation in Vehicu...
A Study of Message Authentication Protocol with Reduced Computation in Vehicu...
 
PERFORMANCE OF OLSR MANET ADOPTING CROSS-LAYER APPROACH UNDER CBR AND VBR TRA...
PERFORMANCE OF OLSR MANET ADOPTING CROSS-LAYER APPROACH UNDER CBR AND VBR TRA...PERFORMANCE OF OLSR MANET ADOPTING CROSS-LAYER APPROACH UNDER CBR AND VBR TRA...
PERFORMANCE OF OLSR MANET ADOPTING CROSS-LAYER APPROACH UNDER CBR AND VBR TRA...
 
A046020112
A046020112A046020112
A046020112
 
IRJET- Online Failure Prediction for Railway Transportation System based ...
IRJET-  	  Online Failure Prediction for Railway Transportation System based ...IRJET-  	  Online Failure Prediction for Railway Transportation System based ...
IRJET- Online Failure Prediction for Railway Transportation System based ...
 
Exploiting 2-Dimensional Source Correlation in Channel Decoding with Paramete...
Exploiting 2-Dimensional Source Correlation in Channel Decoding with Paramete...Exploiting 2-Dimensional Source Correlation in Channel Decoding with Paramete...
Exploiting 2-Dimensional Source Correlation in Channel Decoding with Paramete...
 
Multiflow Model for Routing and Policing Traffic in Infocommunication Network
Multiflow Model for Routing and Policing Traffic in  Infocommunication NetworkMultiflow Model for Routing and Policing Traffic in  Infocommunication Network
Multiflow Model for Routing and Policing Traffic in Infocommunication Network
 
Robust Resource Allocation in Relay Node Networks for Optimization Process
Robust Resource Allocation in Relay Node Networks for Optimization ProcessRobust Resource Allocation in Relay Node Networks for Optimization Process
Robust Resource Allocation in Relay Node Networks for Optimization Process
 
50620130101005
5062013010100550620130101005
50620130101005
 
A041203010014
A041203010014A041203010014
A041203010014
 
Distributed Traffic management framework
Distributed Traffic management frameworkDistributed Traffic management framework
Distributed Traffic management framework
 

Viewers also liked

Congestion control
Congestion controlCongestion control
Congestion controlAman Jaiswal
 
TCP-FIT: An Improved TCP Congestion Control Algorithm and its Performance
TCP-FIT: An Improved TCP Congestion Control Algorithm and its PerformanceTCP-FIT: An Improved TCP Congestion Control Algorithm and its Performance
TCP-FIT: An Improved TCP Congestion Control Algorithm and its PerformanceKevin Tong
 
Critical heat flux enhancement in pool boiling with al2 o3 water nanofluid
Critical heat flux enhancement in pool boiling with al2 o3 water nanofluidCritical heat flux enhancement in pool boiling with al2 o3 water nanofluid
Critical heat flux enhancement in pool boiling with al2 o3 water nanofluideSAT Journals
 
Perfilsinaloa
Perfilsinaloa Perfilsinaloa
Perfilsinaloa julian vadez
 
Intern rapport
Intern rapportIntern rapport
Intern rapportEmely Adams
 
Plan Operativo Anual
Plan Operativo AnualPlan Operativo Anual
Plan Operativo AnualByron Aldás
 
Ladrillos
LadrillosLadrillos
LadrillosSolis Max
 
Minimum cost implementation of autonomous vehicle
Minimum cost implementation of autonomous vehicleMinimum cost implementation of autonomous vehicle
Minimum cost implementation of autonomous vehicleeSAT Journals
 
Lecture 1
Lecture 1Lecture 1
Lecture 1trini4_eva
 
Nanomaterials: Meeting Global Energy Needs
Nanomaterials: Meeting Global Energy NeedsNanomaterials: Meeting Global Energy Needs
Nanomaterials: Meeting Global Energy NeedsMalvern Instruments
 
MaqueterĂ­a y decoraciĂłn
MaqueterĂ­a y decoraciĂłnMaqueterĂ­a y decoraciĂłn
MaqueterĂ­a y decoraciĂłnAURO89
 
Gallstones - Nicola Tanner
Gallstones - Nicola TannerGallstones - Nicola Tanner
Gallstones - Nicola Tannerwelshbarbers
 
2013EntrepreneurshipApril
2013EntrepreneurshipApril2013EntrepreneurshipApril
2013EntrepreneurshipAprilLeslie Hielema
 
Thermal Energy Storage
Thermal Energy StorageThermal Energy Storage
Thermal Energy StorageAlberto Borghi
 
Gilly Salmon Carpe Diem August 2015
Gilly Salmon Carpe Diem August 2015Gilly Salmon Carpe Diem August 2015
Gilly Salmon Carpe Diem August 2015Gilly Salmon
 
Congetion Control.pptx
Congetion Control.pptxCongetion Control.pptx
Congetion Control.pptxNaveen Dubey
 
Attribution theory of perception
Attribution theory of perceptionAttribution theory of perception
Attribution theory of perceptionJismy James
 
Congestion control in tcp
Congestion control in tcpCongestion control in tcp
Congestion control in tcpsamarai_apoc
 

Viewers also liked (20)

Congestion control
Congestion controlCongestion control
Congestion control
 
TCP-FIT: An Improved TCP Congestion Control Algorithm and its Performance
TCP-FIT: An Improved TCP Congestion Control Algorithm and its PerformanceTCP-FIT: An Improved TCP Congestion Control Algorithm and its Performance
TCP-FIT: An Improved TCP Congestion Control Algorithm and its Performance
 
Critical heat flux enhancement in pool boiling with al2 o3 water nanofluid
Critical heat flux enhancement in pool boiling with al2 o3 water nanofluidCritical heat flux enhancement in pool boiling with al2 o3 water nanofluid
Critical heat flux enhancement in pool boiling with al2 o3 water nanofluid
 
Magazines
MagazinesMagazines
Magazines
 
Perfilsinaloa
Perfilsinaloa Perfilsinaloa
Perfilsinaloa
 
Intern rapport
Intern rapportIntern rapport
Intern rapport
 
Plan Operativo Anual
Plan Operativo AnualPlan Operativo Anual
Plan Operativo Anual
 
Resolucion n°019
Resolucion n°019Resolucion n°019
Resolucion n°019
 
Ladrillos
LadrillosLadrillos
Ladrillos
 
Minimum cost implementation of autonomous vehicle
Minimum cost implementation of autonomous vehicleMinimum cost implementation of autonomous vehicle
Minimum cost implementation of autonomous vehicle
 
Lecture 1
Lecture 1Lecture 1
Lecture 1
 
Nanomaterials: Meeting Global Energy Needs
Nanomaterials: Meeting Global Energy NeedsNanomaterials: Meeting Global Energy Needs
Nanomaterials: Meeting Global Energy Needs
 
MaqueterĂ­a y decoraciĂłn
MaqueterĂ­a y decoraciĂłnMaqueterĂ­a y decoraciĂłn
MaqueterĂ­a y decoraciĂłn
 
Gallstones - Nicola Tanner
Gallstones - Nicola TannerGallstones - Nicola Tanner
Gallstones - Nicola Tanner
 
2013EntrepreneurshipApril
2013EntrepreneurshipApril2013EntrepreneurshipApril
2013EntrepreneurshipApril
 
Thermal Energy Storage
Thermal Energy StorageThermal Energy Storage
Thermal Energy Storage
 
Gilly Salmon Carpe Diem August 2015
Gilly Salmon Carpe Diem August 2015Gilly Salmon Carpe Diem August 2015
Gilly Salmon Carpe Diem August 2015
 
Congetion Control.pptx
Congetion Control.pptxCongetion Control.pptx
Congetion Control.pptx
 
Attribution theory of perception
Attribution theory of perceptionAttribution theory of perception
Attribution theory of perception
 
Congestion control in tcp
Congestion control in tcpCongestion control in tcp
Congestion control in tcp
 

Similar to IJRET Congestion Control Using Modified RED AQM Algorithm

A novel token based approach towards packet loss control
A novel token based approach towards packet loss controlA novel token based approach towards packet loss control
A novel token based approach towards packet loss controleSAT Journals
 
A novel token based approach towards packet loss
A novel token based approach towards packet lossA novel token based approach towards packet loss
A novel token based approach towards packet losseSAT Publishing House
 
Comparative Analysis of Green Algorithm within Active Queue Management for Mo...
Comparative Analysis of Green Algorithm within Active Queue Management for Mo...Comparative Analysis of Green Algorithm within Active Queue Management for Mo...
Comparative Analysis of Green Algorithm within Active Queue Management for Mo...ijtsrd
 
Dynamic Traffic Management Services to Provide High Performance in IntelRate ...
Dynamic Traffic Management Services to Provide High Performance in IntelRate ...Dynamic Traffic Management Services to Provide High Performance in IntelRate ...
Dynamic Traffic Management Services to Provide High Performance in IntelRate ...IJMER
 
Comparative analysis of the performance of various active queue management te...
Comparative analysis of the performance of various active queue management te...Comparative analysis of the performance of various active queue management te...
Comparative analysis of the performance of various active queue management te...IJECEIAES
 
A MARKOVIAN MODEL FOR INTERNET OF THINGS APPLICATION
A MARKOVIAN MODEL FOR INTERNET OF THINGS APPLICATIONA MARKOVIAN MODEL FOR INTERNET OF THINGS APPLICATION
A MARKOVIAN MODEL FOR INTERNET OF THINGS APPLICATIONIJCNCJournal
 
A Novel Approach to Enhance the Performance of RIP and RIPng Protocols For Ad...
A Novel Approach to Enhance the Performance of RIP and RIPng Protocols For Ad...A Novel Approach to Enhance the Performance of RIP and RIPng Protocols For Ad...
A Novel Approach to Enhance the Performance of RIP and RIPng Protocols For Ad...rahulmonikasharma
 
OPTIMIZED ROUTING AND DENIAL OF SERVICE FOR ROBUST TRANSMISSION IN WIRELESS N...
OPTIMIZED ROUTING AND DENIAL OF SERVICE FOR ROBUST TRANSMISSION IN WIRELESS N...OPTIMIZED ROUTING AND DENIAL OF SERVICE FOR ROBUST TRANSMISSION IN WIRELESS N...
OPTIMIZED ROUTING AND DENIAL OF SERVICE FOR ROBUST TRANSMISSION IN WIRELESS N...IRJET Journal
 
Design and Performance Analysis of 8 x 8 Network on Chip Router
Design and Performance Analysis of 8 x 8 Network on Chip RouterDesign and Performance Analysis of 8 x 8 Network on Chip Router
Design and Performance Analysis of 8 x 8 Network on Chip RouterIRJET Journal
 
Final Year IEEE Project 2013-2014 - Grid Computing Project Title and Abstract
Final Year IEEE Project 2013-2014  - Grid Computing Project Title and AbstractFinal Year IEEE Project 2013-2014  - Grid Computing Project Title and Abstract
Final Year IEEE Project 2013-2014 - Grid Computing Project Title and Abstractelysiumtechnologies
 
Improving of Energy Efficiency in LTE based MIMO-OFDM systems with Multiuser ...
Improving of Energy Efficiency in LTE based MIMO-OFDM systems with Multiuser ...Improving of Energy Efficiency in LTE based MIMO-OFDM systems with Multiuser ...
Improving of Energy Efficiency in LTE based MIMO-OFDM systems with Multiuser ...IRJET Journal
 
IRJET- Efficient and Secure Communication In Vehicular AD HOC Network
IRJET-	 Efficient and Secure Communication In Vehicular AD HOC NetworkIRJET-	 Efficient and Secure Communication In Vehicular AD HOC Network
IRJET- Efficient and Secure Communication In Vehicular AD HOC NetworkIRJET Journal
 
IRJET- Investigation on Delay and Power Minimization in IEEE 802.15.4 Protoco...
IRJET- Investigation on Delay and Power Minimization in IEEE 802.15.4 Protoco...IRJET- Investigation on Delay and Power Minimization in IEEE 802.15.4 Protoco...
IRJET- Investigation on Delay and Power Minimization in IEEE 802.15.4 Protoco...IRJET Journal
 
IRJET- Sink Mobility based Energy Efficient Routing Protocol for Wireless Sen...
IRJET- Sink Mobility based Energy Efficient Routing Protocol for Wireless Sen...IRJET- Sink Mobility based Energy Efficient Routing Protocol for Wireless Sen...
IRJET- Sink Mobility based Energy Efficient Routing Protocol for Wireless Sen...IRJET Journal
 
ACT: Securing Vanet Against Malicious Vehicles Using Advanced Clustering Tech...
ACT: Securing Vanet Against Malicious Vehicles Using Advanced Clustering Tech...ACT: Securing Vanet Against Malicious Vehicles Using Advanced Clustering Tech...
ACT: Securing Vanet Against Malicious Vehicles Using Advanced Clustering Tech...IRJET Journal
 
A Case Study on Ip Based Cdma Ran by Controlling Router
A Case Study on Ip Based Cdma Ran by Controlling RouterA Case Study on Ip Based Cdma Ran by Controlling Router
A Case Study on Ip Based Cdma Ran by Controlling RouterIJERA Editor
 
IRJET - An Auction Mechanism for Product Verification using Cloud
IRJET - An Auction Mechanism for Product Verification using CloudIRJET - An Auction Mechanism for Product Verification using Cloud
IRJET - An Auction Mechanism for Product Verification using CloudIRJET Journal
 
Review on buffer management schemes for packet queues in wired & wireless net...
Review on buffer management schemes for packet queues in wired & wireless net...Review on buffer management schemes for packet queues in wired & wireless net...
Review on buffer management schemes for packet queues in wired & wireless net...IJERA Editor
 
Analysis and Evolution of AQM Algortihms
Analysis and Evolution of AQM AlgortihmsAnalysis and Evolution of AQM Algortihms
Analysis and Evolution of AQM AlgortihmsSiddharth Nawani
 
Traffic Lights Control System for Indian Cities using WSN and Fuzzy Control
Traffic Lights Control System for Indian Cities using WSN and Fuzzy ControlTraffic Lights Control System for Indian Cities using WSN and Fuzzy Control
Traffic Lights Control System for Indian Cities using WSN and Fuzzy ControlIRJET Journal
 

Similar to IJRET Congestion Control Using Modified RED AQM Algorithm (20)

A novel token based approach towards packet loss control
A novel token based approach towards packet loss controlA novel token based approach towards packet loss control
A novel token based approach towards packet loss control
 
A novel token based approach towards packet loss
A novel token based approach towards packet lossA novel token based approach towards packet loss
A novel token based approach towards packet loss
 
Comparative Analysis of Green Algorithm within Active Queue Management for Mo...
Comparative Analysis of Green Algorithm within Active Queue Management for Mo...Comparative Analysis of Green Algorithm within Active Queue Management for Mo...
Comparative Analysis of Green Algorithm within Active Queue Management for Mo...
 
Dynamic Traffic Management Services to Provide High Performance in IntelRate ...
Dynamic Traffic Management Services to Provide High Performance in IntelRate ...Dynamic Traffic Management Services to Provide High Performance in IntelRate ...
Dynamic Traffic Management Services to Provide High Performance in IntelRate ...
 
Comparative analysis of the performance of various active queue management te...
Comparative analysis of the performance of various active queue management te...Comparative analysis of the performance of various active queue management te...
Comparative analysis of the performance of various active queue management te...
 
A MARKOVIAN MODEL FOR INTERNET OF THINGS APPLICATION
A MARKOVIAN MODEL FOR INTERNET OF THINGS APPLICATIONA MARKOVIAN MODEL FOR INTERNET OF THINGS APPLICATION
A MARKOVIAN MODEL FOR INTERNET OF THINGS APPLICATION
 
A Novel Approach to Enhance the Performance of RIP and RIPng Protocols For Ad...
A Novel Approach to Enhance the Performance of RIP and RIPng Protocols For Ad...A Novel Approach to Enhance the Performance of RIP and RIPng Protocols For Ad...
A Novel Approach to Enhance the Performance of RIP and RIPng Protocols For Ad...
 
OPTIMIZED ROUTING AND DENIAL OF SERVICE FOR ROBUST TRANSMISSION IN WIRELESS N...
OPTIMIZED ROUTING AND DENIAL OF SERVICE FOR ROBUST TRANSMISSION IN WIRELESS N...OPTIMIZED ROUTING AND DENIAL OF SERVICE FOR ROBUST TRANSMISSION IN WIRELESS N...
OPTIMIZED ROUTING AND DENIAL OF SERVICE FOR ROBUST TRANSMISSION IN WIRELESS N...
 
Design and Performance Analysis of 8 x 8 Network on Chip Router
Design and Performance Analysis of 8 x 8 Network on Chip RouterDesign and Performance Analysis of 8 x 8 Network on Chip Router
Design and Performance Analysis of 8 x 8 Network on Chip Router
 
Final Year IEEE Project 2013-2014 - Grid Computing Project Title and Abstract
Final Year IEEE Project 2013-2014  - Grid Computing Project Title and AbstractFinal Year IEEE Project 2013-2014  - Grid Computing Project Title and Abstract
Final Year IEEE Project 2013-2014 - Grid Computing Project Title and Abstract
 
Improving of Energy Efficiency in LTE based MIMO-OFDM systems with Multiuser ...
Improving of Energy Efficiency in LTE based MIMO-OFDM systems with Multiuser ...Improving of Energy Efficiency in LTE based MIMO-OFDM systems with Multiuser ...
Improving of Energy Efficiency in LTE based MIMO-OFDM systems with Multiuser ...
 
IRJET- Efficient and Secure Communication In Vehicular AD HOC Network
IRJET-	 Efficient and Secure Communication In Vehicular AD HOC NetworkIRJET-	 Efficient and Secure Communication In Vehicular AD HOC Network
IRJET- Efficient and Secure Communication In Vehicular AD HOC Network
 
IRJET- Investigation on Delay and Power Minimization in IEEE 802.15.4 Protoco...
IRJET- Investigation on Delay and Power Minimization in IEEE 802.15.4 Protoco...IRJET- Investigation on Delay and Power Minimization in IEEE 802.15.4 Protoco...
IRJET- Investigation on Delay and Power Minimization in IEEE 802.15.4 Protoco...
 
IRJET- Sink Mobility based Energy Efficient Routing Protocol for Wireless Sen...
IRJET- Sink Mobility based Energy Efficient Routing Protocol for Wireless Sen...IRJET- Sink Mobility based Energy Efficient Routing Protocol for Wireless Sen...
IRJET- Sink Mobility based Energy Efficient Routing Protocol for Wireless Sen...
 
ACT: Securing Vanet Against Malicious Vehicles Using Advanced Clustering Tech...
ACT: Securing Vanet Against Malicious Vehicles Using Advanced Clustering Tech...ACT: Securing Vanet Against Malicious Vehicles Using Advanced Clustering Tech...
ACT: Securing Vanet Against Malicious Vehicles Using Advanced Clustering Tech...
 
A Case Study on Ip Based Cdma Ran by Controlling Router
A Case Study on Ip Based Cdma Ran by Controlling RouterA Case Study on Ip Based Cdma Ran by Controlling Router
A Case Study on Ip Based Cdma Ran by Controlling Router
 
IRJET - An Auction Mechanism for Product Verification using Cloud
IRJET - An Auction Mechanism for Product Verification using CloudIRJET - An Auction Mechanism for Product Verification using Cloud
IRJET - An Auction Mechanism for Product Verification using Cloud
 
Review on buffer management schemes for packet queues in wired & wireless net...
Review on buffer management schemes for packet queues in wired & wireless net...Review on buffer management schemes for packet queues in wired & wireless net...
Review on buffer management schemes for packet queues in wired & wireless net...
 
Analysis and Evolution of AQM Algortihms
Analysis and Evolution of AQM AlgortihmsAnalysis and Evolution of AQM Algortihms
Analysis and Evolution of AQM Algortihms
 
Traffic Lights Control System for Indian Cities using WSN and Fuzzy Control
Traffic Lights Control System for Indian Cities using WSN and Fuzzy ControlTraffic Lights Control System for Indian Cities using WSN and Fuzzy Control
Traffic Lights Control System for Indian Cities using WSN and Fuzzy Control
 

More from eSAT Journals

Mechanical properties of hybrid fiber reinforced concrete for pavements
Mechanical properties of hybrid fiber reinforced concrete for pavementsMechanical properties of hybrid fiber reinforced concrete for pavements
Mechanical properties of hybrid fiber reinforced concrete for pavementseSAT Journals
 
Material management in construction – a case study
Material management in construction – a case studyMaterial management in construction – a case study
Material management in construction – a case studyeSAT Journals
 
Managing drought short term strategies in semi arid regions a case study
Managing drought    short term strategies in semi arid regions  a case studyManaging drought    short term strategies in semi arid regions  a case study
Managing drought short term strategies in semi arid regions a case studyeSAT Journals
 
Life cycle cost analysis of overlay for an urban road in bangalore
Life cycle cost analysis of overlay for an urban road in bangaloreLife cycle cost analysis of overlay for an urban road in bangalore
Life cycle cost analysis of overlay for an urban road in bangaloreeSAT Journals
 
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materialsLaboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materialseSAT Journals
 
Laboratory investigation of expansive soil stabilized with natural inorganic ...
Laboratory investigation of expansive soil stabilized with natural inorganic ...Laboratory investigation of expansive soil stabilized with natural inorganic ...
Laboratory investigation of expansive soil stabilized with natural inorganic ...eSAT Journals
 
Influence of reinforcement on the behavior of hollow concrete block masonry p...
Influence of reinforcement on the behavior of hollow concrete block masonry p...Influence of reinforcement on the behavior of hollow concrete block masonry p...
Influence of reinforcement on the behavior of hollow concrete block masonry p...eSAT Journals
 
Influence of compaction energy on soil stabilized with chemical stabilizer
Influence of compaction energy on soil stabilized with chemical stabilizerInfluence of compaction energy on soil stabilized with chemical stabilizer
Influence of compaction energy on soil stabilized with chemical stabilizereSAT Journals
 
Geographical information system (gis) for water resources management
Geographical information system (gis) for water resources managementGeographical information system (gis) for water resources management
Geographical information system (gis) for water resources managementeSAT Journals
 
Forest type mapping of bidar forest division, karnataka using geoinformatics ...
Forest type mapping of bidar forest division, karnataka using geoinformatics ...Forest type mapping of bidar forest division, karnataka using geoinformatics ...
Forest type mapping of bidar forest division, karnataka using geoinformatics ...eSAT Journals
 
Factors influencing compressive strength of geopolymer concrete
Factors influencing compressive strength of geopolymer concreteFactors influencing compressive strength of geopolymer concrete
Factors influencing compressive strength of geopolymer concreteeSAT Journals
 
Experimental investigation on circular hollow steel columns in filled with li...
Experimental investigation on circular hollow steel columns in filled with li...Experimental investigation on circular hollow steel columns in filled with li...
Experimental investigation on circular hollow steel columns in filled with li...eSAT Journals
 
Experimental behavior of circular hsscfrc filled steel tubular columns under ...
Experimental behavior of circular hsscfrc filled steel tubular columns under ...Experimental behavior of circular hsscfrc filled steel tubular columns under ...
Experimental behavior of circular hsscfrc filled steel tubular columns under ...eSAT Journals
 
Evaluation of punching shear in flat slabs
Evaluation of punching shear in flat slabsEvaluation of punching shear in flat slabs
Evaluation of punching shear in flat slabseSAT Journals
 
Evaluation of performance of intake tower dam for recent earthquake in india
Evaluation of performance of intake tower dam for recent earthquake in indiaEvaluation of performance of intake tower dam for recent earthquake in india
Evaluation of performance of intake tower dam for recent earthquake in indiaeSAT Journals
 
Evaluation of operational efficiency of urban road network using travel time ...
Evaluation of operational efficiency of urban road network using travel time ...Evaluation of operational efficiency of urban road network using travel time ...
Evaluation of operational efficiency of urban road network using travel time ...eSAT Journals
 
Estimation of surface runoff in nallur amanikere watershed using scs cn method
Estimation of surface runoff in nallur amanikere watershed using scs cn methodEstimation of surface runoff in nallur amanikere watershed using scs cn method
Estimation of surface runoff in nallur amanikere watershed using scs cn methodeSAT Journals
 
Estimation of morphometric parameters and runoff using rs & gis techniques
Estimation of morphometric parameters and runoff using rs & gis techniquesEstimation of morphometric parameters and runoff using rs & gis techniques
Estimation of morphometric parameters and runoff using rs & gis techniqueseSAT Journals
 
Effect of variation of plastic hinge length on the results of non linear anal...
Effect of variation of plastic hinge length on the results of non linear anal...Effect of variation of plastic hinge length on the results of non linear anal...
Effect of variation of plastic hinge length on the results of non linear anal...eSAT Journals
 
Effect of use of recycled materials on indirect tensile strength of asphalt c...
Effect of use of recycled materials on indirect tensile strength of asphalt c...Effect of use of recycled materials on indirect tensile strength of asphalt c...
Effect of use of recycled materials on indirect tensile strength of asphalt c...eSAT Journals
 

More from eSAT Journals (20)

Mechanical properties of hybrid fiber reinforced concrete for pavements
Mechanical properties of hybrid fiber reinforced concrete for pavementsMechanical properties of hybrid fiber reinforced concrete for pavements
Mechanical properties of hybrid fiber reinforced concrete for pavements
 
Material management in construction – a case study
Material management in construction – a case studyMaterial management in construction – a case study
Material management in construction – a case study
 
Managing drought short term strategies in semi arid regions a case study
Managing drought    short term strategies in semi arid regions  a case studyManaging drought    short term strategies in semi arid regions  a case study
Managing drought short term strategies in semi arid regions a case study
 
Life cycle cost analysis of overlay for an urban road in bangalore
Life cycle cost analysis of overlay for an urban road in bangaloreLife cycle cost analysis of overlay for an urban road in bangalore
Life cycle cost analysis of overlay for an urban road in bangalore
 
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materialsLaboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
 
Laboratory investigation of expansive soil stabilized with natural inorganic ...
Laboratory investigation of expansive soil stabilized with natural inorganic ...Laboratory investigation of expansive soil stabilized with natural inorganic ...
Laboratory investigation of expansive soil stabilized with natural inorganic ...
 
Influence of reinforcement on the behavior of hollow concrete block masonry p...
Influence of reinforcement on the behavior of hollow concrete block masonry p...Influence of reinforcement on the behavior of hollow concrete block masonry p...
Influence of reinforcement on the behavior of hollow concrete block masonry p...
 
Influence of compaction energy on soil stabilized with chemical stabilizer
Influence of compaction energy on soil stabilized with chemical stabilizerInfluence of compaction energy on soil stabilized with chemical stabilizer
Influence of compaction energy on soil stabilized with chemical stabilizer
 
Geographical information system (gis) for water resources management
Geographical information system (gis) for water resources managementGeographical information system (gis) for water resources management
Geographical information system (gis) for water resources management
 
Forest type mapping of bidar forest division, karnataka using geoinformatics ...
Forest type mapping of bidar forest division, karnataka using geoinformatics ...Forest type mapping of bidar forest division, karnataka using geoinformatics ...
Forest type mapping of bidar forest division, karnataka using geoinformatics ...
 
Factors influencing compressive strength of geopolymer concrete
Factors influencing compressive strength of geopolymer concreteFactors influencing compressive strength of geopolymer concrete
Factors influencing compressive strength of geopolymer concrete
 
Experimental investigation on circular hollow steel columns in filled with li...
Experimental investigation on circular hollow steel columns in filled with li...Experimental investigation on circular hollow steel columns in filled with li...
Experimental investigation on circular hollow steel columns in filled with li...
 
Experimental behavior of circular hsscfrc filled steel tubular columns under ...
Experimental behavior of circular hsscfrc filled steel tubular columns under ...Experimental behavior of circular hsscfrc filled steel tubular columns under ...
Experimental behavior of circular hsscfrc filled steel tubular columns under ...
 
Evaluation of punching shear in flat slabs
Evaluation of punching shear in flat slabsEvaluation of punching shear in flat slabs
Evaluation of punching shear in flat slabs
 
Evaluation of performance of intake tower dam for recent earthquake in india
Evaluation of performance of intake tower dam for recent earthquake in indiaEvaluation of performance of intake tower dam for recent earthquake in india
Evaluation of performance of intake tower dam for recent earthquake in india
 
Evaluation of operational efficiency of urban road network using travel time ...
Evaluation of operational efficiency of urban road network using travel time ...Evaluation of operational efficiency of urban road network using travel time ...
Evaluation of operational efficiency of urban road network using travel time ...
 
Estimation of surface runoff in nallur amanikere watershed using scs cn method
Estimation of surface runoff in nallur amanikere watershed using scs cn methodEstimation of surface runoff in nallur amanikere watershed using scs cn method
Estimation of surface runoff in nallur amanikere watershed using scs cn method
 
Estimation of morphometric parameters and runoff using rs & gis techniques
Estimation of morphometric parameters and runoff using rs & gis techniquesEstimation of morphometric parameters and runoff using rs & gis techniques
Estimation of morphometric parameters and runoff using rs & gis techniques
 
Effect of variation of plastic hinge length on the results of non linear anal...
Effect of variation of plastic hinge length on the results of non linear anal...Effect of variation of plastic hinge length on the results of non linear anal...
Effect of variation of plastic hinge length on the results of non linear anal...
 
Effect of use of recycled materials on indirect tensile strength of asphalt c...
Effect of use of recycled materials on indirect tensile strength of asphalt c...Effect of use of recycled materials on indirect tensile strength of asphalt c...
Effect of use of recycled materials on indirect tensile strength of asphalt c...
 

Recently uploaded

SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Dr.Costas Sachpazis
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escortsranjana rawat
 
Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.eptoze12
 
Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...VICTOR MAESTRE RAMIREZ
 
Artificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxArtificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxbritheesh05
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...Soham Mondal
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxwendy cai
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile servicerehmti665
 
Heart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxHeart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxPoojaBan
 
microprocessor 8085 and its interfacing
microprocessor 8085  and its interfacingmicroprocessor 8085  and its interfacing
microprocessor 8085 and its interfacingjaychoudhary37
 
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfCCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfAsst.prof M.Gokilavani
 
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZTE
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130Suhani Kapoor
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort servicejennyeacort
 

Recently uploaded (20)

SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
 
Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.
 
Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...
 
Artificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxArtificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptx
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptx
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile service
 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 
Heart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxHeart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptx
 
microprocessor 8085 and its interfacing
microprocessor 8085  and its interfacingmicroprocessor 8085  and its interfacing
microprocessor 8085 and its interfacing
 
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfCCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
 
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
 
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
 

IJRET Congestion Control Using Modified RED AQM Algorithm

  • 1. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 __________________________________________________________________________________________ Volume: 02 Issue: 09 | Sep-2013, Available @ http://www.ijret.org 548 CONGESTION CONTROL IN COMPUTER NETWORKS USING A MODIFIED RED AQM ALGORITHM Mohit Shrivastav1 , Santanu Mukherjee2 , Sandeep Gonnade3 1 Dept of Computer Science & Engineering, School of Engineering & IT,MATS University,Raipur 2 Dept of Computer Science and Engineering, Bhilai School of Technology, Durg 3 Department of Computer Science & Engineering, School Of Engineering & IT,MATS University, Raipur mohit11282@gmail.com, msantanu@hotmail.com, sandeep_gonnade@yahoo.co.in Abstract Congestion control plays an important role in network resource management in very large networks with heavy traffic. Active Queue Management (AQM) algorithms are one of the approaches to resolve the congestion problems. Majority of AQM algorithms mainly focus on single queued links. The input queued switches are limited in throughput and output queued switches require a large speedup factor so our attention is directed towards Combined Input and Output Queued (CIOQ) switches. A simple modification to the RED AQM algorithm is proposed in this paper in order to account for the presence of both input and output queues in the switch. The weighted sum of input and output queue lengths are specifically used as the congestion measure instead of just the output queue length. The average backlog in the switch is significantly reduced in the low speedup region by using our modified algorithm as compared to RED without this modification. Simulations show that the loss rate in the modified RED slightly larger than that in traditional RED but the output queue length in modified RED is tremendously reduced. The congestion measure which is computed using weighting factor results in reduction of the average backlog. Using our modified algorithm simulations indicate improvement in the queue length and switch utilization. Keywords: Combined Input and Output Queued (CIOQ), Active Queue Management (AQM), Random Early Detection (RED), congestion, congestion control ------------------------------------------------------------------------***--------------------------------------------------------------------- 1. INTRODUCTION Consider a network where sources compete for bandwidth and buffer space while being unaware of current state of resources and unaware of each other. In this setting, congestion arises when the demand for bandwidth exceeds the available link capacity. This leads to performance degradation in the network as packet losses increase and link utilization decreases. To avoid these problems, some kind of organization and control of traffic is needed. One way to perform congestion control is to use Active Queue Management (AQM) in the routers. The basic idea behind an AQM algorithm is to sense the congestion level within the network and inform the packet sources about this so that they reduce their sending rate. Many AQM algorithms have been proposed so far, such as RED [7], GREEN [5], REM [1] and BLUE [6]. In particular, there have been several modifications to RED. Some references in this area include Dynamic RED (DRED) [9], Adaptive RED [8], Stabilized RED (SRED) [11], Jacobson et al. [10] and many others. However, these approaches mainly focus on output queued switches. Most practical routers have input queues also, as this would help reduce the required speedup in the switch. The implementation of flow-based AQM algorithms on combined input output queued (CIOQ) switches has been studied in [4] through simulations. The paper uses the GREEN algorithm; the rates used as input to the algorithm incorporate, in addition to the output queue arrival rates, the rates of the input side VOQs. This idea is important since in a CIOQ switch, congestion affects input queues as well as output queues. In this paper, we look at the impact of input queues on the design of queue-based AQM algorithms. Specifically, we propose a modification of the Random Early Detection (RED) algorithm to account for the presence of the input queue. Instead of using the output queue length as a congestion measure, we use a weighted sum of the input and output queue occupancies. The key advantage of this is that the RED (output) queue need not get filled up as much as in original RED to start reacting to congestion. To study the effect of this change, simulations were performed in network simulator (ns) for a 4 Ă— 4 and a 16 Ă— 16 CIOQ switch with virtual output queues (VOQs). Results show that our fairly simple modification of the RED algorithm significantly reduces the backlog hence reducing the packet queuing delay. Simulations prove that the utilization remains unaffected as compared to the original RED. The weighting factor given to the input queue length in the congestion measure is a critical parameter. We can use it to strike a balance between reducing the average backlog and preventing the loss rate from becoming too high.
  • 2. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 __________________________________________________________________________________________ Volume: 02 Issue: 09 | Sep-2013, Available @ http://www.ijret.org 549 The remaining part of this paper is organized as follows. Sections 2 and 3 give a brief review on AQM and switching. Section 4 discusses the effect of input queues on AQM design, and describes our proposed modification to RED. Simulation settings and results are presented in Section 5, and finally, Section 6 gives directions for future work. 2. AQM BACKGROUND This section describes the various types of congestion control mechanisms usually employed in the Internet with emphasis on AQM. A. Congestion Control The objective of congestion control is to achieve efficiency i.e. maximum utilization, minimum queue size and minimum packet drops while giving fair access to all the sources. There are mainly two approaches to congestion control – end system congestion control and network-centric congestion control. In end system congestion control, senders detect the congestion and react to it accordingly. TCP is an important example of this approach. When a packet is dropped, the sender assumes that congestion has occurred and reduces the sending rate. When a packet is successfully transmitted, senders increase their rate. The other approach is network-centric congestion control. The idea behind this is that since routers have more information about the state of the network, they can be useful in detecting congestion and should take part in the decision of congestion control. Routers actually measure the congestion level by comparing input traffic to capacity and by looking at the queue size; thus, they can send feedback as soon as they notice that the queue length is growing. Therefore, the average queue length doesn’t have to be as large as in the previous approach. Routers could also be used to give priorities to some sources as compared to others. An important example of network-centric congestion control is Active Queue Management B. Active Queue Management AQM refers to a class of algorithms designed to provide improved queuing mechanisms for routers. These schemes are called active because they dynamically signal congestion to sources even before the queue overflows; either explicitly, by marking packets (e.g. Explicit Congestion Notification) or implicitly, by dropping packets. There are two design considerations in any AQM - first, how the congestion in the network is measured and next how this measure is used to compute the probability of dropping packets [1]. Queue based AQMs couple congestion notification rate to queue size. The AQMs currently employed on the Internet, such as Droptail and RED belong to this category. Another example of a queue based AQM is BLUE [6]. The drawback of this is that a backlog of packets is inherently necessitated by the control mechanism, as congestion is observed only when the queue length is positive. This creates unnecessary delay and jitter. Flow based AQMs, on the other hand, determine congestion and take action based on the packet arrival rate. Some examples are REM [1] and GREEN [5]. For such schemes, the target utilization can be achieved irrespective of backlog. In this project, we focus on queue based AQMs, Droptail and RED, which will be explained in more detail below. 1. Droptail: Droptail is the simplest AQM algorithm, and is most widely used in the Internet. Under Droptail, when queue overflow occurs, arriving packets are dropped. Although it is simple to implement, and has been tested and used for many years, it was shown to interact badly with TCP’s congestion control mechanisms and to lead to poor performance. Congested links have high queue size and high loss rate. 2. Random Early Detection - RED: RED [7] has the potential to overcome some of the problems discovered in Drop-Tail such as synchronization of TCP flows and correlation of the drop events (multiple packets being dropped in sequence) within a TCP flow. Packets are randomly dropped before the buffer is full, and the drop probability increases with the average queue size. RED is also a queue based AQM mechanism. RED gateways require the user to specify five parameters: the maximum buffer size or queue limit (QL), the minimum (minth) and maximum (maxth) thresholds of the “RED region”, the maximum dropping probability (maxp), and the weight factor (wq) used to calculate the average queue size. It uses early packet dropping in an attempt to control the congestion level, limit queuing delays, and avoid buffer overflows. Fig. 1 shows the dropping probability of RED AQM as a function of the average queue length. Early packet dropping starts when the average queue size exceeds minth, shown in the figure. The average queue size (Qavg) is calculated as an exponentially weighted moving average using the following formula: (1) Where qinst is the instantaneous queue size This weighted moving average captures the notion of long-lived congestion better than the instantaneous queue size. Had the instantaneous queue size been used as the congestion metric, short-lived traffic spikes would lead to early packet drops. So a rather under-utilized router that receives a burst of packets can be deemed congested if one uses the instantaneous queue size. The average queue size, on the other hand, acts as a low pass filter that allows spikes to go through the router without forcing any packet drops (unless, of course, the burst is larger than the queue limit). The user can configure wq and minth so that a RED router does not allow short-lived congestion to continue uninterrupted for more than a predetermined amount of time. This functionality allows RED to maintain high throughput and keep per-packet delays low. Next, we will give a brief introduction about switching in routers to show the motivation behind CIOQ switches.
  • 3. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 __________________________________________________________________________________________ Volume: 02 Issue: 09 | Sep-2013, Available @ http://www.ijret.org 550 Fig. 1. Dropping Probability of RED AQM 3. SWITCHING SURVEY The surveys on switching mechanisms are as follows. A. Output-Queued Switches An output-queued (OQ) switch is one in which only output links have buffers. Whenever a packet arrives at any input, it is immediately routed to the destination of the packet. Thus, no packet has to wait on the input side. For this switch to work, the switching fabric must have a speedup of n, the number of inputs (or outputs) of the switch. Speedup is the relative speed of the switching fabric compared to the speed of the input or output links. This strategy is known to maximize the throughput of the switch, as long as no input or output is over- subscribed. However, the main drawback is that this switch architecture is not scalable. B. Input-Queued Switches An input-queued (IQ) switch is one which has buffers only on the input side. The input buffers can hold the packets which couldn’t be processed due to contention. Consequently, speedup required in the switch fabric is low and the switch architecture is scalable and can work for the high line rate case also. However, the main drawback with the IQ switches is head-of-line blocking. It limits the maximum throughput of the switch to 58.6 % [2]. Virtual Output Queues: The problem of HOL blocking can be circumvented by the concept of virtual output queues (VOQs). Here, each input maintains a separate input queue for each output. The only problem is that the number of queues on the input side will scale with the square of the number of inputs or outputs. This is the price paid for the enhancement in throughput. C. Combined Input Output Queued Switches This is the most general type of switch. As the name suggests, there are buffers both on the input side and output side. The speedup of the switch can be anything between 1 and n. It has been shown that a CIOQ switch with a speedup of 2 can emulate an outputqueued switch, and therefore, achieve 100 % throughput. [3] To avoid the problem of HOL blocking, it is possible to have a CIOQ switch with virtual output queues on the input side. Thus, a CIOQ switch helps to combine the advantages of IQ and OQ switches. 4. IMPACT OF INPUT QUEUE LENGTH ON RED Traditionally, AQM algorithms assume that routers have only output queues. However, as explained in the earlier section, practical switches have input queues as well, in order to lower the required speedup. This paper aims to investigate why and how an AQM algorithm will be affected by the presence of input queues in routers in addition to output queues. The question is how AQMs need to be modified to incorporate the fact that switches have both input and output buffers. A. Effect on Congestion Measure As mentioned before, one of the important considerations in any AQM is how exactly the level of congestion is measured at a particular router. In queue-based AQMs, the queue length is used as a measure. Consider a CIOQ switch in a congested network. The output queue will start filling as the congestion builds up. The point to note is that the effect of congestion will be felt on the input side also causing the input buffers to fill up. In other words, the effect of congestion is distributed between the input and output queues. Therefore, a reliable measure of congestion should incorporate both the queue lengths. This is particularly true when the speedup is low (around 1-1.5). If the speedup is high, then the switch will behave like an output queued switch and the input queue occupancy will be small. Thus we focus on the low speedup region. B. Modification Proposed The modification we proposed is to use the sum of input and output lengths as the congestion measure. To be more specific, consider the RED AQM formula for the average backlog given in (1). The instantaneous queue length in this formula is replaced by the weighted sum of qoutput and qinput where qoutput is the length of the output queue and qinput is the sum of lengths of all VOQs corresponding to that output. In this way, the input queue length also contributes to the probability of dropping packets. The dropping itself is done only from the output queue, as the AQM is applied only to the output queue. Thus, we get: (2) Where v is the weighting factor for the input queue length This parameter is important because it provides a means to balance the reduction in the average backlog on the one hand, and the increase in the loss rate on the other hand. The key advantage of this is that the RED (output) queue need not get filled up as much as in original RED to start reacting to congestion. An important point to note is that, only if VOQs are used, it is easy to take into account the input queue length meant for a particular output. If instead, normal input queues are used, then it is difficult to find out how much of the input queue length is due to packets meant for a particular output. Thus, this strategy is best implemented only in VOQ based switches. The AQM
  • 4. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 __________________________________________________________________________________________ Volume: 02 Issue: 09 | Sep-2013, Available @ http://www.ijret.org 551 block at each output needs to know the sum of VOQ lengths corresponding to that output, besides the output queue length itself. Obtaining the sum of lengths is possible as all the queues are within the same switch. 5. SIMULATION SETTINGS AND RESULTS A. Simulation Models To evaluate the performance of our suggested change to RED algorithm for CIOQ switches, we performed simulations in ns and compared the modified RED with the original RED algorithm as well as Droptail. We performed simulations in a 4 Ă— 4 and a 16 Ă— 16 CIOQ switch. In order to simulate an n Ă— n switch with speedup s, we set the capacities of the internal links of the switch equal to s/n times the capacity of the input link (set to 1 Mbps) since there are n internal links coming out of each input. We approximate a round-robin scheduling algorithm by allowing all the n2 internal links to carry packets simultaneously but at a lower rate. The main difference from a real switch is that packets are sent one by one from an input in a real switch, whereas in this simulation, they can be sent together. Consequently, at an output, packets from different inputs may arrive together. The effect is that the output sees slightly more bursty traffic than in a real switch. However, this is a minor effect and can be neglected. Each source node is capable of hosting a random number of TCP sessions. For a duration of 100 seconds, each TCP session originates from a random source and terminates at a random sink. The duration of each TCP session is randomly selected between 3 seconds and 13 seconds for the 4Ă—4 case and between 3 seconds and 53 seconds for the 16 Ă— 16. The input and output buffer sizes are both 20. Droptail is used for all the queues on the input side. The choice of v is crucial, and it involves a tradeoff between backlog reduction and a rise in loss rate. If it is too low, the effect of input queues will not be felt in the congestion measure. If it is too high, this would lead to too many packets getting dropped thereby reducing the utilization and increasing the loss rate. The parameter v is set at 0.5 for the 4 Ă— 4 case and 0.125 for the 16Ă—16 case. For the simulation, these values were chosen by trial and error. Future work could include a rigorous analysis for the optimal value of v. For the RED AQM, we set the minth to 5 and the maxth to 15. The weight qw is set to 0.004 and maxp is 0.1. B. Simulation Results 1. Input and Output Queue Lengths: Fig. 2 displays the average input and output queue lengths when the modified RED algorithm is used in the AQM unit for the output buffer, for the 4 Ă— 4 switch. The corresponding simulations were performed for original RED and Droptail, and the results are shown for comparison. For this simulation, 800 TCP sessions are started at random times. Speedup is varied from 1.1 to 2.5. As can be seen, the input queue lengths for the three algorithms are roughly the same, and they decrease when the speedup of the switches increase. When the speedup is about 2 or higher, the average length of the input queue is very low, which implies that the switch is fast enough to handle all the input packets instantaneously, and the packets only queue at the output side. On the output side, as expected, the Drop-tail queue has the longest average output queue length, since it only starts dropping when the buffer overflows, whereas RED starts dropping packets before that. Also, when the speedup is low, the output queue length for modified RED is significantly lower than that for original RED. This is because in the low speedup range, the input queues are long, as shown in Fig. 2. Fig. 2. Average Input and Output Queue Lengths vs Speedup for 4 Ă— 4 switch (Load 800 TCP sessions) And when this is included in the congestion measure for the modified RED, the dropping probability is much higher than that for the original RED. However, when the speedup is high and the input queue length approaches zero, there is essentially no difference between the original RED and the modified RED, and their two output queue length curves approach each other when speedup s ≥ 2. Fig. 2 has demonstrated that our modification to the RED algorithm does help in reducing the average queue length for CIOQ switch, and this in turn implies that the average delay for each packet traversing through this switch is reduced. 2. Utilization and Loss Rate: We also measured the utilization and loss rate of the 4 Ă— 4 switch. Speedup is fixed at 1.1 and the load is varied from 80 to 800 TCP sessions. We chose the speedup to be 1.1, because the effect of the input queue is felt only for low speedup (1 to 1.5). Utilization is the ratio of the average number of bits received per second and the link capacity. Loss rate is the ratio of the number of packets dropped and the number of packets sent.
  • 5. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 __________________________________________________________________________________________ Volume: 02 Issue: 09 | Sep-2013, Available @ http://www.ijret.org 552 Fig.3. Loss Rate and Utilization of the 4 Ă— 4 switch at speedup s = 1.1. From Fig. 3, we observe that the performance of original RED and modified RED are almost the same in terms of utilization and loss rate. This means that the gain obtained in terms of backlog in the modified RED algorithm does not cause degradation in utilization and loss rate. We show in figures 4 and 5 the same set of results for the 16Ă—16 switch. In this case, for the queue length simulations, 6400 TCP sessions are started at random times. Speedup is varied from 1.1 to 2.7. For the loss rate and utilization, speedup is fixed at 1.4 and the load is varied from 640 to 6400 TCP sessions. We observe again that our modified RED algorithm significantly reduces the average output queue length with marginal impact on the utilization and the loss rate Fig4. Average Input and Output Queue Lengths vs Speedup for 16 Ă— 16 switch (Load 6400 TCP sessions) Fig5. Loss Rate and Utilization of the 16Ă—16 switch at speedup s = 1.4. CONCLUSIONS CIOQ switches are an important class of switches due to their good throughput and the low speedup required. In this paper, we studied the effect of input queues on the RED AQM. We have proposed the inclusion of the input queue length also in the congestion measure and have shown through simulations that this modification reduces the average backlog in the switch significantly when speedup is low. At the same time, it has been shown that the modified RED has almost the same utilization and loss rate as the original RED algorithm. Moreover, the modification that we have suggested is very simple, and it is easy to implement in practice. Possible extension of this work includes analysis of the performance of the modified algorithm and assessment of its stability. It would also be useful to study analytically how the weighting given to the input and output queue lengths while computing the congestion measure affects the tradeoff between dropping too many packets on one extreme and not including the input queue’s effects at all on the other extreme. REFERENCES [1] S. Athuraliya, V. H. Li, S. H. Low, and Q. Yin, “REM: Active Queue Management,” IEEE Network, vol. 15, no. 3, pp 48-53, May 2001. [2] M. Karol, M. Hluchyj and S. Morgan, “Input versus Output Queuing an a Space Division Switch,” IEEE Trans. Communications, Vol. 35, pp. 1347-1356, 1987. [3] B. Prabhakar and N. McKeown, “On the Speedup Required for Combined Input and Output Queued Switching,” Automatica, Vol. 35, pp. 1909-1920, December 1999.
  • 6. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 __________________________________________________________________________________________ Volume: 02 Issue: 09 | Sep-2013, Available @ http://www.ijret.org 553 [4] M. Karol, M. Hluchyj and S. Morgan, “Input versus Output Queuing an a Space Division Switch,” IEEE Trans. Communications, Vol. 35, pp. 1347-1356, 1987. [5] Sally Floyd, Ramakrishna Gummadi, and Scott Shenker, “Adaptive RED: An Algorithm for Increasing the Robustness of RED’s Active Queue Management,”Technical report, ICSI, August 1, 2001 [6] J. Aweya, M. Ouellette, D. Y. Montuno and A. Cha-- pman, “An Optimization-oriented View of Random Early Detection,” Computer Communications, 2001 [7] V. Jacobson, K. Nichols, and K. Poduri, “RED in a Different Light,” Technical Report, September 1999 [8] T. Ott, T. Lakshman, L. Wong. “SRED: Stabilized RED,”Infocom,1999