105
Shivkumar Kalyanaraman Rensselaer Polytechnic Institute 1 Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré-arrangé et complété par C. Pham) Based in part upon slides of Prof. Raj Jain (OSU), Srini Seshan (CMU), J. Kurose (U Mass), I.Stoica (UCB)

Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

  • Upload
    others

  • View
    3

  • Download
    0

Embed Size (px)

Citation preview

Page 1: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

1

Shivkumar KalyanaramanRensselaer Polytechnic Institute

(ré-arrangé et complété par C. Pham)

Based in part upon slides of Prof. Raj Jain (OSU), Srini Seshan (CMU), J. Kurose (U Mass), I.Stoica (UCB)

Page 2: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

2

❑ UDP: connectionless, end-to-end service❑ UDP Servers❑ TCP features, Header format❑ Connection Establishment❑ Connection Termination ❑ TCP Server Design❑ Ref: Chap 11, 17,18; RFC 793, 1323

Page 3: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

3

Transport Services and Protocols❑ Provide logical communication

between app’ processes running on different hosts

❑ Transport protocols run in end systems

❑ Transport vs. network layer services:

❑ network layer: data transfer between end systems

❑ transport layer: data transfer between processes

❑ Relies on, enhances, network layer services

applicationtransportnetworkdata linkphysical

applicationtransportnetworkdata linkphysical

networkdata linkphysical

networkdata linkphysical

networkdata linkphysical

networkdata linkphysicalnetwork

data linkphysical

logical end-end t r anspor t

Page 4: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

4

Transport-layer protocolsInternet transport services:❑ Reliable, in-order unicast delivery (TCP)

❑ congestion ❑ flow control❑ connection setup

❑ Unreliable (“best-effort”), unordered unicast or multicast delivery: UDP

❑ Services not available:

❑ real-time❑ bandwidth guarantees❑ reliable multicast

Page 5: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

5

Multiplexing / demultiplexing

applicationtransportnetwork

MP2

applicationtransportnetwork

Recall: segment - unit of data exchanged between transport layer entities

❑ aka TPDU: transport protocol data unit

receiver

HtHn

Demultiplexing: delivering received segments to correct app layer processes

segment

segment Mapplicationtransportnetwork

P1M

M M

P3 P4

segmentheader

application-layerdata

Page 6: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

6

Multiplexing / demultiplexing

multiplexing/demultiplexing:❑ based on sender, receiver port

numbers, IP addresses

❑ source, dest port #s in each segment

❑ recall: well-known port numbers for specific applications

gathering data from multipleapp processes, enveloping data with header (later used for demultiplexing)

source port # dest port #

32 bits

applicationdata

(message)

other header fields

TCP/UDP segment format

Multiplexing:

Page 7: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

7

Multiplexing/demultiplexing: examples

host A server Bsource port: xdest. port: 23

source port:23dest. port: x

port use: simple telnet app

Web clienthost A

Webserver B

Web clienthost C

Source IP: CDest IP: B

source port: xdest. port: 80

Source IP: CDest IP: B

source port: ydest. port: 80

port use: Web server

Source IP: ADest IP: B

source port: xdest. port: 80

Page 8: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

8

UDP: User Datagram Protocol [RFC 768]

❑ Minimal Transport Service:

❑ “Best effort” service, UDP segments may be:❑ Lost❑ Delivered out of order

to app❑ Connectionless:

❑ No handshaking between UDP sender, receiver

❑ Each UDP segment handled independently of others

Why is there a UDP?❑ No connection

establishment (which can add delay)

❑ Simple: no connection state at sender, receiver

❑ Small header❑ No congestion control: UDP

can blast away as fast as desired: dubious!

Page 9: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

9

Multiplexing / demultiplexing

multiplexing/demultiplexing:❑ based on sender, receiver port

numbers, IP addresses

❑ source, dest port #s in each segment

❑ recall: well-known port numbers for specific applications

gathering data from multipleapp processes, enveloping data with header (later used for demultiplexing)

source port # dest port #

32 bits

applicationdata

(message)

other header fields

TCP/UDP segment format

Multiplexing:

Page 10: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

10

UDP, cont.

❑ Often used for streaming multimedia apps❑ Loss tolerant❑ Rate sensitive

❑ Other UDP uses (why?):❑ DNS❑ SNMP

❑ Reliable transfer over UDP: add reliability at application layer❑ Application-specific

error recover!

Source port # Dest port #

32 bits

Applicationdata

(message)

UDP segment format

Length ChecksumLength, in

bytes of UDPsegment,includingheader

Page 11: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

11

UDP Checksum

Sender:❑ Treat segment contents

as sequence of 16-bit integers

❑ Checksum: addition (1’s complement sum) of segment contents

❑ Sender puts checksum value into UDP checksum field

Receiver:❑ Compute checksum of

received segment❑ Check if computed

checksum equals checksum field value:❑ NO - error detected❑ YES - no error

detected. But maybe errors nonetheless?

Goal: detect “errors” (e.g., flipped bits) in transmitted segment.

Note: IP only has a header checksum.

Page 12: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

12

UDP Checksum Example

❑ Consider three 16-bit words:

011001100110011001010101010101010000111100001111

❑ (1’s complement) sum of first two 16-bit words is:

1011101110111011❑ Adding the third word to the above sum gives:

1100101011001010❑ 1’s complement of this sum => invert 0’s and 1’s0011010100110101 (this is the checksum field)❑ If no errors, sum of all four 16-bit words (incl. Checksum) will be

all 1s, I.e., 1111111111111111

Page 13: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

13

Introduction to TCP

❑ Communication abstraction:❑ Reliable❑ Ordered❑ Point-to-point❑ Byte-stream❑ Full duplex❑ Flow and congestion controlled

❑ Protocol implemented entirely at the ends❑ Fate sharing

Page 14: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

14

Principles of Reliable Data Transfer

❑ Characteristics of unreliable channel will determine complexity of reliable data transfer protocol (rdt)

Page 15: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

15

Reliability Models❑ Reliability => requires redundancy to recover from uncertain loss or

other failure modes.

❑ Two types of redundancy:

❑ Spatial redundancy: independent backup copies❑ Forward error correction (FEC) codes❑ Problem: requires huge overhead, since the FEC

is also part of the packet(s) it cannot recover from erasure of all packets

❑ Temporal redundancy: retransmit if packets lost/error❑ Lazy: trades off response time for reliability❑ Design of status reports and retransmission

optimization important

Page 16: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

16

Temporal Redundancy ModelPackets • Sequence Numbers

• CRC or Checksum

Status Reports • ACKs• NAKs, • SACKs• Bitmaps

• Packets• FEC information

Retransmissions

Timeout

Page 17: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

17

TCP segment structure

source port # dest port #

32 bits

applicationdata

(variable length)

sequence number

acknowledgement numberrcvr window size

ptr urgent datachecksum

FSRPAUheadlen

notused

Options (variable length)

URG: urgent data (generally not used)

ACK: ACK #valid

PSH: push data now(generally not used)

RST, SYN, FIN:connection estab(setup, teardown

commands)

# bytes rcvr willingto accept

countingby bytes of data(not segments!)

Internetchecksum

(as in UDP)

Page 18: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

18

TCP seq. #’s and ACKs (I)

❑ Sequence Numbers:❑ byte stream “number” of first byte in segment’s

data

❑ ACKs:❑ seq # of next byte expected from other side❑ cumulative ACK

❑ Q: how receiver handles out-of-order segments❑ A: TCP spec doesn’t say, - up to implementor

Page 19: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

19

Host A Host B

Seq=42, ACK=79, data = ‘C’

Seq=79, ACK=43, data = ‘C’

Seq=43, ACK=80

Usertypes

‘C’

host ACKsreceipt

of echoed‘C’

host ACKsreceipt of‘C’, echoes

back ‘C’

simple telnet scenario

TCP Seq. #’s and ACKs (II)

Page 20: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

20

TCP ACK generation

Event

in-order segment arrival, no gaps,everything else already ACKed

in-order segment arrival, no gaps,one delayed ACK pending

out-of-order segment arrivalhigher-than-expect seq. #gap detected!

arrival of segment thatpartially or completely fills gap

TCP Receiver action

delayed ACK. Wait up to 500msfor next segment. If no next segment,send ACK

immediately send singlecumulative ACK

send duplicate ACK, indicating seq. #of next expected byte

immediate ACK if segment startsat lower end of gap

Page 21: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

21

TCP: retransmission scenarios

Host A

Seq=92, 8 bytes data

ACK=100

loss

tim

eout

time lost ACK scenario

Host B

X

Seq=92, 8 bytes data

ACK=100

Host A

Seq=100, 20 bytes data

ACK=100

Seq

=9

2 ti

meo

ut

time premature timeout,cumulative ACKs

Host B

Seq=92, 8 bytes data

ACK=120

Seq=92, 8 bytes data

Seq

=1

00

tim

eout

ACK=120

Page 22: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

22

TCP Flow Control

❑ receiver: explicitly informs sender of free buffer space ❑ RcvWindow

field in TCP segment

❑ sender: keeps the amount of transmitted, unACKed data less than most recently

sender won’t overrunreceiver’s buffers by

transmitting too much,too fast

flow control

receiver buffering

RcvBuffer = size or TCP Receive Buffer

RcvWindow = amount of spare room in Buffer

Page 23: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

23

Some definitions❑ Socket: BSD term to denote an IP address + a

port number. ❑ A connection is fully specified by a socket

pair i.e. the source IP address, source port, destination IP address, destination port.

❑ Initial Sequence Number (ISN): counter maintained in OS.❑ BSD increments it by 64000 every 500ms or

new connection setup => time to wrap around < 9.5 hours.

❑ Ex: ISN~2918440000 after 38min

Page 24: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

24

TCP Connection Management - 1

❑ Recall: TCP sender, receiver establish connection before exchanging data segments

❑ initialize TCP variables:❑ seq. #s❑ buffers, flow control info (e.g. RcvWindow)

❑ client: connection initiator❑ Socket clientSocket = new Socket("hostname","port

number");❑ server: contacted by client

❑ Socket connectionSocket = welcomeSocket.accept();

Page 25: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

25

TCP Connection Management <- 2Three way handshake:

Step 1: client end system sends TCP SYN control segment to server

❑ specifies initial seq #

Step 2: server end system receives SYN, replies with SYNACKcontrol segment

❑ SYNACK with server's initial seq #❑ AKCs receiver initial seq # + 1❑ allocates buffers

Step 3: client end system sends ACK control segment to server

❑ ACKs server initia seq # + 1

slide modified by C. Pham

Page 26: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

26

connection establismentClient Server

SYN 1415531521:145531521(0)

SYN 1823083521:1823083521(0)

ACK 1823083522

Clientrequest

connection

client ACKsreceipt of SYNACK

serverACKsreceipt of

SYN, sendsback SYNACK

ACK 1415531522, mss(1024>

mss<1024>

Trace obtained with tcpdump showing seq#:implied_seq#(nData)

slide added by C. Pham

Page 27: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

27

Closing a connection:

client closes socket: clientSocket.close();

Step 1: client end system sends TCP FIN control

segment to server

Step 2: server receives FIN, replies with ACK. Closes connection, sends FIN.

TCP Connection Management - 3

Page 28: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

28

client

FIN

server

ACK

ACK

FIN

close

close

closed

tim

ed w

ait

TCP Connection Management - 4

Page 29: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

29

Step 3: client receives FIN, replies with ACK.

❑ Enters “timed wait” - will respond with ACK to received FINs

Step 4: server, receives ACK. Connection closed.

Note: with small modification, can handle simultaneousFINs.

TCP Connection Management - 5

Page 30: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

30

TCP Connection Setup: FSM

CLOSED

SYNSENT

SYNRCVD

ESTAB

LISTEN

active OPENcreate TCBSnd SYN

create TCB

passive OPEN

delete TCBCLOSE

delete TCBCLOSE

snd SYNSEND

snd SYN ACKrcv SYN

Send FINCLOSE

rcv ACK of SYNSnd ACK

Rcv SYN, ACK

rcv SYNsnd ACK

Page 31: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

31

TCP Connection Tear-down: FSM

CLOSING

CLOSEWAIT

FINWAIT-1

ESTAB

TIME WAIT

snd FINCLOSE

send FINCLOSE

rcv ACK of FIN

LAST-ACK

CLOSED

FIN WAIT-2

snd ACKrcv FIN

delete TCBTimeout=2msl

send FINCLOSE

send ACKrcv FIN

snd ACKrcv FIN

rcv ACK of FIN

snd ACKrcv FIN+ACK

Page 32: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

32

Sequence Number Space

❑ Each byte in byte stream is numbered.❑ 32 bit value❑ Wraps around❑ Initial values selected at connection time

❑ TCP breaks up the byte stream in packets.❑ Packet size is limited to the Maximum Segment Size

❑ Each packet has a sequence number.❑ Indicates where it fits in the byte stream

packet 8 packet 9 packet 10

13450 14950 16050 17550

Page 33: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

33

MSS

Maximum Segment Size (MSS)Largest “chunk” sent between TCPs.

Default = 536 bytes. Not negotiated. Announced in connection establishment. Different MSS possible for forward/reverse paths.Does not include TCP header

❑ What all does this effect?❑ Efficiency❑ Congestion control❑ Retransmission

❑ Path MTU discovery❑ Why should MTU match MSS?

Page 34: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

34

TCP Window Flow Control: Send Side

Sent but not acked Not yet sent

window

Next to be sent

Sent and acked

Page 35: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

35

acknowledged sent to be sentoutside window

Source Port Dest. Port

Sequence Number

Acknowledgment

HL/Flags Window

D. Checksum Urgent Pointer

Options..

Source Port Dest. Port

Sequence Number

Acknowledgment

HL/Flags Window

D. Checksum Urgent Pointer

Options..

Packet Sent Packet Received

App write

Window Flow Control: Send Side

Page 36: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

36

Acked but notdelivered to user

Not yetacked

Receive buffer

window

Window Flow Control: Receive Side

Page 37: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

37

Silly Window Syndrome

❑ Problem: (Clark, 1982)❑ If receiver advertises small increases in the

receive window then the sender may waste time sending lots of small packets

❑ Solution❑ Receiver must not advertise small window

increases ❑ Increase window by

min(MSS,RecvBuffer/2)

Page 38: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

38

Nagel’s Algorithm & Delayed Acks

❑ Small packet problem:❑ Don’t want to send a 41 byte packet for each

keystroke❑ How long to wait for more data?

❑ Solution: Nagel’s algorithm❑ Allow only one outstanding small (not full sized)

segment that has not yet been acknowledged

❑ Batching acknowledgements:❑ Delay-ack timer: piggyback ack on reverse traffic if

available❑ 200 ms timer will trigger ack if no reverse traffic

available

Page 39: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

39

Timeout and RTT Estimation❑ Problem:

❑ Unlike a physical link, the RTT of a logical link can vary, quite substantially

❑ How long should timeout be (RTO)?❑ Too long => underutilization❑ Too short => wasteful retransmissions

❑ Solution → adaptive timeout: based on a good estimate of maximum current value of RTT

Page 40: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

40

How to estimate RTT?❑ RTT = prop + queuing delay

❑ Queuing delay highly variable❑ So, different samples of RTTs will give

different random values of queuing delay

❑ Q: how to estimate RTT?❑ SampleRTT (M): measured time from segment

transmission until ACK receipt❑ M will vary wildly ❑ use several recent measurements, not just current

SampleRTT to calculate "AverageRTT" (A)❑ A (1-x)*A + x*M and then set RTO=R , x=0.1 (old version)

slide modified by C. Pham

Page 41: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

41

Round Trip Time and Timeout (II)

❑ New version (Jacobson, 1988)❑ constant multiple of the mean is not good❑ better use mean and variance

Setting the RTO timeoutErr=M-A

A←A+gErr, g=1/8D←D+h(|Err|-D), h=1/4

RTO = A+ 4D

In 1988, Jacobson specified 2D, but corrected it into 4D in 1990

Example

A=0, D=3s and RTO=A+2D initially. So RTO1=6sIf M=1.5s for 1st segmentErr=1.5-0=1.5A=0+O.125*1.5=O.1875D=3+0.25(|1.5|-3)=2.625RTO2=0.1875+4*2.625=10.6875

slide added by C. Pham

Page 42: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

42

Timer Granularity

❑ Many TCP implementations set RTO in multiples of 200,500 or1000ms

❑ Why?❑ Avoid spurious timeouts – RTTs can vary quickly due

to cross traffic❑ Delayed-ack timer can delay valid acks by up to

200ms❑ Make timers interrupts efficient

❑ What happens for the first couple of packets?❑ Pick a very conservative value (seconds)❑ Can lead to stall if early packet lost…

Page 43: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

43

Retransmission Ambiguity

A B

ACK

SampleRTT

Original transmission

retransmission

RTO

A BOriginal transmission

retransmissionSampleRTT

ACKRTOX

Page 44: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

44

Karn’s RTT Estimator

❑ Accounts for retransmission ambiguity❑ If a segment has been retransmitted:

❑ Don’t update RTT estimators during retransmission.

❑ Timer backoff: If timeout, RTO = 2*RTO {exponential backoff}

❑Keep backed off time-out for next packet❑ Reuse RTT estimate only after one successful

packet transmission

Page 45: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

45

Timestamp Extension

❑ Used to improve timeout mechanism by more accurate measurement of RTT

❑ When sending a packet, insert current timestamp into option❑ 4 bytes for seconds, 4 bytes for microseconds

❑ Receiver echoes timestamp in ACK❑ Actually will echo whatever is in timestamp

❑ Removes retransmission ambiguity!❑ Can get RTT sample on any packet

Page 46: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

46

Recap: Stability of a Multiplexed System

Average Input Rate > Average Output Rate => system is unstable!

How to ensure stability ?1. Reserve enough capacity so that

demand is less than reserved capacity 2. Dynamically detect overload and adapt

either the demand or capacity to resolve overload

Page 47: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

47

Congestion Problem in Packet Switching

A

B

C10 MbsEthernet

1.5 Mbs

45 Mbs

D E

statistical multiplexing

queue of packetswaiting for output

link

Cost: self-descriptive header per-packet, buffering and delays for applications.

Need to either reserve resources or dynamically detect/adapt to overload for stability

Page 48: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

48

Congestion: Tragedy of Commons

❑ Different sources compete for “common” or “shared” resources inside network. ❑ Sources are unaware of current state of resource❑ Sources are unaware of each other❑ Source has self-interest. Assumes that increasing

rate by N% will lead to N% increase in throughput!❑ Conflicts with collective interests: if all sources do

this to drive the system to overload, throughput gain is NEGATIVE, and worsens rapidly with incremental overload => congestion collapse!!

10 Mbps

100 Mbps

1.5 Mbps

Page 49: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

49

Congestion: A Close-up View

❑ knee – point after which ❑ throughput

increases very slowly

❑ delay increases fast❑ cliff – point after which

❑ throughput starts to decrease very fast to zero (congestion collapse)

❑ delay approaches infinity

Load

Load

knee cliff

congestioncollapse

packetloss

Page 50: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

50

Congestion Control vs. Congestion Avoidance

❑ Congestion control goal❑ stay left of cliff

❑ Congestion avoidance goal❑ stay left of knee

❑ Right of cliff: ❑ Congestion collapse

Load

knee cliff

congestioncollapse

Page 51: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

51

Congestion Collapse❑ Definition: Increase in network load results in decrease of

useful work done❑ Many possible causes

❑ Spurious retransmissions of packets still in flight❑ Undelivered packets

❑ Packets consume resources and are dropped elsewhere in network

❑ Fragments❑ Mismatch of transmission and retransmission units

❑ Control traffic❑ Large percentage of traffic is for control

❑ Stale or unwanted packets❑ Packets that are delayed on long queues

Page 52: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

52

λi

µλµi

❑ If information about λi , λ and µ is known in a centrallocation where control of λi or µ can be effected with zero time delays, the congestion problem is solved!

❑ Capacity (µ) cannot be provisioned very fast => demand must be managed

❑ Perfect callback: Admit packets into the network from the user only when the network has capacity (bandwidth and buffers) to get the packet across.

Solution Directions….

1

n

CapacityDemand

Problem: demand outstrips available capacity

Page 53: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

53

Issues❑ If information about λi , λ and µ is known in a central

location where control of λi or µ can be effected with zero time delays, the congestion problem is solved!

❑ Information/knowledge: Only incomplete information about the congestion situation is known (eg: loss indications, single bit, explicit rate field, measure of backlog etc)

❑ Central vs distributed:a distributed solution is required❑ Demand vs capacity control: usually only the demand is

controllable on small time-scales. Capacity provisioning may be possible on larger time-scales.

❑ Measurement/control points: The congestion point, congestion detection/measurement point, and the control points may be different.

❑ Time-delays: Between the various points, there may be time-varying and heterogeneous time-delays

Page 54: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

54

Static solutions…❑ Q: Will the “congestion” problem be solved when:

❑ a) Memory becomes cheap (infinite memory)?

No buffer Too late

All links 19.2 kb/s Replace with 1 Mb/s

S S S S S S S S

File Transfer Time = 7 hoursFile Transfer time = 5 mins

❑ b) Links become cheap (high speed links)?

Page 55: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

55

A

BS

C

DScenario: All links 1 Gb/s.

A & B send to C => “high-speed” congestion!!(lose more packets faster!)

Static solutions (Continued)

❑ c) Processors become cheap (fast routers & switches)

Page 56: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

56

Two models of congestion control❑ 1. End-to-end model:

❑ End-systems is ultimately the source of “demand”❑ End-system must robustly estimate the timing and

degree of congestion and reduce its demand appropriately

❑ Must trust other end hosts to do right thing❑ Intermediate nodes relied upon to send timely and

appropriate penalty indications (eg: packet loss rate) during congestion

❑ Enhanced routers could send more accurate congestion signals, and help end-system avoid other side-effects in the control process (eg: early packet marks instead of late packet drops)

❑ Key: trust and complexity resides at end-systems❑ Issue: What about misbehaving flows?

Page 57: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

57

Two models of congestion control…❑ 2. Network-based model:

❑ A) All end-systems cannot be trusted and/or ❑ B) The network node has more control over

isolation/scheduling of flows❑ Assumes network nodes can be trusted. ❑ Each network node implements isolation and fairness

mechanisms (eg: scheduling, buffer management)❑ A flow which is misbehaving hurts only itself

❑ Problems: ❑ Partial soln: if flows don’t back off, each flow has

congestion collapse, i.e. lousy throughput during overload❑ Significant complexity in network nodes❑ If some routers do not support this complexity, congestion

still exists ❑ Classic justification of the end-to-end principle

Page 58: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

58

Goals of Congestion Control

❑ To guarantee stable operation of packet networks❑ Sub-goal: avoid congestion collapse

❑ To keep networks working in an efficient status ❑ Eg: high throughput, low loss, low delay, and

high utilization

❑ To provide fair allocations of network bandwidth among competing flows in steady state❑ For some value of “fair”

58

Page 59: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

59

What is stability ?

❑ Equilibrium point(s) of a dynamic system

❑ For packet networks❑ Each user will get an allocation of bandwidth❑ Changes of network or user parameters will move

the equilibrium from one point, (hopefully) after a brief transient period, to a new one

❑ System should not remain indefinitely away from equilibrium if there are no more external perturbations

❑ Example of instability: unbounded queue growth

59

Page 60: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

60

What is fairness ?❑ one of the most over-defined (and probably

over-rated) concepts❑ fairness index❑ max-min❑ proportional❑ …❑ infinite number of notions!

❑ Fairness for best-effort service, roughly means that services are provided to selfish, competing users in a predictable way 60

Page 61: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

61

Eg: max-min fairness

cfxi

i =∑ ),min(

8

6

244

2

f = 4: min(8, 4) = 4min(6, 4) = 4min(2, 4) = 2

10

❑ if link not congested, then

❑ otherwise, if link congested

)max( ixf =

x1

x2

x3

61

Allocations

Page 62: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

62

Flow Control Optimization Model❑ Given a set S of flows, and a set L of links❑ Each flow s has utility Us(xs) , xs is its sending

rate❑ Each link l has capacity cl

❑ Modeled as optimization (Eg: Kelly’98, Low’99)

∑∈Ss

ss xU )(max

62

∑∈

∈∀≤lSs

ls Llcxst ,.

where Sl = { s | flow s passes the link l }

Page 63: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

63

What is Fairness ?❑ Achieves (w,a) fairness if for any other feasible

allocation [Mo’00]:

where ws is the weight for flow s❑ weighted maximum throughput fairness is (w,0)❑ weighted proportional fairness is (w,1)❑ weighted minimum potential delay fairness is (w,2)❑ weighted max-min fairness is (w,8 )❑ “Weight” could be driven by economic considerations, or

scheme dependencies on factors like RTT, loss rate etc

0*

*

≤−⋅∑∈Ss s

sss x

xxw α

63

x

Page 64: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

64

What is fairness ? (contd)❑ fairness (α-) axis

64

a0 1 2 8

❑ a = 0 : maximum throughput fairness❑ a = 1 : proportional fairness❑ a = 2 : minimum delay fairness❑ ……❑ a = 8 : max-min fairness

Page 65: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

65

Proportional vs Max-min Fairness❑ proportional fairness

❑ the more a flow consumes critical network resources, the less allocation

❑ network visible inside❑ network operators’ view❑ x*0 = 0.1, x*1~9 = 0.9

6565

x0

x1 x2 x9

l1 l2 l9

cl = 1

❑ max-min fairness❑ every flow has the same

right to all network resources

❑ network as a black box❑ network users’ view❑ x*0 = x*1~9 = 0.5

Page 66: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

66

Equilibrium❑ Operate at equilibrium near the knee point❑ How to maintain equilibrium?

❑ Packet-conservation: Don’t put a packet into network until another packet leaves.

❑ Use ACK: send a new packet only after you receive and ACK. Why?

❑ A.k.a “Self-clocking” or “Ack-clocking”❑ In steady state, keep # packets in network constant

❑ Problem: how do you know you are at the knee?❑ Network capacity or competing demand may change: ❑ Need to probe for knee by increasing demand❑ Need to reduce demand overshoot detected❑ End-result: oscillate around knee

❑ Violate packet-conservation each time you probe by the degree of demand increase

Page 67: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

67

Self-clocking

PrPb

Ar

Ab

ReceiverSender

As

❑ Implications of ack-clocking:

❑ More batching of acks => bursty traffic

❑ Less batching leads to a large fraction of Internet traffic being just acks (overhead)

Page 68: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

68

Basic Control Model

❑ Let’s assume window-based operation❑ Reduce window when congestion is perceived

❑ How is congestion signaled?❑ Either mark or drop packets

❑ When is a router congested?❑ Drop tail queues – when queue is full❑ Average queue length – at some threshold

❑ Increase window otherwise❑ Probe for available bandwidth – how?

Page 69: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

69

Simple linear control

❑ Many different possibilities for reaction to congestion and methods for probing❑ Examine simple linear controls❑ Window(t + 1) = a + b Window(t)❑ Different ai/bi for increase and ad/bd for

decrease❑ Supports various reaction to signals

❑ Increase/decrease additively❑ Increased/decrease multiplicatively❑ Which of the four combinations is optimal?

Page 70: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

70

Phase plots❑ Simple way to visualize behavior of competing flows over

time

❑ Caveat: assumes 2 flows, synchronized feedback, equal RTT, discrete “rounds” of operation

Efficiency Line

Fairness Line

User 1’s Allocation x1

User 2’s Allocation

x2Optimal point

Overload

Underutilization

Page 71: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

71

Additive Increase/Decrease

T0

T1

Efficiency Line

Fairness Line

User 1’s Allocation x1

User 2’s Allocation

x2

❑ Both X1 and X2 increase/decrease by the same amount over time❑ Additive increase improves fairness & increases load❑ Additive decrease reduces fairness & decreases load

Page 72: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

72

Multiplicative Increase/Decrease

❑ Both X1 and X2 increase by the same factor over time❑ Fairness unaffected (constant), but load increases

(MI) or decreases (MD)

T0

T1

Efficiency Line

Fairness Line

User 1’s Allocation x1

User 2’s Allocation

x2

Page 73: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

73

Additive Increase/Multiplicative Decrease (AIMD) Policy

❑ Assumption: decrease policy must (at minimum) reverse the load increase over-and-above efficiency line❑ Implication: decrease factor should be conservatively

set to account for any congestion detection lags etc

x0

x1

x2

Efficiency Line

Fairness Line

User 1’s Allocation x1

User 2’s Allocation

x2

Page 74: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

74

TCP Congestion Control

❑ Maintains three variables:❑ cwnd – congestion window❑ rcv_win – receiver advertised window ❑ ssthresh – threshold size (used to update

cwnd) ❑ Rough estimate of knee point…

❑ For sending use: win = min(rcv_win, cwnd)

Page 75: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

75

TCP: Slow Start❑ Goal: initialize system and discover congestion quickly❑ How? Quickly increase cwnd until network congested

get a rough estimate of the optimal cwnd❑ How do we know when network is congested?

❑ packet loss (TCP)❑ over the cliff here congestion control

❑ congestion notification (eg: DEC Bit, ECN)❑ over knee; before the cliff congestion avoidance

❑ Implications of using loss as congestion indicator❑ Late congestion detection if the buffer sizes larger❑ Higher speed links or large buffers => larger windows

=> higher probability of burst loss❑ Interactions with retransmission algorithm and

timeouts

Page 76: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

76

TCP: Slow Start

❑ Whenever starting traffic on a new connection, or whenever increasing traffic after congestion was experienced:

❑ Set cwnd =1 ❑ Each time a segment is acknowledged

increment cwnd by one (cwnd++).

❑ Does Slow Start increment slowly? Not really. In fact, the increase of cwnd is exponential!!❑ Window increases to W in RTT * log2(W)

Page 77: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

77

Slow Start Example

❑ The congestion window size grows very rapidly

❑ TCP slows down the increase of cwnd when cwnd >= ssthresh

ACK for segment 1

segment 1cwnd = 1

cwnd = 2 segment 2segment 3

ACK for segments 2 + 3

cwnd = 4 segment 4segment 5segment 6segment 7

ACK for segments 4+5+6+7

cwnd = 8

Page 78: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

78

Slow Start Example

1

One RTT

One pkt time

0R

21R

3

42R

567

83R

91011

1213

1415

1

2 3

4 5 6 7

Page 79: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

79

Slow Start Sequence Plot

Time

Sequence No

.

.

.

Window doublesevery round

Page 80: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

80

Congestion Avoidance

❑ Goal: maintain operating point at the left of the cliff:

❑ How?❑ additive increase: starting from the rough

estimate (ssthresh), slowly increase cwnd to probe for additional available bandwidth

❑ multiplicative decrease: cut congestion window size aggressively if a loss is detected.

Page 81: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

81

Congestion Avoidance

❑ Slow down “Slow Start”

❑ If cwnd > ssthresh theneach time a segment is acknowledged increment cwnd by 1/cwndi.e. (cwnd += 1/cwnd).

❑ So cwnd is increased by one only if all segments have been acknowledged.

❑ (more about ssthresh latter)

Page 82: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

82

Congestion Avoidance Sequence Plot

Time

Sequence No Window growsby 1 every round

Page 83: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

83

Slow Start/Congestion Avoidance Eg.

❑ Assume thatssthresh = 8

cwnd = 1

cwnd = 2

cwnd = 4

cwnd = 8

cwnd = 9

cwnd = 10

0

2

4

6

8

10

12

14

t=0

t=2

t=4

t=6

Roundtrip times

Cw

nd (

in s

egm

ents

)

ssthresh

Page 84: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

84

Putting Everything Together:TCP Pseudo-code

Initially:cwnd = 1;ssthresh = infinite;

New ack received:if (cwnd < ssthresh)

/* Slow Start*/cwnd = cwnd + 1;

else/* Congestion Avoidance */cwnd = cwnd + 1/cwnd;

Timeout: (loss detection)/* Multiplicative decrease */ssthresh = win/2;cwnd = 1;

while (next < unack + win)transmit next packet;

where win = min(cwnd, flow_win);

unack next

win

seq #

Page 85: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

85

The big picture

Time

cwnd

Timeout

Slow Start

CongestionAvoidance

Page 86: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

86

Packet Loss Detection: Timeout Avoidance

❑ Wait for Retransmission Time Out (RTO)❑ What’s the problem with this?

❑ Because RTO is a performance killer❑ In BSD TCP implementation, RTO is usually more than 1

second❑ the granularity of RTT estimate is 500 ms❑ retransmission timeout is at least two times of RTT

❑ Solution: Don’t wait for RTO to expire❑ Use alternate mechanism for loss detection❑ Fall back to RTO only if these alternate mechanisms

fail.

Page 87: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

87

Fast Retransmit❑ Resend a segment

after 3 duplicate ACKs❑ Recall: a duplicate

ACK means that an out-of sequence segment was received

❑ Notes: ❑ duplicate ACKs

due packet reordering!

❑ if window is small don’t get duplicate ACKs!

ACK 1

segment 1cwnd = 1

cwnd = 2 segment 2segment 3

ACK 3cwnd = 4 segment 4

segment 5segment 6segment 7

ACK 1

3 duplicateACKs ACK 4

ACK 4

ACK 4

Page 88: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

88

Fast Recovery (Simplified)

❑ After a fast-retransmit set cwnd to ssthresh/2❑ i.e., don’t reset cwnd to 1

❑ But when RTO expires still do cwnd = 1

❑ Fast Retransmit and Fast Recovery implemented by TCP Reno; most widely used version of TCP today

Page 89: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

89

Fast Retransmit and Fast Recovery

❑ Retransmit after 3 duplicated acks❑ prevent expensive timeouts

❑ No need to slow start again❑ At steady state, cwnd oscillates around the

optimal window size.

Time

cwnd

Slow Start

CongestionAvoidance

Page 90: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

90

Fast Retransmit

Time

Sequence NoDuplicate Acks

RetransmissionX

Page 91: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

91

Multiple Losses

Time

Sequence NoDuplicate Acks

RetransmissionX

X

XX

Now what?

Page 92: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

92

Time

Sequence NoX

X

XX

TCP Versions: Tahoe

Page 93: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

93

TCP Versions: Reno

Time

Sequence NoX

X

XX

Now what? - timeout

Page 94: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

94

NewReno

❑ The ack that arrives after retransmission (partial ack) should indicate that a second loss occurred

❑ When does NewReno timeout?❑ When there are fewer than three dupacks for

first loss❑ When partial ack is lost

❑ How fast does it recover losses?❑ One per RTT

Page 95: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

95

NewReno

Time

Sequence NoX

X

XX

Now what? – partial ackrecovery

Page 96: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

96

SACK

❑ Basic problem is that cumulative acks only provide little information❑ Alt: Selective Ack for just the packet received

❑ What if selective acks are lost? carry cumulative ack also!

❑ Implementation: Bitmask of packets received ❑ Selective acknowledgement (SACK)❑ Only provided as an optimization for retransmission❑ Fall back to cumulative acks to guarantee correctness

and window updates

Page 97: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

97

SACK

Time

Sequence NoX

X

XX

Now what? – sendretransmissions as soonas detected

Page 98: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

98

Asymmetric Behavior

❑ Three important characteristics of a path ❑ Loss❑ Delay❑ Bandwidth

❑ Forward and reverse paths are often independent even when they traverse the same set of routers❑ Many link types are unidirectional and are used in

pairs to create bi-directional link

A I BInternet

(no congestion, bandwidth > 6Mbps)

6Mbps

32kbps

Page 99: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

99

Asymetric Loss

❑ Loss❑ Information in acks is very redundant❑ Low levels of ack loss will not create problems❑ TCP relies on ack clocking – will burst out

packets when cumulative ack covers large amount of data

❑Burstiness will in turn cause queue overflow/loss

❑ Max burst size for TCP and/or simple rate pacing

❑Critical also during restart after idle

Page 100: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

100

Ack Compression

❑ What if acks encounter queuing delay?❑ Smooth ack clocking is destroyed

❑Basic assumption that acks are spaced due to packets traversing forward bottleneck is violated

❑ Sender receives a burst of acks at the same time and sends out corresponding burst of data

❑ Has been observed and does lead to slightly higher loss rate in subsequent window

Page 101: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

101

Bandwidth Asymmetry❑ Could congestion on the reverse path ever limit the

throughput on the forward link?❑ Let’s assume MSS = 1500bytes and delayed acks

❑ For every 3000 bytes of data need 40 bytes of acks❑ 75:1 ratio of bandwidth can be supported❑ Modem uplink (28.8Kbps) can support 2Mbps

downlink❑ Many cable and satellite links are worse than this❑ Solutions: Header compression, link-level support

A I BInternet

(no congestion, bandwidth > 6Mbps)

6Mbps

32kbps

Page 102: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

102

TCP Congestion Control Summary

❑ Sliding window limited by receiver window.❑ Dynamic windows: slow start (exponential rise),

congestion avoidance (additive rise), multiplicative decrease.❑ Ack clocking

❑ Adaptive timeout: need mean RTT & deviation❑ Timer backoff and Karn’s algo during retransmission

❑ Go-back-N or Selective retransmission❑ Cumulative and Selective acknowledgements❑ Timeout avoidance: Fast Retransmit

Page 103: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

103

Evolution of TCP

1975 1980 1985 1990

1982TCP & IP

RFC 793 & 791

1974TCP described by

Vint Cerf and Bob KahnIn IEEE Trans Comm

1983BSD Unix 4.2

supports TCP/IP

1984Nagel’s algorithmto reduce overhead

of small packets;predicts congestion

collapse

1987Karn’s algorithmto better estimate

round-trip time

1986Congestion

collapseobserved

1988Van Jacobson’s

algorithmscongestion avoidance and congestion control(most implemented in

4.3BSD Tahoe)

19904.3BSD Renofast retransmitdelayed ACK’s

1975Three-way handshake

Raymond TomlinsonIn SIGCOMM 75

Page 104: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

Shivkumar KalyanaramanRensselaer Polytechnic Institute

104

TCP Through the 1990s

1993 1994 1996

1994ECN

(Floyd)Explicit

CongestionNotification

1993TCP Vegas

(Brakmo et al)real congestion

avoidance

1994T/TCP

(Braden)Transaction

TCP

1996SACK TCP(Floyd et al)

Selective Acknowledgement

1996Hoe

Improving TCP startup

1996FACK TCP

(Mathis et al)extension to SACK

Page 105: Shivkumar Kalyanaraman Rensselaer Polytechnic Institute (ré …web.univ-pau.fr/~cpham/ENSEIGNEMENT/COMMUN/ip2002-tcp.pdf · 2002. 10. 8. · Rensselaer Polytechnic Institute Shivkumar

This document was created with Win2PDF available at http://www.daneprairie.com.The unregistered version of Win2PDF is for evaluation or non-commercial use only.