TRANSMISSION control protocol (TCP), a reliable transport

Size: px
Start display at page:

Download "TRANSMISSION control protocol (TCP), a reliable transport"

Transcription

1 Microscopic Behaviors of TCP Loss Recovery using Lost Retransmission Detection Beomjoon Kim, Yong-Ho Kim, Min-Seok Oh, and Jin-Sung Choi Standardization and System Research Group (SSRG), LG Electronics Inc. LG R&D Complex, 33 Hogye-1dong, Dongan-gu, Anyang-shi, Kyongki-do, , Korea {beom, ronnykim, minoh, Abstract As today s networks evolve towards an IP-based integrated network, the role of transmission control protocol (TCP) has been increasing as well. As a well-known issue, the performance of TCP is affected by its loss recovery mechanism that is comprised of two algorithms; fast retransmit and fast recovery. Although (RTO) caused by multiple packet losses can be avoided by the modified fast recovery algorithm of TCP NewReno or selective acknowledgement (SACK) option, RTO cannot be avoided if a retransmitted packet is lost. To cope with the problem, Lost Retransmission Detection (LRD) has been proposed for each TCP in [9], []. In this paper, we evaluate the LRD algorithm by tracing TCP sender s behaviors for several scenarios where a retransmitted packet is lost. In addition, we consider the conservation of packets rule to advocate that LRD does not violate fairness with TCP connections that do not support the LRD algorithm. Index Terms transmission control protocol (TCP), loss recovery, (RTO), lost retransmission detection (LRD) I. INTRODUCTION TRANSMISSION control protocol (TCP), a reliable transport layer protocol used in the Internet, provides a function of congestion control to avoid so-called congestion collapses [1]. In TCP congestion control [2], a function for a TCP sender to detect and recover a packet loss is implemented, and called loss recovery in simple. The loss recovery mechanism is based on two basic algorithms of fast retransmit and fast recovery. If loss recovery is successful, a sender need not wait for (RTO) expiry in which the sender is not allowed to transmit a packet. The fast retransmit algorithm [1], [2] makes it possible for TCP sender to retransmit a packet loss immediately if it receives three duplicate acknowledgements (ACKs) for the packet loss. The fast recovery algorithm [2] that is implemented in TCP Reno prevents a link connecting a sender and a receiver from going empty after fast retransmit. By adopting fast recovery, a few new packets can be transmitted, thereby avoiding the need to restart in slow start after all packet losses are recovered. In TCP loss recovery, it has been a major challenge to decrease the number of RTOs that may occur if loss recovery fails. The effect of RTO on TCP performance, e.g. throughput, can be explained by the following two facts; a sender transmits few packets till it expires. a sender shall restart in slow start mode with the initial value of congestion window (cwnd). Consequently, frequent RTOs degrade TCP performance more severely. In a certain situation, RTO may occur unnecessarily, e.g., even if pipe [1] is still available. These unnecessary RTOs can be classified into three groups. First, if multiple packets are lost in a window at the same time, then all the packet losses cannot be recovered without RTO in most cases. It is because the initial fast recovery algorithm implemented in TCP Reno is optimized for a single packet loss in a window. In order to retransmit multiple packets, TCP Reno requires to receive three duplicate ACKs for each packet loss. However, since it reduces its window by half every time it retransmits a packet loss, it is almost impossible to recover multiple packet losses by fast retransmit. This challenge has been a main driver for efforts to optimize the fast recovery algorithm, and two solutions appear; TCP NewReno [3], [4] and using selective acknowledgement (SACK) option [], [6]. The fast recovery algorithm is slightly modified in the implementation of TCP NewReno. During fast recovery, a TCP NewReno sender does not exit fast recovery when it receives a partial acknowledgement, which acknowledges some but not all of the packets that are outstanding at the start of the fast recovery period. Thus, when multiple packets are lost, TCP NewReno can recover one packet loss per a round trip time (RTT) until all of packet losses have been retransmitted. Another alternative to handle multiple packet losses is using selective acknowledgement (SACK) option [], [6]. Although some additive bytes are needed to include SACK information in each duplicate ACK, the sender supporting SACK option can be informed about all of the packets that have arrived successfully, so that it needs to retransmit only the packets that have been lost. Second, if a packet is lost in a window that is very small, then three duplicate ACKs may not be received to trigger a fast retransmit. This situation can be experienced frequently in the connection of short Web transfer using the HyperText Transfer Protocol (HTTP) [7]. According to [11], about 8% of timeouts belong to this class. In recent, Limited Transmit is proposed in [8], which makes it possible to trigger a fast retransmit if only a single duplicate ACK can be received. Using Limited Transmit, most RTOs within this class can be avoided as long as RTO does not expire until the third duplicate ACK arrives. Finally, RTO occurs unnecessarily when a retransmitted //$. (C) IEEE

2 packet is lost. Most TCP implementations have no mechanism to detect and recover a lost retransmission. In recent works presented in [9], [], Lost Retransmission Detection (LRD) is proposed; duplicate acknowledgement counting (DAC) for TCP Reno and NewReno and SACK+ for TCP using SACK option. However, since the loss recovery performance of LRD is evaluated only in a numerical way in these works, the practical situation where LRD benefits cannot be shown obviously. Therefore, this paper shows the microscopic behaviors of each TCP sender using LRD for several scenarios where a retransmission is lost in a similar way as [12] In addition, we discuss the issue of consistency and fairness with existing TCP implementations. The rest of this paper is organized as follows. Section II describes the proposed algorithm for lost retransmission detection with discussion of consistency with the existing TCP congestion control principle. Section III contains the simulation results for two different scenarios where the proposed algorithm is applied to each TCP. Finally, some conclusions are summarized in Section IV. If three duplicate ACKs are received, After fast retransmit, set i=1; W D =cwnd; D i =W D -1 For every new packet transmission during fast recovery, D i+1 =D i+1 +1; More than D i duplicate ACKs are received? No A normal ACK is received? Yes Exit fast recovery Yes No Retransmit the ith packet If another packet is retransmitted, i = i +1; II. LOST RETRANSMISSION DETECTION (LRD) In LRD operations, the packets sent after a retransmitted packet play a key role to determine whether the retransmitted packet is delivered successfully or not. Due to cumulative strategy of TCP [1], [2], the sender without SACK option cannot be informed of which packet and how many packets are lost till it receives a duplicate or partial ACK [3], [12]. In the case of using SACK option, the sender can be aware of the exact number and sequence of packet losses by SACK information in each duplicate ACK [], [6], [12]. In this section, we describe the behavior of LRD when it is applied to TCP NewReno and TCP SACK. A. Duplicate Acknowledgement Counting DAC is designed for TCP not supporting SACK option such as TCP Reno and NewReno. Every time TCP sender retransmits a packet, it keeps a variable to store the number of duplicate ACKs that the sender expects to receive if the retransmitted packet is transmitted well. Also, the sender keeps the congestion window size just before the fast retransmit in another variable, which is denoted by W D. During fast recovery, the sender counts the number of duplicate ACKs for a retransmission. If it receives more duplicate ACKs than the stored value for the retransmission, it determines that its retransmission is lost again and retransmits it immediately without waiting for RTO. We denote the expected number of duplicate ACKs for the ith packet loss in a window by D i. When the sender retransmits the first lost packet in a window by fast retransmit, it is not aware of how many packets are lost in the window, but only knows that at least one packet is lost. Therefore, D 1 is always equal to W D 1. When there are multiple packet losses, DAC can be applied as well. In these cases, D j for j 2 is equal to the number of new packets transmitted after the retransmission of the jth. In Fig. 1, we show the flow chart of DAC operation. Fig. 1. Flow chart of DAC. B. TCP SACK+ As similar as DAC, TCP SACK+ detects whether a retransmitted packet is lost or not based on new packets transmitted after the retransmitted packet. As mentioned above, however, TCP sender that supports SACK option can maintain the exact sequence number of a, even if there are multiple packet losses in a window. Therefore, detecting a lost retransmission is rather simpler than DAC because the sender with SACK option need not count the number of duplicate ACKs. Whenever a sender performs a retransmission, it just stores the highest sequence number of the packets that have been already transmitted for future comparison. In a window, we denote the highest sequence number when the hth packet is retransmitted by S h. If the right edge of the first SACK block [] included in any duplicate ACK is greater than S h, it means that the retransmitted hth packet loss is not successful. As a result, if there is at least a new packet transmitted after a retransmission, a sender can decide whether the retransmission is lost or not based on the information in a duplicate ACK that the new packet generates. C. Consistency with Conventional TCP Congestion Control Conservation of packets [1] is a very critical issue because packets put into networks too aggressively may bring about another network congestion. That is, if a network is so congested that no more packets should be put into the network, the sender should wait for RTO expiry. From the aspect of the principle, LRD is perfectly consistent with additive-increase-multiplicative-decrease (AIMD) scheme specified in [2]. As described above, a lost retransmission is detected based on the packets transmitted after the retransmission. It means that, if congestion is so heavy that no //$. (C) IEEE

3 packets should be transmitted, TCP sender to which LRD is applied does not transmit additive packets by detecting a lost retransmission. It can be justified by the fact that, in such a congested situation, the packets after the retransmission would be likely to be lost as well. However, since a lost retransmission detected means that there was a serious congestion, the proposed algorithm decreases cwnd and slow-start-threshold (ssthresh) twice after recovery of a lost retransmission as specified in [2]. 1 III. RESULTS AND DISCUSSION In this section, we show the results obtained from both the simulations and numerical analysis. For simplicity, each TCP where LRD is applied is denoted by a + sign such as TCP Reno+, NewReno+, and SACK+. A. Simulation Model LRD implemented using ns simulator. We choose rather a simple model, where a sender and receiver are connected with a link of 1Mbps and msec, because its main purpose is to investigate the detailed behaviors of LRD when it is applied to each TCP. The size of a packet is assumed to be constant, 1Kbytes. After detecting a lost retransmission, the sender decreases its cwnd again as discussed in Section II-C. Simulations were performed for two scenarios where specific packets were forced to be lost as in [12]. For DAC, we consider only the case when it is applied to TCP NewReno because the fast recovery algorithm of TCP Reno has an inherent problem for multiple packet losses [3], [], [12]. Suppose that two packets are lost and the first retransmission is lost. Even if the lost retransmission can be recovered by DAC, it consumes the packets that are going to generate duplicate ACKs to trigger the second fast retransmit, which invokes RTO. Consequently, if DAC is applied to TCP Reno, it is useful only for the case where there is a single packet loss in a window. B. TCP NewReno+ In Fig. 2-(a), the loss recovery behavior of TCP NewReno is shown when a single packet is lost and its retransmission is also lost. At about.7 second, packets 7 14 are transmitted with cwnd of 8 and packet 7 is dropped. When the sender receives the third duplicate ACK at about.9 second, it retransmits packet 7 by fast retransmit. The last duplicate ACK for packet 7 inflates the usable window [12] to 11(= 8/2 +7) so that newly included packets 17 are transmitted. Because the sender cannot perceive that the retransmission of packet 7 has been lost, it just transmits three new packets per every RTT in accordance with receiving the same number of duplicate ACKs till an eventual RTO occurs. It can be seen that the sender restarts in slow start at about 2 second. 1 For a retransmission loss caused by transmission error in a wireless channel, the second decrement is not essential. However, since there is no solution to decide explicitly whether a packet loss is due to congestion or corruption, the proposed algorithm is designed to regard all packet losses as network congestion (a) TCP NewReno second retransmission of packet (b) TCP NewReno+ Fig. 2. Packet transmission behaviors of TCP NewReno and NewReno+ during fast recovery for a single packet loss and its retransmission loss. (RTT=msec) In Fig. 2-(b), we show the behavior of TCP NewReno using DAC for the same scenario as Fig. 2-(a). The sender sets D 1 to 7(= 8 1) when it retransmits packet 7. When the sender receives the eighth duplicate ACK corresponding to the receiver s receipt of packet at about 1.3 second, it can be informed that the retransmitted packet 7 is lost again because it receives more duplicate ACKs than D 1. It can be seen that the sender retransmits packet 7 again at about 1.3 second. After the retransmission, the sender halves cwnd and ssthresh again to be 2(= 4/2 ). Two more duplicate ACKs by packet 16 and 17 inflate the window to be four but no packets can be transmitted because all packets in the window are outstanding. At about 1. second, an ACK that acknowledges all packets up to packet 17 brings the sender out of fast recovery and congestion avoidance starts with cwnd of 2. We repeated the simulations for two packet losses and the //$. (C) IEEE

4 (a) TCP NewReno (a) TCP SACK second retransmission of packet 12 second retransmission of packet (b) TCP NewReno+ Fig. 3. Packet transmission behaviors of TCP NewReno and NewReno+ during fast recovery for two packet losses and the second retransmitted packet loss. (RTT=msec) results are shown in Fig. 3. In these simulations, two packets, packet 7 and 12, are lost and the retransmitted packet 12 is lost again. TCP NewReno s behaviors shown in Fig. 3-(a) can be explained in the same way as Fig. 2-(a); RTO occurs eventually at about 2.3 second. In the case of using DAC as shown in Fig. 3-(b), when the sender receives a partial ACK for packet 12, D 1 that was set to 7 may be cleared because the partial ACK assures that the retransmitted packet 7 has been transmitted successfully. Note that only 6 duplicate ACKs have been received for packet 7 at this time. After retransmitting packet 12, the sender sets D 2 =2since it has transmitted two packets, packet and 16, after packet 7. Because packet 17 delivers the third duplicate ACK for packet 12, the sender retransmits packet 12 again because it has received more duplicate ACKs than expected. When an ACK that acknowledges all packets up to packet (b) TCP SACK+ Fig. 4. Packet transmission behaviors of TCP SACK and SACK+ during fast recovery for a single packet loss and its retransmission loss. (RTT=msec) is received, congestion avoidance follows with cwnd of 2. C. TCP SACK+ In Fig. 4, we compare the loss recovery behaviors of TCP SACK+ to TCP SACK when a single packet is lost and its retransmission is also lost. At about.7 second, packets 7 14 are transmitted with cwnd of 8 and packet 7 is dropped. When the sender receives three duplicate ACKs at about.9 second, the sender retransmits packet 7, and sets cwnd to 4(= 8/2 ) and pipe [], [6] to (= 8 3). The last duplicate ACK decreases pipe to one so that three new packets, packet, 16, and 17, are transmitted after the retransmission. Because the retransmitted packet 7 is lost again, the sender receives several repetitive duplicate ACKs per RTT until RTO occurs as shown in Fig. 4-(a) In the case of TCP SACK+ as shown in Fig. 4-(b), the sender sets S 1 to 14 when it retransmits packet 7. The eighth //$. (C) IEEE

5 (a) TCP SACK second retransmission of packet (b) TCP SACK+ Fig.. Packet transmission behaviors of TCP SACK and SACK+ during fast recovery for two packet losses and the second retransmitted packet loss. (RTT=msec) duplicate ACK includes SACK information where the first block starts with packet 8 and ends with packet. At this time, because the right edge of the block is greater than the stored value in S 1, the sender retransmits packet 7 again at about 1.3 second. After the retransmission, the sender halves cwnd again to be 2(= 4/2 ). Therefore, even if two more duplicate ACKs by packet 16 and 17 decreases pipe to be 2, no packets are allowed to be transmitted. At about 1. second, the second retransmission delivers an ACK that acknowledges all packets up to packet 17, which brings the sender out of fast recovery and congestion avoidance starts with cwnd of 2. We repeated the same simulation for two packet losses, and the results are shown in Fig.. In this scenario, two packets, packet 7 and packet 12, are lost and the retransmitted packet 12 is lost again. After fast retransmit of packet 7, the fifth duplicate ACK decreases pipe to 3 so that the sender is allowed to transmit one packet. The final duplicate ACK decreases pipe again and packet is allowed to be transmitted. After RTT, one partial ACK and one duplicate ACK for packet 12 are received, which decrease pipe by three, 2 and three new packets, packet 16, 17, and 18, are transmitted. Because the retransmitted packet 12 has been lost, the sender cannot exit fast recovery but RTO occurs eventually at about 2.3 second. For TCP SACK+ shown in Fig. -(b), the sender sets S 1 = S 2 = 14 when it retransmits packet 7 and 12. After RTT, the sender receives a partial ACK that acknowledges packet 12, which means that the retransmitted packet 7 is delivered successfully. Therefore, S 1 may be cleared. When the seventh duplicate ACK by packet is received, its SACK information indicates that the first block starts with packet 13 and ends with packet, which is greater than S 2. Therefore, the sender transmits the second retransmission of packet 12 (instead of packet 18) at about 1.3 second. An ACK that acknowledges all packets up to packet 17 brings the sender out of fast recovery and congestion avoidance starts with cwnd of 2. IV. CONCLUSION In this paper, we have shown the detailed behavior of the LRD algorithm that enables TCP to detect and recover lost retransmission. Although LRD benefits only for a limited situation, it contributes to make TCP more robust with simple modifications in that LRD enables TCP implementations to avoid unnecessary RTO due to retransmitted packet loss. In addition, we have discussed that the LRD algorithm should be designed not to harm AIMD principle and fairness with other TCP implementations that do not use LRD by keeping conservation of packets rule. A number avenues for future work remain. First, according to queue management schemes such as droptail or random early detection (RED) [17] and with changing levels of congestion, the likelihood of a retransmitted packet loss may have some variation. Therefore, we need to conduct an experiment over practical networks to investigate whether LRD is really useful or not. Second, over a network where out-of-order delivery is prevalent, TCP performance may rather be degraded due to several unnecessary retransmissions. It may be relieved by increasing the number of duplicate ACKs that are necessary to decide a retransmission loss in the same way that three duplicate ACKs have to be received to trigger a fast retransmit. Third, our proposed algorithm can be enhanced to recover all retransmitted packet losses. If there is no new packet transmitted after a retransmitted packet, LRD cannot be triggered. If LRD is modified to always transmit a new packet after a retransmitted packet in the similar way that Limited Transmit transmits a new packet every time a duplicate ACK is received, all lost retransmission can be detected. REFERENCES [1] V. Jacobson, Congestion Avoidance and Control, ACM SIGCOMM 88, pp , Note that a partial acknowledgement decreases pipe by two [6], [12] //$. (C) IEEE

6 [2] M. Allman, W. Paxon, and W. Stevens, TCP Congestion Control, RFC 81, 1. [3] Janey C. Hoe, Improving the Start-up Behavior of a Congestion Control Scheme for TCP, ACM SIGCOMM 96, [4] S. Floyd and T. Henderson, The NewReno Modification to TCP s Fast Recovery Algorithm, RFC 82, [] M. Mathis, J. Mahdavi, S. Floyd, and A. Romanow, TCP Selective Acknowledgement Options, RFC 18, [6] E. Blanton, M. Allman, K. Fall, and L. Wang, A Conservative Selective Acknowledgement (SACK) -based Loss Recovery Algorithm for TCP, RFC 17, 3. [7] H. Balakrishnan, Venkata Padmanabhan, Srinivasan Seshan, Mark Stemm, and Randy Katz, TCP Behavior of a Busy Web Server: Analysis and Improvements, IEEE INFOCOM 98, [8] M. Allman, H. Balakrishnan, and S. Floyd, Enhancing TCP s Loss Recovery Using Limited Transmit, RFC 42, 1. [9] B. Kim and J. Lee, Retransmission Loss Recovery by Duplicate Acknowledgement Counting, IEEE Comm. Letters, vol. 8, no. 1, pp , Jan. 4. [] B. Kim, D. Kim, and J. Lee, Lost Retransmission Detection for TCP SACK, IEEE Comm. Letters, vol. 8, no. 9, pp. 6 62, Sep. 4. [11] D. Lin and H. T. Kung, TCP Fast Recovery Strategies: Analysis and Improvements, IEEE INFOCOM 98, pp , [12] K. Fall and S. Floyd, Simulation-based Comparisons of Tahoe, Reno, and SACK TCP, ACM Com. Comm. Rev., vol. 26, no. 3, pp. 21, [13] R. Braden, Requirements for Internet Hosts, RFC 1122, [14] A. Kumar, Comparative Performance Analysis of Versions of TCP in a Local Network with a Lossy Link, IEEE/ACM Trans. Networking, vol. 6, no. 4, pp , [] J. Padhye, V. Firoiu, D. F. Towsley, and J. F. Kurose, Modeling TCP Reno Performance: A Simple Model and Its Empirical Validation, IEEE/ACM Trans. Networking, vol. 8, no. 2, pp ,. [16] B. Kim and J. Lee A Simple Model for TCP Loss Recovery Performance over Wireless Networks, Journal of Comm. and Net. (JCN), vol. 6, no. 3, pp , Sep. 4. [17] S. Floyd and V. Jacobson, Random Early Detection Gateways for Congestion Avoidance, IEEE/ACM Trans. Networking, vol. 1, no. 4, pp , Aug //$. (C) IEEE

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

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

More information

Performance improvement of TCP over wireless network

Performance improvement of TCP over wireless network Performance improvement of TCP over wireless network Raja singh Computer science Department, SRIT, Jabalpur, M.P.India, rajasinghpatel@gmail.com Brajesh patel Asst. Prof. SRIT,Jabalpur M.P., India, Abstract:

More information

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

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

More information

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

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

More information

A Survey: High Speed TCP Variants in Wireless Networks

A Survey: High Speed TCP Variants in Wireless Networks ISSN: 2321-7782 (Online) Volume 1, Issue 7, December 2013 International Journal of Advance Research in Computer Science and Management Studies Research Paper Available online at: www.ijarcsms.com A Survey:

More information

TCP Fast Recovery Strategies: Analysis and Improvements

TCP Fast Recovery Strategies: Analysis and Improvements To appear in INFOCOM 98 TCP Fast Recovery Strategies: Analysis and Improvements Dong Lin and H.T. Kung Division of Engineering and Applied Sciences Harvard University Cambridge, MA 02138 USA Abstract This

More information

First Midterm for ECE374 03/24/11 Solution!!

First Midterm for ECE374 03/24/11 Solution!! 1 First Midterm for ECE374 03/24/11 Solution!! Note: In all written assignments, please show as much of your work as you can. Even if you get a wrong answer, you can get partial credit if you show your

More information

Ina Minei Reuven Cohen. The Technion. Haifa 32000, Israel. e-mail: faminei,rcoheng@cs.technion.ac.il. Abstract

Ina Minei Reuven Cohen. The Technion. Haifa 32000, Israel. e-mail: faminei,rcoheng@cs.technion.ac.il. Abstract High Speed Internet Access Through Unidirectional Geostationary Satellite Channels Ina Minei Reuven Cohen Computer Science Department The Technion Haifa 32000, Israel e-mail: faminei,rcoheng@cs.technion.ac.il

More information

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

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

More information

SJBIT, Bangalore, KARNATAKA

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

More information

A Survey on Congestion Control Mechanisms for Performance Improvement of TCP

A Survey on Congestion Control Mechanisms for Performance Improvement of TCP A Survey on Congestion Control Mechanisms for Performance Improvement of TCP Shital N. Karande Department of Computer Science Engineering, VIT, Pune, Maharashtra, India Sanjesh S. Pawale Department of

More information

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

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

More information

TCP in Wireless Mobile Networks

TCP in Wireless Mobile Networks TCP in Wireless Mobile Networks 1 Outline Introduction to transport layer Introduction to TCP (Internet) congestion control Congestion control in wireless networks 2 Transport Layer v.s. Network Layer

More information

Data Networks Summer 2007 Homework #3

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

More information

TCP over Multi-hop Wireless Networks * Overview of Transmission Control Protocol / Internet Protocol (TCP/IP) Internet Protocol (IP)

TCP over Multi-hop Wireless Networks * Overview of Transmission Control Protocol / Internet Protocol (TCP/IP) Internet Protocol (IP) TCP over Multi-hop Wireless Networks * Overview of Transmission Control Protocol / Internet Protocol (TCP/IP) *Slides adapted from a talk given by Nitin Vaidya. Wireless Computing and Network Systems Page

More information

Simulation-Based Comparisons of Solutions for TCP Packet Reordering in Wireless Network

Simulation-Based Comparisons of Solutions for TCP Packet Reordering in Wireless Network Simulation-Based Comparisons of Solutions for TCP Packet Reordering in Wireless Network 作 者 :Daiqin Yang, Ka-Cheong Leung, and Victor O. K. Li 出 處 :Wireless Communications and Networking Conference, 2007.WCNC

More information

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

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

More information

Analytic Models for the Latency and Steady-State Throughput of TCP Tahoe, Reno and SACK

Analytic Models for the Latency and Steady-State Throughput of TCP Tahoe, Reno and SACK REVISION 1 1 Analytic Models for the Latency and Steady-State Throughput of TCP Tahoe, Reno and SACK B. Sikdar, S. Kalyanaraman and K. S. Vastola Dept. of ECSE, Rensselaer Polytechnic Institute Troy, NY

More information

An Improved TCP Congestion Control Algorithm for Wireless Networks

An Improved TCP Congestion Control Algorithm for Wireless Networks An Improved TCP Congestion Control Algorithm for Wireless Networks Ahmed Khurshid Department of Computer Science University of Illinois at Urbana-Champaign Illinois, USA khurshi1@illinois.edu Md. Humayun

More information

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

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

More information

High Speed Internet Access Using Satellite-Based DVB Networks

High Speed Internet Access Using Satellite-Based DVB Networks High Speed Internet Access Using Satellite-Based DVB Networks Nihal K. G. Samaraweera and Godred Fairhurst Electronics Research Group, Department of Engineering University of Aberdeen, Aberdeen, AB24 3UE,

More information

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

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

More information

A Study of Internet Packet Reordering

A Study of Internet Packet Reordering A Study of Internet Packet Reordering Yi Wang 1, Guohan Lu 2, Xing Li 3 1 Department of Electronic Engineering Tsinghua University, Beijing, P. R. China, 100084 wangyi@ns.6test.edu.cn 2 China Education

More information

Student, Haryana Engineering College, Haryana, India 2 H.O.D (CSE), Haryana Engineering College, Haryana, India

Student, Haryana Engineering College, Haryana, India 2 H.O.D (CSE), Haryana Engineering College, Haryana, India Volume 5, Issue 6, June 2015 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com A New Protocol

More information

Transport Layer Protocols

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

More information

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

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

More information

Chaoyang University of Technology, Taiwan, ROC. {changb,s9227623}@mail.cyut.edu.tw 2 Department of Computer Science and Information Engineering

Chaoyang University of Technology, Taiwan, ROC. {changb,s9227623}@mail.cyut.edu.tw 2 Department of Computer Science and Information Engineering TCP-Taichung: A RTT-based Predictive Bandwidth Based with Optimal Shrink Factor for TCP Congestion Control in Heterogeneous Wired and Wireless Networks Ben-Jye Chang 1, Shu-Yu Lin 1, and Ying-Hsin Liang

More information

TCP over Wireless Networks

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

More information

Low-rate TCP-targeted Denial of Service Attack Defense

Low-rate TCP-targeted Denial of Service Attack Defense Low-rate TCP-targeted Denial of Service Attack Defense Johnny Tsao Petros Efstathopoulos University of California, Los Angeles, Computer Science Department Los Angeles, CA E-mail: {johnny5t, pefstath}@cs.ucla.edu

More information

STUDY OF TCP VARIANTS OVER WIRELESS NETWORK

STUDY OF TCP VARIANTS OVER WIRELESS NETWORK STUDY OF VARIANTS OVER WIRELESS NETWORK 1 DEVENDRA SINGH KUSHWAHA, 2 VIKASH K SINGH, 3 SHAIBYA SINGH, 4 SONAL SHARMA 1,2,3,4 Assistant Professor, Dept. of Computer Science, Indira Gandhi National Tribal

More information

Energy Consumption of TCP Reno, Newreno, and SACK in Multi-Hop Wireless Networks

Energy Consumption of TCP Reno, Newreno, and SACK in Multi-Hop Wireless Networks Energy Consumption of TCP Reno, Newreno, and SACK in Multi-Hop Wireless Networks Harkirat Singh Department of Computer Science Portland State University Portland, OR 977 harkirat@cs.pdx.edu Suresh Singh

More information

The Effect of Packet Reordering in a Backbone Link on Application Throughput Michael Laor and Lior Gendel, Cisco Systems, Inc.

The Effect of Packet Reordering in a Backbone Link on Application Throughput Michael Laor and Lior Gendel, Cisco Systems, Inc. The Effect of Packet Reordering in a Backbone Link on Application Throughput Michael Laor and Lior Gendel, Cisco Systems, Inc. Abstract Packet reordering in the Internet is a well-known phenomenon. As

More information

A Study on TCP Performance over Mobile Ad Hoc Networks

A Study on TCP Performance over Mobile Ad Hoc Networks 215 A Study on TCP Performance over Mobile Ad Hoc Networks Shweta Sharma 1, Anshika Garg 2 1 School of Computing Science and Engineering, Galgotias University, Greater Noida 2 School of Computing Science

More information

A Passive Method for Estimating End-to-End TCP Packet Loss

A Passive Method for Estimating End-to-End TCP Packet Loss A Passive Method for Estimating End-to-End TCP Packet Loss Peter Benko and Andras Veres Traffic Analysis and Network Performance Laboratory, Ericsson Research, Budapest, Hungary {Peter.Benko, Andras.Veres}@eth.ericsson.se

More information

Application Level Congestion Control Enhancements in High BDP Networks. Anupama Sundaresan

Application Level Congestion Control Enhancements in High BDP Networks. Anupama Sundaresan Application Level Congestion Control Enhancements in High BDP Networks Anupama Sundaresan Organization Introduction Motivation Implementation Experiments and Results Conclusions 2 Developing a Grid service

More information

Congestions and Control Mechanisms n Wired and Wireless Networks

Congestions and Control Mechanisms n Wired and Wireless Networks International OPEN ACCESS Journal ISSN: 2249-6645 Of Modern Engineering Research (IJMER) Congestions and Control Mechanisms n Wired and Wireless Networks MD Gulzar 1, B Mahender 2, Mr.B.Buchibabu 3 1 (Asst

More information

Linux 2.4 Implementation of Westwood+ TCP with rate-halving: A Performance Evaluation over the Internet

Linux 2.4 Implementation of Westwood+ TCP with rate-halving: A Performance Evaluation over the Internet Linux. Implementation of TCP with rate-halving: A Performance Evaluation over the Internet A. Dell Aera, L. A. Grieco, S. Mascolo Dipartimento di Elettrotecnica ed Elettronica Politecnico di Bari Via Orabona,

More information

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

La couche transport dans l'internet (la suite TCP/IP) La couche transport dans l'internet (la suite TCP/IP) C. Pham RESO-LIP/INRIA Université Lyon 1 http://www.ens-lyon.fr/~cpham Basé sur les transparent de Shivkumar Kalyanaraman La couche transport dans

More information

First Midterm for ECE374 03/09/12 Solution!!

First Midterm for ECE374 03/09/12 Solution!! 1 First Midterm for ECE374 03/09/12 Solution!! Instructions: Put your name and student number on each sheet of paper! The exam is closed book. You have 90 minutes to complete the exam. Be a smart exam

More information

2 TCP-like Design. Answer

2 TCP-like Design. Answer Homework 3 1 DNS Suppose you have a Host C, a local name server L, and authoritative name servers A root, A com, and A google.com, where the naming convention A x means that the name server knows about

More information

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

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

More information

Transport layer issues in ad hoc wireless networks Dmitrij Lagutin, dlagutin@cc.hut.fi

Transport layer issues in ad hoc wireless networks Dmitrij Lagutin, dlagutin@cc.hut.fi Transport layer issues in ad hoc wireless networks Dmitrij Lagutin, dlagutin@cc.hut.fi 1. Introduction Ad hoc wireless networks pose a big challenge for transport layer protocol and transport layer protocols

More information

High-Speed TCP Performance Characterization under Various Operating Systems

High-Speed TCP Performance Characterization under Various Operating Systems High-Speed TCP Performance Characterization under Various Operating Systems Y. Iwanaga, K. Kumazoe, D. Cavendish, M.Tsuru and Y. Oie Kyushu Institute of Technology 68-4, Kawazu, Iizuka-shi, Fukuoka, 82-852,

More information

TTC New Reno - Consistent Control of Packet Traffic

TTC New Reno - Consistent Control of Packet Traffic IMPROVE PERFORMANCE OF TCP NEW RENO OVER MOBILE AD-HOC NETWORK USING ABRA Dhananjay Bisen 1 and Sanjeev Sharma 2 1 M.Tech, School Of Information Technology, RGPV, BHOPAL, INDIA 1 bisen.it2007@gmail.com

More information

TCP PACKET CONTROL FOR WIRELESS NETWORKS

TCP PACKET CONTROL FOR WIRELESS NETWORKS TCP PACKET CONTROL FOR WIRELESS NETWORKS by Wan Gang Zeng B. Sc. in Computer Science, University of Ottawa, 2000 THESIS SUBMITTED IN PARTIAL FULFILMENT OF THE REQUIREMENTS FOR THE DEGREE OF MASTER OF SCIENCE

More information

An enhanced approach for transmission control protocol traffic management Mechanism for Wireless Network

An enhanced approach for transmission control protocol traffic management Mechanism for Wireless Network An enhanced approach for transmission control protocol traffic management Mechanism for Wireless Network Nitesh Mishra 1, Prof. Shaileena John 2 Department of Electronics & Communication 1, 2 niteshmish20@gmail.com

More information

Energy Efficient Congestion Control Operation in WSNs Adel Gaafar A. Elrahim Electrical Engineering Dept. Red Sea University, Port Sudan, Sudan

Energy Efficient Congestion Control Operation in WSNs Adel Gaafar A. Elrahim Electrical Engineering Dept. Red Sea University, Port Sudan, Sudan Energy Efficient Congestion Control Operation in WSNs Adel Gaafar A. Elrahim Electrical Engineering Dept. Red Sea University, Port Sudan, Sudan Abstract: The development of wireless technologies makes

More information

Computer Networks. Chapter 5 Transport Protocols

Computer Networks. Chapter 5 Transport Protocols Computer Networks Chapter 5 Transport Protocols Transport Protocol Provides end-to-end transport Hides the network details Transport protocol or service (TS) offers: Different types of services QoS Data

More information

Parallel TCP Data Transfers: A Practical Model and its Application

Parallel TCP Data Transfers: A Practical Model and its Application D r a g a n a D a m j a n o v i ć Parallel TCP Data Transfers: A Practical Model and its Application s u b m i t t e d t o the Faculty of Mathematics, Computer Science and Physics, the University of Innsbruck

More information

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

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

More information

Performance improvement of active queue management with per-flow scheduling

Performance improvement of active queue management with per-flow scheduling Performance improvement of active queue management with per-flow scheduling Masayoshi Nabeshima, Kouji Yata NTT Cyber Solutions Laboratories, NTT Corporation 1-1 Hikari-no-oka Yokosuka-shi Kanagawa 239

More information

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

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

More information

Performance Analysis of HighSpeed TCP and its Improvement for High Throughput and Fairness against TCP Reno Connections

Performance Analysis of HighSpeed TCP and its Improvement for High Throughput and Fairness against TCP Reno Connections Performance Analysis of HighSpeed TCP and its Improvement for High Throughput and Fairness against TCP Reno Connections Koichi Tokuda Graduate School of Engineering Science, Osaka University 1-3 Machikaneyama,

More information

TCP performance optimization for handover Management for LTE satellite/terrestrial hybrid. network.

TCP performance optimization for handover Management for LTE satellite/terrestrial hybrid. network. TCP performance optimization for handover Management for LTE satellite/terrestrial hybrid networks Michael Crosnier, Riadh Dhaou, Fabrice Planchou and Andre-Luc Beylot Astrium, 31 avenue des cosmonautes,

More information

TCP, Active Queue Management and QoS

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

More information

Mobile Computing/ Mobile Networks

Mobile Computing/ Mobile Networks Mobile Computing/ Mobile Networks TCP in Mobile Networks Prof. Chansu Yu Contents Physical layer issues Communication frequency Signal propagation Modulation and Demodulation Channel access issues Multiple

More information

TCP Behavior of a Busy Internet Server: Analysis and Improvements

TCP Behavior of a Busy Internet Server: Analysis and Improvements TCP Behavior of a Busy Internet Server: Analysis and Improvements Hari Balakrishnan*, Venkata N. Padmanabhan*, Srinivasan Seshan+, Mark Stemm*, Randy H. Katz* {hari,padmanab,stemm,randy}@cs.berkeley.edu,

More information

SELECTIVE-TCP FOR WIRED/WIRELESS NETWORKS

SELECTIVE-TCP FOR WIRED/WIRELESS NETWORKS SELECTIVE-TCP FOR WIRED/WIRELESS NETWORKS by Rajashree Paul Bachelor of Technology, University of Kalyani, 2002 PROJECT SUBMITTED IN PARTIAL FULFILLMENT OF THE REQUIREMENTS FOR THE DEGREE OF MASTER OF

More information

Comparative Analysis of Congestion Control Algorithms Using ns-2

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

More information

CS268 Exam Solutions. 1) End-to-End (20 pts)

CS268 Exam Solutions. 1) End-to-End (20 pts) CS268 Exam Solutions General comments: ) If you would like a re-grade, submit in email a complete explanation of why your solution should be re-graded. Quote parts of your solution if necessary. In person

More information

Performance Enhancement of Transmission Control Protocol over Wireless Ad-hoc Networks

Performance Enhancement of Transmission Control Protocol over Wireless Ad-hoc Networks Performance Enhancement of Transmission Control Protocol over Wireless Ad-hoc Networks Salah Zaher Lecturer at Modern Academy in Maadi For Computer Science and Management Technology, Computer Science Dept.,

More information

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

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

More information

17: Queue Management. Queuing. Mark Handley

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

More information

The Effect of the Initial Window Size and Limited Transmit Algorithm on the Transient Behavior of TCP Transfers

The Effect of the Initial Window Size and Limited Transmit Algorithm on the Transient Behavior of TCP Transfers The Effect of the Initial Window Size and Limited Transmit Algorithm on the Transient Behavior of TCP Transfers Abstract Urtzi Ayesta France Telecom R&D 95 rue Albert Einstein 69 Sophia Antipolis Cedex

More information

THE Internet provides a convenient and cost-effective

THE Internet provides a convenient and cost-effective 522 IEEE TRANSACTIONS ON PARALLEL AND DISTRIBUTED SYSTEMS, VOL. 18, NO. 4, APRIL 2007 An Overview of Packet Reordering in Transmission Control Protocol (TCP): Problems, Solutions, and Challenges Ka-Cheong

More information

Comparative Study of High-Speed TCP Variants in Multi-Hop Wireless Networks

Comparative Study of High-Speed TCP Variants in Multi-Hop Wireless Networks International Journal of Computer Theory and Engineering, Vol., No., October 0 Comparative Study of High-Speed s in Multi-Hop Wireless Networks Mohit P. Tahiliani, K. C. Shet, and T. G. Basavaraju Abstract

More information

Network congestion, its control and avoidance

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

More information

Mobile Communications Chapter 9: Mobile Transport Layer

Mobile Communications Chapter 9: Mobile Transport Layer Mobile Communications Chapter 9: Mobile Transport Layer Motivation TCP-mechanisms Classical approaches Indirect TCP Snooping TCP Mobile TCP PEPs in general Additional optimizations Fast retransmit/recovery

More information

Effect of Packet-Size over Network Performance

Effect of Packet-Size over Network Performance International Journal of Electronics and Computer Science Engineering 762 Available Online at www.ijecse.org ISSN: 2277-1956 Effect of Packet-Size over Network Performance Abhi U. Shah 1, Daivik H. Bhatt

More information

EFFECT OF TRANSFER FILE SIZE ON TCP-ADaLR PERFORMANCE: A SIMULATION STUDY

EFFECT OF TRANSFER FILE SIZE ON TCP-ADaLR PERFORMANCE: A SIMULATION STUDY EFFECT OF TRANSFER FILE SIZE ON PERFORMANCE: A SIMULATION STUDY Modupe Omueti and Ljiljana Trajković Simon Fraser University Vancouver British Columbia Canada {momueti, ljilja}@cs.sfu.ca ABSTRACT Large

More information

CSE 473 Introduction to Computer Networks. Exam 2 Solutions. Your name: 10/31/2013

CSE 473 Introduction to Computer Networks. Exam 2 Solutions. Your name: 10/31/2013 CSE 473 Introduction to Computer Networks Jon Turner Exam Solutions Your name: 0/3/03. (0 points). Consider a circular DHT with 7 nodes numbered 0,,...,6, where the nodes cache key-values pairs for 60

More information

Final for ECE374 05/06/13 Solution!!

Final for ECE374 05/06/13 Solution!! 1 Final for ECE374 05/06/13 Solution!! Instructions: Put your name and student number on each sheet of paper! The exam is closed book. You have 90 minutes to complete the exam. Be a smart exam taker -

More information

Active Queue Management (AQM) based Internet Congestion Control

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

More information

15-441: Computer Networks Homework 2 Solution

15-441: Computer Networks Homework 2 Solution 5-44: omputer Networks Homework 2 Solution Assigned: September 25, 2002. Due: October 7, 2002 in class. In this homework you will test your understanding of the TP concepts taught in class including flow

More information

Computer Networks - CS132/EECS148 - Spring 2013 ------------------------------------------------------------------------------

Computer Networks - CS132/EECS148 - Spring 2013 ------------------------------------------------------------------------------ Computer Networks - CS132/EECS148 - Spring 2013 Instructor: Karim El Defrawy Assignment 3 - Solutions Deadline : May 9 th 9:30pm (hard and soft copies required) ------------------------------------------------------------------------------

More information

Analyzing Marking Mod RED Active Queue Management Scheme on TCP Applications

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

More information

A packet-reordering solution to wireless losses in transmission control protocol

A packet-reordering solution to wireless losses in transmission control protocol Wireless Netw () 9:577 59 DOI.7/s76--55-6 A packet-reordering solution to wireless losses in transmission control protocol Ka-Cheong Leung Chengdi Lai Victor O. K. Li Daiqin Yang Published online: 6 February

More information

ALTHOUGH it is one of the first protocols

ALTHOUGH it is one of the first protocols TCP Performance - CUBIC, Vegas & Reno Ing. Luis Marrone lmarrone@linti.unlp.edu.ar Lic. Andrés Barbieri barbieri@cespi.unlp.edu.ar Mg. Matías Robles mrobles@info.unlp.edu.ar LINTI - Facultad de Informática

More information

Adding Network-Layer Intelligence to Mobile Receivers for Solving Spurious TCP Timeout during Vertical Handoff

Adding Network-Layer Intelligence to Mobile Receivers for Solving Spurious TCP Timeout during Vertical Handoff Adding Network-Layer Intelligence to Mobile Receivers for Solving Spurious TCP Timeout during Vertical Handoff Haijie Huang, Jianfei Cai, Member, IEEE, Abstract With the help of Mobile IP/IPv6 and soft

More information

This sequence diagram was generated with EventStudio System Designer (http://www.eventhelix.com/eventstudio).

This sequence diagram was generated with EventStudio System Designer (http://www.eventhelix.com/eventstudio). Client App Network Server App 25-May-13 15:32 (Page 1) This sequence diagram was generated with EventStudio System Designer (http://www.eventhelix.com/eventstudio). TCP is an end to end protocol which

More information

THE Transmission Control Protocol (TCP) has proved

THE Transmission Control Protocol (TCP) has proved IEEE TRANSACTIONS ON MOBILE COMPUTING, VOL. 3, NO. 2, APRIL-JUNE 2004 1 Bandwidth Estimation Schemes for TCP over Wireless Networks Antonio Capone, Member, IEEE, Luigi Fratta, Fellow, IEEE, and Fabio Martignon,

More information

Performance Comparison of SCTP and TCP over Linux Platform

Performance Comparison of SCTP and TCP over Linux Platform Performance Comparison of SCTP and TCP over Linux Platform Jong-Shik Ha, Sang-Tae Kim, and Seok J. Koh Department of Computer Science, Kyungpook National University, Korea {mugal1, saintpaul1978, sjkoh}@cs.knu.ac.kr

More information

Network Friendliness of Mobility Management Protocols

Network Friendliness of Mobility Management Protocols Network Friendliness of Mobility Management Protocols Md Sazzadur Rahman, Mohammed Atiquzzaman Telecommunications and Networks Research Lab School of Computer Science, University of Oklahoma, Norman, OK

More information

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

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

More information

Adaptive Coding and Packet Rates for TCP-Friendly VoIP Flows

Adaptive Coding and Packet Rates for TCP-Friendly VoIP Flows Adaptive Coding and Packet Rates for TCP-Friendly VoIP Flows C. Mahlo, C. Hoene, A. Rostami, A. Wolisz Technical University of Berlin, TKN, Sekr. FT 5-2 Einsteinufer 25, 10587 Berlin, Germany. Emails:

More information

Lecture 15: Congestion Control. CSE 123: Computer Networks Stefan Savage

Lecture 15: Congestion Control. CSE 123: Computer Networks Stefan Savage Lecture 15: Congestion Control CSE 123: Computer Networks Stefan Savage Overview Yesterday: TCP & UDP overview Connection setup Flow control: resource exhaustion at end node Today: Congestion control Resource

More information

SCTP over Satellite Networks

SCTP over Satellite Networks 1 SCTP over Satellite Networks Shaojian Fu Mohammed Atiquzzaman School of Computer Science University of Oklahoma, Norman, OK 73019-6151. William Ivancic Satellite Networks & Architectures Branch NASA

More information

Applying Router-Assisted Congestion Control to Wireless Networks: Challenges and Solutions 1

Applying Router-Assisted Congestion Control to Wireless Networks: Challenges and Solutions 1 Applying Router-Assisted Congestion Control to Wireless Networks: Challenges and Solutions Jian Pu and Mounir Hamdi Department of Computer Science and Engineering, HKUST, Hong Kong {pujian, hamdi}@cse.ust.hk

More information

Secure SCTP against DoS Attacks in Wireless Internet

Secure SCTP against DoS Attacks in Wireless Internet Secure SCTP against DoS Attacks in Wireless Internet Inwhee Joe College of Information and Communications Hanyang University Seoul, Korea iwjoe@hanyang.ac.kr Abstract. The Stream Control Transport Protocol

More information

Inference and Evaluation of Split-Connection Approaches in Cellular Data Networks

Inference and Evaluation of Split-Connection Approaches in Cellular Data Networks Inference and Evaluation of Split-Connection Approaches in Cellular Data Networks Wei Wei 1, Chun Zhang 1, Hui Zang 2, Jim Kurose 1, and Don Towsley 1 1 Department of Computer Science, University of Massachusetts,

More information

A Congestion Control Algorithm for Data Center Area Communications

A Congestion Control Algorithm for Data Center Area Communications A Congestion Control Algorithm for Data Center Area Communications Hideyuki Shimonishi, Junichi Higuchi, Takashi Yoshikawa, and Atsushi Iwata System Platforms Research Laboratories, NEC Corporation 1753

More information

TCP Over Wireless Network. Jinhua Zhu Jie Xu

TCP Over Wireless Network. Jinhua Zhu Jie Xu TCP Over Wireless Network Jinhua Zhu Jie Xu Overview 1. TCP congestion control scheme 2. ECN scheme 3. Problems with TCP over wireless network 4. ATCP:TCP for mobile ad hoc networks 5. ptcp: a transport

More information

4 High-speed Transmission and Interoperability

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

More information

TCP and Wireless Networks Classical Approaches Optimizations TCP for 2.5G/3G Systems. Lehrstuhl für Informatik 4 Kommunikation und verteilte Systeme

TCP and Wireless Networks Classical Approaches Optimizations TCP for 2.5G/3G Systems. Lehrstuhl für Informatik 4 Kommunikation und verteilte Systeme Chapter 2 Technical Basics: Layer 1 Methods for Medium Access: Layer 2 Chapter 3 Wireless Networks: Bluetooth, WLAN, WirelessMAN, WirelessWAN Mobile Networks: GSM, GPRS, UMTS Chapter 4 Mobility on the

More information

TCP Westwood for Wireless

TCP Westwood for Wireless TCP Westwood for Wireless מבוא רקע טכני בקרת עומס ב- TCP TCP על קשר אלחוטי שיפור תפוקה עם פרוטוקול TCP Westwood סיכום.1.2.3.4.5 Seminar in Computer Networks and Distributed Systems Hadassah College Spring

More information

TCP for Wireless Networks

TCP for Wireless Networks TCP for Wireless Networks Outline Motivation TCP mechanisms Indirect TCP Snooping TCP Mobile TCP Fast retransmit/recovery Transmission freezing Selective retransmission Transaction oriented TCP Adapted

More information

EINDHOVEN UNIVERSITY OF TECHNOLOGY Department of Mathematics and Computer Science

EINDHOVEN UNIVERSITY OF TECHNOLOGY Department of Mathematics and Computer Science EINDHOVEN UNIVERSITY OF TECHNOLOGY Department of Mathematics and Computer Science Examination Computer Networks (2IC15) on Monday, June 22 nd 2009, 9.00h-12.00h. First read the entire examination. There

More information

Visualizations and Correlations in Troubleshooting

Visualizations and Correlations in Troubleshooting Visualizations and Correlations in Troubleshooting Kevin Burns Comcast kevin_burns@cable.comcast.com 1 Comcast Technology Groups Cable CMTS, Modem, Edge Services Backbone Transport, Routing Converged Regional

More information

Chapter 6 Congestion Control and Resource Allocation

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

More information

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

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

More information