part 2: application layerweb.cse.ohio-state.edu/~champion.17/3461/part2_app.pdfthe web: the http...

112
Part 2: Application Layer CSE 3461/5461 Reading: Chapter 2, Kurose and Ross 1

Upload: others

Post on 29-May-2020

6 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Part 2: Application Layer

CSE 3461/5461Reading: Chapter 2, Kurose and Ross

1

Page 2: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Chapter 2: Outline

• Principles of Network Applications• Web and HTTP• FTP• Email: SMTP, POP3, IMAP• DNS• P2P Applications• Video Streaming• Socket Programming with UDP and TCP

2

Page 3: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Application Layer

Our goals:• Conceptual,

implementation aspects of network application protocols– Transport-layer

service models– Client-server

paradigm– Peer-to-peer

paradigm

• Learn about protocols by examining popular application-level protocols– HTTP– FTP– SMTP / POP3 / IMAP– DNS

• Creating network applications– Socket API

3

Page 4: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Example Network Apps• E-mail• Web• Text messaging• Remote login• P2P file sharing• Multi-user network games• Streaming stored video

(YouTube, Hulu, Netflix)

• Voice over IP (e.g., Skype)• Real-time video

conferencing• Social networking• Search• …• …

4

Page 5: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

5

Creating a Network AppWrite programs that:• Run on (different) end systems• Communicate over network• e.g., Web server software

communicates with browser software

No need to write software for network-core devices

• Network-core devices do not run user applications

• Applications on end systems allows for rapid app development, propagation

applicationtransportnetworkdata linkphysical

applicationtransportnetworkdata linkphysical

applicationtransportnetworkdata linkphysical

Page 6: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Application Architectures

Possible structure of applications:• Client-server• Peer-to-peer (P2P)

6

Page 7: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Client-Server Architecture

Server:• Always-on host• Permanent IP address• Can be in data centers, for

scalability

Clients:• Communicate with server• May be intermittently

connected• May have dynamic IP addresses• Do not communicate directly

with each other

7

client/server

Page 8: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

P2P Architecture• No always-on server• Arbitrary end systems

directly communicate• Peers request service from

other peers, provide service in return to other peers– Self-scalability – new

peers bring new service capacity, as well as new service demands

• Peers are intermittently connected and change IP addresses– Complex management

8

peer-to-peer

Page 9: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Communicating Processes

Process: Program running within a host

• Within same host, two processes communicate using inter-process communication (defined by OS)

• Processes in different hosts communicate by exchanging messages

Client process: process that initiates communication

Server process: process that waits to be contacted

9

• Aside: applications with P2P architectures have client processes and server processes

Clients and Servers

Page 10: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Sockets• Process sends/receives messages to/from its socket• Socket analogous to door– Sending process shoves message out door– Sending process relies on transport infrastructure on other

side of door to deliver message to socket at receiving process

10

Internet

Controlledby OS

Controlled byapp developer

transport

application

physicallink

network

process

transport

application

physicallink

network

processSocket

Page 11: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Addressing Processes

• Identifier includes both IP address and port numbersassociated with process on host.

• Example port numbers:– HTTP server: 80– Mail server: 25

• To send HTTP message to gaia.cs.umass.edu web server:– IP address: 128.119.245.12– Port number: 80

• More shortly…

• To receive messages, process must have identifier

• Host device has unique 3 bit IP address

• Q: Does IP address of host on which process runs suffice for identifying the process?

11

Page 12: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

An App-Layer Protocol Defines:• Types of messages

exchanged,– e.g., Request, response

• Message syntax:– What fields in messages &

how fields are delineated• Message semantics

– Meaning of information in fields

• Rules for when and how processes send & respond to messages

Open protocols:• Defined in RFCs• Allows for interoperability• e.g., HTTP, SMTPProprietary protocols:• e.g., Skype

12

Page 13: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

What Transport Service does an App Need?Data integrity• Some apps (e.g., file transfer,

web transactions) require 100% reliable data transfer

• Other apps (e.g., audio) can tolerate some loss

Timing• Some apps (e.g., Internet

telephony, interactive games) require low delay to be “effective”

13

Throughput• Some apps (e.g., multimedia)

need minimum throughput to be “effective”

• Other apps (“elastic apps”) use whatever throughput they get

Security• Encryption, data integrity,

Page 14: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Transport Service Requirements: Common Apps

14

Application Data Loss Throughput Time-SensitiveFile transfer No loss Elastic NoEmail No loss Elastic NoWeb documents No loss Elastic NoReal-time audio/video Loss-tolerant Audio: 5 kbps–1

Mbps; Video: 10 kbps–5 Mbps

Yes, ~100 msec

Stored audio/video Loss-tolerant Same as above Yes, few secInteractive games Loss-tolerant At least few kbps Yes, ~100 msecText messages No loss Elastic Yes, no

Page 15: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Internet Apps: Application, Transport Protocols

15

Application Application Layer Protocol Underlying Transport ProtocolEmail SMTP [RFC 2821] TCPRemote terminal access Telnet [RFC 854] TCPWeb HTTP [RFC 2616] TCPFile transfer FTP [RFC 959] TCPStreaming multimedia HTTP (e.g., YouTube), RTP

[RFC 1889]TCP or UDP

Internet telephony SIP, RTP, proprietary (e.g., Skype)

TCP or UDP

Page 16: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Chapter 2: Outline

• Principles of Network Applications• Web and HTTP• FTP• Email: SMTP, POP3, IMAP• DNS• P2P Applications• Video Streaming• Socket Programming with UDP and TCP

16

Page 17: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

The Web• Web page:

– Consists of “objects”– Addressed by a URL

• Most Web pages consist of:– Base HTML page, and– Several referenced

objects.• URL has two

components: host name and path name

• User agent for Web is called a browser:– MS Internet Explorer– Firefox– Google Chrome– Safari

• Server for Web is called Web server:– Apache (public domain)– Nginx (BSD)– MS Internet Information

Server (proprietary)

17

Page 18: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

The Web: the HTTP ProtocolHTTP: HyperText Transfer

Protocol• Web’s application layer protocol• Client/server model

– Client: browser that requests, receives, “displays” Web objects

– Server: Web server sends objects in response to requests

• HTTP 1.0: RFC 1945• HTTP 1.1: RFC 2068• HTTP 2.0: RFC 7540• HTTP 3.0 in development…

18

PC runningExplorer

Server running

Webserver

Mac runningFirefox

HTTP request

HTTP request

HTTP response

HTTP response

Page 19: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

The HTTP Protocol (more)HTTP: TCP transport service:• Client initiates TCP connection

(creates socket) to server, port 80• Server accepts TCP connection

from client• HTTP messages (application-layer

protocol messages) exchanged between browser (HTTP client) and Web server (HTTP server)

• TCP connection closed

HTTP is “stateless”• Server maintains no

information about past client requests

19

Protocols that maintain “state”are complex!

r Past history (state) must be maintained

r If server/client crashes, their views of “state” may be inconsistent, must be reconciled

Aside

Page 20: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

HTTP Example (1)Suppose user enters URL http://www.someschool.edu/aDepartment/index.html

1a. HTTP client initiates TCP connection to http server (process) at www.someschool.edu. Port 80 is default for HTTP server.

20

2. HTTP client sends http request message (containing URL) into TCP connection socket

1b. HTTP server at host www.someschool.edu waiting for TCP connection at port 80. “Accepts” connection, notifies client

3. HTTP server receives request message, forms response message containing requested object (aDepartment/index.html), sends message into sockettime

(Contains text, references to 10 JPEG images)

Page 21: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

HTTP Example (2)5. HTTP client receives response

message containing HTML file, displays HTML. Parsing HTML file, finds 10 referenced JPEG objects

21

6. Steps 1–5 repeated for each of 10 JPEG objects

4. HTTP server closes TCP connection.

time

Page 22: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Non-Persistent and Persistent Connections

Non-persistent• HTTP/1.0• Server parses request, responds,

and closes TCP connection• 2 RTTs to fetch each object• Each object transfer suffers

from TCP’s slow start

Persistent• Default for HTTP/1.1• On same TCP connection:

server, parses request, responds, parses new request, …

• Client sends requests for all referenced objects as soon as it receives base HTML.

• Fewer RTTs and less slow start.

22

But most browsers useparallel TCP connections.

Page 23: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

HTTP Message Format: Request• Two types of HTTP messages: request, response• HTTP request message:

– ASCII (human-readable format)

23

GET /somedir/page.html HTTP/1.0 User-agent: Mozilla/4.0 Accept: text/html, image/gif,image/jpeg Accept-language:fr

(extra carriage return, line feed)

request line(GET, POST,

HEAD commands)

headerlines

Carriage return, line feed

indicates end of message

Page 24: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

HTTP Request Message: General Format

24

Page 25: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

HTTP Message Format: Response

25

HTTP/1.0 200 OK Date: Thu, 06 Aug 1998 12:00:15 GMT Server: Apache/1.3.0 (Unix) Last-Modified: Mon, 22 Jun 1998 …... Content-Length: 6821 Content-Type: text/html

data data data data data ...

status line(protocol

status codestatus phrase)

headerlines

data, e.g., requestedhtml file

Page 26: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

HTTP Response Status Codes

200 OK– request succeeded, requested object later in this message

301 Moved Permanently– requested object moved, new location specified later in this message

(Location:)400 Bad Request

– request message not understood by server404 Not Found

– requested document not found on this server505 HTTP Version Not Supported

26

In first line in server → client response message.A few sample codes:

Page 27: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Try HTTP (Client Side) for Yourself1. Telnet to your favorite Web server:

27

Opens TCP connection to port 80 (default HTTP server port) at www.cse.ohio-state.edu.Anything typed in sent to port 80 at www.cse.ohio-state.edu

telnet www.cse.ohio-state.edu/ 80

2. Type in a GET HTTP request:

GET /~champion/index.html HTTP/1.0 By typing this in (hit carriagereturn twice), you sendthis minimal (but complete) GET request to HTTP server

3. Look at response message sent by HTTP server!

Page 28: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

User-Server State: Cookies (1)Many websites use cookiesFour components:• Cookie header line of

HTTP responsemessage

• Cookie header line in next HTTP requestmessage

• Cookie file kept on user’s host, managed by user’s browser

• Back-end database at website

Example:• Susan always accesses the

Internet from PC• Visits specific e-commerce

site for first time• When initial HTTP requests

arrives at site, site creates: – Unique ID– Entry in backend

database for ID

28

Page 29: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

User-Server State: Cookies (2)

29

Client Server

Usual HTTP response msg

Usual HTTP response msg

cookie file

One week later:

Usual HTTP request msgcookie: 1678 Cookie-

specificaction

Access

ebay 8734 Usual HTTP request msg Amazon servercreates ID

1678 for user Createentry

Usual HTTP response set-cookie: 1678ebay 8734

amazon 1678

Usual HTTP request msgcookie: 1678 Cookie-

specificaction

Accessebay 8734amazon 1678

Backenddatabase

Page 30: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

User-Server State: Cookies (3)Use cases with cookies:• Authorization• Shopping carts• Recommendations• User session state (web

e-mail)

30

Cookies and privacy:• Cookies permit sites to

learn a lot about you• You may supply name and

e-mail to sites

Aside

How to maintain “state”:• Protocol endpoints: maintain state at

sender/receiver over multiple transactions• Cookies: HTTP messages carry state

Page 31: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Web Caching (1)

• User sets browser: web accesses via cache

• Browser sends all HTTP requests to cache– Object in cache: cache

returns object – Else cache requests

object from origin server, then returns object to client

31

Goal: Satisfy client request without involving origin server

Client

Web cache(proxy server)

Client

HTTP request

HTTP response

HTTP request HTTP request

Origin server

Origin server

HTTP response HTTP response

Page 32: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Web Caching (2)

• Cache acts as both client and server– Server for original

requesting client– Client to origin server

• Typically cache is installed by ISP (university, company, residential ISP)

Why web caching?• Reduce response time for

client request• Reduce traffic on an

institution’s access link• Internet dense with

caches: enables “poor” content providers to effectively deliver content (so too does P2P file sharing)

32

Page 33: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Web Caching Example (1)

33

originservers

PublicInternet

Institutionalnetwork 1 Gbps LAN

1.54 Mbps access link

Assumptions:• Avg object size: 100 Kbits• Avg request rate from browsers to

origin servers: 15/sec• Avg data rate to browsers: 1.50 Mbps• RTT from institutional router to any

origin server: 2 sec• Access link rate: 1.54 Mbps

Consequences:• LAN utilization: 0.15%• Access link utilization = 99%• Total delay = Internet delay +

access delay + LAN delay= 2 sec + minutes + microseconds

problem!

Page 34: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

34

Web Caching Example (2)

Assumptions:• Avg object size: 100 Kbits• Avg request rate from browsers to

origin servers: 15/sec• Avg data rate to browsers: 1.50 Mbps• RTT from institutional router to any

origin server: 2 sec• Access link rate: 1.54 Mbps

Consequences:• LAN utilization: 0.15%• Access link utilization = 99%• Total delay = Internet delay + access

delay + LAN delay= 2 sec + minutes + usecs

originservers

1.54 Mbps access link

154 Mbps 154 Mbps

msecs

Cost: increased access link speed (not cheap!)

9.9%

PublicInternet

Institutionalnetwork 1 Gbps LAN

Page 35: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Institutionalnetwork 1 Gbps LAN

35

Web Caching Example (3)

originservers

1.54 Mbps access link

Local web cache

Assumptions:• Avg object size: 100 Kbits• Avg request rate from browsers to

origin servers: 15/sec• Avg data rate to browsers: 1.50 Mbps• RTT from institutional router to any

origin server: 2 sec• Access link rate: 1.54 Mbps

Consequences:• LAN utilization: 0.15%• Access link utilization = 100%• Total delay = Internet delay + access

delay + LAN delay• = 2 sec + minutes + usecs

??

How to compute link utilization, delay?

Cost: Web cache (cheap!)

PublicInternet

Page 36: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

36

Web Caching Example (4)Calculating access link

utilization, delay with cache:• Suppose cache hit rate is 0.4

– 40% requests satisfied at cache, 60% requests satisfied at origin

originservers

1.54 Mbps access link

• Access link utilization: – 60% of requests use access link

• Data rate to browsers over access link = 0.6*1.50 Mbps = 0.9 Mbps – Utilization = 0.9/1.54 = 0.58

• Total delay– = 0.6 * (delay from origin servers)

+0.4 * (delay when satisfied at cache)– = 0.6 (2.01) + 0.4 (~msecs) – = ~ 1.2 secs– Less than with 154 Mbps link

(and cheaper too!)

PublicInternet

Institutionalnetwork 1 Gbps LAN

Local web cache

Page 37: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Conditional GET

• Goal: don’t send object if cache has up-to-date cached version– No object transmission delay– Lower link utilization

• Cache: specify date of cached copy in HTTP requestIf-modified-since:

<date>• Server: response contains no

object if cached copy is up-to-date: HTTP/1.0 304 not

modified

37

HTTP request msgIf-modified-since:

<date>

HTTP responseHTTP/1.0

304 Not Modified

Object not

modifiedbefore<date>

HTTP request msgIf-modified-since:

<date>

HTTP responseHTTP/1.0 200 OK

<data>

Object modified

after <date>

Client Server

Page 38: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

HTTP Versions 2, 3

• Max. webpage latency: 250–300 msec (lower is better!)• HTTP 2, 3 designed for security, performance– HTTP 2:

• Supports encryption as “first-class citizen”• More info: I. Gregorik, High Performance Browser Networking,

https://hpbn.co/http2/ (Chapter 12)

– HTTP 3:• Uses Google’s QUIC transport protocol (UDP) for lower latency• More info: http://www.chromium.org/quic; A. Langley et al., “The

QUIC Transport Protocol,” Proc. ACM SIGCOMM, 2017; https://www.zdnet.com/article/http-over-quic-to-be-renamed-http3/

38

Page 39: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Chapter 2: Outline

• Principles of Network Applications• Web and HTTP• FTP• Email: SMTP, POP3, IMAP• DNS• P2P Applications• Video Streaming• Socket Programming with UDP and TCP

39

Page 40: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

FTP: File Transfer Protocol

40

File transferFTP

server

FTPuser

interface

FTPclient

Local filesystem

Remote filesystem

User at host

• Transfer file to/from remote host• Client/server model– Client: side that initiates transfer (either to/from remote)– Server: remote host

• FTP server: port 21

Page 41: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

FTP: Separate Control, Data Connections

• FTP client contacts FTP server at port 21, using TCP

• Client authorized over control connection

• Client browses remote directory, sends commands over control connection

• When server receives file transfer command, serveropens 2nd TCP data connection (for file) to client

• After transferring one file, server closes data connection

41

FTPclient

FTPserver

TCP control connection,server port 21

TCP data connection,server port 20

• Server opens another TCP data connection to transfer another file

• Control connection: “out of band”

• FTP server maintains “state”: current directory, earlier authentication

Page 42: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

FTP Commands, ResponsesSample commands:• Sent as ASCII text over

control channel• USER username• PASS password

• LIST: Return list of file in current directory

• RETR filename: Retrieves (gets) file

• STOR filename: Stores (puts) file onto remote host

Sample return codes• Status code and phrase (as in

HTTP)• 331 username OK,

password required• 125 data connection

already open; transfer starting

• 425 can’t open data connection

• 452 error writing file

42

Page 43: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Chapter 2: Outline

• Principles of Network Applications• Web and HTTP• FTP• Email: SMTP, POP3, IMAP• DNS• P2P Applications• Video Streaming• Socket Programming with UDP and TCP

43

Page 44: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

EmailThree major components:• User agents • Mail servers • Simple mail transfer protocol:

SMTP

User agent:• a.k.a. “Mail reader”• Composing, editing, reading

mail messages• e.g., Outlook, Thunderbird,

iPhone mail client• Outgoing, incoming messages

stored on server

44

User mailbox

Outgoing message queue

MailServer

MailServer

MailServer

SMTP

SMTP

SMTP

UserAgent

UserAgent

UserAgent

UserAgent

UserAgent

UserAgent

Page 45: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Email: Mail Servers

Mail servers:• Mailbox contains incoming

messages for user• Message queue of

outgoing (to be sent) mail messages

• SMTP protocol between mail servers to send email messages– Client: sending mail

server– “Server”: receiving mail

server

45

MailServer

MailServer

MailServer

SMTP

SMTP

SMTP

UserAgent

UserAgent

UserAgent

UserAgent

UserAgent

UserAgent

Page 46: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Email: SMTP

• Uses TCP to reliably transfer email message from client to server, port 25

• Direct transfer: sending server to receiving server• Three phases of transfer

– Handshaking (greeting)– Transfer of messages– Closure

• Command/response interaction (like HTTP, FTP)– Commands: ASCII text– Response: status code and phrase

• Messages must be in 7-bit ASCII

46

Page 47: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Scenario: Alice Sends Message to Bob

1) Alice uses UA (user agent) to compose message “to” [email protected]

2) Alice’s UA sends message to her mail server; message placed in message queue

3) Client side of SMTP opens TCP connection with Bob’s mail server

4) SMTP client sends Alice’s message over the TCP connection

5) Bob’s mail server places the message in Bob’s mailbox

6) Bob invokes his UA to read message

47

UserAgent

MailServer

MailServer

1

2 3 45

6

Alice’s mail server Bob’s mail server

UserAgent

Page 48: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Sample SMTP interaction

48

S: 220 hamburger.eduC: HELO crepes.frS: 250 Hello crepes.fr, pleased to meet you C: MAIL FROM: <[email protected]> S: 250 [email protected]... Sender ok C: RCPT TO: <[email protected]> S: 250 [email protected] ... Recipient ok C: DATA S: 354 Enter mail, end with "." on a line by itself C: Do you like ketchup? C: How about pickles? C: . S: 250 Message accepted for delivery C: QUIT S: 221 hamburger.edu closing connection

Page 49: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

SMTP: Final Words

• SMTP uses persistent connections

• SMTP requires message (header & body) to be in 7-bit ASCII

Comparison with HTTP:• HTTP: pull• SMTP: push

• Both have ASCII command/response interaction, status codes

• HTTP: each object encapsulated in its own response message

• SMTP: multiple objects sent in multipart message

49

Page 50: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Mail Message Format

SMTP: protocol for exchanging email messages

• Header lines, e.g.,– To:– From:– Subject:

Different from SMTP MAIL FROM, RCPT TO: commands!

• Body: the “message” – ASCII characters only

50

Header

Body

blankline

Page 51: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Mail Access Protocols

• SMTP: delivery/storage to receiver’s server• Mail access protocol: retrieval from server

– POP: Post Office Protocol: authorization, download – IMAP: Internet Mail Access Protocol: more features, including

manipulation of stored messages on server– HTTP: Gmail, Hotmail, Yahoo! Mail, etc.

51

Sender’s mail server

SMTP SMTPMail access

protocol

Receiver’s mail server

(e.g., POP, IMAP)

UserAgent

UserAgent

Page 52: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

POP3 Protocol

Authorization phase• Client commands:

– User: declare username– Pass: password

• Server responses– +Ok– -Err

Transaction phase, client:• List: list message numbers• Retr: retrieve message by

number• Dele: delete• Quit

52

C: list S: 1 498 S: 2 912 S: . C: retr 1 S: <message 1 contents>S: . C: dele 1 C: retr 2 S: <message 1 contents>S: . C: dele 2 C: quit S: +OK POP3 server signing off

S: +OK POP3 server ready C: user bob S: +OK C: pass hungry S: +OK user successfully logged on

Page 53: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

POP3 and IMAPMore about POP3• Previous example uses

POP3 “download and delete” mode– Bob cannot re-read

e-mail if he changes client

• POP3 “download-and-keep”: copies of messages on different clients

• POP3 is stateless across sessions

IMAP• Keeps all messages in one

place: at server• Allows user to organize

messages in folders• Keeps user state across

sessions:– Names of folders and

mappings between message IDs and folder names

53

Page 54: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Chapter 2: Outline

• Principles of Network Applications• Web and HTTP• FTP• Email: SMTP, POP3, IMAP• DNS• P2P Applications• Video Streaming• Socket Programming with UDP and TCP

54

Page 55: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

DNS: Domain Name System

People: Many identifiers:– SSN, name, passport #

Internet hosts, routers:– IP address (32 bit) -

used for addressing datagrams

– “Name”, e.g., www.yahoo.com - used by humans

Q: How to map between IP address and name, and vice versa ?

Domain name system:• Distributed database

implemented in hierarchy of many name servers

• Application-layer protocol:hosts, name servers communicate to resolve names (address/name translation)– Note: core Internet function,

implemented as application-layer protocol

– Complexity at network’s “edge”

55

Page 56: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

DNS: Services and Structure DNS services• Hostname to IP address

translation• Host aliasing

– Canonical, alias names• Mail server aliasing• Load distribution– Replicated web

servers: many IP addresses correspond to one name

Why not centralize DNS?• Single point of failure• Traffic volume• Distant centralized database• Maintenance

56

Page 57: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

DNS: Distributed, Hierarchical Database

Client wants IP for www.amazon.com; 1st approximation:• Client queries root server to find .com DNS server• Client queries .com DNS server to get amazon.com DNS server• Client queries amazon.com DNS server to get IP address for

www.amazon.com

57

Root DNS Servers

.com DNS servers .org DNS servers .edu DNS servers

poly.eduDNS servers

umass.eduDNS serversyahoo.com

DNS serversamazon.comDNS servers

pbs.orgDNS servers

… …

Page 58: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

DNS: Root Name Servers

• Contacted by local name server that can not resolve name• Root name server:

– Contacts authoritative name server if name mapping not known– Gets mapping– Returns mapping to local name server

58

13 root name “servers” worldwide (replicated for load balancing)

a. Verisign, Los Angeles CA(5 other sites)

b. USC-ISI Marina del Rey, CAl. ICANN Los Angeles, CA

(41 other sites)

e. NASA Mt View, CAf. Internet Software C.Palo Alto, CA (and 48 other sites)

i. Netnod, Stockholm (37 other sites)

k. RIPE London (17 other sites)

m. WIDE Tokyo(5 other sites)

c. Cogent, Herndon, VA (5 other sites)d. U Maryland College Park, MDh. ARL Aberdeen, MDj. Verisign, Dulles VA (69 other sites )

g. US DoD Columbus, OH (5 other sites)

Page 59: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

TLD, Authoritative Servers

Top-level domain (TLD) servers:– Responsible for .com, .org, .net, .edu, .aero, .jobs,

.museums, and all top-level country domains, e.g.: uk, fr, ca, jp

– Verisign maintains servers for .com TLD– Educause for .edu TLD

Authoritative DNS servers:– Organization’s own DNS server(s), providing

authoritative hostname to IP mappings for organizations named hosts

– Can be maintained by organization or service provider

59

Page 60: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Local DNS Name Server

• Each ISP (residential ISP, company, university) has one– Also called “default name server”

• When host makes DNS query, query is sent to its local DNS server– Has local cache of recent name-to-address

translation pairs (but may be out of date!)– Acts as proxy, forwards query into hierarchy

60

Page 61: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

DNS Name Resolution Example (1)

• Host at cis.poly.eduwants IP address for gaia.cs.umass.edu

61

Requesting hostcis.poly.edu

gaia.cs.umass.edu

root DNS server

Local DNS serverdns.poly.edu

1

23

4

5

6

authoritative DNS serverdns.cs.umass.edu

78

TLD DNS server

Iterated query:• Contacted server replies with name of server to contact• “I don’t know this name, but ask this server”

Page 62: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

62

45

6

3

Recursive query:• Puts burden of name

resolution on contacted name server

• Heavy load at upper levels of hierarchy?

requesting hostcis.poly.edu

gaia.cs.umass.edu

root DNS server

local DNS serverdns.poly.edu

1

27

authoritative DNS serverdns.cs.umass.edu

8

DNS Name Resolution Example (2)

TLD DNS server

Page 63: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

DNS: Caching, Updating Records

• Once (any) name server learns mapping, it cachesmapping– Cache entries timeout (disappear) after some time (time

to live (TTL))– TLD servers typically cached in local name servers

• Thus root name servers not often visited

• Cached entries may be out-of-date (best effort name-to-address translation!)– If name host changes IP address, may not be known

internet-wide until all TTLs expire

63

Page 64: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

DNS Records

DNS: distributed DB storing resource records (RR)

type: NS• name is domain (e.g.,

Foo.Com)• value is hostname of

authoritative name server for this domain

64

RR format: (name, value, type, ttl)

type: A• name is hostname• value is IP address

type: CNAME• name is alias name for some “canonical” (the real) name

• www.ibm.com is reallyservereast.backup2.ibm.com

• value is canonical name

type: MX• value is name of mail server

associated with name

Page 65: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

DNS Protocol, Messages (1)• Query and reply messages, both with same message format

65

Msg header• Identification: 16 bit # for

query, reply to query uses same #

• Flags:– query or reply– recursion desired – recursion available– reply is authoritative

Identification Flags

# questions

Questions (variable # of questions)

# additional RRs# authority RRs

# answer RRs

Answers (variable # of RRs)

Authority (variable # of RRs)

Additional info (variable # of RRs)

2 bytes 2 bytes

Page 66: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

66

Name, type fieldsfor a query

RRs in responseto query

Records forauthoritative servers

Additional “helpful”info that may be used

Identification Flags

# questions

Questions (variable # of questions)

# additional RRs# authority RRs

# answer RRs

Answers (variable # of RRs)

Authority (variable # of RRs)

Additional info (variable # of RRs)

DNS Protocol, Messages (2)

2 bytes 2 bytes

Page 67: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Inserting Records into DNS

• Example: new startup “network utopia”• Register name networkutopia.com at DNS

registrar (e.g., Network Solutions)– Provide names, IP addresses of authoritative name

server (primary and secondary)– Registrar inserts two RRs into .com TLD server:

(networkutopia.com, dns1.Networkutopia.com, NS)(DNS1.Networkutopia.com, 212.212.212.1, A)

• Create authoritative server type A record for www.networkutopia.com; type MX record for networkutopia.com

67

Page 68: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Attacking DNSDDoS attacks• Bombard root servers

with traffic– Not successful to date– Traffic filtering– Local DNS servers cache

IPs of TLD servers, allowing root server bypass

• Bombard TLD servers– Potentially more dangerous

Redirect Attacks• Man-in-middle

– Intercept queries

• DNS poisoning– Send bogus replies to DNS

server, which cachesExploit DNS for DDoS• Send queries with spoofed

source address: target IP

68

Page 69: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Chapter 2: Outline

• Principles of Network Applications• Web and HTTP• FTP• Email: SMTP, POP3, IMAP• DNS• P2P Applications• Video Streaming• Socket Programming with UDP and TCP

69

Page 70: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Pure P2P Architecture• No always-on server• Arbitrary end systems directly

communicate• Peers are intermittently

connected and change IP addresses

Examples:– File distribution

(BitTorrent)– Streaming (KanKan)– VoIP (Skype)

70

Page 71: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

File Distribution: Client-Server vs. P2PQuestion: how long to distribute file (size F) from one server to N peers?

– Peer upload/download capacity is limited resource

71

us

uN

dN

server

Network (with abundantbandwidth)

file, size F

us : server upload capacity

ui : peer i upload capacity

di : peer i download capacityu2 d2

u1 d1

di

ui

Page 72: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

File Distribution Time: Client-Server

• Server transmission: mustsequentially send (upload) N file copies:– Time to send one copy: F/us

– Time to send N copies: NF/us

72

Increases linearly with N

Time to distribute F to N clients using

client-server approach

• Client: each client must download file copy– dmin = min client download rate– Max client download time: F/dmin

us

Networkdi

ui

F

Page 73: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

73

File Distribution Time: P2P

• Server transmission: mustupload at least one copy– Time to send one copy: F/us

Time to distribute F to N clients using

P2P approach

us

Networkdi

ui

F

• Client: each client must download file copy– Min client download time: F/dmin

• Clients: as aggregate must download NF bits– Max upload rate (limiting max download rate) is:

… but so does this, as each peer brings service capacityIncreases linearly in N …

Page 74: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

74

0

0.5

1

1.5

2

2.5

3

3.5

0 5 10 15 20 25 30 35

Min

imum

Dis

tribu

tion

Tim

e

N

P2PClient-Server

Client-Server vs. P2P: ExampleClient upload rate = u, F/u = 1 hour, us = 10u, dmin ≥ us

Page 75: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

P2P File Distribution: BitTorrent

75

Tracker: tracks peers participating in torrent

Torrent: group of peers exchanging chunks of a file

Alice arrives …

• File divided into 256 KB chunks• Peers in torrent send/receive file chunks

… obtains listof peers from tracker… and begins exchanging file chunks with peers in torrent

Page 76: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

• Peer joining torrent: – Has no chunks, but will

accumulate them over time from other peers

– Registers with tracker to get list of peers, connects to subset of peers (“neighbors”)

76

P2P File Distribution: BitTorrent

• While downloading, peer uploads chunks to other peers• Peer may change peers with whom it exchanges chunks• Churn: peers may come and go• Once peer has entire file, it may (selfishly) leave or

(altruistically) remain in torrent

Page 77: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

BitTorrent: Requesting, Sending File Chunks

Requesting chunks:• At any given time, different

peers have different subsets of file chunks

• Periodically, Alice asks each peer for list of chunks that they have

• Alice requests missing chunks from peers, rarest first

77

Sending chunks: tit-for-tat• Alice sends chunks to those four

peers currently sending her chunks at highest rate– Other peers are choked by Alice

(do not receive chunks from her)– Re-evaluate top 4 every 10 s

• Every 30 s: randomly select another peer, starts sending chunks– “Optimistically unchoke” this peer– Newly chosen peer may join top 4

Page 78: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

BitTorrent: Tit-for-Tat

78

(1) Alice “optimistically unchokes” Bob(2) Alice becomes one of Bob’s top-four providers; Bob reciprocates(3) Bob becomes one of Alice’s top-four providers

Higher upload rate: Find better trading partners, get file faster !

Page 79: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Distributed Hash Table (DHT)

• DHT: a distributed P2P database• Database has (key, value) pairs; examples: – Key: ss number; value: human name– Key: movie title; value: IP address

• Distribute the (key, value) pairs over the (millions of peers)

• A peer queries DHT with key– DHT returns values that match the key

• Peers can also insert (key, value) pairs79

Page 80: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Q: How to Assign Keys to Peers?• Central issue:– Assigning (key, value) pairs to peers.

• Basic idea: – Convert each key to an integer– Assign integer to each peer– Put (key, value) pair in the peer that’s closest to

the key

80

Page 81: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

DHT Identifiers

• Assign integer identifier to each peer in range

– Each identifier represented by n bits.

• Require each key to be an integer in same range• To get integer key, hash original key– e.g., key = hash(“Debian Linux”)– This is why it’s referred to as a distributed “hash”

table81

Page 82: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Assign Keys to Peers• Rule: assign key to the peer that has the

closest ID.• Convention in lecture: closest is the

immediate successor of the key.• E.G., N = 4; peers: 1,3,4,5,8,10,12,14; – Key = 13, then successor peer = 14– Key = 15, then successor peer = 1

82

Page 83: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

1

3

4

5

810

12

15

Circular DHT (1)

• Each peer only aware of immediate successor and predecessor.

• “Overlay network”83

Page 84: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

0001

0011

0100

0101

1000

1010

1100

1111

Who’s responsiblefor key 14 (1110)?I am

O(N) messageson average to resolvequery, when thereare N peers

1110

1110

11101110

1110

1110

Define closestas closestsuccessor

Circular DHT (2)

84

1

3

4

5

8

10

12

15

Page 85: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Circular DHT with shortcuts

• Each peer keeps track of IP addresses of predecessor, successor, short cuts.

• Reduced from 6 to 2 messages.• Possible to design shortcuts so O(log n) neighbors, O(log n)

messages in query85

1

3

4

5

810

12

15

Who’s responsible for key 14 (1110)?

Page 86: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Peer Churn

Example 1: Peer 5 abruptly leaves. What happens?Example 2: Peer 13 wants to join. What happens?

86

1

3

4

5

810

12

15

• Peers may come and go (churn)

• Each peer knows address of its two successors

• Each peer periodically pings its two successors to check aliveness

• If immediate successor leaves, choose next successor as new immediate successor

Page 87: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Chapter 2: Outline

• Principles of Network Applications• Web and HTTP• FTP• Email: SMTP, POP3, IMAP• DNS• P2P Applications• Video Streaming• Socket Programming with UDP and TCP

87

Page 88: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Video Streaming and CDNs: Context• Video traffic: major consumer of Internet

bandwidth– Netflix, YouTube: 37%, 16% of downstream

residential ISP traffic– ~1B YouTube users, ~75M Netflix users

• Challenge: scale – how to reach ~1B users?– Single mega-video server won’t work (why?)

• Challenge: heterogeneity– Different users have different capabilities (e.g.,

wired versus mobile; bandwidth-rich versus bandwidth-poor)

• Solution: distributed, application-level infrastructure

Page 89: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Multimedia: Video (1)• Video: sequence of images

displayed at constant rate– e.g., 24 images/sec

• Digital image: array of pixels– Each pixel represented by

bits• Coding: use redundancy

within and between images to decrease # bits used to encode image– Spatial (within image)– Temporal (from one image

to next)

……………………..

Spatial coding example: instead of sending N values of same color (all purple), send only two values: color value (purple) and number of repeated values (N)

……………….…….

Frame i

Frame i + 1

Temporal coding example:instead of sending complete frame at i + 1, send only differences from frame i

Page 90: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Multimedia: Video (2)• CBR (Constant Bit Rate):

video encoding rate fixed• VBR (Variable Bit Rate):

video encoding rate changes as amount of spatial, temporal coding changes

• Examples:– MPEG-1 (CD-ROM):

1.5 Mbps– MPEG-2 (DVD):

3–6 Mbps– MPEG-4 (often used in

Internet, < 1 Mbps)

……………………..

Spatial coding example: instead of sending N values of same color (all purple), send only two values: color value (purple) and number of repeated values (N)

……………….…….

Frame i

Frame i + 1

Temporal coding example:instead of sending complete frame at i + 1, send only differences from frame i

Page 91: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Streaming Stored Video

• Simple scenario:

Video server(stored video)

Client

Internet

Page 92: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Streaming Multimedia: DASH (1)• DASH: Dynamic, Adaptive Streaming over HTTP• Server:– Divides video file into multiple chunks– Each chunk stored, encoded at different rates – Manifest file: provides URLs for different chunks

• Client:– Periodically measures server-to-client bandwidth– Consulting manifest, requests one chunk at a time

• Chooses maximum coding rate sustainable given current bandwidth• Can choose different coding rates at different points in time

(depending on available bandwidth at time)

Page 93: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Streaming Multimedia: DASH (2)

• DASH: Dynamic, Adaptive Streaming over HTTP

• “Intelligence” at client: client determines–When to request chunk (so that buffer starvation,

or overflow does not occur)–What encoding rate to request (higher quality

when more bandwidth available) –Where to request chunk (can request from URL

server that is “close” to client or has high available bandwidth)

Page 94: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Content Distribution Networks (1)

• Challenge: how to stream content (selected from millions of videos) to hundreds of thousands of simultaneous users?

• Option 1: single, large “mega-server”–Single point of failure–Point of network congestion–Long path to distant clients–Multiple copies of video sent over outgoing link

… Quite simply: this solution doesn’t scale

Page 95: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Content Distribution Networks (2)

• Challenge: how to stream content (selected from millions of videos) to hundreds of thousands of simultaneous users?

• Option 2: store/serve multiple copies of videos at multiple geographically distributed sites (CDN)– Enter deep: push CDN servers deep into many access

networks • Close to users• Used by Akamai: 1,700 locations

– Bring home: smaller number (tens) of larger clusters in POPs near (but not within) access networks• Used by Limelight

Page 96: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

• CDN: stores copies of content at CDN nodes – e.g. Netflix stores copies of Stranger Things

• Subscriber requests content from CDN– Directed to nearby copy, retrieves content– May choose different copy if network path congested

Content Distribution Networks (3)

……

Where’s S.T.?Manifest file

Page 97: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Content Distribution Networks (3)

……

…Internet host-host communication as a service

• OTT challenges: coping with a congested Internet– From which CDN node to retrieve content?– Viewer behavior in presence of congestion?– What content to place in which CDN node?

“Over the top” (OTT)

Page 98: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

CDN Content Access: A Closer LookBob (client) requests video http://netcinema.com/6Y7B23V• Video stored in CDN at http://KingCDN.com/NetC6y&B23V

netcinema.com

KingCDN.com

1

1. Bob gets URL for video http://netcinema.com/6Y7B23Vfrom netcinema.com web page

2

2. Resolve http://netcinema.com/6Y7B23Vvia Bob’s local DNS

NetCinema’sauthoratative DNS

3

3. Netcinema’s DNS returns URL http://KingCDN.com/NetC6y&B23V 4

4&5. Resolve http://KingCDN.com/NetC6y&B23via KingCDN’s authoritative DNS, which returns IP address of KingCDNserver with video

56. Request video fromKingCDN server,streamed via HTTP

KingCDN’sauthoritative DNS

Bob’s local DNSserver

Page 99: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Case Study: Netflix

1

1. Bob manages Netflix account

Netflix registration,accounting servers

Amazon cloud

CDNserver

22. Bob browsesNetflix video 3

3. Manifest filereturned for requested video

4. DASH streaming

Upload copies of multiple versions of video to CDN servers

CDNserver

CDNserver

Page 100: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Chapter 2: Outline

• Principles of Network Applications• Web and HTTP• FTP• Email: SMTP, POP3, IMAP• DNS• P2P Applications• Video Streaming• Socket Programming with UDP and TCP

100

Page 101: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Socket Programming

Goal: learn how to build client/server applications that communicate using sockets

Socket: door between application process and end-end-transport protocol

101

Internet

Controlledby OS

Controlled byapp developer

transport

application

physicallink

network

process

transport

application

physicallink

network

processSocket

Page 102: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Socket Programming

Two socket types for two transport services:• UDP: unreliable datagram• TCP: reliable, byte stream-oriented

102

Application Example:1. Client reads a line of characters (data) from its

keyboard and sends the data to the server.2. The server receives the data and converts

characters to uppercase.3. The server sends the modified data to the client.4. The client receives the modified data and displays

the line on its screen.

Page 103: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Socket Programming with UDP

UDP: no “connection” between client & server• No handshaking before sending data• Sender explicitly attaches IP destination address and

port # to each packet• Rcvr extracts sender IP address and port# from

received packet

UDP: transmitted data may be lost or received out-of-order

Application viewpoint:• UDP provides unreliable transfer of groups of bytes

(“datagrams”) between client and server103

Page 104: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Client/Server Socket Interaction: UDP

104

Closeclient_sock

Read datagram fromclient_sock via recvfrom(. . .)

Create socket:client_sock =socket(AF_INET, SOCK_DGRAM)

Create datagram with server IP andport x; send datagram viaclient_sock.sendto(. . .)

Create socket, bind to port x:serv_sock = socket(AF_INET, SOCK_DGRAM)serv_sock.bind((’’, x))

Read datagram fromserv_sock via recvfrom(. . .)

Write reply toserv_sockspecifying client address,port # (via sendto(. . .))

Server (running on serverIP) Client

Page 105: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

105

Example App: UDP Client

from socket import *

serv_name = ‘hostname’

serv_port = 12000

client_sock = socket(AF_INET, SOCK_DGRAM)

message = raw_input(’Input lowercase sentence:’)

msg_bytes = message.encode(encoding=‘ascii’)

client_sock.sendto(msg_bytes,(serv_name,serv_port))

mod_msg_bytes, serv_addr = client_sock.recvfrom(1000)

mod_msg = mod_msg_bytes.decode(encoding=‘ascii’)

print(mod_msg)

client_sock.close()

Python UDPClientInclude Python’s socket library

Create UDP socket for server

Get user keyboard input

Attach server name, port to message; send into socket

Print out received string, close socket

Read reply characters fromsocket into string

Page 106: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

106

Example App: UDP Server

from socket import *

server_port = 12000

server_sock = socket(AF_INET, SOCK_DGRAM)

server_sock.bind(('', server_port))

print(‘The server is ready to receive’)

while 1:

msg_bytes, client_addr = server_sock.recvfrom(1000)msg = msg_bytes.decode(encoding=‘ascii’)

mod_msg = msg.upper()mod_msg_bytes = mod_msg.encode(encoding=‘ascii’)server_sock.sendto(mod_msg_bytes, client_addr)

Python UDPServer

Create UDP socketBind socket to local port number 12000

Loop forever

Read from UDP socket into message, getting client’s address (client IP and port)

Send uppercase string back to this client

Page 107: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Socket Programming with TCP

Client must contact server• Server process must first be

running• Server must have created

socket (door) that welcomes client’s contact

Client contacts server by:• Creating TCP socket,

specifying IP address, port number of server process

• When client creates socket:client TCP establishes connection to server TCP

• When contacted by client, server TCP creates new socket for server process to communicate with that particular client– Allows server to talk with

multiple clients– Source port numbers used

to distinguish clients (more in chapter 3)

107

TCP provides reliable, in-orderbyte-stream transfer (“pipe”) between client and server

Application Viewpoint:

Page 108: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Client/Server Socket Interaction: TCP

108

Wait for incomingconnection requestconn_sock, addr =serv_sock.accept()

Create socket bound to port x for incoming request:serv_sock = socket(AF_INET, SOCK_STREAM)serv_sock.bind((‘’, x))serv_sock.listen(1)

Create socket, connect to hostid, port x

client_sock = socket(AF_INET, SOCK_STREAM)client_sock.connect((hostid, x))

Server (running on hostid) Client

Send request using client_sock(via send(. . .))Read request from conn_sock

(via recv(. . .))

Write reply to conn_sock(via send(. . .))

TCP connection setup

Close conn_sock

Read reply from client_sock(via recv(. . .))

Close client_sock

Page 109: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

109

Example App: TCP Client

from socket import *

serv_name = ‘servername’

serv_port = 12000

client_sock = socket(AF_INET, SOCK_STREAM)

client_sock.connect((serverName,serverPort))

msg = raw_input(‘Input lowercase sentence:’)

msg_bytes = msg.encode(encoding=‘ascii’)

client_sock.send(msg_bytes)

mod_msg_bytes = client_sock.recv(1024)

mod_msg = mod_msg_bytes.decode(encoding=‘ascii’)

print(‘From Server:’ + mod_msg)

clientSocket.close()

Python TCPClient

Create TCP socket for server, remote port 12000

No need to attach server name, port

Page 110: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

110

Example App: TCP Server

from socket import *serv_port = 12000serv_sock = socket(AF_INET,SOCK_STREAM)serv_sock.bind((‘’,serv_port))serv_sock.listen(1)print ‘The server is ready to receive’while 1:

conn_sock, addr = serverSocket.accept()msg_bytes = conn_sock.recv(1000)msg = msg_bytes.decode(encoding=‘ascii’)msg_mod = msg.upper()msg_mod_bytes = msg_mod.encode(encoding=‘ascii’)conn_sock.send(msg_mod_bytes)conn_sock.close()

Python TCPServer

Create, bind TCP welcoming socket

Server listens for incoming TCP requests

Loop foreverServer waits on accept()for incoming requests, new socket created on return

Read bytes from socket (but not address as in UDP)

Close connection to this client (but not welcoming socket)

Page 111: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

Part 2: Summary

• Application architectures:– Client-server– P2P

• App service requirements:– Reliability, bandwidth,

delay• Internet transport service

model– Connection-oriented,

reliable: TCP– Unreliable, datagrams:

UDP

Our study of network apps now complete!

111

• Specific protocols:– HTTP– FTP– SMTP, POP, IMAP– DNS– P2P: BitTorrent, DHT

• Socket programming: TCP, UDP sockets

Page 112: Part 2: Application Layerweb.cse.ohio-state.edu/~champion.17/3461/Part2_App.pdfThe Web: the HTTP Protocol HTTP: HyperTextTransfer Protocol • Web’s application layer protocol •

• Typical request/reply message exchange:– Client requests info or

service– Server responds with

data, status code• Message formats:– Headers: fields giving

info about data– Data: info being

communicated112

Important themes:• Control vs. data messages– In-band, out-of-band

• Centralized vs. decentralized • Stateless vs. stateful• Reliable vs. unreliable

message transfer • Complexity at network edge

Part 2: SummaryMost importantly: learned about protocols!