• No results found

The Application Layer: DNS

N/A
N/A
Protected

Academic year: 2021

Share "The Application Layer: DNS"

Copied!
6
0
0

Loading.... (view fulltext now)

Full text

(1)

1

The Application Layer:

DNS

Smith College, CSC 249

Sept 19, 2014

Recap SMTP and email

q 

SMTP process (with handshaking) and

message format

q 

Role of user agent access protocols

q 

Port Numbers (can google this)

v SMTP – 25 v POP – 110 v IMAP – 143 v HTTP – 80 v (DNS – 53 over UDP) 2 4-3

Scenario: Alice sends message to Bob

user agent mail server mail server user agent 1 2 3 4 5 6 user mailbox outgoing message queue 4-4

Sample SMTP interaction

q 

In the following interaction with SMTP,

which lines are

v  Handshaking

v  Transfer of message

(2)

4-5

Sample SMTP interaction

fcapmaster:~ jcardell$ telnet smtp.smith.edu 25!

Trying 131.229.64.236...! Connected to baton.smith.edu.! Escape character is '^]'.!

220 baton.smith.edu ESMTP Sendmail 8.13.8/8.13.8; Tue, 16 Sep 2014 11:37:00 -0400!

!

C: HELO jbc.edu!

S: 250 baton.smith.edu Hello [131.229.102.128], pleased to meet you!

C: MAIL FROM: <[email protected]>!

S: 250 2.1.0 <[email protected]>... Sender ok!

C: RCPT TO: <[email protected]>!

S: 250 2.1.5 <[email protected]>... Recipient ok!

C: DATA!

S: 354 Enter mail, end with "." on a line by itself!

C: to: [email protected]!

C: from: [email protected]!

C: subject: How’s Business?!

C:!

C: Hello Hoppy!

C: Checking in to see how you’re doing.!

C: .!

S: 250 2.0.0 s8GFb0Q4007216 Message accepted for delivery!

C: QUIT!

S: 221 2.0.0 baton.smith.edu closing connection! 4-6

Mail message format

* Example of the actual message – NOT part of the SMTP handshaking process

q header lines, e.g.,

v To: v From: v Subject: differentfrom SMTP commands! q body

v the “message”, ASCII characters only

header

body

blank line

TODAY:

Domain Name System

q

The directory system for the

Internet

v Used by other application layer protocols

v … via socket programming

q

Maps a hostname to an IP address

v 

Host names use natural, human, language

•  URL such as www.google.com

v 

IP addresses are numerical locators used

by computers (more detail in chapter 4)

•  32 bits, 4 bytes, in “dot” notation

7 2-8

Root DNS Servers

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

DNS servers umass.edu DNS servers yahoo.com

DNS servers amazon.com DNS servers

pbs.org DNS servers

DNS: a distributed, hierarchical database

a host, or client, wants the IP address for www.google.com

1)  Client (local server) queries root server to find the .com DNS server

2)  Client queries .com DNS server to get google.com DNS server

3)  Client queries google.com DNS server to get the IP address for

www.google.com

(3)

2-9

DNS: root name servers

q contacted by local name server that can not resolve name

q root name server:

v contacts authoritative name server if name mapping not known

v gets mapping

v returns mapping to local name server

13 root name

servers” worldwide a. Verisign, Los Angeles CA

(5 other sites) b. USC-ISI Marina del Rey, CA l. ICANN Los Angeles, CA (41 other sites) e. NASA Mt View, CA f. 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, MD h. ARL Aberdeen, MD j. Verisign, Dulles VA (69 other sites )

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

2-10

TLD & Authoritative Servers

top-level domain (TLD) servers:

v responsible for com, org, net, edu, aero, jobs, museums,

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

v Network Solutions maintains servers for .com TLD

v Educause for .edu TLD

authoritative DNS servers:

v organization’s own DNS server(s), providing authoritative

hostname to IP mappings for organization’s named hosts

v can be maintained by organization or service provider

2-11

Local DNS name server

q 

does not strictly belong to hierarchy

q 

each ISP (residential ISP, company, university) has

one

v also called “default name server”

q 

when host makes DNS query, query is sent to its

local DNS server

v has local cache of recent name-to-address translation

pairs (but may be out of date)

v acts as proxy, forwards query into hierarchy

v When you connect to network, your host is given the

IP address of the local DNS server

2-12 Requesting Host www.smith.edu gaia.cs.umass.edu root DNS server local DNS server dns.smith.edu 1 2 3 4 5 6 authoritative DNS server dns.cs.umass.edu 7 8 TLD DNS server

DNS name

resolution example

q host at www.smith.edu

wants IP address for gaia.cs.umass.edu

iterated query:

v contacted server

replies with name of server to contact

v “I don’t know this

name, but ask this server”

(4)

Application Layer 2-13

DNS protocol, messages

q 

query

and

reply

messages, both with same

message

format

Message header

v identification: 16 bit #

for query, reply to query uses same # v 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

Application Layer 2-14 name, type fields

for a query RRs in response to query records for authoritative 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)

2 bytes 2 bytes

DNS protocol, messages

15

HTTP request message: general format

16

Mail message format

* Example of the actual message – NOT part of the SMTP handshaking process

q header lines, e.g.,

v To: v From: v Subject: differentfrom SMTP commands! q body

v the “message”, ASCII characters only

header

body

blank line

(5)

17

Domain Name System protocol,

messages

Name, type fields for a query RRs in response to query records for authoritative servers additional “helpful” info that may be used

18

DNS record format

DNS: distributed db storing resource records (RR)

q Type=NS

v name is domain (e.g.

smith.edu)

v value is hostname of

authoritative name server for this domain

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

q Type=A

v name is hostname

v value is IP address

q Type=CNAME

v name is alias name for some “canonical” (the real) name

www.ibm.com is really servereast.backup2.ibm.com

v value is canonical name

q Type=MX

v value is name of mailserver

associated with name

19

DNS records

DNS: distributed db storing resource records (RR)

RR format:

(name, value, type,

ttl

)

(hostname, IP address, A,

ttl

)

(domain,

hostname-DNS-author-server

,

NS,

ttl

)

(alias hostname, canonical name,

CNAME

, ttl) (alias hostname, mail server cname,

MX

, ttl)

2-20 Requesting Host www.smith.edu gaia.cs.umass.edu root DNS server local DNS server dns.smith.edu 1 2 3 4 5 6 authoritative DNS server dns.cs.umass.edu 7 8 TLD DNS server

DNS Records

Type A record for IP address of ‘hostname’

+ and Type A record for IP address of auth. server

+ Type NS record with hostname of auth. server for the requested domain name

(6)

21

* Act out the DNS process *

DNS protocol :query and reply messages, both with

same message format

Message header

q  identification: 16 bit #

for query, reply to query uses same #

q  flags

q  Number of records in the message itself

nslookup with Mac OS

23

Summary of Application Design Elements

q 

Message format

v ASCII? Binary?

v How handle multiple objects?

q 

Number of connections

v Persistent? Parallel connections?

q 

State information? Stateless?

q 

TCP or UDP (Transport Layer)?

q 

Push or pull protocol?

q 

How to find the server? client? peer?

q 

Handshaking in the protocol?

References

Related documents

Application Layer 2-18 requesting host cis.poly.edu gaia.cs.umass.edu root DNS server local DNS server dns.poly.edu 1 2 3 4 5 6 authoritative DNS server dns.cs.umass.edu 7 8

Budući da je za usklaĊenost procesa intermodalnog transportnog sustava na primjeru luke Rijeka bilo potrebno prouĉiti postojeće kapacitete same luke, ali i ţeljezniĉke pruge Zagreb

missible levels of monetary aggregation for the Euro area. We find that the Euro area mone­  tary  assets  in  M2  and  M3  are  weakly  separable  and 

Així, com a principals novetats, destaca la referència en el preàmbul a la llengua catalana com a “element vertebrador” de la identitat de la societat de les Illes

requesting host allspice.cs.swarthmore.edu gaia.cs.umass.edu root DNS server local DNS server dns.cs.swarthmore.edu 1 2 3 4 5 6 authoritative DNS server dns.cs.umass.edu

requesting host cis.poly.edu gaia.cs.umass.edu root DNS server local DNS server dns.poly.edu 1 2 3 4 5 6 authoritative DNS server dns.cs.umass.edu 7 8 TLD DNS server Recursive

Like to your meal online order your email address to the group to cook your guests are giving consent to satisfy your own food was completely served cold.. Helping us extra mayo, we

The estimated coefficients on each of the three strategic choices, product and process innovation and internationalisation, are positive and significant at the 1% level in