Chapter 2 Application...

42
1 2: Application Layer 1 Chapter 2 Application Layer Computer Networking: A Top Down Approach Featuring the Internet, 2 nd edition. Jim Kurose, Keith Ross Addison-Wesley, July 2002. A note on the use of these ppt slides: We’re making these slides freely available to all (faculty, students, readers). They’re in PowerPoint form so you can add, modify, and delete slides (including this one) and slide content to suit your needs. They obviously represent a lot of work on our part. In return for use, we only ask the following: If you use these slides (e.g., in a class) in substantially unaltered form, that you mention their source (after all, we’d like people to use our book!) If you post any slides in substantially unaltered form on a www site, that you note that they are adapted from (or perhaps identical to) our slides, and note our copyright of this material. Thanks and enjoy! JFK/KWR All material copyright 1996-2002 J.F Kurose and K.W. Ross, All Rights Reserved 2: Application Layer 2 Chapter 2: 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 programming network applications socket API

Transcript of Chapter 2 Application...

1

2: Application Layer 1

Chapter 2Application Layer

Computer Networking: ATop Down ApproachFeaturing the Internet,2nd edition.Jim Kurose, Keith RossAddison-Wesley, July2002.

A note on the use of these ppt slides:We’re making these slides freely available to all (faculty, students, readers).They’re in PowerPoint form so you can add, modify, and delete slides(including this one) and slide content to suit your needs. They obviouslyrepresent a lot of work on our part. In return for use, we only ask thefollowing: If you use these slides (e.g., in a class) in substantially unaltered form,that you mention their source (after all, we’d like people to use our book!) If you post any slides in substantially unaltered form on a www site, thatyou note that they are adapted from (or perhaps identical to) our slides, andnote our copyright of this material.

Thanks and enjoy! JFK/KWR

All material copyright 1996-2002J.F Kurose and K.W. Ross, All Rights Reserved

2: Application Layer 2

Chapter 2: Application LayerOur goals:❒ conceptual,

implementationaspects of networkapplication protocols❍ transport-layer

service models❍ client-server

paradigm❍ peer-to-peer paradigm

❒ learn about protocolsby examining popularapplication-levelprotocols❍ HTTP❍ FTP❍ SMTP / POP3 / IMAP❍ DNS

❒ programming networkapplications❍ socket API

2

2: Application Layer 3

Chapter 2 outline

❒ 2.1 Principles of applayer protocols

❒ 2.2 Web and HTTP❒ 2.3 FTP❒ 2.4 Electronic Mail

❍ SMTP, POP3, IMAP❒ 2.5 DNS

❒ 2.6 Socket programmingwith TCP

❒ 2.7 Socket programmingwith UDP

❒ 2.8 Building a Web server❒ 2.9 Content distribution

❍ Network Web caching❍ Content distribution

networks❍ P2P file sharing

2: Application Layer 4

Network applications: some jargon

Process: program runningwithin a host.

❒ within same host, twoprocesses communicateusing interprocesscommunication (definedby OS).

❒ processes running indifferent hostscommunicate with anapplication-layer protocol

user agent: interfaces withuser “above” andnetwork “below”.

❒ implements userinterface & application-level protocol❍ Web: browser❍ E-mail: mail reader❍ streaming audio/video:

media player

3

2: Application Layer 5

Applications and application-layer protocols

Application: communicating,distributed processes❍ e.g., e-mail, Web, P2P file

sharing, instant messaging❍ running in end systems

(hosts)❍ exchange messages to

implement applicationApplication-layer protocols

❍ one “piece” of an app❍ define messages exchanged

by apps and actions taken❍ use communication services

provided by lower layerprotocols (TCP, UDP)

applicationtransportnetworkdata linkphysical

applicationtransportnetworkdata linkphysical

applicationtransportnetworkdata linkphysical

2: Application Layer 6

App-layer protocol defines

❒ Types of messagesexchanged, e.g., request& response messages

❒ Syntax of message types:what fields in messages &how fields are delineated

❒ Semantics of the fields,i.e., meaning ofinformation in fields

❒ Rules for when and howprocesses send &respond to messages

Public-domain protocols:❒ defined in RFCs❒ allows for

interoperability❒ eg, HTTP, SMTPProprietary protocols:❒ eg, KaZaA

4

2: Application Layer 7

Client-server paradigmTypical network app has two

pieces: client and serverapplicationtransportnetworkdata linkphysical

applicationtransportnetworkdata linkphysical

Client:❒ initiates contact with server

(“speaks first”)❒ typically requests service from

server,❒ Web: client implemented in

browser; e-mail: in mail reader

request

reply

Server:❒ provides requested service to client❒ e.g., Web server sends requested Web

page, mail server delivers e-mail

2: Application Layer 8

Processes communicating across network

❒ process sends/receivesmessages to/from itssocket

❒ socket analogous to door❍ sending process shoves

message out door❍ sending process assumes

transport infrastructure onother side of door whichbrings message to socket atreceiving process

process

TCP withbuffers,variables

socket

host orserver

process

TCP withbuffers,variables

socket

host orserver

Internet

controlledby OS

controlled byapp developer

❒ API: (1) choice of transport protocol; (2) ability to fix a fewparameters

5

2: Application Layer 9

Addressing processes:❒ For a process to receive

messages, it must havean identifier

❒ Every host has a unique32-bit IP address (V4)(will be 128-bit in IP-V6)

❒ Q: does the IP addressof the host on which theprocess runs suffice foridentifying the process?

❒ Identifier includes boththe IP address and portnumbers associatedwith the process on thehost.

❒ Example port numbers:❍ HTTP server: 80❍ Mail server: 25❍ SSH 22❍ FTP 21

2: Application Layer 10

What transport service does an app need?

Data loss❒ some apps (e.g., audio) can

tolerate some loss❒ other apps (e.g., file

transfer, telnet) require100% reliable data transfer

Timing❒ some apps (e.g.,

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

Bandwidth❒ some apps (e.g.,

multimedia) requireminimum amount ofbandwidth to be“effective”

❒ other apps (“elasticapps”) make use ofwhatever bandwidththey get

6

2: Application Layer 11

Transport service requirements of common apps

Application

file transfere-mail

Web documentsreal-time audio/video

stored audio/videointeractive gamesinstant messaging

Data loss

no lossno lossno lossloss-tolerant

loss-tolerantloss-tolerantno loss

Bandwidth

elasticelasticelasticaudio: 5kbps-1Mbpsvideo:10kbps-5Mbpssame as abovefew kbps upelastic

Time Sensitive

nononoyes, 100’s msec

yes, few secsyes, 100’s msecyes and no

2: Application Layer 12

Internet apps: application, transport protocols

Application

e-mailremote terminal access

Web file transfer

streaming multimedia

Internet telephony

Applicationlayer protocol

SMTP [RFC 2821]Telnet [RFC 854]HTTP [RFC 2616]FTP [RFC 959]proprietary(e.g. RealNetworks)proprietary(e.g., Dialpad)

Underlyingtransport protocol

TCPTCPTCPTCPTCP or UDP

typically UDP

7

2: Application Layer 13

Web and HTTP

❒ Web page consists of objects❒ Object can be HTML file, JPEG image, Java applet,

audio file,…❒ Web page consists of base HTML-file which includes

several referenced objects❒ Each object is addressable by a URL❒ Example URL:

www.someschool.edu/someDept/pic.gif

host name path name

2: Application Layer 14

HTTP overview

HTTP: hypertext transferprotocol

❒ Web’s application layerprotocol

❒ client/server model❍ client: browser that

requests, receives,“displays” Web objects

❍ server: Web serversends objects inresponse to requests

❒ HTTP 1.0: RFC 1945❒ HTTP 1.1: RFC 2068

PC runningExplorer

Server running

Apache Webserver

Mac runningNavigator

HTTP request

HTTP request

HTTP response

HTTP response

8

2: Application Layer 15

HTTP overview (continued)

Uses TCP:❒ client initiates TCP connection

(creates socket) to server, port80

❒ server accepts TCPconnection 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 pastclient requests

Protocols that maintain “state”are complex!

❒ past history (state) must bemaintained

❒ if server/client crashes, theirviews of “state” may beinconsistent, must bereconciled

aside

2: Application Layer 16

HTTP connections

Nonpersistent HTTP❒ At most one object is

sent over a TCPconnection.

❒ HTTP/1.0 usesnonpersistent HTTP

Persistent HTTP❒ Multiple objects can be

sent over single TCPconnection betweenclient and server.

❒ HTTP/1.1 usespersistent connectionsin default mode

9

2: Application Layer 17

Nonpersistent HTTPSuppose user enters URL

www.someSchool.edu/someDepartment/home.index

1a. HTTP client initiates TCPconnection to HTTP server(process) atwww.someSchool.edu on port 80

2. HTTP client sends HTTPrequest message (containingURL) into TCP connectionsocket. Message indicates thatclient wants objectsomeDepartment/home.index

1b. HTTP server at hostwww.someSchool.edu waitingfor TCP connection at port 80.“accepts” connection, notifyingclient

3. HTTP server receives requestmessage, forms responsemessage containing requestedobject, and sends message intoits socket

time

(contains text, references to 10

jpeg images)

2: Application Layer 18

Non-persistent HTTP (cont.)

5. HTTP client receivesresponse messagecontaining html file, displayshtml. Parsing html file, finds10 referenced jpeg objects

6. Steps 1-5 repeated for each of10 jpeg objects

4. HTTP server closes TCPconnection.

time

10

2: Application Layer 19

Response time modelingDefinition of RTT: (Round Trip

Time) time to send a smallpacket to travel from client toserver and back.

Response time:❒ one RTT to initiate TCP

connection❒ one RTT for HTTP request and

first few bytes of HTTPresponse to return

❒ file transmission timetotal = 2RTT+transmit time

time to transmit file

initiate TCPconnection

RTT

requestfile

RTT

filereceived

time time

2: Application Layer 20

Persistent HTTP

Nonpersistent HTTP issues:❒ requires 2 RTTs per object❒ OS must work and allocate

host resources for each TCPconnection

❒ but browsers often openparallel TCP connections tofetch referenced objects

Persistent HTTP❒ server leaves connection

open after sending response❒ subsequent HTTP messages

between same client/serverare sent over connection

Persistent without pipelining:❒ client issues new request

only when previousresponse has been received

❒ one RTT for each referencedobject

Persistent with pipelining:❒ default in HTTP/1.1❒ client sends requests as

soon as it encounters areferenced object

❒ as little as one RTT for allthe referenced objects

11

2: Application Layer 21

HTTP request message

❒ two types of HTTP messages: request, response❒ HTTP request message:

❍ ASCII (human-readable format)

GET /somedir/page.html HTTP/1.1Host: www.someschool.edu User-agent: Mozilla/4.0Connection: close Accept-language:fr

(extra carriage return, line feed)

request line(GET, POST,

HEAD commands)

header lines

Carriage return, line feed

indicates end of message

2: Application Layer 22

Method types

HTTP/1.0❒ GET❒ POST❒ HEAD

❍ asks server to leaverequested object out ofresponse

HTTP/1.1❒ GET, POST, HEAD❒ PUT

❍ uploads file in entity bodyto path specified in URLfield

❒ DELETE❍ deletes file specified in

the URL field

12

2: Application Layer 23

HTTP response message

HTTP/1.1 200 OK Connection closeDate: 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)

header lines

data, e.g., requestedHTML file

2: Application Layer 24

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

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

13

2: Application Layer 25

Cookies: keeping “state”

Many major Web sites usecookies

Four components:1) cookie header line in the

HTTP response message2) cookie header line in

HTTP request message3) cookie file kept on user’s

host and managed byuser’s browser

4) back-end database atWeb site

Example:❍ Susan access Internet

always from same PC❍ She visits a specific e-

commerce site for firsttime

❍ When initial HTTPrequests arrives at site,site creates a unique IDand creates an entry inbackend database for ID

2: Application Layer 26

Cookies: keeping “state” (cont.)

client serverusual http request msgusual http response +Set-cookie: 1678

usual http request msgcookie: 1678

usual http response msg

usual http request msgcookie: 1678

usual http response msg

cookie-specificaction

cookie-spectific

action

servercreates ID

1678 for user

entry in backend

database

access

access

Cookie file

amazon: 1678ebay: 8734

Cookie file

ebay: 8734

Cookie file

amazon: 1678ebay: 8734

one week later:

14

2: Application Layer 27

Cookies (continued)What cookies can bring:❒ authorization❒ shopping carts❒ recommendations❒ user session state (Web

e-mail)

Cookies and privacy:❒ cookies permit sites to

learn a lot about you❒ you may supply name

and e-mail to sites❒ search engines use

redirection & cookies tolearn yet more

❒ advertising companiesobtain info across sites

aside

2: Application Layer 28

Conditional GET: client-side caching

❒ Goal: don’t send object if clienthas up-to-date cached version

❒ client: specify date of cachedcopy in HTTP requestIf-modified-since:

<date>

❒ server: response contains noobject if cached copy is up-to-date:HTTP/1.0 304 Not

Modified

client serverHTTP request msgIf-modified-since:

<date>

HTTP responseHTTP/1.0

304 Not Modified

object not

modified

HTTP request msgIf-modified-since:

<date>

HTTP responseHTTP/1.0 200 OK

<data>

object modified

15

2: Application Layer 29

FTP: the file transfer protocol

❒ transfer file to/from remote host❒ client/server model

❍ client: side that initiates transfer (either to/from remote)❍ server: remote host

❒ ftp: RFC 959❒ ftp server: port 21

file transfer FTPserver

FTPuser

interface

FTPclient

local filesystem

remote filesystem

userat host

2: Application Layer 30

FTP: separate control, data connections

❒ FTP client contacts FTP serverat port 21, specifying TCP astransport protocol

❒ Client obtains authorizationover control connection

❒ Client browses remotedirectory by sendingcommands over controlconnection.

❒ When server receives acommand for a file transfer, theserver opens a TCP dataconnection to client

❒ After transferring one file,server closes connection.

FTPclient

FTPserver

TCP control connectionport 21

TCP data connectionport 20

❒ Server opens a second TCPdata connection to transferanother file.

❒ Control connection: “out ofband”

❒ FTP server maintains “state”:current directory, earlierauthentication

16

2: Application Layer 31

FTP commands, responses

Sample commands:❒ sent as ASCII text over

control channel❒ USER username❒ PASS password

❒ LIST return list of file incurrent 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 dataconnection

❒ 452 Error writingfile

2: Application Layer 32

Chapter 2 outline

❒ 2.1 Principles of applayer protocols

❒ 2.2 Web and HTTP❒ 2.3 FTP❒ 2.4 Electronic Mail

❍ SMTP, POP3, IMAP❒ 2.5 DNS

❒ 2.6 Socket programmingwith TCP

❒ 2.7 Socket programmingwith UDP

❒ 2.8 Building a Web server❒ 2.9 Content distribution

❍ Network Web caching❍ Content distribution

networks❍ P2P file sharing

17

2: Application Layer 33

Electronic Mail

Three 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., Eudora, Outlook, elm,

Netscape Messenger❒ outgoing, incoming messages

stored on server

user mailbox

outgoing message queue

mailserver

useragent

useragent

useragent

mailserver

useragent

useragent

mailserver

useragent

SMTP

SMTP

SMTP

2: Application Layer 34

Electronic Mail: 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 emailmessages❍ client: sending mail server❍ “server”: receiving mail

server

mailserver

useragent

useragent

useragent

mailserver

useragent

useragent

mailserver

useragent

SMTP

SMTP

SMTP

18

2: Application Layer 35

Electronic Mail: SMTP [RFC 2821]

❒ uses TCP to reliably transfer email message fromclient to server, port 25

❒ direct transfer: sending server to receiving server❒ three phases of transfer

❍ handshaking (greeting)❍ transfer of messages❍ closure

❒ command/response interaction❍ commands: ASCII text❍ response: status code and phrase

❒ messages must be in 7-bit ASCII

2: Application Layer 36

Scenario: Alice sends message to Bob1) Alice uses UA to compose

message and “to”[email protected]

2) Alice’s UA sends message toher mail server; messageplaced in message queue

3) Client side of SMTP opensTCP connection with Bob’smail server

4) SMTP client sends Alice’smessage over the TCPconnection

5) Bob’s mail server places themessage in Bob’s mailbox

6) Bob invokes his user agentto read message

useragent

mailserver

mailserver user

agent

1

2 3 4 56

19

2: Application Layer 37

Mail message format

SMTP: protocol for exchangingemail msgs

RFC 822: standard for textmessage format:

❒ header lines, e.g.,❍ To:❍ From:❍ Subject:different from SMTP

commands!❒ body

❍ the “message”, ASCIIcharacters only

header

body

blankline

2: Application Layer 38

Message format: multimedia extensions

❒ MIME: multimedia mail extension, RFC 2045, 2056❒ additional lines in msg header declare MIME content type

From: [email protected]: [email protected]: Picture of yummy crepe.MIME-Version: 1.0Content-Transfer-Encoding: base64Content-Type: image/jpeg

base64 encoded data ....................................base64 encoded data

multimedia datatype, subtype,

parameter declaration

method usedto encode data

MIME version

encoded data

20

2: Application Layer 39

MIME typesContent-Type: type/subtype; parameters

Text❒ example subtypes: plain,

html

Image❒ example subtypes: jpeg,

gif

Audio❒ example subtypes: basic

(8-bit mu-law encoded),32kadpcm (32 kbps coding)

Video❒ example subtypes: mpeg,

quicktime

Application❒ other data that must be

processed by reader before“viewable”

❒ example subtypes: msword,octet-stream

2: Application Layer 40

Multipart TypeFrom: [email protected]: [email protected]: Picture of yummy crepe.MIME-Version: 1.0Content-Type: multipart/mixed; boundary=StartOfNextPart

--StartOfNextPartDear Bob, Please find a picture of a crepe.--StartOfNextPartContent-Transfer-Encoding: base64Content-Type: image/jpegbase64 encoded data ....................................base64 encoded data--StartOfNextPartDo you want the recipe?

21

2: Application Layer 41

Mail access protocols

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

❍ POP: Post Office Protocol [RFC 1939]• authorization (agent <-->server) and download

❍ IMAP: Internet Mail Access Protocol [RFC 1730]• more features (more complex)• manipulation of stored msgs on server

❍ HTTP: Hotmail , Yahoo! Mail, etc.

useragent

sender’s mail server

useragent

SMTP SMTP accessprotocol

receiver’s mail server

2: Application Layer 42

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

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

22

2: Application Layer 43

POP3 (more) and IMAPMore about POP3❒ Previous example uses

“download and delete”mode.

❒ Bob cannot re-read e-mail if he changes client

❒ “Download-and-keep”:copies of messages ondifferent clients

❒ POP3 is statelessacross sessions

IMAP❒ Keep all messages in

one place: the server❒ Allows user to organize

messages in folders❒ IMAP keeps user state

across sessions:❍ names of folders and

mappings betweenmessage IDs and foldername

2: Application Layer 44

Chapter 2 outline

❒ 2.1 Principles of applayer protocols

❒ 2.2 Web and HTTP❒ 2.3 FTP❒ 2.4 Electronic Mail

❍ SMTP, POP3, IMAP❒ 2.5 DNS

❒ 2.6 Socket programmingwith TCP

❒ 2.7 Socket programmingwith UDP

❒ 2.8 Building a Web server❒ 2.9 Content distribution

❍ Network Web caching❍ Content distribution

networks❍ P2P file sharing

23

2: Application Layer 45

DNS: Domain Name System

People: many identifiers:❍ SSN, name, passport #

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

for addressing datagrams❍ “name”, e.g.,

gaia.cs.umass.edu -used by humans

Q: map between IPaddresses and name ?

Domain Name System:❒ distributed database

implemented in hierarchy ofmany name servers

❒ application-layer protocol host,routers, name servers tocommunicate to resolve names(address/name translation)❍ note: core Internet function,

implemented as application-layer protocol

❍ complexity at network’s“edge”

2: Application Layer 46

DNS name servers

❒ no server has all name-to-IP address mappings

local name servers:❍ each ISP, company has

local (default) name server❍ host DNS query first goes to

local name serverauthoritative name server:

❍ for a host: stores that host’sIP address, name

❍ can perform name/addresstranslation for that host’sname

Why not centralize DNS?❒ single point of failure❒ traffic volume❒ distant centralized

database❒ maintenance

doesn’t scale!

24

2: Application Layer 47

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

b USC-ISI Marina del Rey, CAl ICANN Marina del Rey, CA

e NASA Mt View, CAf Internet Software C. Palo Alto,CA

i NORDUnet Stockholmk RIPE London

m WIDE Tokyo

a NSI Herndon, VAc PSInet Herndon, VAd U Maryland College Park, MDg DISA Vienna, VAh ARL Aberdeen, MDj NSI (TBD) Herndon, VA

13 root nameservers worldwide

2: Application Layer 48

Simple DNS example

host surf.eurecom.frwants IP address ofgaia.cs.umass.edu

1. contacts its local DNS server,dns.eurecom.fr

2. dns.eurecom.fr contactsroot name server, ifnecessary

3. root name server contactsauthoritative name server,dns.umass.edu, ifnecessary requesting host

surf.eurecom.frgaia.cs.umass.edu

root name server

authorititive name serverdns.umass.edu

local name serverdns.eurecom.fr

1

23

45

6

25

2: Application Layer 49

DNS example

Root name server:❒ may not know

authoritative nameserver

❒ may know intermediatename server: who tocontact to findauthoritative nameserver

requesting hostsurf.eurecom.fr

gaia.cs.umass.edu

root name server

local name serverdns.eurecom.fr

1

23

4 5

6

authoritative name serverdns.cs.umass.edu

intermediate name serverdns.umass.edu

7

8

2: Application Layer 50

DNS: iterated queries

recursive query:❒ puts burden of name

resolution on contactedname server

❒ heavy load?

iterated query:❒ contacted server

replies with name ofserver to contact

❒ “I don’t know thisname, but ask thisserver”

requesting hostsurf.eurecom.fr

gaia.cs.umass.edu

root name server

local name serverdns.eurecom.fr

1

23

4

5 6

authoritative name serverdns.cs.umass.edu

intermediate name serverdns.umass.edu

7

8

iterated query

26

2: Application Layer 51

DNS: caching and updating records

❒ once (any) name server learns mapping, it cachesmapping❍ cache entries timeout (disappear) after some

time❒ update/notify mechanisms under design by IETF

❍ RFC 2136❍ http://www.ietf.org/html.charters/dnsind-charter.html

2: Application Layer 52

DNS recordsDNS: distributed db storing resource records (RR)

❒ Type=NS❍ name is domain (e.g. foo.com)❍ value is IP address of

authoritative name server forthis domain

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 really servereast.backup2.ibm.com

❍ value is canonical name

❒ Type=MX❍ value is name of mailserver

associated with name

27

2: Application Layer 53

DNS protocol, messagesDNS protocol : query and reply messages, both with same

message format

msg header❒ identification: 16 bit # for

query, reply to query usessame #

❒ flags:❍ query or reply❍ recursion desired❍ recursion available❍ reply is authoritative

2: Application Layer 54

DNS protocol, messages

Name, type fields for a query

RRs in responseto query

records forauthoritative servers

additional “helpful”info that may be used

28

2: Application Layer 55

Chapter 2 outline

❒ 2.1 Principles of applayer protocols

❒ 2.2 Web and HTTP❒ 2.3 FTP❒ 2.4 Electronic Mail

❍ SMTP, POP3, IMAP❒ 2.5 DNS

❒ 2.6 Socket programmingwith TCP

❒ 2.7 Socket programmingwith UDP

❒ 2.8 Building a Web server❒ 2.9 Content distribution

❍ Network Web caching❍ Content distribution

networks❍ P2P file sharing

2: Application Layer 56

Chapter 2 outline

❒ 2.1 Principles of applayer protocols❍ clients and servers❍ app requirements

❒ 2.2 Web and HTTP❒ 2.3 FTP❒ 2.4 Electronic Mail

❍ SMTP, POP3, IMAP

❒ 2.5 DNS

❒ 2.6 Socket programmingwith TCP

❒ 2.7 Socket programmingwith UDP

❒ 2.8 Building a Web server❒ 2.9 Content distribution

❍ Network Web caching❍ Content distribution

networks❍ P2P file sharing

29

2: Application Layer 57

Chapter 2 outline

❒ 2.1 Principles of applayer protocols

❒ 2.2 Web and HTTP❒ 2.3 FTP❒ 2.4 Electronic Mail

❍ SMTP, POP3, IMAP❒ 2.5 DNS

❒ 2.6 Socket programmingwith TCP

❒ 2.7 Socket programmingwith UDP

❒ 2.8 Building a Web server❒ 2.9 Content distribution

❍ Network Web caching❍ Content distribution

networks❍ P2P file sharing

2: Application Layer 58

Web caches (proxy server)

❒ user sets browser: Webaccesses via cache

❒ browser sends all HTTPrequests to cache❍ object in cache: cache

returns object❍ else cache requests

object from origin server,then returns object toclient

Goal: satisfy client request without involving origin server

client

Proxyserver

client

HTTP request

HTTP request

HTTP response

HTTP response

HTTP request

HTTP response

origin server

origin server

30

2: Application Layer 59

More about Web caching

❒ Cache acts as both clientand server

❒ Cache can do up-to-datecheck using If-modified-since HTTP header❍ Issue: should cache take

risk and deliver cachedobject without checking?

❍ Heuristics are used.❒ 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” contentproviders to effectivelydeliver content

2: Application Layer 60

Caching example (1)Assumptions❒ average object size = 100,000

bits❒ avg. request rate from

institution’s browser to originserves = 15/sec

❒ delay from institutional router toany origin server and back torouter = 2 sec

Consequences❒ utilization on LAN = 15%❒ utilization on access link = 100%❒ total delay = Internet delay +

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

originservers

public Internet

institutionalnetwork 10 Mbps LAN

1.5 Mbps access link

institutionalcache

31

2: Application Layer 61

Caching example (2)Possible solution❒ increase bandwidth of access

link to, say, 10 MbpsConsequences❒ utilization on LAN = 15%❒ utilization on access link = 15%❒ Total delay = Internet delay +

access delay + LAN delay = 2 sec + msecs + msecs❒ often a costly upgrade

originservers

public Internet

institutionalnetwork 10 Mbps LAN

10 Mbps access link

institutionalcache

2: Application Layer 62

Caching example (3)

Install cache❒ suppose hit rate is .4Consequence❒ 40% requests will be satisfied

almost immediately❒ 60% requests satisfied by origin

server❒ utilization of access link reduced

to 60%, resulting in negligibledelays (say 10 msec)

❒ total delay = Internet delay +access delay + LAN delay

= .6*2 sec + .6*.01 secs +milliseconds < 1.3 secs

originservers

public Internet

institutionalnetwork 10 Mbps LAN

1.5 Mbps access link

institutionalcache

32

2: Application Layer 63

Content distribution networks (CDNs)

❒ The content providers are theCDN customers.

Content replication❒ CDN company installs

hundreds of CDN serversthroughout Internet❍ in lower-tier ISPs, close to

users❒ CDN replicates its customers’

content in CDN servers. Whenprovider updates content, CDNupdates servers

origin server in North America

CDN distribution node

CDN serverin S. America CDN server

in Europe

CDN serverin Asia

2: Application Layer 64

CDN example

origin server❒ www.foo.com❒ distributes HTML❒ Replaces: http://www.foo.com/sports.ruth.gif

withhttp://www.cdn.com/www.foo.com/sports/ruth.gif

HTTP request for www.foo.com/sports/sports.html

DNS query for www.cdn.com

HTTP request for www.cdn.com/www.foo.com/sports/ruth.gif

1

2

3

Origin server

CDNs authoritative DNS server

NearbyCDN server

CDN company❒ cdn.com❒ distributes gif files❒ uses its authoritative

DNS server to routeredirect requests

33

2: Application Layer 65

More about CDNsrouting requests❒ CDN creates a “map”,

indicating distancesfrom leaf ISPs and CDNnodes

❒ when query arrives atauthoritative DNSserver:❍ server determines ISP

from which queryoriginates

❍ uses “map” to determinebest CDN server

not just Web pages❒ streaming stored

audio/video❒ streaming real-time

audio/video❍ CDN nodes create

application-layer overlaynetwork

2: Application Layer 66

P2P file sharing

Example❒ Alice runs P2P client

application on hernotebook computer

❒ Intermittently connectsto Internet; gets new IPaddress for eachconnection

❒ Asks for “Hey Jude”❒ Application displays

other peers that havecopy of Hey Jude.

❒ Alice chooses one ofthe peers, Bob.

❒ File is copied fromBob’s PC to Alice’snotebook: HTTP

❒ While Alice downloads,other users uploadingfrom Alice.

❒ Alice’s peer is both aWeb client and atransient Web server.

All peers are servers =highly scalable!

34

2: Application Layer 67

P2P: centralized directory

original “Napster” design1) when peer connects, it

informs central server:❍ IP address❍ content

2) Alice queries for “HeyJude”

3) Alice requests file fromBob

centralizeddirectory server

peers

Alice

Bob

1

1

1

12

3

2: Application Layer 68

P2P: problems with centralized directory

❒ Single point of failure❒ Performance bottleneck❒ Copyright infringement

file transfer isdecentralized, butlocating content ishighly decentralized

35

2: Application Layer 69

P2P: decentralized directory

❒ Each peer is either agroup leader orassigned to a groupleader.

❒ Group leader tracks thecontent in all itschildren.

❒ Peer queries groupleader; group leadermay query other groupleaders.

ordinary peer

group-leader peer

neighoring relationships

in overlay network

2: Application Layer 70

More about decentralized directory

overlay network❒ peers are nodes❒ edges between peers

and their group leaders❒ edges between some

pairs of group leaders❒ virtual neighborsbootstrap node❒ connecting peer is either

assigned to a groupleader or designated asleader

advantages of approach❒ no centralized directory

server❍ location service distributed

over peers❍ more difficult to shut down

disadvantages of approach❒ bootstrap node needed❒ group leaders can get

overloaded

36

2: Application Layer 71

P2P: Query flooding

❒ Gnutella❒ no hierarchy❒ use bootstrap node to learn

about others❒ join message

❒ Send query to neighbors❒ Neighbors forward query❒ If queried peer has object,

it sends message back toquerying peer

join

2: Application Layer 72

P2P: more on query flooding

Pros❒ peers have similar

responsibilities: nogroup leaders

❒ highly decentralized❒ no peer maintains

directory info

Cons❒ excessive query traffic❒ query radius: may not

have content whenpresent

❒ bootstrap node❒ maintenance of overlay

network

37

2: Application Layer 73

Chapter 2: Summary

❒ application servicerequirements:❍ reliability, bandwidth, delay

❒ client-server paradigm❒ Internet transport service

model❍ connection-oriented,

reliable: TCP❍ unreliable, datagrams: UDP

Our study of network apps now complete!

❒ specific protocols:❍ HTTP❍ FTP❍ SMTP, POP, IMAP❍ DNS

❒ socket programming❒ content distribution

❍ caches, CDNs❍ P2P

2: Application Layer 74

Chapter 2: Summary

❒ typical request/replymessage exchange:❍ client requests info or

service❍ server responds with

data, status code❒ message formats:

❍ headers: fields giving infoabout data

❍ data: info beingcommunicated

Most importantly: learned about protocols

❒ control vs. data msgs❍ in-band, out-of-band

❒ centralized vs. decentralized❒ stateless vs. stateful❒ reliable vs. unreliable msg

transfer❒ “complexity at network edge”❒ security: authentication

38

2: Application Layer 75

HW 2

❒ Review questions❍ 8, 10, 12, 16

❒ Problems:❍ 1, 3, 6, 7, 13, 18, 19

Due, Feb-6-2007 Friday

2: Application Layer 76

HTTP request message: general format

39

2: Application Layer 77

Uploading form input

Post method:❒ Web page often

includes form input❒ Input is uploaded to

server in entity body

URL method:❒ Uses GET method❒ Input is uploaded in

URL field of requestline:

www.somesite.com/animalsearch?monkeys&banana

2: Application Layer 78

Trying out HTTP (client side) for yourself

1. Telnet to your favorite Web server:Opens TCP connection to port 80(default HTTP server port) at www.eurecom.fr.Anything typed in sent to port 80 at www.eurecom.fr

telnet www.eurecom.fr 80

2. Type in a GET HTTP request:GET /~ross/index.html HTTP/1.0 By typing this in (hit carriage

return twice), you sendthis minimal (but complete) GET request to HTTP server

3. Look at response message sent by HTTP server!

40

2: Application Layer 79

User-server interaction: authorizationAuthorization : control access to

server content❒ authorization credentials:

typically name, password❒ stateless: client must present

authorization in each request❍ authorization: header line in

each request❍ if no authorization: header,

server refuses access,sendsWWW authenticate:header line in response

client serverusual http request msg401: authorization req.WWW authenticate:

usual http request msg+ Authorization: <cred>

usual http response msg

usual http request msg+ Authorization: <cred>

usual http response msg time

2: Application Layer 80

Chapter 2 outline

❒ 2.1 Principles of applayer protocols

❒ 2.2 Web and HTTP❒ 2.3 FTP❒ 2.4 Electronic Mail

❍ SMTP, POP3, IMAP❒ 2.5 DNS

❒ 2.6 Socket programmingwith TCP

❒ 2.7 Socket programmingwith UDP

❒ 2.8 Building a Web server❒ 2.9 Content distribution

❍ Network Web caching❍ Content distribution

networks❍ P2P file sharing

41

2: Application Layer 81

Try SMTP interaction for yourself:

❒ telnet servername 25❒ see 220 reply from server❒ enter HELO, MAIL FROM, RCPT TO, DATA, QUIT

commandsabove lets you send email without using email client

(reader)

2: Application Layer 82

Sample SMTP interaction S: 220 hamburger.edu C: HELO crepes.fr S: 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

42

2: Application Layer 83

SMTP: final words

❒ SMTP uses persistentconnections

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

❒ SMTP server usesCRLF.CRLF to determineend of message

Comparison with HTTP:❒ HTTP: pull❒ SMTP: push

❒ both have ASCIIcommand/responseinteraction, status codes

❒ HTTP: each objectencapsulated in its ownresponse msg

❒ SMTP: multiple objects sentin multipart msg