4
1 1 CIS 505: Software Systems Lecture Note on Naming: Part 2 Insup Lee Department of Computer and Information Science University of Pennsylvania Spring 2007 CIS 505, Spring 2007 Naming 2 Domain Name Service (DNS) A planetary name service that translates Internet domain names, which are the basis for the Web’s global URL space. o maps <node name> to <IP address> o names for autonomous naming domains, e.g., cis.upenn.edu o names for specific nodes, e.g., eniac.cis.upenn.edu o names for service aliases (e.g., www, mail servers) o (mostly) independent of location, routing, etc. Use of hierarchy for scalability o decentralized administration of the name space o hierarchical authority and trust CIS 505, Spring 2007 Naming 3 Top-Level Domains (TLDs) Mostly controlled by Network Solutions, Inc. today o .com: commercial o .edu: educational institution o .gov: US government o .mil: US military o .net: networks and ISPs (now also a number of other things) o .org: other organizations o 244, 2-letter country suffixes, e.g., .us, .uk, .cz, .tv, … o and a bunch of new suffixes that are not very common, e.g., .biz, .name, .pro, … Finding the Root o 13 “root servers” store entries for all top level domains (TLDs) o DNS servers have a hard-coded mapping to root servers so they can “get started” [Z. Ives] CIS 505, Spring 2007 Naming 4 Domain Name Hierarchy .edu drexel cs upenn cis wharton ee www (C1K) central cs washington com gov org net firm shop arts web us top-level domains (generic TLDs) fr country-code TLDs DNS name space is hierarchical: - fully qualified names are “little endian” - scalability - decentralized administration - domains are naming contexts replaces flat hosts.txt namespace

Domain Name Service (DNS) Top-Level Domains ... - CIS @ …lee/07cis505/Lec/lec-ch5-naming-dns-v2.pdf · Domain Name Service (DNS) ... Root servers list servers for every TLD. DNS

Embed Size (px)

Citation preview

1

1

CIS 505: Software Systems

Lecture Note on Naming: Part 2

Insup Lee

Department of Computer and Information Science

University of Pennsylvania

Spring 2007

CIS 505, Spring 2007 Naming 2

Domain Name Service (DNS)

A planetary name service that translates Internetdomain names, which are the basis for theWeb’s global URL space.o maps <node name> to <IP address>

o names for autonomous naming domains, e.g.,cis.upenn.edu

o names for specific nodes, e.g., eniac.cis.upenn.edu

o names for service aliases (e.g., www, mail servers)

o (mostly) independent of location, routing, etc.

Use of hierarchy for scalabilityo decentralized administration of the name space

o hierarchical authority and trust

CIS 505, Spring 2007 Naming 3

Top-Level Domains (TLDs)

Mostly controlled by Network Solutions, Inc. todayo .com: commercial

o .edu: educational institution

o .gov: US government

o .mil: US military

o .net: networks and ISPs (now also a number of other things)

o .org: other organizations

o 244, 2-letter country suffixes, e.g., .us, .uk, .cz, .tv, …

o and a bunch of new suffixes that are not very common,e.g., .biz, .name, .pro, …

Finding the Rooto 13 “root servers” store entries for all top level domains (TLDs)

o DNS servers have a hard-coded mapping to root servers sothey can “get started”

[Z. Ives]

CIS 505, Spring 2007 Naming 4

Domain Name Hierarchy

.edu

drexel

cs

upenn

cis whartonee

www(C1K)central

cs

washington

comgov

orgnet

firmshop

artsweb

us

top-level

domains

(generic TLDs) fr country-code

TLDs

DNS name space is hierarchical:

- fully qualified names are “little endian”

- scalability

- decentralized administration

- domains are naming contexts

replaces flat hosts.txt namespace

2

CIS 505, Spring 2007 Naming 5

“lookup www.nhc.noaa.gov”

DNS server for

nhc.noaa.gov

local

DNS server

“www.nhc.noaa.gov is

140.90.176.22”

DNS Implementation

WWW server for

nhc.noaa.gov

(IP 140.90.176.22)

DNS protocol/implementation:

o UDP-based client/server

o client-side resolvers

typically in a library

gethostbyname, gethostbyaddr

o cooperating servers

query-answer-referral model (i.e.,iterative)

forward queries among servers(i.e., recursive)

o common implementation: BIND –an implementation of domainname system protocols

CIS 505, Spring 2007 Naming 6

DNS Name Server Hierarchy

.edu

drexel

upenn

ciswharton

ee

...

comgov

orgnet

firmshop

artsweb

usfr

Root servers list

servers for every

TLD.

DNS servers are organized into a hierarchy

that mirrors the name space.

Specific servers are designated as

authoritative for portions of the name space.

Subdomains correspond to

organizational (admininstrative)

boundaries, which are not

necessarily geographical.

Servers may delegate

management of

subdomains to child

name servers.

Parents refer

subdomain queries to

their children.

Servers are bootstrapped with pointersto selected peer and parent servers.

Resolvers are bootstrapped withpointers to one or more local servers;

they issue recursive queries.

CIS 505, Spring 2007 Naming 7

The DNS Name Space

The most important types of resource records formingthe contents of nodes in the DNS name space.

Contains any entity-specific information considered usefulAny kindTXT

Holds information on the host this node representsHostHINFO

Contains the canonical name of a hostHostPTR

Symbolic link with the primary name of the represented nodeNodeCNAME

Refers to a name server that implements the represented zoneZoneNS

Refers to a server handling a specific serviceDomainSRV

Refers to a mail server to handle mail addressed to this nodeDomainMX

Contains an IP address of the host this node representsHostA

Holds information on the represented zoneZoneSOA

DescriptionAssociated

entity

Type of

record

CIS 505, Spring 2007 Naming 8

DNS Table

An excerpt

from theDNS

database

for the zonecs.vu.nl.

3

CIS 505, Spring 2007 Naming 9

DNS: some issues

Naming contexts

o I want to use short, unqualified names like central instead of

central.cis.upenn.edu when I’m in the cis.upenn.edu domain.

What about trust? How can we know if a server is

authoritative, or just an impostor?

o What happens if a server lies or behaves erratically? What

denial-of-service attacks are possible? What about privacy?

What if an “upstream” server fails?

Is the hierarchical structure sufficient for scalability?

o more names vs. higher request rates

DNS caching

CIS 505, Spring 2007 Naming 10

Hierarchical Implementations: LDAP (1)

Figure 5-22. A simple example of an LDAP

directory entry using LDAP naming conventions.

CIS 505, Spring 2007 Naming 11

Hierarchical Implementations: LDAP (2)

Figure 5-23. (a) Part of a directory information tree.

CIS 505, Spring 2007 Naming 12

Hierarchical Implementations: LDAP (3)

Figure 5-23. (b) Two directory entries having Host_Name as RDN.

4

CIS 505, Spring 2007 Naming 13

Distributed Hash TablesGeneral Mechanism

Figure 5-4.

Resolving key 26

from node 1 andkey 12 from node

28 in a Chord

system.

CIS 505, Spring 2007 Naming 14

Mapping to Distributed Hash Tables (1)

Figure 5-24. (a) A general description of a resource.(b) Its representation as an AVTree.

CIS 505, Spring 2007 Naming 15

Mapping to Distributed Hash Tables (2)

Figure 5-25. (a) The resource description of a query.(b) Its representation as an AVTree.

CIS 505, Spring 2007 Naming 16

Semantic Overlay Networks

Figure 5-26. Maintaining a semantic overlay throughgossiping.