SlideShare a Scribd company logo
1 of 7
Download to read offline
IOSR Journal of Computer Engineering (IOSRJCE)
ISSN: 2278-0661 Volume 3, Issue 1 (July-Aug. 2012), PP 13-19
www.iosrjournals.org
www.iosrjournals.org 13 | Page
Performance Evaluation of High Speed Congestion Control
Protocols
Mohamed Ali Mani and Rachid Mbarek
ABSTRACT: Computer networks are facing several technological and scientific challenges. Among these
challenges is congestion control. It limits the quantity of information input at a rate less important than that of
the transmission one to ensure good performance as well as protect against overload and blocking of the
network. Researchers have done a great deal of work on improving congestion control protocols, especially on
high speed networks.
In this paper, we will be studying the congestion control alongside low and high speed congestion control
protocols. We will be also simulating, evaluating, and comparing seven of high speed congestion control
protocols : Bic TCP, Cubic TCP, Hamilton TCP, HighSpeed TCP, Illinois TCP, Scalable TCP and YeAH TCP,
with multiple flows.
KEYWORDS: HIGH-SPEED, TCP PROTOCOLS, CONGESTION CONTROL, PERFORMANCE, MULTIPLE FLOWS.
I. INTRODUCTION
Due to the ease of finding information, data access and utilization by a simple mouse move in
multimedia pages, Internet has become necessary in our daily lives. In fact, the number of Internet users is
growing rapidly, and according to the ITU (International Telecommunication Union) it reached only 500 million
users in the beginning of 2000s while it was 1.6 billion in 2008 to rise to the number of 2 billions in 2011.
This increase must undergo a parallel development of both of hardware and software at the same time.
Early, throughput was about 56 kbps, however, now we talk about Gigabit Internet aiming to meet the users’
needs mainly in astronomy and video conference fields.
In Internet, there are some machines responsible for transmitting data packets, and other that take off
these packets from the queue. If the sender machine sends a data packet rate much more important than the rate
of the receiver, network congestion is produced, hence, a congestion control will limit the quantity of input
information with a lower rate than the transmission one to guarantee a good performance as well as a network
protection against overloading and blocking.
The high number of high speed congestion control protocols led us to prepare this research work,
which focuses on evaluating and comparing high speed congestion control protocols.
This paper is organized as follows:
In the second section we study the state of the art. In the third one, we present the architectures used as
well as the curves and the performances evaluation for different high speed congestion control protocols.
STATE OF THE ART
Researchers have worked on the enhancement of high speed congestion control protocols. Practically
every year, one or two protocols are implemented having for each one of them its own specific strengths and
weaknesses.
Recently, the research works are interested in evaluating the performance of these protocols by
comparing among 2 to 5 protocols with 1 to 12 flows [1] [2] [3] [4] [5].
HS-TCP [6]: If the congestion window is low, HS-TCP behaves just like the standard TCP, once the congestion
window exceeds the max_ssthresh, it rises in an aggressive way. The algorithm of HS-TCP is an AIMD
Additive Increment cwnd = cwnd + a(cwnd) Multiplicative Decrement cwnd = (1- b(cwnd)) x cwnd, the values
used for HSTCP are a(cwnd) in the interval of [1,72], b(cwnd) in the interval of [0.1,0.5] and low_window
equals 38 packets. when cwnd is lower than low_window a(cwnd) = 1 and b(cwnd) = 0.5 thus the algorithm acts
just like a standard TCP, in the case of a packet loss, the cwnd is reduced to 50%, when the cwnd reaches the
high_window a(cwnd ) = 72 and b(cwnd)=1.
If there is an acknowledgment:
𝑤1 =
1 + β
2
× cwnd cwnd < 𝑤1
𝑤1 = cwnd cwnd ≥ 𝑤1
w2 = cwnd
Scalable TCP [7]: For this protocol the cwnd increases with 0.001, if a congestion is detected the cwnd reduces
with 0.125 independently from the throughput and the packet size. This algorithm is a MIMD; Multiplicative
Performance Evaluation Of High Speed Congestion Control Protocols
www.iosrjournals.org 14 | Page
Increase since the cwnd increases with 0.01 per acknowledgment, Therefore there is a total increase of 0.01
cwnd per RTT, and Multiplicative Decrease since the cwnd decreases with 0.125 per packet loss.
BIC TCP [8]: uses a function that allows to have a rapid increase of cwnd when its value is far from the
maximal threshold Smax and to slowly decrease when having a value close to w_1.
cwnd = (1 – β) × cwnd
With :
fα (δ, cwnd) =
β
δ
δ ≤ 1 and cwnd < w1
or w1 ≤ cwnd < w1 + β
δ 1 < δ ≤ Smax and cwnd < w1
w1
β−1
β ≤ cwnd − w1 < Smax 1 − β
Smax otherwise
cwnd : Current congestion window
Smax : Maximal threshold
Smin : Minimal threshold
Β : Decrease factor usually equals 0.875
CUBIC TCP [9]: The name CUBIC refers to the function of the congestion window increase which is cubic,
when receiving an ACK:
cwnd = C (T – K) ³ + Maxcwnd
When having a packet loss:
cwnd = β Maxcwnd
With :
HTCP [10]: uses Δ the duration since the last congestion rather than cwnd as information about the product
delay bandwidth BDP. The increase parameter of AIMD (additive-increase/multiplicative-decrease) varies
depending on Δ. It also depends on the value of RTT which has provoked the unfairness among the competitor
flows with different RTTs.
In case of receiving an ACK:
cwnd = cwnd +
2 1−β fα(Δ)
cwnd
In case of packet loss:
cwnd = gβ(B) × cwnd
With :
fα(Δ) =
1 Δ ≤ ΔL
max fα Δ Tmin ,1 Δ > ΔL
gβ(B) =
0.5
B K+1 – B(k)
B(K)
> ΔB
min
Tmin
Tmax
,0.8 otherwise
cwnd*:*Current congestion window
α*:*Increase parameter
β*:*Decrease parameter
Δ*:*Duration of time since the last congestion
ΔL*:*Threshold to change the mode low speed to highspeed
Tmin *:*Minimal duration of sending and receiving packets
Tmax *:*Maximal duration of sending and receiving packets
B K + 1 *:*Maximal throughput reached before a congestion
fα Δ *=*1 +10 (Δ - ΔL) + 0,25 (Δ - ΔL)²
Cwnd*:*Current congestion window
C*:*Constant
T*:*Duration of time since the last congestion
Maxcwnd *:*Size of the last congestion window
K*:* Maxcwnd β/C3
Performance Evaluation Of High Speed Congestion Control Protocols
www.iosrjournals.org 15 | Page
Illinois TCP [11] : Similar to standard TCP, Illinois-TCP increases the congestion window by using two
parameters α and β, it is based on packet loss to define the congestion window value, however the values of α
and β are not constant by using the delays.
When receiving an ACK:
cwnd = cwnd +
α
𝑐𝑤𝑛𝑑
When losing packets:
cwnd = (1- β) × cwnd
With :
α = 𝑓1(𝑑 𝑎 ) =
α 𝑚𝑎𝑥 𝑑 𝑎 ≤ 𝑑1
𝑘1
𝑘2+ 𝑑 𝑎
𝑜𝑡ℎ𝑒𝑟𝑤𝑖𝑠𝑒
β = 𝑓2(𝑑 𝑎 ) =
β 𝑚𝑖𝑛
𝑑 𝑎 ≤ 𝑑2
𝑘3 + 𝑘4 𝑑 𝑎 𝑑2 < 𝑑 𝑎 < 𝑑3
β 𝑚𝑎𝑥
𝑜𝑡ℎ𝑒𝑟𝑤𝑖𝑠𝑒
𝑘1 =
(𝑑 𝑚 − 𝑑1) α 𝑚𝑖𝑛 α 𝑚𝑎𝑥
α 𝑚𝑎𝑥 − α 𝑚𝑖𝑛
*
𝑘2 =
(𝑑 𝑚 − 𝑑1) α 𝑚𝑖𝑛
α 𝑚𝑎𝑥 − α 𝑚𝑖𝑛
- 𝑑1
𝑘3 =
β 𝑚𝑖𝑛 𝑑3− β 𝑚𝑎𝑥 𝑑2
𝑑3− 𝑑2
*𝑘4 =
β 𝑚𝑎𝑥 − β 𝑚𝑖𝑛
𝑑3− 𝑑2
α 𝑚𝑖𝑛 =
𝑘1
𝑘2+ 𝑑 𝑚𝑜𝑦
, α 𝑚𝑎𝑥 =
𝑘1
𝑘2+ 𝑑1
β 𝑚𝑖𝑛
= 𝑘3 + 𝑘4 𝑑2 , β 𝑚𝑎𝑥
=𝑘3 + 𝑘4 𝑑3
YeAH TCP [12] the algorithm starts with the Slow Start if cwnd < ssthresh and Scalable TCP once cwnd
reaches the ssthresh. This protocol uses two modes, fast mode and slow mode. In the case of the fast one, the
congestion window increases aggressively, for the second mode, the protocol behaves similarly to Reno TCP.
The mode is chosen according to the queue status. Having RTTBASE the minimal RTT measured by the sender
and RTTMIN the minimal RTT estimated from the current window. The estimated delay is:
RTTqueue = RTTmin − RTTbase
Thanks to this value, the number of packet on hold in the queue can be defined as follows:
Q = RTTqueue × G = RTTqueue ×
cwnd
RTTmin
And G is the throughput.
II. SIMULATION AND PERFORMANCES EVALUATION
2.1. Architecture
In order to simulate the high speed congestion control protocols, we have chosen a topology (as shown
in figure 1) composed of a sender and a receiver linked together with two routers by a line of 1Gbps of
bandwidth, the delay is 1ms. The routers are linked to each other with a line having a bandwidth of 200Mbps,
the delay is equal to 92 ms and the queue capacity is exactly 100 packets [13]. The MSS size equals 1460 bytes.
The differences among the bandwidths capacities provoke congestion.
Figure 1. Basic topology
To evaluate the performances, we have used 2, 4, 6, 8, 10, 12, 16 and 24 identical flows (as shown in
figure 2) with a link capacity of 1 Gbps and a delay of 1 ms.
Figure 2. Topology with multiple flows
2.2. TCP-Friendly
To test the TCP Friendly of different protocols, we have used a multiple flows topology with 4 input
flows triggered at the same time. The results are shown in the following graphs:
Performance Evaluation Of High Speed Congestion Control Protocols
www.iosrjournals.org 16 | Page
Figure 3.a. HS TCP : Throughput variation for 4 flows
*
Figure 3.b. Scalable TCP : Throughput variation for 4 flows
Figure 3.c. Bic TCP : Throughput variation for 4 flows
*
Figure 3.d. Hamilton TCP : Throughput variation for 4 flows
Figure 3.e. Cubic TCP : Throughput variation for 4 flows
*
Figure 3.f. Illinois TCP : Throughput variation for 4 flows
Figure 3.g. YeAH TCP : Throughput variation for 4 flows
Performance Evaluation Of High Speed Congestion Control Protocols
www.iosrjournals.org 17 | Page
2.3. Efficiency
The efficiency (rate of utilization or performance) of a network is the percentage of utilization [14].
Mathematically, it is the division of the average throughput by the optimal throughput.
An efficient network uses the maximum of capacity.
The following variable 𝑞𝑖 is used as the average throughput of a flow i.
The throughput of a source with n flows is:
𝑄 =
1
𝑛
𝑞𝑖
𝑛
𝑖=1
We calculate the ratio between the average throughput and the optimal one which is the result of an ideal
network performance:
𝐸 =
𝑄
𝑄 𝑜𝑝𝑡
We have used these two topologies to simulate the seven protocols for 1, 2, 4, 6, 8, 10, 12, 16 and 24 flows.
The efficiency calculus results are as mentioned in the following graph:
Figure 4. Efficiency for different flow numbers
2.4. Fairness
The fairness is the attempt of sharing the network capacities among users in a fair way.
For the purpose of measuring the fairness, one method is used in the networks field which is called the Maximin
law proposed by Raj Jain [15]. Here is the procedure that allows us to calculate the fairness of a proposed
algorithm:
Having an algorithm that provides the distribution vi = [x1, x2,…,xn] instead of the optimal distribution vopt =
[x1,opt , x2,opt , … , xn,opt ]. We calculate the standardized distribution for every source as follows:
𝑋𝑖 =
𝑥𝑖
𝑥 𝑜𝑝𝑡
Thus, the fairness index F equals the sum of distributions squared and divided by the square of sums:
𝐹 =
( 𝑋𝑖
𝑛
𝑖=1 )²
𝑛 𝑋𝑖²𝑛
𝑖=1
We have used these two topologies to simulate the seven protocols for 1, 2, 4, 6, 8, 10, 12, 16 and 24 flows.
The fairness calculus results are as mentioned in the following graph:
Figure 5. Fairness for different flow numbers
2.5. Performance
The performance of a congestion control algorithm is the relation between efficiency and fairness:
Performance = α × E + (1 – α) × F
With α = [0,1.. 0,9], E the efficiency and F the fairness.
For the different algorithms, we have calculated the performances for a network rather efficient with α = 0,8, a
network rather fair with α = 0,2 and a balanced network when α = 0,5. The results for 1, 2, 4, 6, 8, 10, 12, 16 and
24 flows are as follows:
Performance Evaluation Of High Speed Congestion Control Protocols
www.iosrjournals.org 18 | Page
Figure 6.a. Performance for different flow numbers (α = 0,8)
Figure 6.b. Performance for different flow numbers (α = 0,5)
Figure 6.c. Performance for different flow numbers (α = 0,2)
2.6. Link Utilisation per RTT
We varied the RTT for different congestion control algorithms to calculate the link utilization. The
used RTT values are: 20 ms, 60 ms, 100 ms, 140 ms, 180 ms and 220 ms.
We used the basic topology with only one flow; the results are described in the following graph:
Figure 7. Link utilization for different RTTs
2.7. Link utilization for different queue sizes
Certainly the queue size has an important impact on the efficiency of the network, but which algorithm
benefits the more of this change? We varied the queue size for different congestion control algorithms to
calculate the link utilization. The used sizes are: 50, 100, 150, 200, 250 and 300 packets.
We used the basic topology with one flow, the results are as follows:
Figure 8. Link utilization for different queue sizes
III. CONCLUSIONS
The high number of congestion control algorithms never satisfied the researchers. Since this field is
always having changes and enhancements due to the users’ needs and the evolution of both of hardware and
software in Telecommunications. Indeed, it is difficult to conceive an algorithm that gives satisfying results for
all the architectures.
Performance Evaluation Of High Speed Congestion Control Protocols
www.iosrjournals.org 19 | Page
During this research work, we simulated seven high speed congestion control protocols for 1, 2, 4, 6, 8,
10, 12, 16 and 24 flows. We evaluated their performances by calculating the efficiency, the fairness as well as
the performance while varying the RTT and the queue size.
Basing on the simulation and the high speed protocols performance evaluation, we can conclude that:
• Some protocols perform well in some defined cases, but weak in others.
• The network architecture has got an important impact on the protocols performance.
• For 24 flows, all protocols are unfair.
• For 24 flows, the protocols: Bic TCP, Cubic TCP, Hamilton TCP, Scalable TCP and YeAH TCP are
efficient.
• Scalable is not only TCP-friendly, but also selfish, since the first flow gets the most important throughput,
and doesn’t leave its place for any other flow such as the case of Cubic TCP, Hamilton TCP and Illinois
TCP.
• The protocols Bic TCP, HighSpeed TCP and YeAH TCP are TCP-friendly
• For low values of RTT, all the protocols use the network capacities in a bad way.
• For low values of the queue size, Cubic TCP is the most efficient.
• YeAH TCP and Illinois TCP give the best results while increasing the queue size.
• Although his aggressiveness, YeAH TCP is quite TCP-friendly. It is also quite performant, but it doesn’t
suit all the architectures.
Further work is required to evaluate the performances of these protocols by using Relentless TCP
which will be the topic for a multitude of research works in the near future, particularly to define if the protocols
that have more stability and take more time before falling another time in a new congestion such as Cubic TCP
and Illinois TCP in order to check if they will well exploit the law that forms the basis of Relentless TCP which
is the reduction of the congestion window with the number of lost segments. It will be also interesting to create a
model that changes dynamically the congestion control protocols used in terms of flow number to better exploit
the network capacities as well as studying the QoS.
REFERENCES
[1] R. Mbarek, M. T. BenOthman and S. Nasri. “Fairness of High-Speed TCP Protocols with Different Flow Capacities”. Journal Of
Networks, Vol. 4, No. 3, pp. 163-169, May 2009.
[2] S. Hemminger. “TCP testing – Preventing global Internet warming”. LinuxConf Europe, Sep. 2007.
[3] S. Ha, L. Le, I. Rhee and L. Xu. “Impact of Background Traffic on Performance of High-Speed TCP Variant Protocols”. The
International Journal of Computer and Telecommunications Networking, Vol.51, May, 2007.
[4] M. Nabeshima and K. Yata. “Performance Evaluation and Comparison of Transport Protocols for Fast Long-Distance Networks”.
IEICE Trans. Commun., Vol.E89-B, No.4, pp. 1273-1283, Apr. 2006.
[5] M. Weigle, P. Sharma and J. Freeman. “Performance of Competing High-Speed TCP Flows”. Networking 2006, LNCS 3976, pp.
476-487, 2006.
[6] S. Floyd. “High-Speed TCP for Large Congestion Windows”. RFC 3649, Experimental, Dec. 2003.
[7] T. Kelly. “Scalable TCP : Improving Performance in High-Speed Wide Area Networks”. In Proceedings of PFLDnet, Geneva,
Switzerland, Feb. 2003.
[8] L. Xu, K. Harfoush, and I. Rhee. “Binary Increase Congestion Control for Fast, Long Distance Networks”. In Proceedings of IEEE
INFOCOM, Hong Kong, Mar. 2004.
[9] I. Rhee and L. Xu. “CUBIC: A New TCP-Friendly High-Speed TCP Variant”. In Proceedings of PFLDnet, Lyon, France, Feb.
2005.
[10] R. N. Shorten and D. J. Leith. “H-TCP : TCP for high-speed and long-distance networks”. In Proceedings of PFLDnet, Argonne,
Feb. 2004.
[11] S. Liu, T. Basar and R. Srikant.,"TCP-Illinois : A Loss- and Delay-based Congestion Control Algorithm for High-Speed Networks",
Performance Evaluation, 65(6-7) : 417-440, Mar. 2008.
[12] A. Baiocchi, A. P. Castellani and F. Vacirca. “YeAH-TCP: Yet Another Highspeed TCP”. PFLDnet, Roma, Italy, Feb. 2007.
[13] J. Semke, J. Mahdavi, and M. Mathis. "Automatic TCP Buffer Tuning", Computer Communications Review, a publication of ACM
SIGCOMM, Vol. 28, No. 4, Oct. 1998.
[14] R. Mbarek, M. T. BenOthman and S. Nasri. “Performance Evaluation of Competing High-Speed TCP Protocols”. IJCSNS
International Journal of Computer Science and Network Security, VOL.8 No.6, pp. 99-105, June 2008.
[15] R. Jain. “Congestion Control and Traffic Management in ATM Networks : Recent Advances and A Survey”. Computer networks
and ISDN Systems, Nov. 1995.
Authors
M. Mohamed Ali Mani received his M.S degree from ISITCOM, Hammam Sousse, Sousse University Tunisia, in 2011.
He is currently a lecturer in the Department of Computer Science in ISTLS in the same University. His research interests
lie in the general area of computer networks, including high speed transports protocols, flow control, congestion control in
high-speed networks and wireless networks.
Dr. Rachid Mbarek received his Ph.D from the College of Engineering (ENIS), Sfax University, Tunisia, received his
M.Sc. degree in Computer Engineering in 2003 from the same University. He is currently a Lecturer in the Department of
Telecommunication in the ISITCOM at Sousse University, Tunisia. His research interests lie in the general area of
computer communication networks, including high-speed transports protocols, flow control and congestion control in
high-speed networks, network performance analysis, peer to peer networking.

More Related Content

What's hot

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
 
Tcp congestion control
Tcp congestion controlTcp congestion control
Tcp congestion controlAbdo sayed
 
A Study on MPTCP for Tolerating Packet Reordering and Path Heterogeneity in W...
A Study on MPTCP for Tolerating Packet Reordering and Path Heterogeneity in W...A Study on MPTCP for Tolerating Packet Reordering and Path Heterogeneity in W...
A Study on MPTCP for Tolerating Packet Reordering and Path Heterogeneity in W...Communication Systems & Networks
 
Tcp congestion control (1)
Tcp congestion control (1)Tcp congestion control (1)
Tcp congestion control (1)Abdo sayed
 
Scheduling and Resource allocation in 802.11ax (WIFI 6)
Scheduling and Resource allocation in 802.11ax (WIFI 6)Scheduling and Resource allocation in 802.11ax (WIFI 6)
Scheduling and Resource allocation in 802.11ax (WIFI 6)RESHAN FARAZ
 
Congestion control in tcp
Congestion control in tcpCongestion control in tcp
Congestion control in tcpsamarai_apoc
 
Congetion Control.pptx
Congetion Control.pptxCongetion Control.pptx
Congetion Control.pptxNaveen Dubey
 
Ad Hoc Probe
Ad Hoc ProbeAd Hoc Probe
Ad Hoc Probenutikumar
 
Computer network (13)
Computer network (13)Computer network (13)
Computer network (13)NYversity
 
Available network bandwidth schema to improve performance in tcp protocols
Available network bandwidth schema to improve performance in tcp protocolsAvailable network bandwidth schema to improve performance in tcp protocols
Available network bandwidth schema to improve performance in tcp protocolsIJCNCJournal
 
PERFORMANCE EVALUATION OF SELECTED E2E TCP CONGESTION CONTROL MECHANISM OVER ...
PERFORMANCE EVALUATION OF SELECTED E2E TCP CONGESTION CONTROL MECHANISM OVER ...PERFORMANCE EVALUATION OF SELECTED E2E TCP CONGESTION CONTROL MECHANISM OVER ...
PERFORMANCE EVALUATION OF SELECTED E2E TCP CONGESTION CONTROL MECHANISM OVER ...ijwmn
 
Tcp Congestion Avoidance
Tcp Congestion AvoidanceTcp Congestion Avoidance
Tcp Congestion AvoidanceRam Dutt Shukla
 

What's hot (20)

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
 
HIGH SPEED NETWORKS
HIGH SPEED NETWORKSHIGH SPEED NETWORKS
HIGH SPEED NETWORKS
 
Ch24
Ch24Ch24
Ch24
 
TCP Congestion Control
TCP Congestion ControlTCP Congestion Control
TCP Congestion Control
 
presentation
presentationpresentation
presentation
 
Tcp congestion control
Tcp congestion controlTcp congestion control
Tcp congestion control
 
A Study on MPTCP for Tolerating Packet Reordering and Path Heterogeneity in W...
A Study on MPTCP for Tolerating Packet Reordering and Path Heterogeneity in W...A Study on MPTCP for Tolerating Packet Reordering and Path Heterogeneity in W...
A Study on MPTCP for Tolerating Packet Reordering and Path Heterogeneity in W...
 
Tcp congestion control (1)
Tcp congestion control (1)Tcp congestion control (1)
Tcp congestion control (1)
 
Scheduling and Resource allocation in 802.11ax (WIFI 6)
Scheduling and Resource allocation in 802.11ax (WIFI 6)Scheduling and Resource allocation in 802.11ax (WIFI 6)
Scheduling and Resource allocation in 802.11ax (WIFI 6)
 
Lect9
Lect9Lect9
Lect9
 
Chapter 23
Chapter 23Chapter 23
Chapter 23
 
Ch23
Ch23Ch23
Ch23
 
Congestion control in tcp
Congestion control in tcpCongestion control in tcp
Congestion control in tcp
 
Congetion Control.pptx
Congetion Control.pptxCongetion Control.pptx
Congetion Control.pptx
 
Ad Hoc Probe
Ad Hoc ProbeAd Hoc Probe
Ad Hoc Probe
 
Ch23
Ch23Ch23
Ch23
 
Computer network (13)
Computer network (13)Computer network (13)
Computer network (13)
 
Available network bandwidth schema to improve performance in tcp protocols
Available network bandwidth schema to improve performance in tcp protocolsAvailable network bandwidth schema to improve performance in tcp protocols
Available network bandwidth schema to improve performance in tcp protocols
 
PERFORMANCE EVALUATION OF SELECTED E2E TCP CONGESTION CONTROL MECHANISM OVER ...
PERFORMANCE EVALUATION OF SELECTED E2E TCP CONGESTION CONTROL MECHANISM OVER ...PERFORMANCE EVALUATION OF SELECTED E2E TCP CONGESTION CONTROL MECHANISM OVER ...
PERFORMANCE EVALUATION OF SELECTED E2E TCP CONGESTION CONTROL MECHANISM OVER ...
 
Tcp Congestion Avoidance
Tcp Congestion AvoidanceTcp Congestion Avoidance
Tcp Congestion Avoidance
 

Viewers also liked

A Critical Review of the Nigerian Energy Scenario
A Critical Review of the Nigerian Energy ScenarioA Critical Review of the Nigerian Energy Scenario
A Critical Review of the Nigerian Energy ScenarioIOSR Journals
 
A Novel Approach for Tracking with Implicit Video Shot Detection
A Novel Approach for Tracking with Implicit Video Shot DetectionA Novel Approach for Tracking with Implicit Video Shot Detection
A Novel Approach for Tracking with Implicit Video Shot DetectionIOSR Journals
 
Investigation on Using Fractal Geometry for Classification of Partial Dischar...
Investigation on Using Fractal Geometry for Classification of Partial Dischar...Investigation on Using Fractal Geometry for Classification of Partial Dischar...
Investigation on Using Fractal Geometry for Classification of Partial Dischar...IOSR Journals
 
Growth Performance of Rats Maintained On Citrullus colocynthis Seed Coat-base...
Growth Performance of Rats Maintained On Citrullus colocynthis Seed Coat-base...Growth Performance of Rats Maintained On Citrullus colocynthis Seed Coat-base...
Growth Performance of Rats Maintained On Citrullus colocynthis Seed Coat-base...IOSR Journals
 
Простые и составные числительные
Простые и составные числительныеПростые и составные числительные
Простые и составные числительныеNatalya Dyrda
 
Application of Comparators in Modern Power System Protection and Control
Application of Comparators in Modern Power System Protection and ControlApplication of Comparators in Modern Power System Protection and Control
Application of Comparators in Modern Power System Protection and ControlIOSR Journals
 
Threshold Secure B2B Model
Threshold Secure B2B ModelThreshold Secure B2B Model
Threshold Secure B2B ModelIOSR Journals
 
Rp presentation
Rp presentationRp presentation
Rp presentationKhalid Ak
 
Survey and Analysis of Medium Access Control Protocols for Wireless Sensor Ne...
Survey and Analysis of Medium Access Control Protocols for Wireless Sensor Ne...Survey and Analysis of Medium Access Control Protocols for Wireless Sensor Ne...
Survey and Analysis of Medium Access Control Protocols for Wireless Sensor Ne...IOSR Journals
 
Survey of different Web Application Attacks & Its Preventive Measures
Survey of different Web Application Attacks & Its Preventive MeasuresSurvey of different Web Application Attacks & Its Preventive Measures
Survey of different Web Application Attacks & Its Preventive MeasuresIOSR Journals
 
лицей пушкина
лицей пушкиналицей пушкина
лицей пушкинаNatalya Dyrda
 
Signal Processing Approach for Recognizing Identical Reads From DNA Sequencin...
Signal Processing Approach for Recognizing Identical Reads From DNA Sequencin...Signal Processing Approach for Recognizing Identical Reads From DNA Sequencin...
Signal Processing Approach for Recognizing Identical Reads From DNA Sequencin...IOSR Journals
 
Знаете ли вы сказки А.С. Пушкина
Знаете ли вы сказки А.С. ПушкинаЗнаете ли вы сказки А.С. Пушкина
Знаете ли вы сказки А.С. ПушкинаNatalya Dyrda
 

Viewers also liked (20)

A Critical Review of the Nigerian Energy Scenario
A Critical Review of the Nigerian Energy ScenarioA Critical Review of the Nigerian Energy Scenario
A Critical Review of the Nigerian Energy Scenario
 
A Novel Approach for Tracking with Implicit Video Shot Detection
A Novel Approach for Tracking with Implicit Video Shot DetectionA Novel Approach for Tracking with Implicit Video Shot Detection
A Novel Approach for Tracking with Implicit Video Shot Detection
 
J o b s new sky 1 unit 36
J o b s new sky 1 unit 36J o b s new sky 1 unit 36
J o b s new sky 1 unit 36
 
Investigation on Using Fractal Geometry for Classification of Partial Dischar...
Investigation on Using Fractal Geometry for Classification of Partial Dischar...Investigation on Using Fractal Geometry for Classification of Partial Dischar...
Investigation on Using Fractal Geometry for Classification of Partial Dischar...
 
Growth Performance of Rats Maintained On Citrullus colocynthis Seed Coat-base...
Growth Performance of Rats Maintained On Citrullus colocynthis Seed Coat-base...Growth Performance of Rats Maintained On Citrullus colocynthis Seed Coat-base...
Growth Performance of Rats Maintained On Citrullus colocynthis Seed Coat-base...
 
Простые и составные числительные
Простые и составные числительныеПростые и составные числительные
Простые и составные числительные
 
Application of Comparators in Modern Power System Protection and Control
Application of Comparators in Modern Power System Protection and ControlApplication of Comparators in Modern Power System Protection and Control
Application of Comparators in Modern Power System Protection and Control
 
Threshold Secure B2B Model
Threshold Secure B2B ModelThreshold Secure B2B Model
Threshold Secure B2B Model
 
Rp presentation
Rp presentationRp presentation
Rp presentation
 
Dewis cv
Dewis cvDewis cv
Dewis cv
 
A0350107
A0350107A0350107
A0350107
 
Survey and Analysis of Medium Access Control Protocols for Wireless Sensor Ne...
Survey and Analysis of Medium Access Control Protocols for Wireless Sensor Ne...Survey and Analysis of Medium Access Control Protocols for Wireless Sensor Ne...
Survey and Analysis of Medium Access Control Protocols for Wireless Sensor Ne...
 
Survey of different Web Application Attacks & Its Preventive Measures
Survey of different Web Application Attacks & Its Preventive MeasuresSurvey of different Web Application Attacks & Its Preventive Measures
Survey of different Web Application Attacks & Its Preventive Measures
 
Bangkok
BangkokBangkok
Bangkok
 
Abecedario
AbecedarioAbecedario
Abecedario
 
лицей пушкина
лицей пушкиналицей пушкина
лицей пушкина
 
Signal Processing Approach for Recognizing Identical Reads From DNA Sequencin...
Signal Processing Approach for Recognizing Identical Reads From DNA Sequencin...Signal Processing Approach for Recognizing Identical Reads From DNA Sequencin...
Signal Processing Approach for Recognizing Identical Reads From DNA Sequencin...
 
Introtothemes
IntrotothemesIntrotothemes
Introtothemes
 
10____
  10____  10____
10____
 
Знаете ли вы сказки А.С. Пушкина
Знаете ли вы сказки А.С. ПушкинаЗнаете ли вы сказки А.С. Пушкина
Знаете ли вы сказки А.С. Пушкина
 

Similar to Performance Evaluation of High Speed Congestion Control Protocols

ANALYSIS AND EXPERIMENTAL EVALUATION OF THE TRANSMISSION CONTROL PROTOCOL CON...
ANALYSIS AND EXPERIMENTAL EVALUATION OF THE TRANSMISSION CONTROL PROTOCOL CON...ANALYSIS AND EXPERIMENTAL EVALUATION OF THE TRANSMISSION CONTROL PROTOCOL CON...
ANALYSIS AND EXPERIMENTAL EVALUATION OF THE TRANSMISSION CONTROL PROTOCOL CON...IRJET Journal
 
A Packet Drop Guesser Module for Congestion Control Protocols for High speed ...
A Packet Drop Guesser Module for Congestion Control Protocols for High speed ...A Packet Drop Guesser Module for Congestion Control Protocols for High speed ...
A Packet Drop Guesser Module for Congestion Control Protocols for High speed ...ijcseit
 
A packet drop guesser module for congestion Control protocols for high speed ...
A packet drop guesser module for congestion Control protocols for high speed ...A packet drop guesser module for congestion Control protocols for high speed ...
A packet drop guesser module for congestion Control protocols for high speed ...ijcseit
 
tcp congestion .pptx
tcp congestion .pptxtcp congestion .pptx
tcp congestion .pptxECE01AJAYS
 
Lecture 19 22. transport protocol for ad-hoc
Lecture 19 22. transport protocol for ad-hoc Lecture 19 22. transport protocol for ad-hoc
Lecture 19 22. transport protocol for ad-hoc Chandra Meena
 
Iaetsd an effective approach to eliminate tcp incast
Iaetsd an effective approach to eliminate tcp incastIaetsd an effective approach to eliminate tcp incast
Iaetsd an effective approach to eliminate tcp incastIaetsd Iaetsd
 
chapter 3.2 TCP.pptx
chapter 3.2 TCP.pptxchapter 3.2 TCP.pptx
chapter 3.2 TCP.pptxTekle12
 
IMPACT OF CONTENTION WINDOW ON CONGESTION CONTROL ALGORITHMS FOR WIRELESS ADH...
IMPACT OF CONTENTION WINDOW ON CONGESTION CONTROL ALGORITHMS FOR WIRELESS ADH...IMPACT OF CONTENTION WINDOW ON CONGESTION CONTROL ALGORITHMS FOR WIRELESS ADH...
IMPACT OF CONTENTION WINDOW ON CONGESTION CONTROL ALGORITHMS FOR WIRELESS ADH...cscpconf
 
Studying_the_TCP_Flow_and_Congestion_Con.pdf
Studying_the_TCP_Flow_and_Congestion_Con.pdfStudying_the_TCP_Flow_and_Congestion_Con.pdf
Studying_the_TCP_Flow_and_Congestion_Con.pdfIUA
 
TCP Traffic Control Chapter12
TCP Traffic Control Chapter12TCP Traffic Control Chapter12
TCP Traffic Control Chapter12daniel ayalew
 
Congestion Control: A Dynamic Approach
Congestion Control: A Dynamic ApproachCongestion Control: A Dynamic Approach
Congestion Control: A Dynamic ApproachIOSR Journals
 
Congestion Control: A Dynamic Approach
Congestion Control: A Dynamic ApproachCongestion Control: A Dynamic Approach
Congestion Control: A Dynamic ApproachIOSR Journals
 
"Performance Evaluation and Comparison of Westwood+, New Reno and Vegas TCP ...
 "Performance Evaluation and Comparison of Westwood+, New Reno and Vegas TCP ... "Performance Evaluation and Comparison of Westwood+, New Reno and Vegas TCP ...
"Performance Evaluation and Comparison of Westwood+, New Reno and Vegas TCP ...losalamos
 
DCN 5th ed. slides ch24 Transport-Layer Protocols.pdf
DCN 5th ed. slides ch24 Transport-Layer Protocols.pdfDCN 5th ed. slides ch24 Transport-Layer Protocols.pdf
DCN 5th ed. slides ch24 Transport-Layer Protocols.pdfBilal Munir Mughal
 

Similar to Performance Evaluation of High Speed Congestion Control Protocols (20)

ANALYSIS AND EXPERIMENTAL EVALUATION OF THE TRANSMISSION CONTROL PROTOCOL CON...
ANALYSIS AND EXPERIMENTAL EVALUATION OF THE TRANSMISSION CONTROL PROTOCOL CON...ANALYSIS AND EXPERIMENTAL EVALUATION OF THE TRANSMISSION CONTROL PROTOCOL CON...
ANALYSIS AND EXPERIMENTAL EVALUATION OF THE TRANSMISSION CONTROL PROTOCOL CON...
 
A Packet Drop Guesser Module for Congestion Control Protocols for High speed ...
A Packet Drop Guesser Module for Congestion Control Protocols for High speed ...A Packet Drop Guesser Module for Congestion Control Protocols for High speed ...
A Packet Drop Guesser Module for Congestion Control Protocols for High speed ...
 
A packet drop guesser module for congestion Control protocols for high speed ...
A packet drop guesser module for congestion Control protocols for high speed ...A packet drop guesser module for congestion Control protocols for high speed ...
A packet drop guesser module for congestion Control protocols for high speed ...
 
tcp congestion .pptx
tcp congestion .pptxtcp congestion .pptx
tcp congestion .pptx
 
Lecture 19 22. transport protocol for ad-hoc
Lecture 19 22. transport protocol for ad-hoc Lecture 19 22. transport protocol for ad-hoc
Lecture 19 22. transport protocol for ad-hoc
 
U01725129138
U01725129138U01725129138
U01725129138
 
Iaetsd an effective approach to eliminate tcp incast
Iaetsd an effective approach to eliminate tcp incastIaetsd an effective approach to eliminate tcp incast
Iaetsd an effective approach to eliminate tcp incast
 
chapter 3.2 TCP.pptx
chapter 3.2 TCP.pptxchapter 3.2 TCP.pptx
chapter 3.2 TCP.pptx
 
IMPACT OF CONTENTION WINDOW ON CONGESTION CONTROL ALGORITHMS FOR WIRELESS ADH...
IMPACT OF CONTENTION WINDOW ON CONGESTION CONTROL ALGORITHMS FOR WIRELESS ADH...IMPACT OF CONTENTION WINDOW ON CONGESTION CONTROL ALGORITHMS FOR WIRELESS ADH...
IMPACT OF CONTENTION WINDOW ON CONGESTION CONTROL ALGORITHMS FOR WIRELESS ADH...
 
P2885 jung
P2885 jungP2885 jung
P2885 jung
 
Studying_the_TCP_Flow_and_Congestion_Con.pdf
Studying_the_TCP_Flow_and_Congestion_Con.pdfStudying_the_TCP_Flow_and_Congestion_Con.pdf
Studying_the_TCP_Flow_and_Congestion_Con.pdf
 
Fairness in Transfer Control Protocol for Congestion Control in Multiplicativ...
Fairness in Transfer Control Protocol for Congestion Control in Multiplicativ...Fairness in Transfer Control Protocol for Congestion Control in Multiplicativ...
Fairness in Transfer Control Protocol for Congestion Control in Multiplicativ...
 
TCP Traffic Control Chapter12
TCP Traffic Control Chapter12TCP Traffic Control Chapter12
TCP Traffic Control Chapter12
 
M017137072
M017137072M017137072
M017137072
 
Congestion Control: A Dynamic Approach
Congestion Control: A Dynamic ApproachCongestion Control: A Dynamic Approach
Congestion Control: A Dynamic Approach
 
Congestion Control: A Dynamic Approach
Congestion Control: A Dynamic ApproachCongestion Control: A Dynamic Approach
Congestion Control: A Dynamic Approach
 
"Performance Evaluation and Comparison of Westwood+, New Reno and Vegas TCP ...
 "Performance Evaluation and Comparison of Westwood+, New Reno and Vegas TCP ... "Performance Evaluation and Comparison of Westwood+, New Reno and Vegas TCP ...
"Performance Evaluation and Comparison of Westwood+, New Reno and Vegas TCP ...
 
TCP_Congestion_Control.ppt
TCP_Congestion_Control.pptTCP_Congestion_Control.ppt
TCP_Congestion_Control.ppt
 
HIGH SPEED NETWORKS
HIGH SPEED NETWORKSHIGH SPEED NETWORKS
HIGH SPEED NETWORKS
 
DCN 5th ed. slides ch24 Transport-Layer Protocols.pdf
DCN 5th ed. slides ch24 Transport-Layer Protocols.pdfDCN 5th ed. slides ch24 Transport-Layer Protocols.pdf
DCN 5th ed. slides ch24 Transport-Layer Protocols.pdf
 

More from IOSR Journals (20)

A011140104
A011140104A011140104
A011140104
 
M0111397100
M0111397100M0111397100
M0111397100
 
L011138596
L011138596L011138596
L011138596
 
K011138084
K011138084K011138084
K011138084
 
J011137479
J011137479J011137479
J011137479
 
I011136673
I011136673I011136673
I011136673
 
G011134454
G011134454G011134454
G011134454
 
H011135565
H011135565H011135565
H011135565
 
F011134043
F011134043F011134043
F011134043
 
E011133639
E011133639E011133639
E011133639
 
D011132635
D011132635D011132635
D011132635
 
C011131925
C011131925C011131925
C011131925
 
B011130918
B011130918B011130918
B011130918
 
A011130108
A011130108A011130108
A011130108
 
I011125160
I011125160I011125160
I011125160
 
H011124050
H011124050H011124050
H011124050
 
G011123539
G011123539G011123539
G011123539
 
F011123134
F011123134F011123134
F011123134
 
E011122530
E011122530E011122530
E011122530
 
D011121524
D011121524D011121524
D011121524
 

Recently uploaded

Continuing Bonds Through AI: A Hermeneutic Reflection on Thanabots
Continuing Bonds Through AI: A Hermeneutic Reflection on ThanabotsContinuing Bonds Through AI: A Hermeneutic Reflection on Thanabots
Continuing Bonds Through AI: A Hermeneutic Reflection on ThanabotsLeah Henrickson
 
The Metaverse: Are We There Yet?
The  Metaverse:    Are   We  There  Yet?The  Metaverse:    Are   We  There  Yet?
The Metaverse: Are We There Yet?Mark Billinghurst
 
1111 ChatGPT Prompts PDF Free Download - Prompts for ChatGPT
1111 ChatGPT Prompts PDF Free Download - Prompts for ChatGPT1111 ChatGPT Prompts PDF Free Download - Prompts for ChatGPT
1111 ChatGPT Prompts PDF Free Download - Prompts for ChatGPTiSEO AI
 
TopCryptoSupers 12thReport OrionX May2024
TopCryptoSupers 12thReport OrionX May2024TopCryptoSupers 12thReport OrionX May2024
TopCryptoSupers 12thReport OrionX May2024Stephen Perrenod
 
ECS 2024 Teams Premium - Pretty Secure
ECS 2024   Teams Premium - Pretty SecureECS 2024   Teams Premium - Pretty Secure
ECS 2024 Teams Premium - Pretty SecureFemke de Vroome
 
WSO2CONMay2024OpenSourceConferenceDebrief.pptx
WSO2CONMay2024OpenSourceConferenceDebrief.pptxWSO2CONMay2024OpenSourceConferenceDebrief.pptx
WSO2CONMay2024OpenSourceConferenceDebrief.pptxJennifer Lim
 
A Business-Centric Approach to Design System Strategy
A Business-Centric Approach to Design System StrategyA Business-Centric Approach to Design System Strategy
A Business-Centric Approach to Design System StrategyUXDXConf
 
Breaking Down the Flutterwave Scandal What You Need to Know.pdf
Breaking Down the Flutterwave Scandal What You Need to Know.pdfBreaking Down the Flutterwave Scandal What You Need to Know.pdf
Breaking Down the Flutterwave Scandal What You Need to Know.pdfUK Journal
 
Syngulon - Selection technology May 2024.pdf
Syngulon - Selection technology May 2024.pdfSyngulon - Selection technology May 2024.pdf
Syngulon - Selection technology May 2024.pdfSyngulon
 
AI presentation and introduction - Retrieval Augmented Generation RAG 101
AI presentation and introduction - Retrieval Augmented Generation RAG 101AI presentation and introduction - Retrieval Augmented Generation RAG 101
AI presentation and introduction - Retrieval Augmented Generation RAG 101vincent683379
 
Easier, Faster, and More Powerful – Notes Document Properties Reimagined
Easier, Faster, and More Powerful – Notes Document Properties ReimaginedEasier, Faster, and More Powerful – Notes Document Properties Reimagined
Easier, Faster, and More Powerful – Notes Document Properties Reimaginedpanagenda
 
Google I/O Extended 2024 Warsaw
Google I/O Extended 2024 WarsawGoogle I/O Extended 2024 Warsaw
Google I/O Extended 2024 WarsawGDSC PJATK
 
The Value of Certifying Products for FDO _ Paul at FIDO Alliance.pdf
The Value of Certifying Products for FDO _ Paul at FIDO Alliance.pdfThe Value of Certifying Products for FDO _ Paul at FIDO Alliance.pdf
The Value of Certifying Products for FDO _ Paul at FIDO Alliance.pdfFIDO Alliance
 
Integrating Telephony Systems with Salesforce: Insights and Considerations, B...
Integrating Telephony Systems with Salesforce: Insights and Considerations, B...Integrating Telephony Systems with Salesforce: Insights and Considerations, B...
Integrating Telephony Systems with Salesforce: Insights and Considerations, B...CzechDreamin
 
Your enemies use GenAI too - staying ahead of fraud with Neo4j
Your enemies use GenAI too - staying ahead of fraud with Neo4jYour enemies use GenAI too - staying ahead of fraud with Neo4j
Your enemies use GenAI too - staying ahead of fraud with Neo4jNeo4j
 
ASRock Industrial FDO Solutions in Action for Industrial Edge AI _ Kenny at A...
ASRock Industrial FDO Solutions in Action for Industrial Edge AI _ Kenny at A...ASRock Industrial FDO Solutions in Action for Industrial Edge AI _ Kenny at A...
ASRock Industrial FDO Solutions in Action for Industrial Edge AI _ Kenny at A...FIDO Alliance
 
Behind the Scenes From the Manager's Chair: Decoding the Secrets of Successfu...
Behind the Scenes From the Manager's Chair: Decoding the Secrets of Successfu...Behind the Scenes From the Manager's Chair: Decoding the Secrets of Successfu...
Behind the Scenes From the Manager's Chair: Decoding the Secrets of Successfu...CzechDreamin
 
Powerful Start- the Key to Project Success, Barbara Laskowska
Powerful Start- the Key to Project Success, Barbara LaskowskaPowerful Start- the Key to Project Success, Barbara Laskowska
Powerful Start- the Key to Project Success, Barbara LaskowskaCzechDreamin
 
AI mind or machine power point presentation
AI mind or machine power point presentationAI mind or machine power point presentation
AI mind or machine power point presentationyogeshlabana357357
 

Recently uploaded (20)

Continuing Bonds Through AI: A Hermeneutic Reflection on Thanabots
Continuing Bonds Through AI: A Hermeneutic Reflection on ThanabotsContinuing Bonds Through AI: A Hermeneutic Reflection on Thanabots
Continuing Bonds Through AI: A Hermeneutic Reflection on Thanabots
 
The Metaverse: Are We There Yet?
The  Metaverse:    Are   We  There  Yet?The  Metaverse:    Are   We  There  Yet?
The Metaverse: Are We There Yet?
 
1111 ChatGPT Prompts PDF Free Download - Prompts for ChatGPT
1111 ChatGPT Prompts PDF Free Download - Prompts for ChatGPT1111 ChatGPT Prompts PDF Free Download - Prompts for ChatGPT
1111 ChatGPT Prompts PDF Free Download - Prompts for ChatGPT
 
TopCryptoSupers 12thReport OrionX May2024
TopCryptoSupers 12thReport OrionX May2024TopCryptoSupers 12thReport OrionX May2024
TopCryptoSupers 12thReport OrionX May2024
 
ECS 2024 Teams Premium - Pretty Secure
ECS 2024   Teams Premium - Pretty SecureECS 2024   Teams Premium - Pretty Secure
ECS 2024 Teams Premium - Pretty Secure
 
WSO2CONMay2024OpenSourceConferenceDebrief.pptx
WSO2CONMay2024OpenSourceConferenceDebrief.pptxWSO2CONMay2024OpenSourceConferenceDebrief.pptx
WSO2CONMay2024OpenSourceConferenceDebrief.pptx
 
A Business-Centric Approach to Design System Strategy
A Business-Centric Approach to Design System StrategyA Business-Centric Approach to Design System Strategy
A Business-Centric Approach to Design System Strategy
 
Overview of Hyperledger Foundation
Overview of Hyperledger FoundationOverview of Hyperledger Foundation
Overview of Hyperledger Foundation
 
Breaking Down the Flutterwave Scandal What You Need to Know.pdf
Breaking Down the Flutterwave Scandal What You Need to Know.pdfBreaking Down the Flutterwave Scandal What You Need to Know.pdf
Breaking Down the Flutterwave Scandal What You Need to Know.pdf
 
Syngulon - Selection technology May 2024.pdf
Syngulon - Selection technology May 2024.pdfSyngulon - Selection technology May 2024.pdf
Syngulon - Selection technology May 2024.pdf
 
AI presentation and introduction - Retrieval Augmented Generation RAG 101
AI presentation and introduction - Retrieval Augmented Generation RAG 101AI presentation and introduction - Retrieval Augmented Generation RAG 101
AI presentation and introduction - Retrieval Augmented Generation RAG 101
 
Easier, Faster, and More Powerful – Notes Document Properties Reimagined
Easier, Faster, and More Powerful – Notes Document Properties ReimaginedEasier, Faster, and More Powerful – Notes Document Properties Reimagined
Easier, Faster, and More Powerful – Notes Document Properties Reimagined
 
Google I/O Extended 2024 Warsaw
Google I/O Extended 2024 WarsawGoogle I/O Extended 2024 Warsaw
Google I/O Extended 2024 Warsaw
 
The Value of Certifying Products for FDO _ Paul at FIDO Alliance.pdf
The Value of Certifying Products for FDO _ Paul at FIDO Alliance.pdfThe Value of Certifying Products for FDO _ Paul at FIDO Alliance.pdf
The Value of Certifying Products for FDO _ Paul at FIDO Alliance.pdf
 
Integrating Telephony Systems with Salesforce: Insights and Considerations, B...
Integrating Telephony Systems with Salesforce: Insights and Considerations, B...Integrating Telephony Systems with Salesforce: Insights and Considerations, B...
Integrating Telephony Systems with Salesforce: Insights and Considerations, B...
 
Your enemies use GenAI too - staying ahead of fraud with Neo4j
Your enemies use GenAI too - staying ahead of fraud with Neo4jYour enemies use GenAI too - staying ahead of fraud with Neo4j
Your enemies use GenAI too - staying ahead of fraud with Neo4j
 
ASRock Industrial FDO Solutions in Action for Industrial Edge AI _ Kenny at A...
ASRock Industrial FDO Solutions in Action for Industrial Edge AI _ Kenny at A...ASRock Industrial FDO Solutions in Action for Industrial Edge AI _ Kenny at A...
ASRock Industrial FDO Solutions in Action for Industrial Edge AI _ Kenny at A...
 
Behind the Scenes From the Manager's Chair: Decoding the Secrets of Successfu...
Behind the Scenes From the Manager's Chair: Decoding the Secrets of Successfu...Behind the Scenes From the Manager's Chair: Decoding the Secrets of Successfu...
Behind the Scenes From the Manager's Chair: Decoding the Secrets of Successfu...
 
Powerful Start- the Key to Project Success, Barbara Laskowska
Powerful Start- the Key to Project Success, Barbara LaskowskaPowerful Start- the Key to Project Success, Barbara Laskowska
Powerful Start- the Key to Project Success, Barbara Laskowska
 
AI mind or machine power point presentation
AI mind or machine power point presentationAI mind or machine power point presentation
AI mind or machine power point presentation
 

Performance Evaluation of High Speed Congestion Control Protocols

  • 1. IOSR Journal of Computer Engineering (IOSRJCE) ISSN: 2278-0661 Volume 3, Issue 1 (July-Aug. 2012), PP 13-19 www.iosrjournals.org www.iosrjournals.org 13 | Page Performance Evaluation of High Speed Congestion Control Protocols Mohamed Ali Mani and Rachid Mbarek ABSTRACT: Computer networks are facing several technological and scientific challenges. Among these challenges is congestion control. It limits the quantity of information input at a rate less important than that of the transmission one to ensure good performance as well as protect against overload and blocking of the network. Researchers have done a great deal of work on improving congestion control protocols, especially on high speed networks. In this paper, we will be studying the congestion control alongside low and high speed congestion control protocols. We will be also simulating, evaluating, and comparing seven of high speed congestion control protocols : Bic TCP, Cubic TCP, Hamilton TCP, HighSpeed TCP, Illinois TCP, Scalable TCP and YeAH TCP, with multiple flows. KEYWORDS: HIGH-SPEED, TCP PROTOCOLS, CONGESTION CONTROL, PERFORMANCE, MULTIPLE FLOWS. I. INTRODUCTION Due to the ease of finding information, data access and utilization by a simple mouse move in multimedia pages, Internet has become necessary in our daily lives. In fact, the number of Internet users is growing rapidly, and according to the ITU (International Telecommunication Union) it reached only 500 million users in the beginning of 2000s while it was 1.6 billion in 2008 to rise to the number of 2 billions in 2011. This increase must undergo a parallel development of both of hardware and software at the same time. Early, throughput was about 56 kbps, however, now we talk about Gigabit Internet aiming to meet the users’ needs mainly in astronomy and video conference fields. In Internet, there are some machines responsible for transmitting data packets, and other that take off these packets from the queue. If the sender machine sends a data packet rate much more important than the rate of the receiver, network congestion is produced, hence, a congestion control will limit the quantity of input information with a lower rate than the transmission one to guarantee a good performance as well as a network protection against overloading and blocking. The high number of high speed congestion control protocols led us to prepare this research work, which focuses on evaluating and comparing high speed congestion control protocols. This paper is organized as follows: In the second section we study the state of the art. In the third one, we present the architectures used as well as the curves and the performances evaluation for different high speed congestion control protocols. STATE OF THE ART Researchers have worked on the enhancement of high speed congestion control protocols. Practically every year, one or two protocols are implemented having for each one of them its own specific strengths and weaknesses. Recently, the research works are interested in evaluating the performance of these protocols by comparing among 2 to 5 protocols with 1 to 12 flows [1] [2] [3] [4] [5]. HS-TCP [6]: If the congestion window is low, HS-TCP behaves just like the standard TCP, once the congestion window exceeds the max_ssthresh, it rises in an aggressive way. The algorithm of HS-TCP is an AIMD Additive Increment cwnd = cwnd + a(cwnd) Multiplicative Decrement cwnd = (1- b(cwnd)) x cwnd, the values used for HSTCP are a(cwnd) in the interval of [1,72], b(cwnd) in the interval of [0.1,0.5] and low_window equals 38 packets. when cwnd is lower than low_window a(cwnd) = 1 and b(cwnd) = 0.5 thus the algorithm acts just like a standard TCP, in the case of a packet loss, the cwnd is reduced to 50%, when the cwnd reaches the high_window a(cwnd ) = 72 and b(cwnd)=1. If there is an acknowledgment: 𝑤1 = 1 + β 2 × cwnd cwnd < 𝑤1 𝑤1 = cwnd cwnd ≥ 𝑤1 w2 = cwnd Scalable TCP [7]: For this protocol the cwnd increases with 0.001, if a congestion is detected the cwnd reduces with 0.125 independently from the throughput and the packet size. This algorithm is a MIMD; Multiplicative
  • 2. Performance Evaluation Of High Speed Congestion Control Protocols www.iosrjournals.org 14 | Page Increase since the cwnd increases with 0.01 per acknowledgment, Therefore there is a total increase of 0.01 cwnd per RTT, and Multiplicative Decrease since the cwnd decreases with 0.125 per packet loss. BIC TCP [8]: uses a function that allows to have a rapid increase of cwnd when its value is far from the maximal threshold Smax and to slowly decrease when having a value close to w_1. cwnd = (1 – β) × cwnd With : fα (δ, cwnd) = β δ δ ≤ 1 and cwnd < w1 or w1 ≤ cwnd < w1 + β δ 1 < δ ≤ Smax and cwnd < w1 w1 β−1 β ≤ cwnd − w1 < Smax 1 − β Smax otherwise cwnd : Current congestion window Smax : Maximal threshold Smin : Minimal threshold Β : Decrease factor usually equals 0.875 CUBIC TCP [9]: The name CUBIC refers to the function of the congestion window increase which is cubic, when receiving an ACK: cwnd = C (T – K) ³ + Maxcwnd When having a packet loss: cwnd = β Maxcwnd With : HTCP [10]: uses Δ the duration since the last congestion rather than cwnd as information about the product delay bandwidth BDP. The increase parameter of AIMD (additive-increase/multiplicative-decrease) varies depending on Δ. It also depends on the value of RTT which has provoked the unfairness among the competitor flows with different RTTs. In case of receiving an ACK: cwnd = cwnd + 2 1−β fα(Δ) cwnd In case of packet loss: cwnd = gβ(B) × cwnd With : fα(Δ) = 1 Δ ≤ ΔL max fα Δ Tmin ,1 Δ > ΔL gβ(B) = 0.5 B K+1 – B(k) B(K) > ΔB min Tmin Tmax ,0.8 otherwise cwnd*:*Current congestion window α*:*Increase parameter β*:*Decrease parameter Δ*:*Duration of time since the last congestion ΔL*:*Threshold to change the mode low speed to highspeed Tmin *:*Minimal duration of sending and receiving packets Tmax *:*Maximal duration of sending and receiving packets B K + 1 *:*Maximal throughput reached before a congestion fα Δ *=*1 +10 (Δ - ΔL) + 0,25 (Δ - ΔL)² Cwnd*:*Current congestion window C*:*Constant T*:*Duration of time since the last congestion Maxcwnd *:*Size of the last congestion window K*:* Maxcwnd β/C3
  • 3. Performance Evaluation Of High Speed Congestion Control Protocols www.iosrjournals.org 15 | Page Illinois TCP [11] : Similar to standard TCP, Illinois-TCP increases the congestion window by using two parameters α and β, it is based on packet loss to define the congestion window value, however the values of α and β are not constant by using the delays. When receiving an ACK: cwnd = cwnd + α 𝑐𝑤𝑛𝑑 When losing packets: cwnd = (1- β) × cwnd With : α = 𝑓1(𝑑 𝑎 ) = α 𝑚𝑎𝑥 𝑑 𝑎 ≤ 𝑑1 𝑘1 𝑘2+ 𝑑 𝑎 𝑜𝑡ℎ𝑒𝑟𝑤𝑖𝑠𝑒 β = 𝑓2(𝑑 𝑎 ) = β 𝑚𝑖𝑛 𝑑 𝑎 ≤ 𝑑2 𝑘3 + 𝑘4 𝑑 𝑎 𝑑2 < 𝑑 𝑎 < 𝑑3 β 𝑚𝑎𝑥 𝑜𝑡ℎ𝑒𝑟𝑤𝑖𝑠𝑒 𝑘1 = (𝑑 𝑚 − 𝑑1) α 𝑚𝑖𝑛 α 𝑚𝑎𝑥 α 𝑚𝑎𝑥 − α 𝑚𝑖𝑛 * 𝑘2 = (𝑑 𝑚 − 𝑑1) α 𝑚𝑖𝑛 α 𝑚𝑎𝑥 − α 𝑚𝑖𝑛 - 𝑑1 𝑘3 = β 𝑚𝑖𝑛 𝑑3− β 𝑚𝑎𝑥 𝑑2 𝑑3− 𝑑2 *𝑘4 = β 𝑚𝑎𝑥 − β 𝑚𝑖𝑛 𝑑3− 𝑑2 α 𝑚𝑖𝑛 = 𝑘1 𝑘2+ 𝑑 𝑚𝑜𝑦 , α 𝑚𝑎𝑥 = 𝑘1 𝑘2+ 𝑑1 β 𝑚𝑖𝑛 = 𝑘3 + 𝑘4 𝑑2 , β 𝑚𝑎𝑥 =𝑘3 + 𝑘4 𝑑3 YeAH TCP [12] the algorithm starts with the Slow Start if cwnd < ssthresh and Scalable TCP once cwnd reaches the ssthresh. This protocol uses two modes, fast mode and slow mode. In the case of the fast one, the congestion window increases aggressively, for the second mode, the protocol behaves similarly to Reno TCP. The mode is chosen according to the queue status. Having RTTBASE the minimal RTT measured by the sender and RTTMIN the minimal RTT estimated from the current window. The estimated delay is: RTTqueue = RTTmin − RTTbase Thanks to this value, the number of packet on hold in the queue can be defined as follows: Q = RTTqueue × G = RTTqueue × cwnd RTTmin And G is the throughput. II. SIMULATION AND PERFORMANCES EVALUATION 2.1. Architecture In order to simulate the high speed congestion control protocols, we have chosen a topology (as shown in figure 1) composed of a sender and a receiver linked together with two routers by a line of 1Gbps of bandwidth, the delay is 1ms. The routers are linked to each other with a line having a bandwidth of 200Mbps, the delay is equal to 92 ms and the queue capacity is exactly 100 packets [13]. The MSS size equals 1460 bytes. The differences among the bandwidths capacities provoke congestion. Figure 1. Basic topology To evaluate the performances, we have used 2, 4, 6, 8, 10, 12, 16 and 24 identical flows (as shown in figure 2) with a link capacity of 1 Gbps and a delay of 1 ms. Figure 2. Topology with multiple flows 2.2. TCP-Friendly To test the TCP Friendly of different protocols, we have used a multiple flows topology with 4 input flows triggered at the same time. The results are shown in the following graphs:
  • 4. Performance Evaluation Of High Speed Congestion Control Protocols www.iosrjournals.org 16 | Page Figure 3.a. HS TCP : Throughput variation for 4 flows * Figure 3.b. Scalable TCP : Throughput variation for 4 flows Figure 3.c. Bic TCP : Throughput variation for 4 flows * Figure 3.d. Hamilton TCP : Throughput variation for 4 flows Figure 3.e. Cubic TCP : Throughput variation for 4 flows * Figure 3.f. Illinois TCP : Throughput variation for 4 flows Figure 3.g. YeAH TCP : Throughput variation for 4 flows
  • 5. Performance Evaluation Of High Speed Congestion Control Protocols www.iosrjournals.org 17 | Page 2.3. Efficiency The efficiency (rate of utilization or performance) of a network is the percentage of utilization [14]. Mathematically, it is the division of the average throughput by the optimal throughput. An efficient network uses the maximum of capacity. The following variable 𝑞𝑖 is used as the average throughput of a flow i. The throughput of a source with n flows is: 𝑄 = 1 𝑛 𝑞𝑖 𝑛 𝑖=1 We calculate the ratio between the average throughput and the optimal one which is the result of an ideal network performance: 𝐸 = 𝑄 𝑄 𝑜𝑝𝑡 We have used these two topologies to simulate the seven protocols for 1, 2, 4, 6, 8, 10, 12, 16 and 24 flows. The efficiency calculus results are as mentioned in the following graph: Figure 4. Efficiency for different flow numbers 2.4. Fairness The fairness is the attempt of sharing the network capacities among users in a fair way. For the purpose of measuring the fairness, one method is used in the networks field which is called the Maximin law proposed by Raj Jain [15]. Here is the procedure that allows us to calculate the fairness of a proposed algorithm: Having an algorithm that provides the distribution vi = [x1, x2,…,xn] instead of the optimal distribution vopt = [x1,opt , x2,opt , … , xn,opt ]. We calculate the standardized distribution for every source as follows: 𝑋𝑖 = 𝑥𝑖 𝑥 𝑜𝑝𝑡 Thus, the fairness index F equals the sum of distributions squared and divided by the square of sums: 𝐹 = ( 𝑋𝑖 𝑛 𝑖=1 )² 𝑛 𝑋𝑖²𝑛 𝑖=1 We have used these two topologies to simulate the seven protocols for 1, 2, 4, 6, 8, 10, 12, 16 and 24 flows. The fairness calculus results are as mentioned in the following graph: Figure 5. Fairness for different flow numbers 2.5. Performance The performance of a congestion control algorithm is the relation between efficiency and fairness: Performance = α × E + (1 – α) × F With α = [0,1.. 0,9], E the efficiency and F the fairness. For the different algorithms, we have calculated the performances for a network rather efficient with α = 0,8, a network rather fair with α = 0,2 and a balanced network when α = 0,5. The results for 1, 2, 4, 6, 8, 10, 12, 16 and 24 flows are as follows:
  • 6. Performance Evaluation Of High Speed Congestion Control Protocols www.iosrjournals.org 18 | Page Figure 6.a. Performance for different flow numbers (α = 0,8) Figure 6.b. Performance for different flow numbers (α = 0,5) Figure 6.c. Performance for different flow numbers (α = 0,2) 2.6. Link Utilisation per RTT We varied the RTT for different congestion control algorithms to calculate the link utilization. The used RTT values are: 20 ms, 60 ms, 100 ms, 140 ms, 180 ms and 220 ms. We used the basic topology with only one flow; the results are described in the following graph: Figure 7. Link utilization for different RTTs 2.7. Link utilization for different queue sizes Certainly the queue size has an important impact on the efficiency of the network, but which algorithm benefits the more of this change? We varied the queue size for different congestion control algorithms to calculate the link utilization. The used sizes are: 50, 100, 150, 200, 250 and 300 packets. We used the basic topology with one flow, the results are as follows: Figure 8. Link utilization for different queue sizes III. CONCLUSIONS The high number of congestion control algorithms never satisfied the researchers. Since this field is always having changes and enhancements due to the users’ needs and the evolution of both of hardware and software in Telecommunications. Indeed, it is difficult to conceive an algorithm that gives satisfying results for all the architectures.
  • 7. Performance Evaluation Of High Speed Congestion Control Protocols www.iosrjournals.org 19 | Page During this research work, we simulated seven high speed congestion control protocols for 1, 2, 4, 6, 8, 10, 12, 16 and 24 flows. We evaluated their performances by calculating the efficiency, the fairness as well as the performance while varying the RTT and the queue size. Basing on the simulation and the high speed protocols performance evaluation, we can conclude that: • Some protocols perform well in some defined cases, but weak in others. • The network architecture has got an important impact on the protocols performance. • For 24 flows, all protocols are unfair. • For 24 flows, the protocols: Bic TCP, Cubic TCP, Hamilton TCP, Scalable TCP and YeAH TCP are efficient. • Scalable is not only TCP-friendly, but also selfish, since the first flow gets the most important throughput, and doesn’t leave its place for any other flow such as the case of Cubic TCP, Hamilton TCP and Illinois TCP. • The protocols Bic TCP, HighSpeed TCP and YeAH TCP are TCP-friendly • For low values of RTT, all the protocols use the network capacities in a bad way. • For low values of the queue size, Cubic TCP is the most efficient. • YeAH TCP and Illinois TCP give the best results while increasing the queue size. • Although his aggressiveness, YeAH TCP is quite TCP-friendly. It is also quite performant, but it doesn’t suit all the architectures. Further work is required to evaluate the performances of these protocols by using Relentless TCP which will be the topic for a multitude of research works in the near future, particularly to define if the protocols that have more stability and take more time before falling another time in a new congestion such as Cubic TCP and Illinois TCP in order to check if they will well exploit the law that forms the basis of Relentless TCP which is the reduction of the congestion window with the number of lost segments. It will be also interesting to create a model that changes dynamically the congestion control protocols used in terms of flow number to better exploit the network capacities as well as studying the QoS. REFERENCES [1] R. Mbarek, M. T. BenOthman and S. Nasri. “Fairness of High-Speed TCP Protocols with Different Flow Capacities”. Journal Of Networks, Vol. 4, No. 3, pp. 163-169, May 2009. [2] S. Hemminger. “TCP testing – Preventing global Internet warming”. LinuxConf Europe, Sep. 2007. [3] S. Ha, L. Le, I. Rhee and L. Xu. “Impact of Background Traffic on Performance of High-Speed TCP Variant Protocols”. The International Journal of Computer and Telecommunications Networking, Vol.51, May, 2007. [4] M. Nabeshima and K. Yata. “Performance Evaluation and Comparison of Transport Protocols for Fast Long-Distance Networks”. IEICE Trans. Commun., Vol.E89-B, No.4, pp. 1273-1283, Apr. 2006. [5] M. Weigle, P. Sharma and J. Freeman. “Performance of Competing High-Speed TCP Flows”. Networking 2006, LNCS 3976, pp. 476-487, 2006. [6] S. Floyd. “High-Speed TCP for Large Congestion Windows”. RFC 3649, Experimental, Dec. 2003. [7] T. Kelly. “Scalable TCP : Improving Performance in High-Speed Wide Area Networks”. In Proceedings of PFLDnet, Geneva, Switzerland, Feb. 2003. [8] L. Xu, K. Harfoush, and I. Rhee. “Binary Increase Congestion Control for Fast, Long Distance Networks”. In Proceedings of IEEE INFOCOM, Hong Kong, Mar. 2004. [9] I. Rhee and L. Xu. “CUBIC: A New TCP-Friendly High-Speed TCP Variant”. In Proceedings of PFLDnet, Lyon, France, Feb. 2005. [10] R. N. Shorten and D. J. Leith. “H-TCP : TCP for high-speed and long-distance networks”. In Proceedings of PFLDnet, Argonne, Feb. 2004. [11] S. Liu, T. Basar and R. Srikant.,"TCP-Illinois : A Loss- and Delay-based Congestion Control Algorithm for High-Speed Networks", Performance Evaluation, 65(6-7) : 417-440, Mar. 2008. [12] A. Baiocchi, A. P. Castellani and F. Vacirca. “YeAH-TCP: Yet Another Highspeed TCP”. PFLDnet, Roma, Italy, Feb. 2007. [13] J. Semke, J. Mahdavi, and M. Mathis. "Automatic TCP Buffer Tuning", Computer Communications Review, a publication of ACM SIGCOMM, Vol. 28, No. 4, Oct. 1998. [14] R. Mbarek, M. T. BenOthman and S. Nasri. “Performance Evaluation of Competing High-Speed TCP Protocols”. IJCSNS International Journal of Computer Science and Network Security, VOL.8 No.6, pp. 99-105, June 2008. [15] R. Jain. “Congestion Control and Traffic Management in ATM Networks : Recent Advances and A Survey”. Computer networks and ISDN Systems, Nov. 1995. Authors M. Mohamed Ali Mani received his M.S degree from ISITCOM, Hammam Sousse, Sousse University Tunisia, in 2011. He is currently a lecturer in the Department of Computer Science in ISTLS in the same University. His research interests lie in the general area of computer networks, including high speed transports protocols, flow control, congestion control in high-speed networks and wireless networks. Dr. Rachid Mbarek received his Ph.D from the College of Engineering (ENIS), Sfax University, Tunisia, received his M.Sc. degree in Computer Engineering in 2003 from the same University. He is currently a Lecturer in the Department of Telecommunication in the ISITCOM at Sousse University, Tunisia. His research interests lie in the general area of computer communication networks, including high-speed transports protocols, flow control and congestion control in high-speed networks, network performance analysis, peer to peer networking.