Top Banner
Multipath TCP: Goals and Background Mark Handley, UCL
26

Multipath TCP: Goals and Background - UCL

Feb 04, 2022

Download

Documents

dariahiddleston
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Multipath TCP: Goals and Background - UCL

Multipath TCP: Goals and Background

Mark Handley, UCL

Page 2: Multipath TCP: Goals and Background - UCL

Not your grandfather’s Internet…

Once upon a time the Internet did email, ftp, and telnet. And it fell over due to congestion.

TCP congestion control has kept the Internet runningevery since. Matches load to available capacity on short timescales. On long timescales, needs an external feedback loop

to reduce the arrival rate of new connections.

Page 3: Multipath TCP: Goals and Background - UCL

Today

Very high demands for reliability. Higher than the reliability rate of the network

components themselves.

Demanding applications becoming prevalent. VoIP, IPTV, Games.

Page 4: Multipath TCP: Goals and Background - UCL

Unpredictability

Can’t predict failures. Can’t predict flash crowds. Can’t predict DDoS attacks.

Still need to provide very high reliability service fordemanding applications.

Page 5: Multipath TCP: Goals and Background - UCL

Robustness

General solution to providing robustness: Redundancy

In the Internet: Routing around failures (rather slow). Multihoming (rather crude). Traffic engineering via routing to cope with the above. DPI and traffic shaping when TE can’t cope.

Page 6: Multipath TCP: Goals and Background - UCL

Unpredictability of Wireless

Wireless links becoming ubiquitous at the network edge. Fading, interference, etc make provision of reliable

service much harder.

Many wireless devices do have multiple radios. Can’t currently use these effectively to provide

redundancy.

Page 7: Multipath TCP: Goals and Background - UCL

Mobility

Imagine a phone with 3G and WiFi,moving around a campus. Would like to use 3G as semi-reliable baseline

service, supplimented by WiFi when available, andswitching between WiFi APs as they come and go.

Current Internet protocols not designed around suchagile network connectivity.

Page 8: Multipath TCP: Goals and Background - UCL

Multipath Transport: The Basic Idea

Stop hiding multi-homing! Make the different network downlinks available to the

transport protocol (eg, give them different addresses). Establish more than one path between the same pair of

endpoints for the same connection. Use congestion control to determine which traffic goes

down each of the paths.

Page 9: Multipath TCP: Goals and Background - UCL

Scenarios: Multi-homed server

Client

Server

Load balances betweenaccess links

One TCP connection,two paths

Page 10: Multipath TCP: Goals and Background - UCL

Scenarios: Multi-homed server

Client

Server

30-second outagewhile BGPreconverges

Flow continueson alternate path

Page 11: Multipath TCP: Goals and Background - UCL

Scenarios: Multi-homed server

Client

Server

Traffic moves awayfrom congested path

LegacyClient

Page 12: Multipath TCP: Goals and Background - UCL

Resource PoolingNetwork's resources behave like a single pooled resource.

Aim is to increase reliability, flexibility and efficiency. Method is to build mechanisms for shifting load

between the various parts of the network.

6 Mb/s

10 Mb/s

10 Mb/s

10 Mb/s

6

64

8

2

10

Srca

Srcb

Srcc

Dsta

Dstb

Dstc

Page 13: Multipath TCP: Goals and Background - UCL

Resource Pooling is not new…

Computer communication is bursty, so a virtual circuit-based modelwith rate allocations gives poor utilization.

A packet-switched network pools the capacity of a single link. Goal: high utilization

Router queues pool capacity from one time interval to the next Goal: high utilization, robustness to arrival patterns

Page 14: Multipath TCP: Goals and Background - UCL

Multipath transport

Multipath transportallows multiple links tobe treated as a singlepooled resource.

Traffic moves awayfrom congested links.

Larger bursts can beaccommodated.

ARPAnet resource pooling:

Multipath resource pooling:

Page 15: Multipath TCP: Goals and Background - UCL

Resource poolingallows a wider rangeof traffic matrices

Srcb Dsta

Dstb

100Mb/s

100Mb/s

100Mb/s

100Mb/s

SrcaFl

ow a

(Mb/

s)

Flow b(Mb/s)

Possibletraffic flows

100

100

Flow

a

Flow b(Mb/s)

Possibletraffic flows

100

100

Flow

aFlow b(Mb/s)

Possibletraffic flows

100

100

No multi-path flows Only flow a is multi-path. Both flows are multi-path

Page 16: Multipath TCP: Goals and Background - UCL

Scenario: Mobile Client

Mobile client

3G celltower

Server

Page 17: Multipath TCP: Goals and Background - UCL

Scenario: Mobile Client

Mobile clientServer

Wifi

Wifi

Page 18: Multipath TCP: Goals and Background - UCL

Scenario: Mobile Client

Mobile clientServer

Wifi

Wifi

Page 19: Multipath TCP: Goals and Background - UCL

Scenario: Mobile Client

Mobile client

Server

Wifi

Wifi

Page 20: Multipath TCP: Goals and Background - UCL

Multipath Transport

Multipath transport protocols seem to be key to makingthe Internet more robust and more responsive tocongestion. Inherent redundancy. Move congestion, not just spread it out over more

time. React on timescales not possible in routing.

May offload work from routing?

Page 21: Multipath TCP: Goals and Background - UCL

Multipath TCP

TCP is ubiquitous. Assertion:

Can add multipath capability to TCP fairly easily. Improve behavior of existing applications.

Page 22: Multipath TCP: Goals and Background - UCL

Why in TCP, not over it?

Can’t we just do this over TCP? BitTorrent gets many of the benefits while running

over TCP. Multi-server HTTP would do the same for

multihomed servers.

Page 23: Multipath TCP: Goals and Background - UCL

Why in TCP?

Only get the full congestion benefits when you link thecongestion response of the subflows to move trafficaway from congestion.

Leverage TCP handshake to bootstrap subflows quickly. Want it to work for all existing TCP applications.

Page 24: Multipath TCP: Goals and Background - UCL

Other transport protocols?

SCTP Already has the protocol mechanism, just needs to

implement the new congestion control mechanisms. DCCP

Would be easy to add, if there was demand. UDP

No single approach. No handshake; maybe an application library?

Page 25: Multipath TCP: Goals and Background - UCL

Multipath TCP

Has been proposed several times over the years(originally by Huitema?).

We now understand that multipath TCP, if doneappropriately, can go a long way towards solvingnetwork-wide traffic engineering problems.

We’re starting to understand the consequences of notsolving the issue in a general way.

Page 26: Multipath TCP: Goals and Background - UCL

Next Presentations

Alan Ford Multipath TCP Protocol Design

Costin Raiciu Multipath Congestion Control