DNS - Domain Name System
|
|
|
- Martin Harris
- 10 years ago
- Views:
Transcription
1 DNS - Domain Name System TCP/IP class 1
2 outline introduction naming scheme protocol format record types how it works reverse lookup implementation - named config files summary - futures 2
3 bibliography RFCs Internet Domain Naming Philosophy (87) Protocol standard (87) updated in 1101/1183 in 1990 Evi Nemeth s Unix Sys. Admin Handbook Sun Network Documentation BSD Bind docs Steven s TCP/Proto book gives good protocol explanation 3
4 Some DNS urls of interest ICANN - Inet Corporation for Assigned Names and Numbers - DNS administration see the FAQ for recent info accredited list of registrars for.com/.net/.org where to get DNS BSD Bind software 4
5 intro DNS - Domain Name System distributed database: (key, value) pairs include: 1. map DNS names to ip number (ADDRESS)» sirius.cs.pdx.edu to » connect(2) wants an ip number, so does sendto(2) 2. map ip number to DNS name (PTR) 3. mail routing, (MX)» mail [email protected] -> sirius.cs.pdx.edu 4. aliases (CNAME)» is actually sirius.cs.pdx.edu 5
6 intro done with distributed client/server implementation system is hierarchical and very scalable Internet-wide service, possibly the largest nameserver paradigm on the block DNS is of course both a protocol specification and an implementation BSD BIND/named implementation (4.9?) 6
7 intro - why? computers use ip numbers, people want names, not as good as foo.com all computers can t be named fluffy so we need a hierarchical naming system to avoid host name conflicts origin rooted in /etc/hosts file which has ip address to name mapping, but obviousally doesn t scale to Internet-wide 7
8 3 schemes for name lookup 1. put it in /etc/hosts and distribute that periodically (rdist/cron/rcp, whatever) 2. Sun s NIS (Network Info. System) 1. not supported on all hosts 2. can t go outside your admin. domain» (Tek could do it, but can t manage it with Intel) 3. can do more than DNS, passwd, groups too 3. DNS 8
9 Berkeley Internet Name Domain parts include: named - a name server, takes files as database including a list of names/ip pairs, DNS roots, master configuration file resolver - client side library code for making DNS lookup, linked to apps like telnet, etc., inside gethostbyname(3), gethostbyaddr(3) calls debug tools: nslookup, dig (elsewhere) 9
10 intro - protocol DNS basically send/recv style message protocol. Here s the question, what s the answer? uses UDP for query/response may switch to TCP if response too big uses TCP to xfer database between primary and secondary domain servers (zone transfer) 10
11 DNS naming scheme problems to overcome... arpanet /etc/hosts file grew too big hosts named venus UUCP gave us human-names mixed with route, we don t want the route in the name a!b!c!d from a to d... we need hierarchical names with distributed control of naming authority 11
12 sample name sirius.cs.pdx.edu. from right to left (top to bottom), right is general, left is specific root is on right (1st dot) namespace is a tree of domains, root domain, edu, pdx, cs, etc 12
13 names DNS labels acc. to RFC 1032 should be short (12 chars max), but 64 is actually allowed names are case-insensitive can be relative; e.g., sirius, but smart resolver code has to append local domainname correctly edu is TOP level domain pdx is 2nd-level. Apply to NIC registration service ( for 2nd-level they must guarantee uniqueness 13
14 names internic manages root and 2nd-level local admins manage 3rd-level (or more) and can distribute that management locally if size warrants the rest of the world is NOT involved in how we manage our DNS names internally 14
15 names domain name - tree is made up of hierarchy of domains, each node is a domain and we go from right to left edu, pdx.edu, cs.pdx.edu, labels are unique only within a domain absolute domain name has root dot and is called FQDN - Fully Qualified Domain Name if relative, name must be completed somehow 15
16 names zone: namespace is partitioned into zones, zones are a set of names managed by 1 server, server will have > 1 zone to manage typically DNS server must have partner server elsewhere for redundancy, manages its zone and somebody else s too 16
17 DNS supports > 1 name hierarchy organizational reverse lookup country Liberian freighter registry? (not yet...) 17
18 DNS organization hierarchy root (.) com edu gov int mil net org pdx cs ee opb opb.org sirius.cs.pdx.edu sirius walt walt.ee.pdx.edu
19 organizational domains mostly but not all U.S. com - commercial edu - educational gov - U.S. goverment int - international organizations mil - U.S. military net - networks org - other organizations 19
20 recent proposal - new domains.arts - entertainment/cultural.firm - firms or businesses.info - information providers.nom - personal names.rec - entertainment/recreation entities.store - bus offering goods for purchase.web - WWW related entities 20
21 or alternative registries even name.space AlterNIC.exp,.ltd,.lnx,.med,.nic, and.xxx 21
22 Acc. To ICANN, recent new TLDs (wotsa TLD?).aero, air transport industry.biz.coop, cooperatives.info.museum.name, individual humans.pro - lawyers, Drs, accountants 22
23 DNS pointer query hierarchy arpa root (.) in-addr in-addr.arpa, note for ip =
24 DNS country domains root (.) uk us nl su ch jp zw va reston helvetica... countries may have 2nd-level domains; e.g.,.co.uk for commercial UK cnri.reston.va.us cnri
25 DNS record types adding a record types isn t easy name has type, client must ask for it by type Basic = ADDRESS, PTR, MX Zone=SOA (start of authority), NS (name server, server for a zone) optional = CNAME (alias), HINFO (host info), RP (responsible person), WKS (deprecated, but well known services), TXT (text) 25
26 record types you can start to see that a query = (name, type); (sirius.cs.pdx.edu.,a) a name may map to more than one item, e.g., sirius.cs.pdx.edu, type A, might have 1-n ip addresses associated with it 26
27 protocol header typically UDP request, reply request/reply format request = fixed header + question section reply = fixed header + query + answer sections question = (name, type, class = IP) with name in compressed format reply = set of Resource Records (RR) 27
28 DNS query/response format fixed identification flags header # questions # answers + query + reply # authorities # extra A RRs 1 or more questions 1 or more answers (RRs) authorities (NS RRs) A records for NS records 6 2-byte fields = 12 in all variable length node: id field used by client to match responses 28
29 header - flags field QR opcode AA TC RD RA (zero) return code = 16 bits QR - 0 if query, 1 if response opcode - 0, standard query; 1, inverse; 2, server status request AA - authoritative answer. Answer is from NS that maintains zone TC - truncated. Using UDP, and answer was > 512 bytes RD - recursion desired. If not set then iterative, NS may return list of other NS servers to try. RA - recursion available. Set if server supports recursion rcode - error codes, 0 means no error. Only set if name invalid. 29
30 question portion query part logically (name, type, class) class is IP type is A, NS, PTR, CNAME, MX, etc. name is encoded and variable length with a count (size) for each label in the name typically 1 question (and no answers yet...) 30
31 Resource Record format domain name type (A, etc.) class (IP) variable length time-to-live resource length resource data... variable length 31
32 RR format domain name - same format as in query TTL - in seconds, value often 86400, 1 day resource data, the answer, for example if the query was foo.com, the answer might be
33 theory of operation/server-side person responsible for zone supplies 1 or more name servers primary name server and 1 or more secondary servers elsewhere necessary hope is to avoid single point of failure admin must change zone file and notify name server to reload (signal to named on UNIX) currently sans security, can t change zone info dynamically, must be manual 33
34 operation - root servers name server must contact other name servers for non-local info need IP address to contact... hmm... each name server has list of root servers, need IP addresses for them root servers know 2nd-level servers, refer name servers to them see how to get list of root names later 34
35 operation port 53 used for queries/answers may use UDP/TCP if answer too big TCP used for zone transfer between primary and secondary servers 35
36 how it works % telnet local.machine.com DNS is invoked to do name mapping to get IP address. (arp before udp before tcp...) client resolver code must have addresses for local name servers to prime the pump on UNIX, /etc/resolv.conf gethostbyname(3) calls resolver code which uses info in resolv.conf file 36
37 /etc/resolv.conf # domain cs.pdx.edu # search cs.pdx.edu. ee.pdx.edu. # nameserver nameserver nameserver
38 operation - types of name resolution 2 ways to resolve a name used in DNS iterative - contact name servers one at a time. You ask a root server and it gives you a list of contacts (NS + A records) recursive - ask a name server to do the whole job resolvers are assumed to be simple and do things recursively root servers are busy and are iterative 38
39 when server gets query checks to see if name lies in its zones if so translates name to A and returns RRs if not, acc. to howto code if recursive contacts other servers (root/2ndary) until it gets A, and returns it else iterative (e.g., root server) returns NS with A records 39
40 1 query - how many answers? if you ask for sirius.cs.pdx.edu, you get two A records (last time I checked) multi-homed host > 1 address record by definition 40
41 local lookup: send request to local server server returns authoritative response 41
42 remote lookup ask local NS (recursive) local NS may return cached hit. This is called a non-authoritative answer may ask root server in iterative fashion, get list of secondary servers ask secondary server, cache result return result to client 42
43 remote lookup picture 2. iterative root 3 client 1. Recursive local NS 4 remote NS
44 caching we don t want to work down the tree every time as root servers have a heavy load server data from remote systems thus kept locally with timeout (1 day typical) without timeout we would have remote systems with DNS, ip mapping where ip address might change cached data is non-authoritative 44
45 reverse address lookup is Alex Trebec involved with the DNS? pose an answer (IP address), get a question (DNS name)... gethostbyaddr(3), ip in, DNS out make a pointer query (PTR) special tree using in-addr.arpa domain class A, B, C net part at top, host at bottom 45
46 reverse address lookup if we didn t have tree organized by address, how would we do it? search through from domain roots? (take a lifetime...) gethostbyaddr(3) often used as weak security check, get DNS domain part and make sure it is in xyzzy domain (foo.com) gethostbyaddr(3) may automatically check that returned ip matches name by internal gethostbyname(3) call 46
47 DNS pointer query hierarchy arpa root (.) in-addr in-addr.arpa, note for ip =
48 nslookup - debug utility it s a shell, help and exit are commands from the command-line % nslookup foo.com <----- you (may) get an answer basically a resolver (client-side) for testing to do reverse-pointer lookup -> set type=ptr -> in-addr.arpa. yes, you have to reverse the address to put it in normal form, above is for
49 named - config /usr/somewhere/in.named - BSD named DNS server, started as server at boot /etc/named.boot - named configuration file not inetd based, start after syslog roughly: /usr/etc/in.named -r /etc/named.boot named.boot tells named where to find database files 49
50 named files besides named.boot /somewhere/named/named.ca (name may be different) - cache of root servers as RR records hosts - primary RR (A records, MX, CNAME, etc), one or more reverse pointer - PTR query records, one or more 50
51 named.boot - sample ; named.boot ; pdx-domain ; directory means where the db files hang out directory /usr/local/lib/named ; root cache cache named.ca ; what kind of server/domain name/filename primary in-addr.arpa localhost primary cs.pdx.edu zone.pdx.cs primary in-addr.arpa revp primary in-addr.arpa revp
52 more details on boot file primary keyword indicates this named is primary server for zone info in that file secondary keyword says that host is secondary nameserver, need ip address + cache file name single name server can support more than one zone may have caching only server, no data files forwarders, can point interior NS at one NS that will cache all external queries xfrnets - can restrict who can do zone tranfer 52
53 root cache get one from ftp://rs.internic.net/domain/named.cache need to prime the pump, 9 currently dot in NS record is for domain field and means root domain can use nslookup to check given 1 root server -> server = a.root-servers.net. -> set type=ns ->. 53
54 root cache example (don t use) ; /domain/named.root ; IN NS a.root-servers.net. a.root-servers.net A ; IN NS b.root-servers.net. b.root-servers.net A ; etc... through i.root-servers.net. 54
55 RR - SOA SOA - source of authority and start of zone db ; start of authority - current zone IN SOA foo.com. [email protected]. ( 1001; serial #, increment when change zone ; used to make zone xfer happen 21600; 6 hours, time to zone xfer 1800; 30 minutes, 2nd retry if primary missing ; expire, 2 weeks for 2nd if no 1st ); minimum, 5 days, ttl on RRs 55
56 RR - NS NS - name server record. Assume foo.com ; ns, name servers for this domain, all primarys and ; secondaries foo.com. IN NS a.foo.com. foo.com. IN NS z.somethingelse.com. ; ns records for the current domain are not necessary ; needed however in parent for subdomains ; don t forget the A records for the NS records admin IN NS a.admin.foo.com. marketing IN NS z.mrkt.foo.com. 56
57 RR - A and other records Address records are heart of DNS ; the data part localhost IN A foobar IN A snarp IN A flozzle IN A www IN CNAME foobar.foo.com. foo.com IN MX foobar.foo.com. multi IN A IN A
58 update of zone files change the serial # in the SOA record add the A records or whatever kill -HUP signal to named secondary won t change until refresh time passed, will check serial # first, cache current data in data file zone xfer done with TCP, port 53 58
59 DNS futures types are attribute OF the name, not in the name not easy to change types since you must change code everywhere, but it happens e.g., there are ISDN/X.25 record types would like DNS to be dynamic but 1st DNS needs a secure protocol 59
60 DNSSEC IETF working group add security to DNS dynamic DNS updates KEY/SIG records using RSA public keys zone authority may sign all DNS records new USER record as well hence can authenticate 60
DNS : Domain Name System
1/30 DNS : Domain Name System Surasak Sanguanpong [email protected] http://www...ac.th/~nguan Last updated: May 24, 1999 Outline 2/30 DNS basic name space name resolution process protocol configurations Why
Motivation. Domain Name System (DNS) Flat Namespace. Hierarchical Namespace
Motivation Domain Name System (DNS) IP addresses hard to remember Meaningful names easier to use Assign names to IP addresses Name resolution map names to IP addresses when needed Namespace set of all
CS3250 Distributed Systems
CS3250 Distributed Systems Lecture 4 More on Network Addresses Domain Name System DNS Human beings (apart from network administrators and hackers) rarely use IP addresses even in their human-readable dotted
Hostnames. HOSTS.TXT was a bottleneck. Once there was HOSTS.TXT. CSCE515 Computer Network Programming. Hierarchical Organization of DNS
Hostnames CSCE 515: Computer Network Programming ------ Address Conversion Function and DNS RFC 1034, RFC 1035 Wenyuan Xu http://www.cse..edu/~wyxu/ce515f07.html Department of Computer Science and Engineering
DNS Domain Name System
Domain Name System DNS Domain Name System The domain name system is usually used to translate a host name into an IP address Domain names comprise a hierarchy so that names are unique, yet easy to remember.
The Domain Name System (DNS)
The Domain Name System (DNS) Columbus, OH 43210 [email protected] http://www.cis.ohio-state.edu/~jain/ 24-1 Overview Naming hierarchy hierarchy Name resolution Other information in name servers 24-2
THE DOMAIN NAME SYSTEM DNS
Announcements THE DOMAIN NAME SYSTEM DNS Internet Protocols CSC / ECE 573 Fall, 2005 N. C. State University copyright 2005 Douglas S. Reeves 2 Today s Lecture I. Names vs. Addresses II. III. IV. The Namespace
Lecture 2 CS 3311. An example of a middleware service: DNS Domain Name System
Lecture 2 CS 3311 An example of a middleware service: DNS Domain Name System The problem Networked computers have names and IP addresses. Applications use names; IP uses for routing purposes IP addresses.
The Domain Name System
DNS " This is the means by which we can convert names like news.bbc.co.uk into IP addresses like 212.59.226.30 " Purely for the benefit of human users: we can remember numbers (e.g., telephone numbers),
Distributed Systems. 09. Naming. Paul Krzyzanowski. Rutgers University. Fall 2015
Distributed Systems 09. Naming Paul Krzyzanowski Rutgers University Fall 2015 October 7, 2015 2014-2015 Paul Krzyzanowski 1 Naming things Naming: map names to objects Helps with using, sharing, and communicating
Applications and Services. DNS (Domain Name System)
Applications and Services DNS (Domain Name Service) File Transfer Protocol (FTP) Simple Mail Transfer Protocol (SMTP) Malathi Veeraraghavan Distributed database used to: DNS (Domain Name System) map between
Forouzan: Chapter 17. Domain Name System (DNS)
Forouzan: Chapter 17 Domain Name System (DNS) Domain Name System (DNS) Need System to map name to an IP address and vice versa We have used a host file in our Linux laboratory. Not feasible for the entire
Domain Name System (DNS) Fundamentals
Domain Name System (DNS) Fundamentals Mike Jager Network Startup Resource Center [email protected] These materials are licensed under the Creative Commons Attribution-NonCommercial 4.0 International
Internetworking with TCP/IP Unit 10. Domain Name System
Unit 10 Domain Name System Structure 10.1 Introduction 10.2 Fully Qualified Domain Names (FQDNs) Generic Domains Country Domains 10.3 Mapping domain names to IP addresses 10.4 Mapping IP Addresses to Domain
ECE 4321 Computer Networks. Network Programming
ECE 4321 Computer Networks Network Programming Name Space System.Net Domain Name System (DNS) To resolve computer naming Host database is split up and distributed among multiple systems on the Internet
DNS. Computer Networks. Seminar 12
DNS Computer Networks Seminar 12 DNS Introduction (Domain Name System) Naming system used in Internet Translate domain names to IP addresses and back Communication works on UDP (port 53), large requests/responses
Domain Name System. DNS is an example of a large scale client-server application. Copyright 2014 Jim Martin
Domain Name System: DNS Objective: map names to IP addresses (i.e., high level names to low level names) Original namespace was flat, didn t scale.. Hierarchical naming permits decentralization by delegating
19 Domain Name System (DNS)
CHAPTER 9 Domain Name System (DNS) I n this chapter, we discuss the second application program, Domain Name System (DNS). DNS is a client/server application program used to help other application programs.
Application Protocols in the TCP/IP Reference Model
Application Protocols in the TCP/IP Reference Model File Transfer E-Mail Network Management WWW Virtual Terminal Name Service File Transfer HTTP FTP Telnet SMTP DNS SNMP TFTP Internet protocols TCP UDP
Domain Name System (DNS)
Chapter 18 CSC465 Computer Networks Spring 2004 Dr. J. Harrison These slides are based on the text TCP/IP Protocol Suite (2 nd Edition) Domain Name System (DNS) CONTENTS NAME SPACE DOMAIN NAME SPACE DISTRIBUTION
Application Protocols in the TCP/IP Reference Model. Application Protocols in the TCP/IP Reference Model. DNS - Concept. DNS - Domain Name System
Application Protocols in the TCP/IP Reference Model Application Protocols in the TCP/IP Reference Model File Transfer E-Mail Network Management Protocols of the application layer are common communication
CS 348: Computer Networks. - DNS; 22 nd Oct 2012. Instructor: Sridhar Iyer IIT Bombay
CS 348: Computer Networks - DNS; 22 nd Oct 2012 Instructor: Sridhar Iyer IIT Bombay Domain Name System Map between host names and IP addresses People: many identifiers: name, Passport #, Internet hosts:
DNS. Computer networks - Administration 1DV202. fredag 30 mars 12
DNS Computer networks - Administration 1DV202 DNS History Who needs DNS? The DNS namespace How DNS works The DNS database The BIND software Server and client configuration The history of DNS RFC 882 and
Domain Name System (DNS) Session-1: Fundamentals. Ayitey Bulley [email protected]
Domain Name System (DNS) Session-1: Fundamentals Ayitey Bulley [email protected] Computers use IP addresses. Why do we need names? Names are easier for people to remember Computers may be moved between
Domain Name System (DNS) RFC 1034 RFC 1035 http://www.ietf.org
Domain Name System (DNS) RFC 1034 RFC 1035 http://www.ietf.org TCP/IP Protocol Suite Application Layer DHCP DNS SNMP HTTP SMTP POP Transport Layer UDP TCP ICMP IGMP Network Layer IP Link Layer ARP ARP
Application Protocols in the TCP/IP Reference Model. Application Protocols in the TCP/IP Reference Model. DNS - Domain Name System
Application Protocols in the TCP/IP Reference Model Application Protocols in the TCP/IP Reference Model File Transfer E-Mail Network Management Protocols of the application layer are common communication
Internet-Praktikum I Lab 3: DNS
Kommunikationsnetze Internet-Praktikum I Lab 3: DNS Mark Schmidt, Andreas Stockmayer Sommersemester 2015 kn.inf.uni-tuebingen.de Motivation for the DNS Problem IP addresses hard to remember for humans
Domain Name System DNS
CE443 Computer Networks Domain Name System DNS Behnam Momeni Computer Engineering Department Sharif University of Technology Acknowledgments: Lecture slides are from Computer networks course thought by
DNS Domain Name System
DNS Domain Name System Domain names and IP addresses People prefer to use easy-to-remember names instead of IP addresses Domain names are alphanumeric names for IP addresses e.g., neon.cs.virginia.edu,
IPv6 support in the DNS
IPv6 support in the DNS How important is the DNS? Getting the IP address of the remote endpoint is necessary for every communication between TCP/IP applications Humans are unable to memorize millions of
Teldat Router. DNS Client
Teldat Router DNS Client Doc. DM723-I Rev. 10.00 March, 2003 INDEX Chapter 1 Domain Name System...1 1. Introduction...2 2. Resolution of domains...3 2.1. Domain names resolver functionality...4 2.2. Functionality
- Domain Name System -
1 Name Resolution - Domain Name System - Name resolution systems provide the translation between alphanumeric names and numerical addresses, alleviating the need for users and administrators to memorize
Domain Name Server. Training Division National Informatics Centre New Delhi
Domain Name Server Training Division National Informatics Centre New Delhi Domain Name Service (DNS) I. History of DNS II. DNS structure and its components III. Functioning of DNS IV. Possible Configurations
CS640: Computer Networks. Naming /ETC/HOSTS
CS640: Computer Networks Aditya Akella Lecture 17 Naming and the DNS Naming Need naming to identify resources Once identified, resource must be located How to name resource? Naming hierarchy How do we
Applications & Application-Layer Protocols: The Domain Name System and Peerto-Peer
CPSC 360 Network Programming Applications & Application-Layer Protocols: The Domain Name System and Peerto-Peer Systems Michele Weigle Department of Computer Science Clemson University [email protected]
Agenda. Network Services. Domain Names. Domain Name. Domain Names Domain Name System Internationalized Domain Names. Domain Names & DNS
Agenda Network Services Domain Names & DNS Domain Names Domain Name System Internationalized Domain Names Johann Oberleitner SS 2006 Domain Names Naming of Resources Problems of Internet's IP focus IP
Configuring the BIND name server (named) Configuring the BIND resolver Constructing the name server database files
Configuring DNS BIND: UNIX Name Service Configuring the BIND name server (named) Configuring the BIND resolver Constructing the name server database files Zone: a collection of domain information contained
Introduction to DNS CHAPTER 5. In This Chapter
297 CHAPTER 5 Introduction to DNS Domain Name System (DNS) enables you to use hierarchical, friendly names to easily locate computers and other resources on an IP network. The following sections describe
Introduction to DNS and Application Issues related to DNS. Kirk Farquhar
Introduction to DNS and Application Issues related to DNS Kirk Farquhar 1 Content What is DNS? How it all works Setting up your domain Creating your nameserver files The Resolver Testing Firewall configuration
Domain Name System (DNS) Reading: Section in Chapter 9
Domain Name System (DNS) Reading: Section in Chapter 9 RFC 1034, STD 13 Name Syntax and rules for delegating authority over names Specify implementation of a distributed system that maps names to addresses
Computer Networks Prof. S. Ghosh Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur Lecture - 34 DNS & Directory
Computer Networks Prof. S. Ghosh Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur Lecture - 34 DNS & Directory Good day. Today we will take up two topics, DNS and
Introduction BIND. The DNS Protocol. History (1) DNS. History (2) Agenda
History (1) DNS Domain Name System The Internet's Name Service even in the early days of the Internet, hosts have been also identified by s e.g. /etc/hosts.txt file on UNIX systems all s have been maintained
what s in a name? taking a deeper look at the domain name system mike boylan penn state mac admins conference
what s in a name? taking a deeper look at the domain name system mike boylan penn state mac admins conference whoami work for robert morris university, pittsburgh, pa primarily mac and voip admin @mboylan
NET0183 Networks and Communications
NET0183 Networks and Communications Lecture 25 DNS Domain Name System 8/25/2009 1 NET0183 Networks and Communications by Dr Andy Brooks DNS is a distributed database implemented in a hierarchy of many
1 DNS Packet Structure
Fundamentals of Computer Networking Project 1 Primer: DNS Overview CS4700/CS5700 Fall 2009 17 September 2009 The DNS protocol is well-documented online, however, we describe the salient pieces here for
Introduction to the Domain Name System
CHAPTER 14 The Domain Name System (DNS) handles the growing number of Internet users. DNS translates names, such as www.cisco.com, into IP addresses, such as 192.168.40.0 (or the more extended IPv6 addresses),
netkit lab dns Università degli Studi Roma Tre Dipartimento di Informatica e Automazione Computer Networks Research Group Version Author(s)
Università degli Studi Roma Tre Dipartimento di Informatica e Automazione Computer Networks Research Group netkit lab dns Version Author(s) E-mail Web Description 2.2 G. Di Battista, M. Patrignani, M.
Understanding DNS (the Domain Name System)
Understanding DNS (the Domain Name System) A white paper by Incognito Software January, 2007 2007 Incognito Software Inc. All rights reserved. Understanding DNS (the Domain Name System) Introduction...2
Services: DNS domain name system
Services: DNS domain name system David Morgan Buying numbers and names numbers are IP addresses you buy them from an ISP the ISP makes sure those addresses go to your place the names are domain names you
Domain Name Servers. Domain Types WWW host names. Internet Names. COMP476 Networked Computer Systems. Domain Name Servers
Domain Name Servers COMP76 Networked Computer Systems Internet Names Hierarchical starting from the right host.subnet.organization.type Names are case insensitive and can be in either upper or lower case.
DNS. The Root Name Servers. DNS Hierarchy. Computer System Security and Management SMD139. Root name server. .se name server. .
Computer System Security and Management SMD139 Lecture 5: Domain Name System Peter A. Jonsson DNS Translation of Hostnames to IP addresses Hierarchical distributed database DNS Hierarchy The Root Name
DNS Resolving using nslookup
DNS Resolving using nslookup Oliver Hohlfeld & Andre Schröder January 8, 2007 Abstract This report belongs to a talk given at the networking course (Institue Eurecom, France) in January 2007. It is based
Local DNS Attack Lab. 1 Lab Overview. 2 Lab Environment. SEED Labs Local DNS Attack Lab 1
SEED Labs Local DNS Attack Lab 1 Local DNS Attack Lab Copyright c 2006 Wenliang Du, Syracuse University. The development of this document was partially funded by the National Science Foundation s Course,
Domain Name System Richard T. B. Ma
Domain Name System Richard T. B. Ma School of Computing National University of Singapore CS 3103: Compute Networks and Protocols Names Vs. Addresses Names are easier for human to remember www.comp.nus.edu.sg
3. The Domain Name Service
3. The Domain Name Service n Overview and high level design n Typical operation and the role of caching n Contents of DNS Resource Records n Basic message formats n Configuring/updating Resource Records
Domain Name System (DNS)
Domain Name System (DNS) Instructor: Anirban Mahanti Office: ICT 745 Email: [email protected] Class Location: ICT 121 Lectures: MWF 12:00 12:50 Notes derived from Computer Networking: A Top Down
How-to: DNS Enumeration
25-04-2010 Author: Mohd Izhar Ali Email: [email protected] Website: http://johncrackernet.blogspot.com Table of Contents How-to: DNS Enumeration 1: Introduction... 3 2: DNS Enumeration... 4 3: How-to-DNS
Chapter 23 The Domain Name System (DNS)
CSC521 Communication Protocols 網 路 通 訊 協 定 Chapter 23 The Domain Name System (DNS) 吳 俊 興 國 立 高 雄 大 學 資 訊 工 程 學 系 Outline 1. Introduction 2. Names For Machines 3. Flat Namespace 4. Hierarchical Names 5.
The Domain Name System: An Integral Part of the Internet. By Keiko Ishioka
The Domain Name System: An Integral Part of the Internet By Keiko Ishioka The Domain Name System (otherwise known as the Domain Name Server system) (DNS) is a distributed database that is accessed by anyone
DNS at NLnet Labs. Matthijs Mekking
DNS at NLnet Labs Matthijs Mekking Topics NLnet Labs DNS DNSSEC Recent events NLnet Internet Provider until 1997 The first internet backbone in Holland Funding research and software projects that aid the
DNS. Spring 2016 CS 438 Staff 1
DNS Spring 2016 CS 438 Staff 1 Host Names vs. IP addresses Host names Mnemonic name appreciated by humans Variable length, full alphabet of characters Provide little (if any) information about physical
Deploying & Configuring a DNS Server on OpenServer 6 or UnixWare 7. Kirk Farquhar
Deploying & Configuring a DNS Server on OpenServer 6 or UnixWare 7 Kirk Farquhar 1 Content Introduction Bind 8 & Bind 9 Administering a DNS Server H2N Using DNS Manager The SCO Resolvers Firewall Issues
DNS. Some advanced topics. Karst Koymans. (with Niels Sijm) Informatics Institute University of Amsterdam. (version 2.6, 2013/09/19 10:55:30)
DNS Some advanced topics Karst Koymans (with Niels Sijm) Informatics Institute University of Amsterdam (version 2.6, 2013/09/19 10:55:30) Friday, September 13, 2013 Karst Koymans (with Niels Sijm) (UvA)
The Domain Name System
Internet Engineering 241-461 Robert Elz [email protected] [email protected] http://fivedots.coe.psu.ac.th/~kre DNS The Domain Name System Kurose & Ross: Computer Networking Chapter 2 (2.5) James F. Kurose
How To Map Between Ip Address And Name On A Domain Name System (Dns)
Computer Networks: Domain Name Service (DNS) CS 3516 D- term 2013 Instructor: Krishna Venkatasubramanian Quiz 2 DNS: domain name system people: many identifiers: SSN, name, passport # Internet hosts, routers:
Chapter 24 The Domain Name System (DNS)
Chapter 24 The Domain Name System (DNS) Columbus, OH 43210 [email protected] http://www.cis.ohio-state.edu/~jain/ 24-1 Overview Naming hierarchy Server hierarchy Name resolution Other information
Chapter 9: Name Services. 9.1 Introduction 9.2 Name services and the DNS 9.3 Directory services 9.6 Summary
Chapter 9: Name Services 9.1 Introduction 9.2 Name services and the DNS 9.3 Directory services 9.6 Summary Learning objectives To understand the need for naming systems in distributed systems To be familiar
Naming and the DNS. Focus. How do we name hosts etc.? Application Presentation Topics. Session Domain Name System (DNS) Email/URLs
Naming and the DNS Focus How do we name hosts etc.? Application Presentation Topics Session Domain Name System (DNS) Email/URLs Transport Network Data Link Physical Ldns.1 Names and Addresses 43 name address
IPv6 Support in the DNS. Workshop Name Workshop Location, Date
IPv6 Support in the DNS Workshop Name Workshop Location, Date Agenda How important is the DNS? DNS Resource Lookup DNS Extensions for IPv6 Lookups in an IPv6-aware DNS Tree About Required IPv6 Glue in
DNS Conformance Test Specification For Client
DNS Conformance Test Specification For Client Revision 1.0 Yokogawa Electric Corporation References This test specification focus on following DNS related RFCs. RFC 1034 DOMAIN NAMES - CONCEPTS AND FACILITIES
Motivation. Users can t remember IP addresses. Implemented by library functions & servers. - Need to map symbolic names (www.stanford.
Motivation 2 cs.princeton.edu User 1 user @ cs.princeton.edu Name server Mail program 192.12.69.5 3 TCP 192.12.69.5 4 192.12.69.5 5 IP Users can t remember IP addresses - Need to map symbolic names (www.stanford.edu)
DNS: Domain Name System
DNS: Domain Name System CMPSCI 491G: Computer Networking Lab V. Arun Slides adapted from Liebeherr & Zarki, Kurose & Ross, Kermani DNS: domain name system people: many identifiers: SSN, name, passport
Domain Name System. Overview. Domain Name System. Domain Name System
Overview Domain Name System We look first at how the Domain Name System (DNS) is implemented and the role it plays in the Internet We examine some potential DNS vulnerabilities and in particular we consider
DNS & IPv6. Agenda 4/14/2009. MENOG4, 8-9 April 2009. Raed Al-Fayez SaudiNIC CITC [email protected], www.nic.net.sa. DNS & IPv6.
DNS & IPv6 MENOG4, 8-9 April 2009 Raed Al-Fayez SaudiNIC CITC [email protected], www.nic.net.sa Agenda DNS & IPv6 Introduction What s next? SaudiNIC & IPv6 About SaudiNIC How a cctld Registry supports
Domain Name System (or Service) (DNS) Computer Networks Term B10
Domain Name System (or Service) (DNS) Computer Networks Term B10 DNS Outline DNS Hierarchial Structure Root Name Servers Top-Level Domain Servers Authoritative Name Servers Local Name Server Caching and
CS 43: Computer Networks Naming and DNS. Kevin Webb Swarthmore College September 17, 2015
CS 43: Computer Networks Naming and DNS Kevin Webb Swarthmore College September 17, 2015 Agenda Identifiers and addressing Domain Name System History Query sequences Record types Load balancing Recall:
DNS and BIND. David White
DNS and BIND David White DNS: Backbone of the Internet Translates Domains into unique IP Addresses i.e. developcents.com = 66.228.59.103 Distributed Database of Host Information Works seamlessly behind
Naming. Name Service. Why Name Services? Mappings. and related concepts
Service Processes and Threads: execution of applications or services Communication: information exchange for coordination of processes But: how can client processes (or human users) find the right server
Application-layer Protocols
Application-layer Protocols Based on Notes by D. Hollinger Based on UNIX Network Programming, Stevens, Chapter 9 Also Java Network Programming and Distributed Computing, Chapter 3,8 Also Online Java Tutorial,
Configuring DNS. Finding Feature Information
The Domain Name System (DNS) is a distributed database in which you can map hostnames to IP addresses through the DNS protocol from a DNS server. Each unique IP address can have an associated hostname.
Introduction to Network Operating Systems
As mentioned earlier, different layers of the protocol stack use different kinds of addresses. We can now see that the Transport Layer (TCP) uses port addresses to route data to the correct process, the
Chapter 7 Implementing Domain Name System (DNS)
[Previous] [Next] Chapter 7 Implementing Domain Name System (DNS) About This Chapter In this chapter, you will learn how Domain Name System (DNS) is used to resolve host names on your local area network
Part 5 DNS Security. SAST01 An Introduction to Information Security 2015-09-21. Martin Hell Department of Electrical and Information Technology
SAST01 An Introduction to Information Security Part 5 DNS Security Martin Hell Department of Electrical and Information Technology How DNS works Amplification attacks Cache poisoning attacks DNSSEC 1 2
Names vs. Addresses. Flat vs. Hierarchical Space. Domain Name System (DNS) Computer Networks. Lecture 5: Domain Name System
Names vs. Addresses Computer Networks Lecture 5: Domain Name System Names are easier for human to remember www.umich.edu vs. 141.213.4.4 Addresses can be changed without changing names move www.umich.edu
HTG XROADS NETWORKS. Network Appliance How To Guide: EdgeDNS. How To Guide
HTG X XROADS NETWORKS Network Appliance How To Guide: EdgeDNS How To Guide V 3. 2 E D G E N E T W O R K A P P L I A N C E How To Guide EdgeDNS XRoads Networks 17165 Von Karman Suite 112 888-9-XROADS V
Domain Name System 2015-04-28 17:49:44 UTC. 2015 Citrix Systems, Inc. All rights reserved. Terms of Use Trademarks Privacy Statement
Domain Name System 2015-04-28 17:49:44 UTC 2015 Citrix Systems, Inc. All rights reserved. Terms of Use Trademarks Privacy Statement Contents Domain Name System... 4 Domain Name System... 5 How DNS Works
Understand Names Resolution
Understand Names Resolution Lesson Overview In this lesson, you will learn about: Domain name resolution Name resolution process steps DNS WINS Anticipatory Set 1. List the host name of 4 of your favorite
DNS: Domain Name System
DNS: Domain Name System People: many identifiers: SSN, name, passport # Internet hosts, routers: IP address (32 bit) - used for addressing datagrams name, e.g., ww.yahoo.com - used by humans Q: map between
Networking Domain Name System
IBM i Networking Domain Name System Version 7.2 IBM i Networking Domain Name System Version 7.2 Note Before using this information and the product it supports, read the information in Notices on page
Computer Networks: Domain Name System
Computer Networks: Domain Name System Domain Name System The domain name system (DNS) is an application-layer protocol for mapping domain names to IP addresses DNS www.example.com 208.77.188.166 http://www.example.com
Networking Domain Name System
System i Networking Domain Name System Version 6 Release 1 System i Networking Domain Name System Version 6 Release 1 Note Before using this information and the product it supports, read the information
Names & Addresses. Names & Addresses. Names vs. Addresses. Identity. Names vs. Addresses. CS 194: Distributed Systems: Naming
Names & Addresses CS 9: Distributed Systems: Naming Computer Science Division Department of Electrical Engineering and Computer Sciences University of California, Berkeley Berkeley, CA 970-77 What is a?
The Application Layer: DNS
Recap SMTP and email The Application Layer: DNS Smith College, CSC 9 Sept 9, 0 q SMTP process (with handshaking) and message format q Role of user agent access protocols q Port Numbers (can google this)
