introduction to the transport layer
play

Introduction to the Transport Layer CSC 249 Feb 13, 2018 1 - PDF document

Introduction to the Transport Layer CSC 249 Feb 13, 2018 1 Transport Layer Overview q Tasks performed by the transport layer v Services provided to the application layer v Services expected from the network layer q Multiplexing and


  1. Introduction to the Transport Layer CSC 249 Feb 13, 2018 1 Transport Layer Overview q Tasks performed by the transport layer v Services provided to the application layer v Services expected from the network layer q Multiplexing and demultiplexing q Error checking – the checksum q Connection management q Reliability 2 1

  2. Transport Layer Tasks q The transport layer (TCP) provides reliability over an unreliable network q What can go wrong? v Bit errors • original data as well as ACKs v Lossy channel (with bit errors) • Stop-and-wait v. pipelining v Out-of-order packets v Noticeable delay 3 The Actual Transport Layer q Basic transport layer services: v Connection management v Reliable data transfer v Multiplexing/demultiplexing v Some error checking v Flow control & Congestion control q Services not available: v delay guarantees v bandwidth guarantees v security q Internet transport protocols: v UDP: Connectionless transport v TCP: Connection-oriented transport & Reliability 4 2

  3. Multiplexing/demultiplexing q Multiplexer v Selects input from one of many input lines (processes) and directs the information to a single output line v Many sockets to one network connection q Demultiplexer v Direct a single input to one of many possible processes that are running v Single network connection to many sockets (processes) 7 Multiplexing/demultiplexing multiplexing at sender: demultiplexing at receiver: v handle data from multiple sockets v use header info to deliver v add transport header (later used received segments to correct for demultiplexing) socket application P1 P2 application application socket P3 P4 transport process network transport transport link network network physical link link physical physical 8 3

  4. Connectionless demultiplexing DatagramSocket serverSocket = new DatagramSocket DatagramSocket (6428); mySocket2 = new DatagramSocket DatagramSocket (9157); mySocket1 = new DatagramSocket (5775); application application application P1 P3 P4 transport transport transport network network network link link link physical physical physical source port: 6428 source port: ? dest port: 9157 dest port: ? source port: ? source port: 9157 dest port: ? dest port: 6428 9 Connectionless demultiplexing q UDP socket is bound to the local host port # q recall: when creating datagram to send into a UDP socket, the socket must specify v destination IP address v destination port # IP datagrams with same q when host receives UDP dest. port #, but different segment: source IP addresses 1) check destination port # and/or source port numbers will be directed in segment header to same socket at 2) direct UDP segment to destination socket with that port # 10 4

  5. UDP: User Datagram Protocol q UDP is a “best effort” service. Segments may be: v lost v delivered out of order SO why is there a UDP? q Better control over what is sent and when q Simple: no connection state at sender, receiver q Fast(er): v no connection establishment (can add delay) v small segment header v no congestion control: UDP can blast away as fast as desired 11 Connection-oriented demux: example server: IP address B host: IP host: IP address A address C application application P4 application P5 P6 P3 P2 P3 transport transport transport network network network link link link physical physical physical source IP,port: C, 5775 source IP,port: B, 80 dest IP,port: B, 80 dest IP,port: A,9157 source IP,port: A,9157 source IP,port: C, 9157 dest IP, port: B, 80 dest IP,port: B, 80 Three segments all destined to IP address: B, dest port: 80 are demultiplexed to different sockets 12 5

  6. Connection-oriented demux q TCP socket identified q server host may support by 4-tuple: many simultaneous TCP sockets: v source IP address v source port number v each socket identified by its own 4-tuple v dest IP address q web servers have v dest port number different sockets for q demux: receiver uses each connecting client all four values to direct v non-persistent HTTP will segment to appropriate have different socket for socket each request 13 TCP Socket & Segment q TCP: Server host has simultaneous TCP sockets, one for each connection: v each socket identified by its own 4-tuple q TCP segment includes data, and source & destination port and IP addresses ( + length & checksum ) 14 6

  7. Error Checking: Checksum * Practice in HW * – straightforward calculation Goal: detect “errors” (e.g., flipped bits) in transmitted segment Sender: Receiver: q treat segment contents q compute checksum of as sequence of 16-bit received segment – including integers the sender’s checksum 16-bit word in the sum q checksum: 1’s complement q If receiver’s sum is all ‘1’s of the sum of (16-bit) then there were no errors segment contents (probably) q sender puts checksum value into UDP checksum v If a bit is 0 then the field packet has errors 16 Internet Checksum Example q Note v When adding numbers, a carryout from the most significant bit needs to be added to the result, for 1’s complement q Example: add two 16-bit integers 1 1 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0 1 1 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 wraparound 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 sum 1 1 0 1 1 1 0 1 1 1 0 1 1 1 1 0 0 checksum 1 0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 1 17 7

  8. Summary q Transport layer services v Desired services v Actual protocol services v What can go wrong? q Multiplexing and demultiplexing q Connection Management q Error checking – checksum v Transport layer provides end-to-end error checking v. link layer single link error checking 18 8

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