wednesday 6 march 2013 - university of...

15
CS 471G Wednesday 6 March 2013 Exam handback/go over Mean 84.3, Median 85.5 Congestion Control Principles TCP Congestion Control 1

Upload: others

Post on 01-Apr-2021

1 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Wednesday 6 March 2013 - University of Kentuckyprotocols.netlab.uky.edu/~calvert/classes/471/slides/... · 2013. 3. 6. · Wednesday 6 March 2013 ! Exam handback/go over Mean 84.3,

CS 471G Wednesday 6 March 2013 v  Exam handback/go over

Mean 84.3, Median 85.5

v  Congestion Control Principles v  TCP Congestion Control

1

Page 2: Wednesday 6 March 2013 - University of Kentuckyprotocols.netlab.uky.edu/~calvert/classes/471/slides/... · 2013. 3. 6. · Wednesday 6 March 2013 ! Exam handback/go over Mean 84.3,

Chapter 3 Transport Layer

Computer Networking: A Top Down Approach

6th edition Jim Kurose, Keith Ross

Addison-Wesley March 2012

A note on the use of these ppt slides: We’re making these slides freely available to all (faculty, students, readers). They’re in PowerPoint form so you see the animations; and can add, modify, and delete slides (including this one) and slide content to suit your needs. They obviously represent a lot of work on our part. In return for use, we only ask the following: v  If you use these slides (e.g., in a class) that you mention their source

(after all, we’d like people to use our book!) v  If you post any slides on a www site, that you note that they are adapted

from (or perhaps identical to) our slides, and note our copyright of this material.

Thanks and enjoy! JFK/KWR All material copyright 1996-2012 J.F Kurose and K.W. Ross, All Rights Reserved

2

Page 3: Wednesday 6 March 2013 - University of Kentuckyprotocols.netlab.uky.edu/~calvert/classes/471/slides/... · 2013. 3. 6. · Wednesday 6 March 2013 ! Exam handback/go over Mean 84.3,

Chapter 3 outline

3.1 transport-layer services

3.2 multiplexing and demultiplexing

3.3 connectionless transport: UDP

3.4 principles of reliable data transfer

3.5 connection-oriented transport: TCP §  segment structure §  reliable data transfer §  flow control §  connection management

3.6 principles of congestion control

3.7 TCP congestion control

3

Page 4: Wednesday 6 March 2013 - University of Kentuckyprotocols.netlab.uky.edu/~calvert/classes/471/slides/... · 2013. 3. 6. · Wednesday 6 March 2013 ! Exam handback/go over Mean 84.3,

congestion: v  informally: “too many sources sending too much

data too fast for network to handle” v  different from flow control!

•  flow control: end-to-end (routers don’t care!) •  congestion control: end-to-middle (routers care a lot!)

v  manifestations: § lost packets (buffer overflow at routers) § long delays (queueing in router buffers)

v  a top-10 problem!

Principles of congestion control

4

Page 5: Wednesday 6 March 2013 - University of Kentuckyprotocols.netlab.uky.edu/~calvert/classes/471/slides/... · 2013. 3. 6. · Wednesday 6 March 2013 ! Exam handback/go over Mean 84.3,

Mental Model

v  In thinking about throughput, a useful model is window/RTT “window per RTT” § A sender can transmit up to a “window full” of

data before waiting for feedback from the receiver

•  In the case of reliable data transfer, the feedback is acknowledgment

§ RTT ≈ time from start of transmission until feedback is received

5

“window of packets in flight”

Sender Receiver

feedback returning

Page 6: Wednesday 6 March 2013 - University of Kentuckyprotocols.netlab.uky.edu/~calvert/classes/471/slides/... · 2013. 3. 6. · Wednesday 6 March 2013 ! Exam handback/go over Mean 84.3,

Causes/costs of congestion: scenario 1

v  two senders, two receivers

v  one router, infinite buffers

v  output link capacity: R v  no retransmission

v  maximum per-connection throughput: R/2

unlimited shared output link buffers

Host A

original data: λin

Host B

throughput: λout

R/2

R/2

λ out

λin R/2 de

lay

λin v  large delays as arrival rate,

λin, approaches capacity 6

capacity: R

Page 7: Wednesday 6 March 2013 - University of Kentuckyprotocols.netlab.uky.edu/~calvert/classes/471/slides/... · 2013. 3. 6. · Wednesday 6 March 2013 ! Exam handback/go over Mean 84.3,

v  one router, finite buffers v  sender retransmission of timed-out packet

§  application-layer input = application-layer output: λin = λout

§  transport-layer input includes retransmissions : λin λin

finite shared output link buffers

Host A

λin : original data

Host B

λout λ'in: original data, plus retransmitted data

Causes/costs of congestion: scenario 2

7

Page 8: Wednesday 6 March 2013 - University of Kentuckyprotocols.netlab.uky.edu/~calvert/classes/471/slides/... · 2013. 3. 6. · Wednesday 6 March 2013 ! Exam handback/go over Mean 84.3,

idealization: perfect knowledge

v  sender sends only when router buffers available

finite shared output link buffers

λin : original data λout λ'in: original data, plus

retransmitted data copy

free buffer space!

R/2

R/2

λ out

λin

Causes/costs of congestion: scenario 2

Host B

A

8

Page 9: Wednesday 6 March 2013 - University of Kentuckyprotocols.netlab.uky.edu/~calvert/classes/471/slides/... · 2013. 3. 6. · Wednesday 6 March 2013 ! Exam handback/go over Mean 84.3,

λin : original data λout λ'in: original data, plus

retransmitted data copy

no buffer space!

Idealization: known loss packets can be lost, dropped at router due to full buffers

v  sender only resends if packet known to be lost

Causes/costs of congestion: scenario 2

A

Host B 9

Page 10: Wednesday 6 March 2013 - University of Kentuckyprotocols.netlab.uky.edu/~calvert/classes/471/slides/... · 2013. 3. 6. · Wednesday 6 March 2013 ! Exam handback/go over Mean 84.3,

λin : original data λout λ'in: original data, plus

retransmitted data

free buffer space!

Causes/costs of congestion: scenario 2 Idealization: known loss

packets can be lost, dropped at router due to full buffers

v  sender only resends if packet known to be lost

R/2

R/2 λin

λ out

when sending at R/2, some packets are retransmissions but asymptotic goodput is still R/2 (why?)

A

Host B 10

Page 11: Wednesday 6 March 2013 - University of Kentuckyprotocols.netlab.uky.edu/~calvert/classes/471/slides/... · 2013. 3. 6. · Wednesday 6 March 2013 ! Exam handback/go over Mean 84.3,

A

λin λout λ'in copy

free buffer space!

timeout

R/2

R/2 λin

λ out

when sending at R/2, some packets are retransmissions including duplicated that are delivered!

Host B

Realistic: duplicates v  packets can be lost, dropped

at router due to full buffers v  sender times out prematurely,

sending two copies, both of which are delivered

Causes/costs of congestion: scenario 2

11

Page 12: Wednesday 6 March 2013 - University of Kentuckyprotocols.netlab.uky.edu/~calvert/classes/471/slides/... · 2013. 3. 6. · Wednesday 6 March 2013 ! Exam handback/go over Mean 84.3,

R/2

λ out

when sending at R/2, some packets are retransmissions including duplicated that are delivered!

“costs” of congestion: v  more work (retrans) for given “goodput” v  unneeded retransmissions: link carries multiple copies of pkt

§  decreasing goodput

R/2 λin

Causes/costs of congestion: scenario 2 Realistic: duplicates v  packets can be lost, dropped

at router due to full buffers v  sender times out prematurely,

sending two copies, both of which are delivered

12

Page 13: Wednesday 6 March 2013 - University of Kentuckyprotocols.netlab.uky.edu/~calvert/classes/471/slides/... · 2013. 3. 6. · Wednesday 6 March 2013 ! Exam handback/go over Mean 84.3,

v  four senders v  multihop paths v  timeout/retransmit

Q: what happens as λin and λin’

increase ?

finite shared output link buffers

Host A λout

Causes/costs of congestion: scenario 3

Host B

Host C Host D

λin : original data λ'in: original data, plus

retransmitted data

A: as red λin’ increases, all arriving

blue pkts at upper queue are dropped, blue throughput g 0

13

Page 14: Wednesday 6 March 2013 - University of Kentuckyprotocols.netlab.uky.edu/~calvert/classes/471/slides/... · 2013. 3. 6. · Wednesday 6 March 2013 ! Exam handback/go over Mean 84.3,

another “cost” of congestion: v  when packet dropped, any “upstream

transmission capacity used for that packet was wasted!

Causes/costs of congestion: scenario 3

C/2

C/2

λ out

λin’

14

Page 15: Wednesday 6 March 2013 - University of Kentuckyprotocols.netlab.uky.edu/~calvert/classes/471/slides/... · 2013. 3. 6. · Wednesday 6 March 2013 ! Exam handback/go over Mean 84.3,

Approaches towards congestion control

two broad approaches towards congestion control:

end-end congestion control:

v  no explicit feedback from network

v  congestion inferred from end-system observed loss, delay

v  this is the approach taken by TCP §  Note: not in RFC793!

network-assisted congestion control:

v  routers provide feedback to end systems § single bit indicating

congestion § explicit rate for

sender to send at § receiver must return

info (put in packets by router) to sender (feedback)

15