Title: 3rd Edition: Chapter 2
1Chapter 2Application Layer
2Chapter 2 Application layer
- Principles of network applications
- Example applications
- HTTP
- FTP
- SMTP
- DNS
3Services provided by lower layers?
Host A
Host B
Application Protocol
Application Layer
Application Layer
Transport Protocol
Transport Layer
Transport Layer
Network Layer
Network Layer
Network Layer
Network Layer
Data Link Layer
Data Link Layer
Data Link Layer
Data Link Layer
Physical Layer
Physical Layer
Physical Layer
Physical Layer
Router
Router
4Services provided by lower layers?
Host A
Host B
Application Protocol
Application Layer
Application Layer
- Ability to communicate with a particular host
- Host is identified by a 32-bit IP address
- Eg. CS departments web server is at
www.cs.rutgers.edu (139.147.204.21) - Ability to communicate with a particular process
on a host - From the network communication point of view,
process on a host is identified by a port number - Eg. Web server runs on port 80
5IP address port number
Host
socket
socket
Internet
Socket is the door between network and the
application/process
6Application architectures
- Client-server
- Peer-to-peer (P2P)
- Hybrid of client-server and P2P
7Client-server architecture
client
- server
- always-on host
- permanent IP address
- server farms for scaling
- clients
- communicate with server
- may be intermittently connected
- may have dynamic IP addresses
- do not communicate directly with each other
server
client
8App-layer protocol defines
- Public-domain protocols
- defined in RFCs
- allows for interoperability
- e.g., HTTP, SMTP
- Proprietary protocols
- e.g., KaZaA
- Types of messages exchanged,
- e.g., request, response
- Message format
- Syntax what fields in messages how fields are
delineated - Semantics meaning of information in fields
- Rules for when and how processes send respond
to messages
9HTTP
10Web and HTTP
- First some jargon
- 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
11HTTP overview
- HTTP hypertext transfer 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 request
PC running Explorer
HTTP response
HTTP request
Server running Apache Web server
HTTP response
Mac running Navigator
12HTTP messages request message
- HTTP request message
- ASCII (human-readable format)
request line (GET, POST, HEAD commands)
GET /somedir/page.html HTTP/1.1 Host
www.someschool.edu User-agent
Mozilla/4.0 Connection close Accept-languagefr
(extra carriage return, line feed)
header lines
Carriage return, line feed indicates end of
message
13HTTP request message general format
14Method types
- HTTP/1.0
- GET
- POST
- HEAD
- asks server to leave requested object out of
response
- HTTP/1.1
- GET, POST, HEAD
- PUT
- uploads file in entity body to path specified in
URL field - DELETE
- deletes file specified in the URL field
15Post method Upload 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 request line
16Example Client POST request
- POST /cgi-bin/rats.cgi HTTP/1.0
- Referer http//nes8192/cgi-bin/rats.cgi
- Connection Keep-Alive
- User-Agent Mozilla/4.73 en (X11 U Linux
2.2.12-20 i686) - Host nes8192
- Accept image/gif, image/x-xbitmap, image/jpeg,
image/pjpeg, image/png, / - Accept-Encoding gzip
- Accept-Language en
- Accept-Charset iso-8859-1,,utf-8
- Content-type application/x-www-form-urlencoded
- Content-length 93
- Accountcs111fallFirstAliceLastWhiteSSN12345
6789Bday01011980StateCreateAccount
17HTTP message response message
status line (protocol status code status phrase)
HTTP/1.1 200 OK Connection close Date Thu, 06
Aug 1998 120015 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 ...
header lines
data, e.g., requested HTML file
18HTTP response status codes
In first line in server-gtclient response
message. A few sample 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 server
- 404 Not Found
- requested document not found on this server
- 505 HTTP Version Not Supported
19Trying out HTTP (client side) for yourself
- 1. Telnet to your favorite Web server
telnet www.cs.rutgers.edu 80
Opens connection to port 80 (default HTTP server
port). Anything typed in sent to port 80 at
www.cs.lafayette.edu
- 2. Type in a GET HTTP request
GET /xili/classes/cs305-spr-07 HTTP/1.1 Host
www.cs.rutgers.edu
By typing this in (hit carriage return twice),
you send this minimal (but complete) GET request
to HTTP server
3. Look at response message sent by HTTP server!
20Additional about HTTP
- Persistent vs. Nonpersistent HTTP connections
- Cookies (User-server state)
- Web caches
21HTTP connections
- Nonpersistent HTTP
- At most one object is sent over a TCP connection.
- HTTP/1.0 uses nonpersistent HTTP
- Persistent HTTP
- Multiple objects can be sent over single TCP
connection between client and server. - HTTP/1.1 uses persistent connections in default
mode
TCP is a kind of communication service provided
by the transport layer. It requires the
connection to be set up before data
communication.
22Nonpersistent HTTP
(contains text, references to 10 jpeg images)
- Suppose user enters URL www.someSchool.edu/someDep
artment/home.index
- 1a. HTTP client initiates TCP connection to HTTP
server
1b. HTTP server at host accepts connection,
notifying client
2. HTTP client sends HTTP request message
3. HTTP server receives request message, replies
with response message containing requested object
time
23Nonpersistent HTTP (cont.)
4. HTTP server closes TCP connection.
- 5. HTTP client receives response message
containing html file, displays html. Parsing
html file, finds 10 referenced jpeg objects
time
6. Steps 1-5 repeated for each of 10 jpeg objects
24HTTP Response time
- Definition of RTT time to send a small packet to
travel from client to server and back. - Response time
- one RTT to initiate TCP connection
- one RTT for HTTP request and first few bytes of
HTTP response to return - file transmission time
- total 2RTTtransmit time
25Persistent vs. Nonpersistent
- Nonpersistent HTTP issues
- requires 2 RTTs per object
- Browsers can open parallel TCP connections to
fetch referenced objects - Persistent HTTP
- server leaves connection open after sending
response - subsequent HTTP messages between same
client/server sent over open connection
26HTTP user-server state
- HTTP is stateless
- server maintains no information about past client
requests
- What state can bring
- authorization
- shopping carts
- recommendations
- user session state
27Cookies keeping state
server creates ID 1678 for user
entry in backend database
access
access
one week later
28Cookies (continued)
- Four components
- 1) cookie header line of HTTP response message
- 2) cookie header line in HTTP request message
- 3) cookie file kept on users host, managed by
users browser - 4) back-end database at Web site
29Cookies (continued)
aside
- Cookies and privacy
- cookies permit sites to learn a lot about you
- you may supply name and e-mail to sites
30Web caches (proxy server)
- Why?
- Reduce response time for client request.
- Reduce traffic on an institutions access link.
31Web caches (proxy server)
- browser sends all HTTP requests to cache
- Hit cache returns object
- Miss cache requests object from origin server,
then returns object to client
GET foo.html
32Web caches implementation
server
cache
- Conditional Get guarantees cache content is
up-to-date while still saves traffic and response
time whenever posssible
HTTP request msg If-modified-since ltdategt
object not modified
HTTP request msg If-modified-since ltdategt
object modified
HTTP response HTTP/1.0 200 OK ltdatagt
33FTP
34FTP the file transfer protocol
file transfer
user at host
remote file system
- 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
35FTP separate control, data connections
- out of band control
- Control connection
- Authorization
- Directory browse
- Commands
- Data connection
- Transfer files
- FTP server maintains state current directory,
earlier authentication
36FTP commands, responses
- Sample 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 Cant open data connection
- 452 Error writing file
37FTP
- Sends passwords in plain ASCII text
- Eavesdropper can recover passwords
- Fatal flaw, turned off at a lot of sites
- Replaced with scp, sftp instead
38SMTP
39Electronic Mail
- Three major components
- user agents
- a.k.a. mail reader
- e.g., Eudora, Outlook, elm, Netscape Messenger
40Electronic Mail mail servers
- Mail Servers
- mailbox contains incoming messages for user
- message queue of outgoing (to be sent) mail
messages - SMTP protocol
- Used to send messages
- Client sending user agent or sending mail server
- server receiving mail server
41Scenario Alice sends message to Bob
- 4) SMTP client sends Alices message over the TCP
connection - 5) Bobs mail server places the message in Bobs
mailbox - 6) Bob invokes his user agent to read message
- 1) Alice uses UA to compose message and to
bob_at_someschool.edu - 2) Alices UA sends message to her mail server
message placed in message queue - 3) Client side of SMTP opens TCP connection with
Bobs mail server
1
2
6
3
4
5
42Sample SMTP interaction
220 hill.com SMTP service ready HELO
town.com 250 hill.com Hello town.com, pleased
to meet you MAIL FROM ltjack_at_town.comgt 250
ltjack_at_town.comgt Sender ok RCPT TO
ltjill_at_hill.comgt 250 ltjill_at_hill.comgt Recipient
ok DATA 354 Enter mail, end with . on a line
by itself Jill, Im not feeling up to hiking
today. Will you please fetch me a pail of
water? . 250 message accepted QUIT 221
hill.com closing connection
43Mail access protocols
SMTP
access protocol
receivers mail server
- SMTP delivery/storage to receivers server
- Mail access protocol retrieval from server
- POP Post Office Protocol RFC 1939
- IMAP Internet Mail Access Protocol RFC 1730
- HTTP Hotmail , Yahoo! Mail, etc.
44Mail message (stored on server) format
- SMTP protocol for exchanging email msgs
- RFC 822 standard for text message format
- header lines, e.g.,
- To
- From
- Subject
- different from SMTP commands!
- body
- the message, ASCII characters only
header
blank line
body
45Message format multimedia extensions
- MIME multimedia mail extension, RFC 2045, 2056
- additional lines in msg header declare MIME
content type
MIME version
method used to encode data
multimedia data type, subtype, parameter
declaration
encoded data
46SMTP final words
- Comparison with HTTP
- HTTP pull
- SMTP push
- both have ASCII command/response interaction,
status codes - HTTP each object encapsulated in its own
response msg - SMTP multiple objects sent in multipart msg
47Try SMTP interaction for yourself
- telnet servername 25
- see 220 reply from server
- enter HELO, MAIL FROM, RCPT TO, DATA, QUIT
commands - above lets you send email without using email
client (reader)
48DNS
49 Domain Name System (DNS)
- Problem statement
- Average brain can easily remember 7 digits
- On average, IP addresses have 12 digits
- We need an easier way to remember IP addresses
- Solution
- Use alphanumeric names to refer to hosts
- Add a service (called DNS) to map between
alphanumeric host names and binary IP addresses - We call this Address Resolution
50DNS
- Centralize DNS?
- single point of failure
- traffic volume
- distant centralized database
- maintenance
- doesnt scale!
51Distributed, Hierarchical Database
Root DNS Servers
org DNS servers
edu DNS servers
com DNS servers
umass.edu DNS servers
rutgers.edu DNS servers
pbs.org DNS servers
yahoo.com DNS servers
amazon.com DNS servers
cs.rutgers.edu DNS server
RFC 1034
52Domain Name Management
- The domain name hierarchy is divided into zones
- Zone A separate portion of the DNS hierarchy
- No two zones should overlap
- Name servers
- In each zone, there is a primary name server and
one or more secondary name servers
53DNS Protocol
- When client wants to know an IP address for a
host name - Client sends a DNS query to the primary name
server in its zone - If name server contains the mapping, it returns
the IP address to the client - Otherwise, the name server forwards the request
to the root name server - The request works its way down the tree toward
the host until it reaches a name server with the
correct mapping
54Example
root DNS server
2
- Host at cis.poly.edu wants IP address for
gaia.cs.umass.edu
3
.edu DNS server
4
5
6
7
1
8
cs.umass.edu DNS server dns.cs.umass.edu
requesting host cis.poly.edu
gaia.cs.umass.edu
55Query type
root DNS server
2
- iterated query
- contacted server replies with name of server to
contact - I dont know this name, but ask this server
3
.edu DNS server
4
5
6
7
1
8
cs.umass.edu DNS server dns.cs.umass.edu
requesting host cis.poly.edu
gaia.cs.umass.edu
56Query type
- recursive query
- puts burden of name resolution on contacted name
server - heavy load?
57DNS caching and updating records
- once (any) name server learns mapping, it caches
mapping - cache entries timeout (disappear) after some time
- TLD servers typically cached in local name
servers - Thus root name servers not often visited
58DNS records
- DNS distributed db storing resource records (RR)
- TypeA
- name is hostname
- value is IP address
- TypeCNAME
- name is alias name for some canonical (the
real) name - www.ibm.com is really
- servereast.backup2.ibm.com
- value is canonical name
- TypeNS
- name is domain (e.g. foo.com)
- value is hostname of authoritative name server
for this domain
- TypeMX
- value is name of mailserver associated with name
59DNS
- DNS services
- Hostname to IP address translation
- Host aliasing
- Canonical and alias names
- Mail server aliasing
- Load distribution
- Replicated Web servers set of IP addresses for
one canonical name
60DNS protocol, messages
- DNS protocol query and reply messages, both
with same message format
- msg header
- identification 16 bit for query, reply to
query uses same - flags
- query or reply
- recursion desired
- recursion available
- reply is authoritative
61DNS protocol, messages
Name, type fields for a query
RRs in response to query
records for authoritative servers
additional helpful info that may be used
62Bootstrapping DNS
- How does a host contact the name server if all it
has is the name and no IP address? - IP address of at least 1 nameserver must be given
a priori - or with another protocol (DHCP, bootp)
-
- File /etc/resolv.conf in unix
- Start -gt settings-gt control panel-gt network
-gtTCP/IP -gt properties in windows
63Interface to DNS
- The dig and nslookup programs provide an
interface to DNS - nslookup
- gt www.cs.rutgers.edu
- Server 192.168.0.1
- Address 192.168.0.153
- www.cs.rutgers.edu canonical name
www3.srv.lcsr.rutgers.edu - Name www3.srv.lcsr.rutgers.edu
- Address 128.6.4.24
64Themes
- Request/response nature of these protocols
- How Messages are structured
- HTTP, SMTP, FTP - simple ASCII protocols
- Caching
- Name Lookup
- Division of concerns (e.g. zones)
- Hierarchy structure