domain name system dns
play

Domain Name System (DNS) Recap DNS is a distributed database - PDF document

Domain Name System (DNS) Recap DNS is a distributed database Resolver asks Cache for information Session-3: Configuration of Authoritative Nameservers Cache traverses the DNS delegation tree to find Authoritative name server which


  1. Domain Name System (DNS) Recap • DNS is a distributed database • Resolver asks Cache for information Session-3: Configuration of Authoritative Nameservers • Cache traverses the DNS delegation tree to find Authoritative name server which has the information requested • Bad configuration of authoritative server can result in broken domains Ayitey Bulley abulley@ghana.com Slaves connect to Master to retrieve DNS Replication copy of zone data • For every domain, we need more than one authoritative nameserver with the same Slave information (RFC 2182) • Data is entered in one server (Master) and replicated to the others (Slaves) Master • Outside world cannot tell the difference between master and slave Slave – NS records are returned in random order for equal load sharing • Was called “primary” and “secondary” • The master does not “push” data to slaves When does replication take place? Serial Numbers • Slaves poll the master periodically - called the • Every zone file has a Serial Number “Refresh Interval” - to check for new data. • Slave will only copy data when this number – Originally this was the only mechanism INCREASES • With new software, master can also notify the – Periodic UDP query to check Serial Number – If increased, TCP transfer of zone data slaves when the data changes • It is your responsibility to increase the serial – results in quicker updates number after every change, otherwise slaves • The notification is unreliable (e.g. network and master will be inconsistent might lose a packet) so we still need checks at the Refresh Interval.

  2. Recommended serial number format: Serial Numbers: Danger 1 YYYYMMDDNN • YYYY = year • If you ever decrease the serial number, the slaves will never update again until the serial • MM = month (01-12) number goes above its previous value • DD = day (01-31) • RFC1912 section 3.1 explains how to fix this • NN = number of changes today (00-99) problem – e.g. if you change the file on 19th April 2005, the • At worst, you have to contact all your slaves serial number will be 2005041900. If you change it again on the same day, it will be 2005041901 and get them to delete their copy of the zone data Serial Numbers: Danger 2 Configuration of Master • /var/named/etc/namedb/named.conf points to • Serial no. is a 32-bit unsigned number zone file (manually created) • Range: 0 to 4,294,967,295 • Choose a logical place to keep them • Any value larger than this is silently truncated • e.g. • e.g. 20040303000 (note extra digit) /var/named/etc/namedb/master/example.com – = 4AA7EC198 (hex) • or – = AA7EC198 (32 bits) /var/named/etc/namedb/master/com.example – = 2860433816 • If you make this mistake, then correct it, the zone "example.com" { type master; serial number will have decreased file "master/example.com"; allow-transfer { 192.188.58.126; 192.188.58.2; }; allow-update { none; }; }; Configuration of Slave Master and Slave • /var/named/etc/namedb/named.conf points to • It's perfectly OK for one server to be Master for IP address of master and location of zone file some zones and Slave for others • Zone files are transferred automatically • That's why we recommend keeping the files in – Don't touch them different directories – /var/named/etc/namedb/master/ zone "example.com" { – /var/named/etc/namedb/slave/ type slave; masters { 192.188.58.126; }; • This is the setup we currently have on the file "slave/example.com"; FreeBSD 5.3 boxes (BIND running chrooted) allow-transfer { none; }; allow-update { none; }; };

  3. allow-transfer { ... } The Structure of a zone file • Remote machines can request a transfer of the • Global options entire zone contents – $TTL 1d • By default, this is permitted to anyone – Sets the default TTL for all other records • SOA RR • Better to restrict this – "Start Of Authority" • You can set a global default, and override this – Housekeeping information for the zone for each zone if required • NS RRs – List all the nameservers for the zone, master and options { slaves allow-transfer { 127.0.0.1; }; • Other RRs }; – The actual data you wish to publish Format of Resource Records Shortcuts • One per line (except SOA can extend over several • If the Domain Name does not end in a dot, the lines) zone's own domain ("origin") is appended • If you omit the Domain Name, it is the same as the • A Domain Name of "@" means the origin itself previous line • e.g. in zone file for example.com: • TTL shortcuts: eg. 60s, 30m, 4h, 1w2d – @ means example.com. • If you omit the TTL, it takes the $TTL default value – www means www.example.com. • If you omit the Class, it defaults to IN • Type and Data cannot be omitted • Comments start with SEMICOLON (;) www 3600 IN A 10.10.10.2 ttl class rdata Label type If you write this... Format of the SOA record $TTL 1d $ TTL 1d @ SOA ( ... ) @ 1h IN SOA ns1.example.net. abulley.psg.com. ( NS ns0 2005041900 ; Serial NS ns0.as9105.net. 8h ; Refresh ; Main webserver 1h ; Retry 4w ; Expire www A 212.74.112.80 1h ) ; Negative MX 10 mail ... it becomes this IN NS ns1.example.net. IN NS ns2.example.net. example.com. 86400 IN SOA ( ... ) IN NS ns1.othernetwork.com. example.com. 86400 IN NS ns0 .example.com. example.com. 86400 IN NS ns0.as9105.net. www.example.com. 86400 IN A 212.74.112.80 www.example.com. 86400 IN MX 10 mail .example.com.

  4. Format of SOA record Format of SOA record (cont) • ns1.example.net • Expiry time – hostname of master nameserver – If the slave is unable to contact the master for this period of time, it will delete its copy of the zone data • abulley.psg.com. • Negative / Minimum – E-mail address of responsible person, with "@" – Old software used this as a minimum value of the changed to dot TTL • Serial number – Now it is used for negative caching: indicates how • Refresh interval long a cache may store the non-existence of a RR – How often Slave checks serial number on Master • RIPE-203 has recommended values • Retry interval – http://www.ripe.net/ripe/docs/dns-soa.html – How often Slave checks serial number if the master did not respond Format of NS records Format of other RRs $TTL 1d • IN A 1.2.3.4 @ 1h IN SOA ns1.example.net. abulley.psg.com. ( • IN MX 10 mailhost.example.com. 2005041900 ; Serial – The number is a "preference value". Mail is 8h ; Refresh delivered to the lowest-number MX first 1h ; Retry 4w ; Expire – Must point to HOSTNAME not IP address 1h ) ; Negative • IN CNAME host.example.com. IN NS ns1.example.net. • IN PTR host.example.com. IN NS ns2.example.net. • IN TXT "any text you like" IN NS ns1.othernetwork.com. • List all authoritative nameservers for the zone - master and slave(s) • Must point to HOSTNAME not IP address When you have added or changed a These checks are ESSENTIAL zone file: • Check the serial number! • If you have an error in named.conf or a zone file, named will continue to run but not • named-checkzone example.com authoritative for the bad zone(s) /var/named/etc/namedb/master/example.com – bind 9 feature • You will be lame for the zone without realising – reports syntax errors; correct them! it • rndc reload • Slaves will not be able to contact the master – or: rndc reload example.com • Eventually (e.g. 4 weeks later) the slaves will • tail /var/log/messages expire the zone • Your domain will stop working

  5. So now you have working authoritative Other checks you can do nameservers! • dig +norec @x.x.x.x example.com. soa • But remember that none of this will work until – Check the AA flag you have delegation from the domain above – Check the master and all the slaves • That is, they put in NS records for your – Check the serial numbers match domain, pointing at your nameservers • dig @x.x.x.x example.com. axfr • You have also put NS records within the zone – "Authority Transfer" file – Requests a full copy of the zone contents over TCP, • The two sets should match as slaves do to master – This will only work from IP addresses listed in the allow-transfer {...} section TOP TEN ERRORS 1. Serial number errors in authoritative nameservers • All operators of auth nameservers should read • Forgot to increment serial number RFC 1912 • Incremented serial number, and then – Common DNS Operational and Configuration Errors decremented it • See also RFC 2182 • Used serial number greater than 2^32 – Selection and Operation of Secondary DNS Servers • Impact: – Slaves do not update – Master and slaves have inconsistent data – Caches will sometimes get the new data and sometimes old - intermittent problem 2. Comments in zone files starting '#' 3. Other syntax errors in zone files instead of ';' • Syntax error in zone file • e.g. omitting the preference value from MX records • Master is no longer authoritative for the zone • Same impact • Slaves cannot check SOA • Slaves eventually expire the zone, and your domain stops working entirely • Use 'named-checkzone' • Use 'tail /var/log/messages'

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend