Building A Linux Ipv6 Dns Server: by David Gordon and Ibrahim Haddad Open Systems Lab - Ericsson Research Corporate Unit
Building A Linux Ipv6 Dns Server: by David Gordon and Ibrahim Haddad Open Systems Lab - Ericsson Research Corporate Unit
Building A Linux Ipv6 Dns Server: by David Gordon and Ibrahim Haddad Open Systems Lab - Ericsson Research Corporate Unit
By David Gordon and Ibrahim Haddad Open Systems Lab Ericsson Research Corporate Unit
This article presents a tutorial on building an IPv6 DNS Linux server that provides IPv6 name resolution as part of an IPv6 network.
Introduction
This article falls within a series of LJ articles on the subject of IPv6 and Linux. The purpose of this series is to provide beginner and intermediate users with IPv6 tutorials that help them experiment with IPv6 and Linux, and to gain knowledge needed to ease the migration process from IPv4 to IPv6. IPv6 is the next generation protocol designed by the Internet Engineering Task Force (IETF) to replace IPv4. IPv4 has been remarkably resilient. However, its initial design did not take into consideration several issues that are of importance today such as a large address space, mobility, security, autoconfiguration, and quality of service. To address these concern, IETF has developed a suite of protocols and standards known as IPv6, which incorporates many of the concepts and proposed methods for updating IPv4. As a result, IPv6 fixes a number of problems in IPv4 and adds many improvements and features to cater for the future (Mobile) Internet. IPv6 is expected to gradually replace IPv4, with the two coexisting for a number of years during a transition period, where servers will be dual stack supporting both IPv4 and IPv6. In this article, we look closely at IPv6 name resolution. The article aims at providing a technical tutorial to help readers setup their own IPv6 Linux DNS server to allow IPv6 name resolution using the latest version of BIND 9.x.
DNS v6 Server
Clients
pc1
pc2
pc3
pc4
pc5-7
Routing server [pc1] acts as an IPv6 software router server and provides router advertisement for all IPv6 nodes. DNS IPv6 server [pc2] provides IPv6 name resolution (the main subject of this article) Application servers: we have two types of application servers: one providing video streaming [pc3] and the other is an Apache based web server [pc4]. (A follow up article Apache talking IPv6 will be published in LJ in a later issue). Client machines [pc5-7] are used for testing purposes.
A6 resource record is formatted as a variable-length data. With A6, it is possible to define an IPv6 address by using multiple DNS records. Here is an example taken from RFC2874:
$ORIGIN X.EXAMPLE. N A6 SUBNET-1.IP6 A6 IP6 A6 IP6 A6 64 48 48 48 ::1234:5678:9ABC:DEF0 SUBNET-1.IP6 0:0:0:1:: IP6 0::0 SUBSCRIBER-X.IP6.A.NET. 0::0 SUBSCRIBER-X.IP6.B.NET.
SUBSCRIBER-X.IP6.A.NET. A6 40 0:0:0011:: A.NET.IP6.C.NET. SUBSCRIBER-X.IP6.A.NET. A6 40 0:0:0011:: A.NET.IP6.D.NET. SUBSCRIBER-X.IP6.B.NET. A6 40 0:0:0022:: B-NET.IP6.E.NET. A.NET.IP6.C.NET. A6 28 0:0001:CA00:: C.NET.ALPHA-TLA.ORG. A.NET.IP6.D.NET. A6 28 0:0002:DA00:: D.NET.ALPHA-TLA.ORG. B-NET.IP6.E.NET. A6 32 0:0:EB00:: E.NET.ALPHA-TLA.ORG. C.NET.ALPHA-TLA.ORG. A6 0 2345:00C0:: D.NET.ALPHA-TLA.ORG. A6 0 2345:00D0:: E.NET.ALPHA-TLA.ORG. A6 0 2345:000E::
Once IPv6 name resolution is configured, we will add Domain Name System (DNSSEC) to our DNS server. DNSSEC provides three distinct services: key distribution, data origin authentication, and transaction and request authentication. The complete definition of DNSSEC is defined in RFC2535.
DNS server receives a query, it first checks to see if it can answer it authoritatively based on the resource record information contained in a locally configured zone on the server. If the queried name matches a corresponding resource record in the local zone information, the server answers authoritatively, using this information to resolve the queried name. For a complete DNS query process, there are four existing DNS zones: 1. Master: The server has the master copy of the zone data and provides authoritative answers for it. 2. Slave: A slave zone is a copy of a master zone. Each slave zone has a list of masters that it may query to receive updates to its copy of the zone. A slave may, optionally, keep a copy of the zone saved on disk to speed startups. A single master server can have any number of slaves in order to distribute load. 3. Stub: A stub zone is much like a slave zone, and behaves similarly, but it only replicates the NS records of a master zone rather than the whole zone. Stub zones keep track of which DNS servers are authoritative for the organization. They directly contact the root DNS server to determine which servers are authoritative for which domain. 4. Forward: A forward zone directs all queries in the zone to other servers. As such, it acts as a caching DNS server for a network, or provides Internet DNS services to a network behind a firewall that limits outside DNS queries (obviously the forwarding DNS server must have DNS access to the internet). Note that this is similar to the global forwarding facility, but allows per-zone selection of forwarders. To map this to our network (Figure 1), we need to create a master server for our own domain, secv6.your.domain. Listing 1 provides a sample /etc/named.conf configuration:
options { directory "/var/named"; // a zone type file }; caching only nameserver config "." IN { hint; "named.ca";
// this defines the loopback name lookup zone "localhost" IN { type master; file "master/localhost.zone"; allow-update { none; }; }; // this defines the loopback reverse name lookup zone "0.0.127.in-addr.arpa" IN { type master; file "master/localhost.rev"; allow-update { none; }; }; // This defines the secv6 domain name lookup // Secure (signed) zone file is secv6.your.domain.signed // Regular zone file is secv6.your.domain zone "secv6.your.domain" IN { type master; file "master/secv6.your.domain.signed"; // file "master/secv6.your.domain"; }; // this defines the secv6 domain reverse name lookup (AAAA) zone "secv6.int" IN { type master; file "master/secv6.int"; }; // this defines the secv6 domain reverse name lookup (A6)
zone "secv6.arpa" IN { type master; file "master/secv6.rev"; }; key "key" { algorithm hmac-md5; secret "HxbmAnSO0KtTgBWWXPRyOGayhbBaSntquVxcxBDjmAmjrmhgDUVFcFNcfmHC"; };
Listing 1: /etc/named.conf The next step is to define the configuration files that will describe our domain. Notice that until now we have not touched on the specifics of IPv6. As for DNSSEC, the file /var/named/master/secv6.your.domain.signed will be the domain file signed by the zone key of the DNS server. This is important to DNSSEC, since clients will be able to authenticate all subsequent DNS requests. The DNS server zone key is different from the key in the configuration file and the details on how to generate a zone key will be discussed later in the article. The next file to edit is /var/named/master/secv6.your.domain. The following example (Listing 2) uses both AAAA and A6 formats. The $INCLUDE directive at the end includes the public portion of the zone key. Keep the private portion of the key private! The private key has private appended at the end, whereas key postfixes the public key. If you have any concerns regarding DNSSEC keys and their permissions, consult the BIND manual. In Listing 2, we display a typical IPv6 DNS domain configuration for secv6.your.domain:
$TTL 86400 $ORIGIN secv6.your.domain. @ IN SOA secv6.your.domain. hostmaster.secv6.your.domain. ( 2002011442 ; Serial number (yyyymmdd-num) 3H ; Refresh 15M ; Retry 1W ; Expire 1D ) ; Minimun IN MX 10 noah.your.domain. IN NS ns.secv6.your.domain. $ORIGIN secv6.your.domain. ns 1D IN AAAA fec0::1:250:b7ff:fe14:35d0 1D IN A6 0 fec0::1:250:b7ff:fe14:35d0 secv6.your.domain. 1D IN AAAA fec0::1:250:b7ff:fe14:35d0 1D IN A6 0 fec0::1:250:b7ff:fe14:35d0 pc2 1D IN AAAA fec0::1:250:b7ff:fe14:35d0 1D IN A6 0 fec0::1:250:b7ff:fe14:35d0 pc3 1D IN A6 0 fec0::1:250:b9ff:fe00:131 1D IN AAAA fec0::1:250:b9ff:fe00:131 pc6 1D IN A6 0 fec0::1:250:b7ff:fe14:3617 1D IN AAAA fec0::1:250:b7ff:fe14:3617 pc4 1D IN A6 0 fec0::1:250:b7ff:fe14:35c4 1D IN AAAA fec0::1:250:b7ff:fe14:35c4 pc5 1D IN A6 0 fec0::1:250:b7ff:fe14:361b 1D IN AAAA fec0::1:250:b7ff:fe14:361b pc7 1D IN A6 0 fec0::1:250:b7ff:fe14:365a 1D IN AAAA fec0::1:250:b7ff:fe14:365a pc1 1D IN A6 0 fec0::1:250:b9ff:fe00:12e 1D IN AAAA fec0::1:250:b9ff:fe00:12e pc1 1D IN A6 0 fec0:0:0:1::1 1D IN AAAA fec0:0:0:1::1 $INCLUDE "/var/named/master/Ksecv6.your.domain.+003+27034.key"
Listing 2: /var/named/master/secv6.your.domain For configuration files in /var/named/master, Hostmaster is actually the email of the administrator where the first dot replaces @ because of syntax restrictions. In addition, the first number for IN SOA structure at the beginning of Listing 2 is the serial number conventionally expressed as YYYYMMDDNN where NN is a number incremented each time the DNS zone is updated. Now, we will examine how to generate a zone key. The working directory is important since the keys will be placed there. We suggest placing the keys in /var/named/master. The following command will generate a 768 bit DSA key for the zone:
% dnssec-keygen -a DSA -b 768 -n ZONE secv6.your.domain By default, all zone keys, which have an available private key, are used to generate signatures. The keys must be either in the working directory or included in the zone file. The following command signs the secv6.your.domain zone, assuming it is in a file called /var/named/master/secv6.your.domain: % dnssec-signzone -o secv6.your.domain secv6.your.domain One output file is produced: /var/named/master/secv6.your.domain.signed. This file should be referenced by /etc/named.conf as the input file for the zone. The remaining configuration files are localhost.zone (Listing 3), localhost.rev (Listing 4), secv6.rev (Listing 5), and secv6.int (Listing 6) are presented each in their respective listing. The difference between reverse lookup zone files secv6.rev and secv6.int is that one can be specified using A6 strings (that do not need to be reversed in secv6.rev) and the other with reverse AAAA format addresses in secv6.int. For instance, ping6 can only refer to secv6.int domain because it does not support A6 format.
// localhost.zone Allows for local communications using the loopback interface $TTL 86400 $ORIGIN localhost. @ 1D IN SOA @ root ( 42 ; serial (d. adams) 3H ; refresh 15M ; retry 1W ; expiry 1D ) ; minimum 1D IN NS @ 1D IN A 127.0.0.1
Listing 3: /var/named/master/localhost.zone
// localhost.rev
$TTL 86400 $ORIGIN 0.0.127.in-addr.arpa. @ IN SOA 0.0.127.in-addr.arpa. hostmaster.secv6.your.domain. ( 42 ; Serial number (d. adams) 3H ; Refresh 15M ; Retry 1W ; Expire 1D ) ; Minimun NS ns.secv6.your.domain. MX 10 noah.ip6.your.domain. PTR localhost.
Listing 4: /var/named/master/localhost.rev
// secv6.rev Defines reverse lookup for secv6 domain in A6 format $TTL 86400 $ORIGIN secv6.arpa. @ IN SOA secv6.arpa. hostmaster.secv6.your.domain. ( 2002011442 ; Serial number (yyyymmdd-num) 3H ; Refresh 15M ; Retry
1W ; Expire 1D ) ; Minimun NS ns.secv6.your.domain. MX 10 noah.your.domain. ; fec0:0:0:1::/64 $ORIGIN \[xfec0000000000001/64].secv6.arpa. \[x0250b7fffe1435d0/64] 1D IN PTR pc2.secv6.your.domain. \[x0250b9fffe000131/64] 1D IN PTR pc3.secv6.your.domain. \[x0250b7fffe143617/64] 1D IN PTR pc6.secv6.your.domain. \[x0250b7fffe1435c4/64] 1D IN PTR pc4.secv6.your.domain. \[x0250b7fffe14361b/64] 1D IN PTR pc5.secv6.your.domain. \[x0250b7fffe14365a/64] 1D IN PTR pc7.secv6.your.domain. \[x0250b9fffe00012e/64] 1D IN PTR pc1.secv6.your.domain.
Listing 5: /var/named/master/secv6.rev
// secv6.int Defines reverse lookup for secv6 domain in AAAA format $TTL 86400 $ORIGIN secv6.int. @ IN SOA secv6.int. hostmaster.secv6.your.domain. ( 2002011442 ; Serial number (yyyymmdd-num) 3H ; Refresh 15M ; Retry 1W ; Expire 1D ) ; Minimun NS ns.secv6.your.domain. MX 10 noah.your.domain. ; fec0:0:0:1::/64 $ORIGIN 1.0.0.0.0.0.0.0.0.0.0.0.0.c.e.f.secv6.int. 0.d.5.3.4.1.e.f.f.f.7.b.0.5.2.0 IN PTR pc2.secv6.your.domain. e.2.1.0.0.0.e.f.f.f.9.b.0.5.2.0 IN PTR pc1.secv6.your.domain. 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 IN PTR pc1.secv6.your.domain. 1.3.1.0.0.0.e.f.f.f.9.b.0.5.2.0 IN PTR pc3.secv6.your.domain. 7.1.6.3.4.1.e.f.f.f.7.b.0.5.2.0 IN PTR pc6.secv6.your.domain. 4.c.5.3.4.1.e.f.f.f.7.b.0.5.2.0 IN PTR pc4.secv6.your.domain. b.1.6.3.4.1.e.f.f.f.7.b.0.5.2.0 IN PTR pc5.secv6.your.domain. a.5.6.3.4.1.e.f.f.f.7.b.0.5.2.0 IN PTR pc7.secv6.your.domain.
Listing 6: /var/named/master/secv6.int
# To enable secv6 domain, start named on pc2 # and use this file as /etc/resolv.conf search secv6.your.domain nameserver fec0::1:250:b7ff:fe14:35d0 Listing 7: /etc/resolv.conf on client machines
Example 2: AAAA DNS query We also include samples of an SSH session connection first using an IPv6 address (Example 3) and then using an IPv6 hostname (Example 4):
pc3% ssh -6 fec0::1:250:b7ff:fe14:35c4 user@fec0::1:250:b7ff:fe14:35c4's password: Last login: Fri Nov 8 13:39:17 2002 from pc3.secv6.your.domain pc4%
pc3% ssh -6 pc4.secv6.your.domain user@pc4.secv6.your.domain 's password: Last login: Fri Nov 8 13:30:55 2002 from somewhere pc4%
The video is properly displayed using X11 output on Linux X server; we illustrate a caption of it in Figure 2.
Conclusion
IPv6 is becoming a reality. For the next few years, we need to be able to support both IPv4 and IPv6 on our servers before the complete transition to IPv6 occurs. We need different pieces of the puzzle to achieve a full migration to IPv6 and one essential piece is an IPv6 compliant BIND implementation. We hope you find this article useful and educational and we look forward to present more articles on the subject of IPv6 and Linux.
References
Linux Kernel IPv6 How-to BIND BIND Manual Supporting IPv6 on a Linux Server Node IPv6 Linux Implementations IP Version 6 Addressing Architecture DNSSEC and IPv6 A6 DNSSEC Signing Authority Comparison of AAAA and A6 IPv6 support for DNS http://www.kernel.org http://www.bieringer.de/linux/IPv6/IPv6-HOWTO/IPv6-HOWTO.html http://www.isc.org/products/BIND/BIND9.html http://www.crt.se/dnssec/bind9/Bv9ARM.html http://www.linuxjournal.com/article.php?sid=4763 http://www.linuxjournal.com/article.php?sid=5468 http://www.rfc-editor.org/rfc/rfc2373.txt ftp://ftp.rfc-editor.org/in-notes/rfc3226.txt ftp://ftp.rfc-editor.org/in-notes/rfc3008.txt http://www.ietf.org/proceedings/02mar/I-D/draft-ietf-dnsext-aaaa-a6-01.txt http://www.ietf.org/rfc/rfc2874.txt
DNSSEC
http://www.ietf.org/rfc/rfc2535.txt
Acknowledgements
Ericsson Research Corporate Unit for approving the publication of this article and the Open Systems Lab for supporting our work with Linux and IPv6. Simon Jubinville, Open Systems Lab, for his reviews.