1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness...

76
1 Samrat Sen Computer Science and Engineering

Transcript of 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness...

Page 1: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

1

Samrat SenComputer Science and Engineering

Page 2: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

2

Outline

Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion Control Protocols Multi-Rate Congestion Control Protocols Conclusion References

Page 3: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

3

Introduction New Trends in communication with audio and

video streaming applications has increased the amount of non-TCP traffic in the Internet

This new applications do not share the bandwidth fairly with applications built on TCP

TCP has end-to-end congestion control mechanism and hence TCP flows with similar round-trip times share the bandwidth of a common bottleneck fairly

Page 4: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

4

Introduction

To reduce this unfair situation many rate-adaptation rules and mechanisms for non-TCP traffic that are compatible with TCP have been

Page 5: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

5

TCP Friendliness

What is TCP Friendliness ?The effect that a non TCP flow has on competing TCP flows.

UnicastA flow (non-TCP) is TCP friendly if it does not reduce the long term throughput of any TCP flow more than another TCP flow on the same path would do.

Page 6: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

6

TCP Friendliness

Multicast

Defined in terms of “bounded fairness”

a · rTCP <= r <= b · rTCP, r is the rate of multicast flow rTCP is the rate of TCP flow under the same

conditions a and b are functions of the number of receivers

of the flow

Page 7: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

7

Slowstart – start phase AIMD

Additive Increase – increasing the congestion window by one segment per RTT

Multiplicative decrease – Halving the congestion window

Existing TCP Mechanics

Page 8: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

8

TCP Developments

Reno & New Reno : To remain in FRCV when packets are lost

and hence avoid expensive timeouts.Sack : Solution for recovering more than one loss

per RTT To estimate more precisely the number of

packets in the pipe

Page 9: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

9

Ongoing Work

Improving Slow Start – Changing the initial window to greater than1

along with limited byte countingEstablishing many parallel TCP connections

for the same transfer with an adaptive mechanism (depending on congestion)

Elimination of long delay link –Spoofing - The long delay link is replaced by

an optimized transport protocol like STP

Page 10: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

10

Ongoing Work

Avoiding unnecessary Retransmit TimeoutsLimited transmit [proposed in RFC2760] Instead of waiting for duplicate ACK’s wait for 1 or 2.

Page 11: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

11

Ongoing Work

Avoiding unnecessary congestion control to Reordered or Delayed Packets

Need to distinguish b/w delayed/reordered and lost packets

Page 12: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

12

Ongoing Work

To identify and separate the delayed or reordered segments D-SACK has been proposed (RFC 2883) whereby the sender can correctly identify duplicate segments. In this way the receiver reports the duplicate segments. The overhead of reducing the window size by half is saved.

Page 13: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

13

Ongoing Work

ECN NotificationFor small flows the marking of packets instead of dropping prevents timeouts.

Page 14: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

14

Ongoing Work

Asymmetric Networks Use header compression Delay ACK at destination A. ACK sent after

every d packets (based on the congestion) Scan the buffer at A and if full, replace with new

Page 15: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

15

Congestion Control SchemesClassification of Congestion Control Schemes Window based vs Rate Based

Window based has the same sliding window logic as TCP

Rate based achieves friendliness by mimicking AIMD or is Model based

Single-rate vs Multi-rate

In single rate data is sent to all receivers at the same rate

Multi-rate congestion control allows more flexible allocation of bandwidth along different network paths

Page 16: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

16

Classification Schemes for TCP friendly Protocols

Page 17: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

17

Single Rate Congestion Control Protocols Rate Based

Page 18: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

18

Rate Adaption Protocol

Source sends data packets with sequence numbers

Receiver acknowledges packets Congestion detection

Indicated by lost packets Variable such as RTT calculated similar to the way

TCP calculates them Maintains Transmission history

Page 19: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

19

RAP Performance

Simulation shows TCP-friendliness Performance is a little different from TCP

TCP more sensitive to number of outstanding packets

RAP more aggressive due to clustered loss detection and fine-grain rate adaptation

Page 20: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

20

RAP – Simulation Results

Page 21: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

21

RAP – Simulation Results

The result show that the deviation of RAP w.r.t TCP depends onThe deviation of the TCP protocol from AIMD behavior

Page 22: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

22

RAP – Simulation Results

Page 23: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

23

TFRC- Protocol

TCP friendly Rate Control TFRC is a congestion control mechanism

designed for unicast flows operating in a Internet environment and competing with TCP traffic

TFRC is a receiver-based mechanism, with the calculation of the congestion control information (i.e., the loss event rate) in the data receiver rather in the data sender.

Page 24: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

24

TFRC- Protocol

TFRC's congestion control mechanism works as follows:

The receiver measures the loss event rate and feeds this information back to the sender.

The sender also uses these feedback messages to measure the round- trip time (RTT).

The loss event rate and RTT are then fed into TFRC's throughput equation, giving the acceptable transmit rate.

Page 25: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

25

TFRC- Protocol

The sender then adjusts its transmit rate to match the calculated rate.

(Loss event consists of one or more packets dropped within a single round trip time. The TFRC uses the TCP response function)

Page 26: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

26

TFRC- Protocol

X: is the transmit rate in bytes/second. S: is the packet size in bytes. R: is the round trip time in seconds. P: is the loss event rate, between 0 and 1.0, of the

number of loss events as a fraction of the number of packets transmitted.

t_RTO is the TCP retransmission timeout value in seconds.

b: is the number of packets acknowledged by a single TCP acknowledgement.

Page 27: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

27

TFRC- Protocol

Simulation Results

Page 28: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

28

LDA + protocol

Loss Delay Based Adaption Algorithm Addition and reduction of rate based dynamically on the

current network situation During loss situations, flow bandwidth is calculated by

L – loss fraction, M-packet size, tout – retransmission timeout, D- # of ACK packet by each acknowdlegement packet R – Xmission rate

Page 29: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

29

LDA + protocol

No loss condition Additive increase rate is calculated as follows:

R- Bottleneck Bandwidth, r - Xmission rate

To limit A to the bottleneck bandwidth ..

Page 30: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

30

LDA + protocol

Finally the rate should not be more than a TCP connection sharing the same link

Round trip delay

(T) Time b/w two receiver report

The additive increase value Am is set to

&

Page 31: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

31

LDA + protocol – Simulation Results

Page 32: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

32

LDA + protocol – Simulation Results

Page 33: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

33

TEAR Protocol

TCP Emulation at Receivers

Shift most of flow control functions to receivers. Instead of reporting congestion signals, process

them immediately at receivers. Receivers emulate the TCP window adjustment

protocol. Increase: congestion avoidance and slow start. Decrease: fast recovery and timeout.

Page 34: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

34

TEAR Protocol

Emulate TCP window

adjustment

The sender setsits xmission rate

to R

Sender Receiver

Report rate R.

CWND

Page 35: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

35

TEAR Protocol Instead of reporting an instantaneous (oscillating) rate,

the receiver can find the equilibrium operating point (more smoothed averaged rate)

Emulate TCP window

adjustment

Receiver

Report rate R.

Equilibrium operating point

Perform smoothing usingWeighted averaging

Page 36: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

36

TEAR- Results

Page 37: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

37

TEAR Protocol In TCP, after an initial packet loss in a window, at least

cwnd packets are sent (including the lost packet) – this is true no matter which packet is lost in that window.

If TCP sender does not detect FR by the time that these packets wound be acknowledged (some of them would be lost), timeout will occur.

cwnd:5

TCP

Only two TDs received

Timeout

Page 38: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

38

TEAR Protocol If TEAR receiver does not detect FR before the reception of a packet with x+cwnd-1 or higher

after the initial loss (including the lost packet), then TEAR enters timeout.

Or, Ttimeout (= Tinterarrival * cwnd * 2DEV) has expired after the initial packet loss.

cwnd:5 TEAR receiver detects timeout

TEAR

Ignore packet losses innext RTT period

X

X+4

Page 39: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

39

Single Rate Congestion Control Protocols Window Based

Page 40: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

40

RLA Protocol

Random Listening Algorithm

Multicast fairness.

Simple, similar to TCP. Upon receiving a congestion signal sender reduces

its window sized by 1/n where n is the number of receivers reporting frequent losses.

If all receivers experience the same average congestion sender reacts as if listening to one representative of them

Page 41: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

41

RLA Protocol

S

R1 R2RNRN1

12 N-1

N

Multicast connection

TCP connection

m1

m2

m1+1

Page 42: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

42

RLA Protocol

Each receiver stores the smooth RTT and the measured congestion probability

If congestion is detected window is halved if

- the previous window cut was made long time ago

- a generated random number is <= 1/n When a packet has been ACK’d by all receivers

the congestion windows cwnd = cwnd + 1/cwnd

Page 43: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

43

Performance of RLAS

G

G

G

R1

L1L21

L31

L41

Page 44: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

44

Result: Drop-tail Gateways

0

50

100

150

200

250

L1 L3 level L4 level Partial L4 L21

RLA

Best TCP

Worst TCP

Thr

ough

put

congestion

Essentially fair to TCPRED: 1/3 lTCP lRLA 3n lTCP..drop-tail: 1/4 lTCP lRLA 2n lTCP

Page 45: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

45

LPR Protocol

Linear Proportional Response Improvement over the RLA mechanism Probability with which a multicast sender reduces

its cwnd is proportional to the loss probability at the receiver

Xi is the # of losses at the receiver

Page 46: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

46

MTCP Protocol

Hierarchical Congestion Reports• Internal tree nodes sender's agent

(SA) • receivers send feedback to their

SAs• SAs send a summary of the

congestion level of their children to their parents

M R 1

S o urce

G ro upM em ber

G ro upM em ber

G ro upM em ber

G ro upM em ber

G ro upM em ber

M R 9 M R 10

M R 3M R 2 M R 4

M R 5

M R 8M R 7M R 6

SA

SA

ACKs

ACKs andsum m ary

ACKs andsum m ary

Page 47: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

47

MTCP ProtocolWindow Based Control

• Send controls its rate based on its summary

Congestion Window Adjustment (when CWND goes down)

• RTD timeout • Fast retransmission (in conjunction with selective

acknowledgment) • Three NACKs for the same packet reduces the

window (note that not every loss causes CWND to go down by half)

• Based on TCP Vegas scheme (I.e., long RTT causes it to go down)

Page 48: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

48

MTCP - Results

Page 49: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

49

MTCP - Results

Page 50: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

50

NCA Protocol

Nominee-based Congestion AvoidanceIn order to achieve TCP friendliness it tries to find the path in which the TCP session will receive the least bandwidth in the multicast tree.

Highest value of

Once a nominee has been found the source unicasts a message to this receiver soliciting per packet ACK from it

Page 51: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

51

NCA Protocol - Result

Page 52: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

52

PGMCC Protocol

Sender

Receiver

Acker

Data

NACK

ACK

Sender sends packetAcker sends ACK

Page 53: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

53

Sender

Receiver

Acker

Data

NACK

ACK

Sender sends next packetPacket lost by one receiverReceiver sends NACK and Acker sends ACKIf the NACK is from a receiver worse than Acker, then it is designated as the new Acker

PGMCC Protocol

Page 54: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

54

Sender

Receiver

Acker

Data

NACK

ACK

Sender sends next PacketNew Acker sends ACK

PGMCC Protocol

Page 55: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

55

Sender

Receiver

Acker

Data

NACK

ACK

Sender sends packetAcker leavesSender waits until timeout (unnecessary starvation)

PGMCC- Unnecessary Starvation

Page 56: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

56

RRR

TS TR

PS PR1 PR2

Congested Link

NAK Suppression

TS: TCP Sender TR: TCP ReceiverPS: PGMCC Sender PR: PGMCC ReceiverR: Router

NACK

Page 57: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

57

Multi-Rate Congestion Control ProtocolsRate Based

Page 58: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

58

RLC- Protocol

Receiver driven layered congestion control Layered method, the BW of each new layer increases

exponentially The time receiver has to wait for the new layer is also

exponential Increase in bandwidth is proportional to the amount of

time required to pass without packet loss withou any loss The dropping of one layer is a multiplicative decrease

Page 59: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

59

RLC - Results

Page 60: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

60

FLID-DL Protocol

Fair Layered Increase/Decrease with Dynamic Layering

Sender calculates increase signals according to FLID

Receiver reacts to increase signals according to DL

Page 61: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

61

FLID Scheme

Fair Layered Increase/Decrease scheme Increase/Decrease reception rates to achieve

the same avg throughput as a TCP flow Uses RLC’s sender initiated synchronization

point method to coordinate receivers FLID uses probabilistic increase signals(rathre

than packet bursts as in RLC) for the receivers to subscribe to additional layers

Page 62: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

62

FLID Scheme

RLC works with fixed download rates Rate to each layer twice that of previous layer Possible download rates are multiples of two

FLID works with arbitrary download rates Rate to each layer independent of previous layer Possible download rates can be much more fine-

grained Example – Designed so that cumulative rate

increases by 1.3 for each additional layer, instead of by 2.0 as for RLC

Page 63: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

63

FLID-DL Results

With Increase of queue size, FLID-DL is not able to adjust

Page 64: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

64

MLDA Protocol

Multicast Loss Delay Based Adaption algorithm

The sender periodically transmits reports about the sent layers

Each receiver measures the loss and delay of the reports for some time and determines the TCP friendly bandwidth share between the receiver and the sender

Based on the calculated share and the rates of the layers (from sender) receiver decides to leave, join or stay on a layer

Page 65: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

65

MLDA – Protocol (cont’d)

The receivers schedule transmission of reports indicating their calculated bandwidth share

Based on the receiver reports the sender adjusts the sizes of the different layers

Page 66: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

66

MLDA – Results

Page 67: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

67

PLM Protocol

Packet Pair Receiver Driven Cumulative Layered Multicast Protocol

It uses packet pair characteristics A rate decrease is followed by unsubscribing a

appropriate number of layers A rate increase is obtained to the minimum

bandwidth estimated during the interval

Page 68: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

68

PLM Results

Page 69: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

69

PLM - Results

Page 70: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

70

Multi-Rate Congestion Control ProtocolsWindow Based

Page 71: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

71

Rainbow - Protocol

Receiver based, request for transmission of each individual data packet, each marked with a label

Receiver maintains a cwnd When a packet loss is detected cwnd=cwnd/2 The cwnd is increased +1 for each received

packet during SS or when a full window is received

Uses Digital Fountain Encoding

Page 72: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

72

Rainbow - Protocol (cont’d)

The intermediate routers store info about the requests that they have received

The reply packet is forwarded towards the receiver and the intermediate routers delete the information

Page 73: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

73

Rainbow - Protocol (cont’d)

Page 74: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

74

Conclusion

The various protocols presented are not comparable because of lack of standard methods for comparison of congestion control protocols

The congestion control methods used simple formula which need to be improved

Router based mechanisms may open up new dimensions and have not been considered in the survey

Page 75: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

75

References1. W. Richard Stevens, ‘TCP/IP Illustrated Vol 1’

2. ‘A survey on TCP Friendly Congestion Control’, Joerg Widmer, Robert Denda, Martin Mauve, University of Mannheim, Germany, IEEE Network May/June 2001

3. ‘A Report on Recent Developments in TCP Congestion Control’, Sally Floyd, AT&T Center for Internet Research at ICSI, IEEE Communications Magazine, April 2001

4. ‘TCP Performance in a Heterogenous Network: A Survey, Chadi Barakat, Eitan Altman and Walid Dabbous’, INRI, IEEE Communications Magazine, January 2000.

5. ‘Simulation-based Comparisons of Tahoe, Reno and Sack TCP’, Lawrence Berkley National Library

Page 76: 1 Samrat Sen Computer Science and Engineering. 2 Outline Introduction Abbreviations TCP Friendliness Existing TCP Ongoing Work Single Rate Congestion.

76

Thank You