cs640 introduction to computer networks
play

CS640: Introduction to Computer Networks Aditya Akella Lecture 15 - PDF document

CS640: Introduction to Computer Networks Aditya Akella Lecture 15 TCP II - Connection Set-up and Congestion Control TCP Packet Reliable, In-order, Connection oriented, Byte stream abstraction Source port


  1. CS640: Introduction to Computer Networks Aditya Akella Lecture 15 TCP – II - Connection Set-up and Congestion Control TCP Packet Reliable, In-order, Connection oriented, Byte stream abstraction Source port Destination port Sequence number Flags from MSB Acknowledgement to LSB: URG ACK HdrLen Flags Advertised window 0 PSH Checksum Urgent pointer RST SYN Options (variable) FIN Data 2 Sequence and Acknowledge Numbers • Sequence number � byte num of first byte in payload • Acknowledgement number – TCP is full duplex – Sequence number of next byte expected in reverse direction 3 1

  2. Advertised Window • Used for “flow control” – Different from “congestion control”, which we will see in second half of today’s lecture • Both sender and receiver advertise window – Sender action: lastSent – lastACK <= Receiver’s advertised window 4 Establishing Connection: Three-Way handshake • Each side notifies other of starting sequence number it SYN: SeqC will use for sending – Why not simply chose 0? • Must avoid overlap with earlier incarnation ACK: SeqC+1 SYN: SeqS • Security issues • Each side acknowledges ACK: SeqS+1 other’s sequence number – SYN-ACK: Acknowledge sequence number + 1 • Can combine second SYN with Client Server first ACK 5 Tearing Down Connection • Either side can initiate tear down Client Server – Send FIN signal FIN, SeqA – “I’m not going to send any more data” ACK, SeqA+1 Data • Other side can continue ACK sending data – Half open connection FIN, SeqB – Must continue to acknowledge ACK, SeqB+1 • Acknowledging FIN – Acknowledge last sequence 6 number + 1 2

  3. TCP State Diagram: Connection Setup Client CLOSED active OPEN Server create TCB passive OPEN Snd SYN create TCB LISTEN rcv SYN snd SYN ACK SYN SYN RCVD SENT Rcv SYN, ACK rcv ACK of SYN Snd ACK CLOSE ESTAB Send FIN 7 State Diagram: Connection Tear-down Active Close ESTAB CLOSE rcv FIN Passive Close send FIN send ACK CLOSE FIN WAIT WAIT-1 rcv FIN CLOSE snd ACK rcv ACK snd FIN rcv FIN+ACK FIN CLOSING LAST-ACK snd ACK WAIT-2 rcv ACK of FIN rcv ACK of FIN TIME WAIT CLOSED rcv FIN Timeout=2msl snd ACK delete TCB 8 Congestion 10 Mbps 1.5 Mbps 100 Mbps • Different sources compete for resources inside network • Why is it a problem? – Sources are unaware of current state of resource – Sources are unaware of each other • Manifestations: – Lost packets (buffer overflow at routers) – Long delays (queuing in router buffers) – Can result in effective throughput less than bottleneck link (1.5Mbps for the above topology) � a.k.a. congestion collapse 9 3

  4. Causes & Costs of Congestion • Four senders – multihop Q: What happens as paths rate increases? • Timeout/retransmit 10 Causes & Costs of Congestion • When packet dropped, any upstream transmission capacity used for that packet was wasted! 11 Congestion “Collapse” • Definition: Unchecked Increase in network load results in decrease of useful work done – Fewer and fewer useful packets carried in network • Many possible causes – Spurious retransmissions of packets still in flight • Classical congestion collapse – Undelivered packets • Packets consume resources and are dropped elsewhere in network 12 4

  5. Congestion Control and Avoidance • A mechanism which: – Uses network resources efficiently – Preserves fair network resource allocation – Controls or Avoids congestion 13 Approaches Towards Congestion Control • Two broad approaches towards congestion control: • Network-assisted • End-end congestion congestion control: control: – Routers provide feedback – No explicit feedback to end systems from network • Single bit indicating – Congestion inferred from congestion (SNA, end-system observed DECbit, TCP/IP ECN, loss, delay ATM) – Approach taken by TCP • Explicit rate sender should send at – Problem: approximate, – Problem: makes routers possibly inaccurate complicated 14 End-End Congestion Control • So far: TCP sender limited by available buffer size at receiver – Receiver flow control – “receive window” or “advertised window” • To accommodate network constraints, sender maintains a “congestion window” – Reflects dynamic state of the network – Max outstanding packets ≤ min {congestion window, advertised window} • When receiver window is very large, congestion window determines how fast sender can send – Speed = CWND/RTT (roughly) 15 5

  6. TCP Congestion Control • Very simple mechanisms in network – FIFO scheduling with shared buffer pool – Feedback through packet drops • End-host TCP interprets drops as signs of congestion and slows down � reduces size of congestion window • But then, periodically probes – or increases congestion window – To check whether more bandwidth has become available 16 Congestion Control Objectives • Simple router behavior • Distributed-ness • Efficiency: Σ x i (t) close to system capacity • Fairness: equal (or propotional) allocation – Metric = ( Σ x i ) 2 /n( Σ x i 2 ) • Convergence: control system must be stable 17 Linear Control • Many different possibilities for reaction to congestion and probing – Examine simple linear controls • Window(t + 1) = a + b Window(t) • Different a i /b i for increase and a d /b d for decrease • Various reaction to signals possible – Increase/decrease additively – Increased/decrease multiplicatively – Which of the four combinations is optimal? • Consider two end hosts vying for network bandwidth 18 6

  7. Additive Increase/Decrease • Both X 1 and X 2 increase/ Fairness Line decrease by the T 1 same amount over User 2’s time Allocation T 0 x 2 – Additive increase improves fairness Efficiency Line and additive decrease reduces User 1’s Allocation x 1 fairness 19 Multiplicative Increase/Decrease • Both X 1 and X 2 increase by the Fairness Line same factor T 1 over time User 2’s – Extension from Allocation origin – x 2 T 0 constant fairness Efficiency Line User 1’s Allocation x 1 20 Convergence to Efficiency Fairness Line x H User 2’s Allocation x 2 Efficiency Line User 1’s Allocation x 1 21 7

  8. Distributed Convergence to Efficiency a>0 & b>1 a=0 b=1 Fairness Line a<0 & b>1 x H a>0 & b<1 User 2’s Allocation x 2 a<0 & b<1 Efficiency Line User 1’s Allocation x 1 22 Convergence to Fairness Fairness Line x H User 2’s Allocation x 2 x H’ Efficiency Line User 1’s Allocation x 1 23 Convergence to Efficiency & Fairness • Intersection of valid regions • For decrease: a=0 & b < 1 Fairness Line x H User 2’s Allocation x 2 x H’ Efficiency Line User 1’s Allocation x 1 24 8

  9. What is the Right Choice? • Constraints limit us to Fairness Line x 1 AIMD – Can have x 0 User 2’s multiplicative Allocation x 2 x 2 term in increase (MAIMD) Efficiency Line – AIMD moves User 1’s Allocation x 1 towards optimal point 25 Summary • Significance of fields in TCP packet – TCP is full duplex – Data can go in either direction • TCP connection set-up – three-way hand- shake – Also, teardown • Costs of congestion – Delay, loss, useless work… – Cure: congestion control • TCP uses AIMD congestion control 26 9

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend