416 Distributed Systems. Feb 24, 2016 DNS and CDNs

Similar documents
CS640: Computer Networks. Naming /ETC/HOSTS

DNS. Outline. What is DNS? How resolve name IP addr? DNS (Domain Name Service) is primarily used to. usable addresses, e.g., IP addresses.

Outline Computer Networking. IPv6 Addressing. IPv IPv Translation: too many names and addresses!

Domain Name System (DNS)

Domain Name System DNS

Domain Name System (DNS) Reading: Section in Chapter 9

CS 348: Computer Networks. - DNS; 22 nd Oct Instructor: Sridhar Iyer IIT Bombay

NET0183 Networks and Communications

DNS Domain Name System

Naming and the DNS. Focus. How do we name hosts etc.? Application Presentation Topics. Session Domain Name System (DNS) /URLs

DNS. Spring 2016 CS 438 Staff 1

Motivation. Domain Name System (DNS) Flat Namespace. Hierarchical Namespace

Domain Name System Richard T. B. Ma

DNS: Domain Name System

Lecture 2 CS An example of a middleware service: DNS Domain Name System

Chapter 23 The Domain Name System (DNS)

Domain Name System (DNS)

Names vs. Addresses. Flat vs. Hierarchical Space. Domain Name System (DNS) Computer Networks. Lecture 5: Domain Name System

Domain Name System (or Service) (DNS) Computer Networks Term B10

C 1. Last Time. CSE 486/586 Distributed Systems Domain Name System. Review: Causal Ordering. Review: Causally Ordered Multicast.

Internet-Praktikum I Lab 3: DNS

DNS : Domain Name System

DNS: Domain Names. DNS: Domain Name System. DNS: Root name servers. DNS name servers

CMPE 80N: Introduction to Networking and the Internet

Hostnames. HOSTS.TXT was a bottleneck. Once there was HOSTS.TXT. CSCE515 Computer Network Programming. Hierarchical Organization of DNS

3. The Domain Name Service

CS 355. Computer Networking. Wei Lu, Ph.D., P.Eng.

CS 43: Computer Networks Naming and DNS. Kevin Webb Swarthmore College September 17, 2015

CS3600 SYSTEMS AND NETWORKS

DNS: Domain Name System

The Application Layer: DNS

How To Map Between Ip Address And Name On A Domain Name System (Dns)

Domain Name System (DNS) RFC 1034 RFC

DATA COMMUNICATOIN NETWORKING

DNS and P2P File Sharing

The Domain Name System (DNS)

Chapter 2 Application Layer

Names & Addresses. Names & Addresses. Names vs. Addresses. Identity. Names vs. Addresses. CS 194: Distributed Systems: Naming

The Domain Name System

Domain Name System (DNS) Omer F. Rana. Networks and Data Communications 1

Distributed Systems. 09. Naming. Paul Krzyzanowski. Rutgers University. Fall 2015

Domain Name System. DNS is an example of a large scale client-server application. Copyright 2014 Jim Martin

Elementary Name and Address. Conversions

DNS Domain Name System

Forouzan: Chapter 17. Domain Name System (DNS)

Overview of Computer Networks

Applications and Services. DNS (Domain Name System)

DNS - Domain Name System

THE DOMAIN NAME SYSTEM DNS

The Domain Name System (DNS)

IPv6 support in the DNS

Ch 6: Networking Services: NAT, DHCP, DNS, Multicasting

Ch 6: Networking Services: NAT, DHCP, DNS, Multicasting, NTP

Application Protocols in the TCP/IP Reference Model

DNS Resolving using nslookup

DNS. Computer networks - Administration 1DV202. fredag 30 mars 12

Domain Name System (DNS) Fundamentals

ECE 4321 Computer Networks. Network Programming

CSE 333 SECTION 6. Networking and sockets

Domain Name Servers. Domain Types WWW host names. Internet Names. COMP476 Networked Computer Systems. Domain Name Servers

- Domain Name System -

Introduction to DNS CHAPTER 5. In This Chapter

Application Protocols in the TCP/IP Reference Model. Application Protocols in the TCP/IP Reference Model. DNS - Concept. DNS - Domain Name System

DNS. Computer Networks. Seminar 12

Understand Names Resolution

19 Domain Name System (DNS)

internet technologies and standards

Computer Networks Prof. S. Ghosh Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur Lecture - 34 DNS & Directory

Chapter 9: Name Services. 9.1 Introduction 9.2 Name services and the DNS 9.3 Directory services 9.6 Summary

Domain Name Server. Training Division National Informatics Centre New Delhi

DNS. The Root Name Servers. DNS Hierarchy. Computer System Security and Management SMD139. Root name server. .se name server. .

Chapter 25 Domain Name System Copyright The McGraw-Hill Companies, Inc. Permission required for reproduction or display.

Application-layer protocols

Domain Name System (DNS) Session-1: Fundamentals. Ayitey Bulley

An Introduction to the Domain Name System

FTP: the file transfer protocol

DNS Basics. DNS Basics

Applications & Application-Layer Protocols: The Domain Name System and Peerto-Peer

Understanding DNS (the Domain Name System)

Chapter 24 The Domain Name System (DNS)

Domain Name Service (DNS) Training Division, NIC New Delhi

The Domain Name System

Part 5 DNS Security. SAST01 An Introduction to Information Security Martin Hell Department of Electrical and Information Technology

Introduction to Network Operating Systems

Carnegie Mellon Computer Science Department Spring 2007 Theory Problem Set 2

Porting applications & DNS issues. socket interface extensions for IPv6. Eva M. Castro. ecastro@dit.upm.es. dit. Porting applications & DNS issues UPM

Transcription:

416 Distributed Systems Feb 24, 2016 DNS and CDNs

Outline DNS Design Content Distribution Networks 2

Naming How do we efficiently locate resources? DNS: name à IP address Challenge How do we scale this to the wide area? 3

Obvious Solutions (1) Why not use /etc/hosts? Original Name to Address Mapping Flat namespace /etc/hosts SRI kept main copy Downloaded regularly Count of hosts was increasing: machine per domain à machine per user Many more downloads Many more updates 4

Obvious Solutions (2) Why not centralize DNS? Single point of failure Traffic volume Distant centralized database Single point of update Doesn t scale! 5

Domain Name System Goals Basically a wide-area distributed database Scalability Decentralized maintenance Robustness Global scope Names mean the same thing everywhere Don t need Atomicity Strong consistency 6

Programmer s View of DNS Conceptually, programmers can view the DNS database as a collection of millions of host entry structures: /* DNS host entry structure */ struct addrinfo { int ai_family; /* host address type (AF_INET) */ size_t ai_addrlen; /* length of an address, in bytes */ struct sockaddr *ai_addr; /* address! */ char *ai_canonname; /* official domain name of host */ struct addrinfo *ai_next; /* other entries for host */ }; Functions for retrieving host entries from DNS: getaddrinfo: query key is a DNS host name. getnameinfo: query key is an IP address. 7

DNS Records RR format: (class, name, value, type, ttl) DB contains tuples called resource records (RRs) Classes = Internet (IN), Chaosnet (CH), etc. Each class defines value associated with type FOR IN class: Type=A name is hostname value is IP address Type=NS name is domain (e.g. foo.com) value is name of authoritative name server for this domain Type=CNAME name is an alias name for some canonical (the real) name value is canonical name Type=MX value is hostname of mailserver associated with name 8

Properties of DNS Host Entries Different kinds of mappings are possible: Simple case: 1-1 mapping between domain name and IP addr: kittyhawk.cmcl.cs.cmu.edu maps to 128.2.194.242 Multiple domain names maps to the same IP address: eecs.mit.edu and cs.mit.edu both map to 18.62.1.6 Single domain name maps to multiple IP addresses: aol.com and www.aol.com map to multiple IP addrs. Some valid domain names don t map to any IP address: 9

DNS Design: Hierarchy Definitions root org net edu com uk gwu ucb ubc bu mit cs ece ugrad Each node in hierarchy stores a list of names that end with same suffix Suffix = path up tree E.g., given this tree, where would following be stored: Fred.com Fred.edu Fred.cs.ubc.edu Fred.ugrad.cs.ubc.edu Fred.cs.mit.edu 10

DNS Design: Zone Definitions root org net edu com uk gwu ucb cmu bu mit cs ece cmcl ca Zone = contiguous section of name space E.g., Complete tree, single node or subtree A zone has an associated set of name servers Must store list of names and tree links Subtree Single node Complete Tree 11

DNS Design: Cont. Zones are created by convincing owner node to create/delegate a subzone Records within zone stored at multiple redundant name servers Primary/master name server updated manually Secondary/redundant servers updated by zone transfer of name space Zone transfer is a bulk transfer of the configuration of a DNS server uses TCP to ensure reliability Example: CS.UBC.EDU created by UBC.EDU administrators Who creates UBC.EDU or.edu? 12

DNS: Root Name Servers Responsible for root zone Approx. 13 root name servers worldwide Currently {a-m}.rootservers.net Local name servers contact root servers when they cannot resolve a name Configured with wellknown root servers Newer picture à www.root-servers.org 13

Physical Root Name Servers Several root servers have multiple physical servers Packets routed to nearest server by Anycast protocol 346 servers total 14

Servers/Resolvers Each host has a resolver Typically a library that applications can link to Local name servers hand-configured (e.g. /etc/ resolv.conf) Name servers Either responsible for some zone or Local servers Do lookup of distant host names for local hosts Typically answer queries about local zone 15

Typical Resolution Client www.cs.cmu.edu Local DNS server www.cs.cmu.edu NS ns1.cmu.edu NS ns1.cs.cmu.edu root & edu DNS server ns1.cmu.edu DNS server ns1.cs.cmu.edu DNS server 16

Typical Resolution Steps for resolving www.cmu.edu Application calls gethostbyname() (RESOLVER) Resolver contacts local name server (S 1 ) S 1 queries root server (S 2 ) for (www.cmu.edu) S 2 returns NS record for cmu.edu (S 3 ) S 1 queries S 3 for www.cmu.edu S 3 returns A record for www.cmu.edu 17

Lookup Methods Recursive query: Server goes out and searches for more info (recursive) Only returns final answer or not found Iterative query: Server responds with as much as it knows (iterative) I don t know this name, but ask this server Workload impact on choice? Local server typically does recursive Root/distant server does iterative local name server dns.eurecom.fr 1 8 requesting host surf.eurecom.fr 3 root name server 2 4 7 iterated query intermediate name server dns.umass.edu 5 6 authoritative name server dns.cs.umass.edu gaia.cs.umass.edu 18

Workload and Caching Are all servers/names likely to be equally popular? Why might this be a problem? How can we solve this problem? DNS responses are cached Quick response for repeated translations Other queries may reuse some parts of lookup NS records for domains DNS negative queries are cached Don t have to repeat past mistakes E.g. misspellings, search strings in resolv.conf Cached data periodically times out Lifetime (TTL) of data controlled by owner of data TTL passed with every record 19

Typical Resolution Client www.cs.cmu.edu Local DNS server www.cs.cmu.edu NS ns1.cmu.edu NS ns1.cs.cmu.edu root & edu DNS server ns1.cmu.edu DNS server ns1.cs.cmu.edu DNS server 20

Subsequent Lookup Example ftp.cs.cmu.edu root & edu DNS server Client Local DNS server cmu.edu DNS server cs.cmu.edu DNS server 21

Reliability DNS servers are replicated Name service available if one replica is up Queries can be load balanced between replicas UDP used for queries Need reliability à must implement this on top of UDP! Why not just use TCP? Try alternate servers on timeout Exponential backoff when retrying same server Same identifier for all queries Don t care which server responds 22

Reverse DNS arpa in-addr 128 2 194 cs unnamed root edu cmu cmcl Task Given IP address, find its name Method Maintain separate hierarchy based on IP names Write 128.2.194.242 as 242.194.2.128.in-addr.arpa Why is the address reversed? Managing Authority manages IP addresses assigned to it E.g., CMU manages name space 128.2.in-addr.arpa 242 kittyhawk 128.2.194.242 23

.arpa Name Server hierarchy/replication in-addr.arpa a.root-servers.net m.root-servers.net 128 chia.arin.net (dill, henna, indigo, epazote, figwort, ginseng) 2 cucumber.srv.cs.cmu.edu, t-ns1.net.cmu.edu t-ns2.net.cmu.edu 194 kittyhawk 128.2.194.242 mango.srv.cs.cmu.edu (peach, banana, blueberry) At each level of hierarchy, have group of servers that are authorized to handle that region of hierarchy 24

Prefetching Name servers can add additional data to response Typically used for prefetching CNAME/MX/NS typically point to another host name Responses include address of host referred to in additional section 25

Tracing Hierarchy (1) Dig Program Use flags to find name server (NS) Disable recursion so that operates one step at a time unix> dig +norecurse @a.root-servers.net NS greatwhite.ics.cs.cmu.edu ;; ADDITIONAL SECTION: a.edu-servers.net 172800 IN A 192.5.6.30 c.edu-servers.net. 172800 IN A 192.26.92.30 d.edu-servers.net. 172800 IN A 192.31.80.30 f.edu-servers.net. 172800 IN A 192.35.51.30 g.edu-servers.net. 172800 IN A 192.42.93.30 g.edu-servers.net. 172800 IN AAAA 2001:503:cc2c::2:36 l.edu-servers.net. 172800 IN A 192.41.162.30 IP v6 address All.edu names handled by set of servers 26