1 <!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
2 "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" []>
4 - Copyright (C) 2004-2009 Internet Systems Consortium, Inc. ("ISC")
5 - Copyright (C) 2000-2003 Internet Software Consortium.
7 - Permission to use, copy, modify, and/or distribute this software for any
8 - purpose with or without fee is hereby granted, provided that the above
9 - copyright notice and this permission notice appear in all copies.
11 - THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
12 - REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
13 - AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
14 - INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
15 - LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
16 - OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
17 - PERFORMANCE OF THIS SOFTWARE.
20 <!-- Id: FAQ.xml,v 1.52 2009/11/03 14:02:20 marka Exp -->
23 <title>Frequently Asked Questions about BIND 9</title>
32 <holder>Internet Systems Consortium, Inc. ("ISC")</holder>
39 <holder>Internet Software Consortium.</holder>
42 <qandaset defaultlabel='qanda'>
44 <qandadiv><title>Compilation and Installation Questions</title>
49 I'm trying to compile BIND 9, and "make" is failing due to
50 files not being found. Why?
55 Using a parallel or distributed "make" to build BIND 9 is
56 not supported, and doesn't work. If you are using one of
57 these, use normal make or gmake instead.
65 Isn't "make install" supposed to generate a default named.conf?
73 Long Answer: There really isn't a default configuration which fits
74 any site perfectly. There are lots of decisions that need to
75 be made and there is no consensus on what the defaults should be.
76 For example FreeBSD uses /etc/namedb as the location where the
77 configuration files for named are stored. Others use /var/named.
80 What addresses to listen on? For a laptop on the move a lot
81 you may only want to listen on the loop back interfaces.
84 Who do you offer recursive service to? Is there are firewall
85 to consider? If so is it stateless or stateful. Are you
86 directly on the Internet? Are you on a private network? Are
87 you on a NAT'd network? The answers
88 to all these questions change how you configure even a
94 </qandadiv> <!-- Compilation and Installation Questions -->
96 <qandadiv><title>Configuration and Setup Questions</title>
99 <!-- configuration, log -->
102 Why does named log the warning message <quote>no TTL specified -
103 using SOA MINTTL instead</quote>?
108 Your zone file is illegal according to RFC1035. It must either
113 $TTL 86400</programlisting>
116 at the beginning, or the first record in it must have a TTL field,
117 like the "84600" in this example:
121 example.com. 86400 IN SOA ns hostmaster ( 1 3600 1800 1814400 3600 )</programlisting>
127 <!-- configuration -->
130 Why do I get errors like <quote>dns_zone_load: zone foo/IN: loading
131 master file bar: ran out of space</quote>?
136 This is often caused by TXT records with missing close
137 quotes. Check that all TXT records containing quoted strings
138 have both open and close quotes.
147 How do I restrict people from looking up the server version?
152 Put a "version" option containing something other than the
153 real version in the "options" section of named.conf. Note
154 doing this will not prevent attacks and may impede people
155 trying to diagnose problems with your server. Also it is
156 possible to "fingerprint" nameservers to determine their
166 How do I restrict only remote users from looking up the
172 The following view statement will intercept lookups as the
173 internal view that holds the version information will be
174 matched last. The caveats of the previous answer still
180 match-clients { <those to be refused>; };
181 allow-query { none; };
184 file "/dev/null"; // or any empty file
192 <!-- configuration -->
195 What do <quote>no source of entropy found</quote> or <quote>could not
196 open entropy source foo</quote> mean?
201 The server requires a source of entropy to perform certain
202 operations, mostly DNSSEC related. These messages indicate
203 that you have no source of entropy. On systems with
204 /dev/random or an equivalent, it is used by default. A
205 source of entropy can also be defined using the random-device
206 option in named.conf.
212 <!-- configuration -->
215 I'm trying to use TSIG to authenticate dynamic updates or
216 zone transfers. I'm sure I have the keys set up correctly,
217 but the server is rejecting the TSIG. Why?
222 This may be a clock skew problem. Check that the the clocks
223 on the client and server are properly synchronised (e.g.,
232 I see a log message like the following. Why?
235 couldn't open pid file '/var/run/named.pid': Permission denied
240 You are most likely running named as a non-root user, and
241 that user does not have permission to write in /var/run.
242 The common ways of fixing this are to create a /var/run/named
243 directory owned by the named user and set pid-file to
244 "/var/run/named/named.pid", or set pid-file to "named.pid",
245 which will put the file in the directory specified by the
246 directory option (which, in this case, must be writable by
255 I can query the nameserver from the nameserver but not from other
261 This is usually the result of the firewall configuration stopping
262 the queries and / or the replies.
270 How can I make a server a slave for both an internal and
271 an external view at the same time? When I tried, both views
272 on the slave were transferred from the same view on the master.
277 You will need to give the master and slave multiple IP
278 addresses and use those to make sure you reach the correct
279 view on the other machine.
283 Master: 10.0.1.1 (internal), 10.0.1.2 (external, IP alias)
285 match-clients { !10.0.1.2; !10.0.1.4; 10.0.1/24; };
286 notify-source 10.0.1.1;
287 transfer-source 10.0.1.1;
288 query-source address 10.0.1.1;
290 match-clients { any; };
291 recursion no; // don't offer recursion to the world
292 notify-source 10.0.1.2;
293 transfer-source 10.0.1.2;
294 query-source address 10.0.1.2;
296 Slave: 10.0.1.3 (internal), 10.0.1.4 (external, IP alias)
298 match-clients { !10.0.1.2; !10.0.1.4; 10.0.1/24; };
299 notify-source 10.0.1.3;
300 transfer-source 10.0.1.3;
301 query-source address 10.0.1.3;
303 match-clients { any; };
304 recursion no; // don't offer recursion to the world
305 notify-source 10.0.1.4;
306 transfer-source 10.0.1.4;
307 query-source address 10.0.1.4;</programlisting>
310 You put the external address on the alias so that all the other
311 dns clients on these boxes see the internal view by default.
316 BIND 9.3 and later: Use TSIG to select the appropriate view.
322 algorithm hmac-sha256;
323 secret "xxxxxxxxxxxxxxxxxxxxxxxx";
326 match-clients { !key external; // reject message ment for the
328 10.0.1/24; }; // accept from these addresses.
332 match-clients { key external; any; };
333 server 10.0.1.2 { keys external; }; // tag messages from the
334 // external view to the
335 // other servers for the
343 algorithm hmac-sha256;
344 secret "xxxxxxxxxxxxxxxxxxxxxxxx";
347 match-clients { !key external; 10.0.1/24; };
351 match-clients { key external; any; };
352 server 10.0.1.1 { keys external; };
363 I get error messages like <quote>multiple RRs of singleton type</quote>
364 and <quote>CNAME and other data</quote> when transferring a zone. What
370 These indicate a malformed master zone. You can identify
371 the exact records involved by transferring the zone using
372 dig then running named-checkzone on it.
376 dig axfr example.com @master-server > tmp
377 named-checkzone example.com tmp</programlisting>
380 A CNAME record cannot exist with the same name as another record
381 except for the DNSSEC records which prove its existence (NSEC).
384 RFC 1034, Section 3.6.2: <quote>If a CNAME RR is present at a node,
385 no other data should be present; this ensures that the data for a
386 canonical name and its aliases cannot be different. This rule also
387 insures that a cached CNAME can be used without checking with an
388 authoritative server for other RR types.</quote>
396 I get error messages like <quote>named.conf:99: unexpected end
397 of input</quote> where 99 is the last line of named.conf.
402 There are unbalanced quotes in named.conf.
407 Some text editors (notepad and wordpad) fail to put a line
408 title indication (e.g. CR/LF) on the last line of a
409 text file. This can be fixed by "adding" a blank line to
410 the end of the file. Named expects to see EOF immediately
411 after EOL and treats text files where this is not met as
420 How do I share a dynamic zone between multiple views?
425 You choose one view to be master and the second a slave and
426 transfer the zone between views.
432 algorithm hmac-sha256;
433 secret "xxxxxxxxxxxxxxxxxxxxxxxx";
437 algorithm hmac-sha256;
438 secret "yyyyyyyyyyyyyyyyyyyyyyyy";
442 match-clients { !key external; 10.0.1/24; };
444 /* Deliver notify messages to external view. */
449 file "internal/example.db";
450 allow-update { key mykey; };
451 also-notify { 10.0.1.1; };
456 match-clients { key external; any; };
459 file "external/example.db";
460 masters { 10.0.1.1; };
461 transfer-source 10.0.1.1;
462 // allow-update-forwarding { any; };
463 // allow-notify { ... };
473 I get a error message like <quote>zone wireless.ietf56.ietf.org/IN:
474 loading master file primaries/wireless.ietf56.ietf.org: no
480 This error is produced when a line in the master file
481 contains leading white space (tab/space) but the is no
482 current record owner name to inherit the name from. Usually
483 this is the result of putting white space before a comment,
484 forgetting the "@" for the SOA record, or indenting the master
493 Why are my logs in GMT (UTC).
498 You are running chrooted (-t) and have not supplied local timezone
499 information in the chroot area.
502 <member>FreeBSD: /etc/localtime</member>
503 <member>Solaris: /etc/TIMEZONE and /usr/share/lib/zoneinfo</member>
504 <member>OSF: /etc/zoneinfo/localtime</member>
507 See also tzset(3) and zic(8).
515 I get <quote>rndc: connect failed: connection refused</quote> when
521 This is usually a configuration error.
524 First ensure that named is running and no errors are being
525 reported at startup (/var/log/messages or equivalent).
526 Running "named -g <usual arguments>" from a title
527 can help at this point.
530 Secondly ensure that named is configured to use rndc either
531 by "rndc-confgen -a", rndc-confgen or manually. The
532 Administrators Reference manual has details on how to do
536 Old versions of rndc-confgen used localhost rather than
537 127.0.0.1 in /etc/rndc.conf for the default server. Update
538 /etc/rndc.conf if necessary so that the default server
539 listed in /etc/rndc.conf matches the addresses used in
540 named.conf. "localhost" has two address (127.0.0.1 and
544 If you use "rndc-confgen -a" and named is running with -t or -u
545 ensure that /etc/rndc.conf has the correct ownership and that
546 a copy is in the chroot area. You can do this by re-running
547 "rndc-confgen -a" with appropriate -t and -u arguments.
555 I get <quote>transfer of 'example.net/IN' from 192.168.4.12#53:
556 failed while receiving responses: permission denied</quote> error
562 These indicate a filesystem permission error preventing
563 named creating / renaming the temporary file. These will
564 usually also have other associated error messages like
568 "dumping master file: sl/tmp-XXXX5il3sQ: open: permission denied"</programlisting>
571 Named needs write permission on the directory containing
572 the file. Named writes the new cache file to a temporary
573 file then renames it to the name specified in named.conf
574 to ensure that the contents are always complete. This is
575 to prevent named loading a partial zone in the event of
576 power failure or similar interrupting the write of the
580 Note file names are relative to the directory specified in
581 options and any chroot directory ([<chroot
582 dir>/][<options dir>]).
586 If named is invoked as "named -t /chroot/DNS" with
587 the following named.conf then "/chroot/DNS/var/named/sl"
588 needs to be writable by the user named is running as.
592 directory "/var/named";
597 file "sl/example.net";
598 masters { 192.168.4.12; };
607 I want to forward all DNS queries from my caching nameserver to
608 another server. But there are some domains which have to be
609 served locally, via rbldnsd.
612 How do I achieve this ?
619 forwarders { <ip.of.primary.nameserver>; };
622 zone "sbl-xbl.spamhaus.org" {
623 type forward; forward only;
624 forwarders { <ip.of.rbldns.server> port 530; };
627 zone "list.dsbl.org" {
628 type forward; forward only;
629 forwarders { <ip.of.rbldns.server> port 530; };
638 Can you help me understand how BIND 9 uses memory to store
642 Some times it seems to take several times the amount of
643 memory it needs to store the zone.
648 When reloading a zone named my have multiple copies of
649 the zone in memory at one time. The zone it is serving
650 and the one it is loading. If reloads are ultra fast it
654 e.g. Ones that are transferring out, the one that it is
655 serving and the one that is loading.
658 BIND 8 destroyed the zone before loading and also killed
659 off outgoing transfers of the zone.
662 The new strategy allows slaves to get copies of the new
663 zone regardless of how often the master is loaded compared
664 to the transfer time. The slave might skip some intermediate
665 versions but the transfers will complete and it will keep
666 reasonably in sync with the master.
669 The new strategy also allows the master to recover from
670 syntax and other errors in the master file as it still
671 has an in-core copy of the old contents.
679 I want to use IPv6 locally but I don't have a external IPv6
680 connection. External lookups are slow.
685 You can use server clauses to stop named making external lookups
689 server fd81:ec6c:bd62::/48 { bogus no; }; // site ULA prefix
690 server ::/0 { bogus yes; };
695 </qandadiv> <!-- Configuration and Setup Questions -->
697 <qandadiv><title>Operations Questions</title>
702 How to change the nameservers for a zone?
707 Step 1: Ensure all nameservers, new and old, are serving the
711 Step 2: Work out the maximum TTL of the NS RRset in the parent and child
712 zones. This is the time it will take caches to be clear of a
713 particular version of the NS RRset.
714 If you are just removing nameservers you can skip to Step 6.
717 Step 3: Add new nameservers to the NS RRset for the zone and
718 wait until all the servers for the zone are answering with this
722 Step 4: Inform the parent zone of the new NS RRset then wait for all the
723 parent servers to be answering with the new NS RRset.
726 Step 5: Wait for cache to be clear of the old NS RRset.
727 See Step 2 for how long.
728 If you are just adding nameservers you are done.
731 Step 6: Remove any old nameservers from the zones NS RRset and
732 wait for all the servers for the zone to be serving the new NS RRset.
735 Step 7: Inform the parent zone of the new NS RRset then wait for all the
736 parent servers to be answering with the new NS RRset.
739 Step 8: Wait for cache to be clear of the old NS RRset.
740 See Step 2 for how long.
743 Step 9: Turn off the old nameservers or remove the zone entry from
744 the configuration of the old nameservers.
747 Step 10: Increment the serial number and wait for the change to
748 be visible in all nameservers for the zone. This ensures that
749 zone transfers are still working after the old servers are
753 Note: the above procedure is designed to be transparent
754 to dns clients. Decommissioning the old servers too early
755 will result in some clients not being able to look up
759 Note: while it is possible to run the addition and removal
760 stages together it is not recommended.
765 </qandadiv> <!-- Operations Questions -->
767 <qandadiv><title>General Questions</title>
772 I keep getting log messages like the following. Why?
775 Dec 4 23:47:59 client 10.0.0.1#1355: updating zone
776 'example.com/IN': update failed: 'RRset exists (value
777 dependent)' prerequisite not satisfied (NXRRSET)
782 DNS updates allow the update request to test to see if
783 certain conditions are met prior to proceeding with the
784 update. The message above is saying that conditions were
785 not met and the update is not proceeding. See doc/rfc/rfc2136.txt
786 for more details on prerequisites.
794 I keep getting log messages like the following. Why?
797 Jun 21 12:00:00.000 client 10.0.0.1#1234: update denied
802 Someone is trying to update your DNS data using the RFC2136
803 Dynamic Update protocol. Windows 2000 machines have a habit
804 of sending dynamic update requests to DNS servers without
805 being specifically configured to do so. If the update
806 requests are coming from a Windows 2000 machine, see
808 url="http://support.microsoft.com/support/kb/articles/q246/8/04.asp">
809 <http://support.microsoft.com/support/kb/articles/q246/8/04.asp></ulink>
810 for information about how to turn them off.
818 When I do a "dig . ns", many of the A records for the root
819 servers are missing. Why?
824 This is normal and harmless. It is a somewhat confusing
825 side effect of the way BIND 9 does RFC2181 trust ranking
826 and of the efforts BIND 9 makes to avoid promoting glue
830 When BIND 9 first starts up and primes its cache, it receives
831 the root server addresses as additional data in an authoritative
832 response from a root server, and these records are eligible
833 for inclusion as additional data in responses. Subsequently
834 it receives a subset of the root server addresses as
835 additional data in a non-authoritative (referral) response
836 from a root server. This causes the addresses to now be
837 considered non-authoritative (glue) data, which is not
838 eligible for inclusion in responses.
841 The server does have a complete set of root server addresses
842 cached at all times, it just may not include all of them
843 as additional data, depending on whether they were last
844 received as answers or as glue. You can always look up the
845 addresses with explicit queries like "dig a.root-servers.net A".
853 Why don't my zones reload when I do an "rndc reload" or SIGHUP?
858 A zone can be updated either by editing zone files and
859 reloading the server or by dynamic update, but not both.
860 If you have enabled dynamic update for a zone using the
861 "allow-update" option, you are not supposed to edit the
862 zone file by hand, and the server will not attempt to reload
871 Why is named listening on UDP port other than 53?
876 Named uses a system selected port to make queries of other
877 nameservers. This behaviour can be overridden by using
878 query-source to lock down the port and/or address. See
879 also notify-source and transfer-source.
887 I get warning messages like <quote>zone example.com/IN: refresh:
888 failure trying master 1.2.3.4#53: timed out</quote>.
893 Check that you can make UDP queries from the slave to the master
897 dig +norec example.com soa @1.2.3.4</programlisting>
900 You could be generating queries faster than the slave can
901 cope with. Lower the serial query rate.
905 serial-query-rate 5; // default 20</programlisting>
913 I don't get RRSIG's returned when I use "dig +dnssec".
918 You need to ensure DNSSEC is enabled (dnssec-enable yes;).
926 Can a NS record refer to a CNAME.
931 No. The rules for glue (copies of the *address* records
932 in the parent zones) and additional section processing do
933 not allow it to work.
936 You would have to add both the CNAME and address records
937 (A/AAAA) as glue to the parent zone and have CNAMEs be
938 followed when doing additional section processing to make
939 it work. No nameserver implementation supports either of
948 What does <quote>RFC 1918 response from Internet for
949 0.0.0.10.IN-ADDR.ARPA</quote> mean?
954 If the IN-ADDR.ARPA name covered refers to a internal address
955 space you are using then you have failed to follow RFC 1918
956 usage rules and are leaking queries to the Internet. You
957 should establish your own zones for these addresses to prevent
958 you querying the Internet's name servers for these addresses.
959 Please see <ulink url="http://as112.net/"><http://as112.net/></ulink>
960 for details of the problems you are causing and the counter
961 measures that have had to be deployed.
964 If you are not using these private addresses then a client
965 has queried for them. You can just ignore the messages,
966 get the offending client to stop sending you these messages
967 as they are most probably leaking them or setup your own zones
968 empty zones to serve answers to these queries.
972 zone "10.IN-ADDR.ARPA" {
977 zone "16.172.IN-ADDR.ARPA" {
984 zone "31.172.IN-ADDR.ARPA" {
989 zone "168.192.IN-ADDR.ARPA" {
995 @ 10800 IN SOA <name-of-server>. <contact-email>. (
996 1 3600 1200 604800 10800 )
997 @ 10800 IN NS <name-of-server>.</programlisting>
1001 Future versions of named are likely to do this automatically.
1010 Will named be affected by the 2007 changes to daylight savings
1016 No, so long as the machines internal clock (as reported
1017 by "date -u") remains at UTC. The only visible change
1018 if you fail to upgrade your OS, if you are in a affected
1019 area, will be that log messages will be a hour out during
1020 the period where the old rules do not match the new rules.
1023 For most OS's this change just means that you need to
1024 update the conversion rules from UTC to local time.
1025 Normally this involves updating a file in /etc (which
1026 sets the default timezone for the machine) and possibly
1027 a directory which has all the conversion rules for the
1028 world (e.g. /usr/share/zoneinfo). When updating the OS
1029 do not forget to update any chroot areas as well.
1030 See your OS's documentation for more details.
1033 The local timezone conversion rules can also be done on
1034 a individual basis by setting the TZ environment variable
1035 appropriately. See your OS's documentation for more
1044 Is there a bugzilla (or other tool) database that mere
1045 mortals can have (read-only) access to for bind?
1050 No. The BIND 9 bug database is kept closed for a number
1051 of reasons. These include, but are not limited to, that
1052 the database contains proprietory information from people
1053 reporting bugs. The database has in the past and may in
1054 future contain unfixed bugs which are capable of bringing
1055 down most of the Internet's DNS infrastructure.
1058 The release pages for each version contain up to date
1059 lists of bugs that have been fixed post release. That
1060 is as close as we can get to providing a bug database.
1068 Why do queries for NSEC3 records fail to return the NSEC3 record?
1073 NSEC3 records are strictly meta data and can only be
1074 returned in the authority section. This is done so that
1075 signing the zone using NSEC3 records does not bring names
1076 into existence that do not exist in the unsigned version
1082 </qandadiv> <!-- General Questions -->
1084 <qandadiv><title>Operating-System Specific Questions</title>
1086 <qandadiv><title>HPUX</title>
1090 <para>I get the following error trying to configure BIND:
1091 <programlisting>checking if unistd.h or sys/types.h defines fd_set... no
1092 configure: error: need either working unistd.h or sys/select.h</programlisting>
1097 You have attempted to configure BIND with the bundled C compiler.
1098 This compiler does not meet the minimum compiler requirements to
1099 for building BIND. You need to install a ANSI C compiler and / or
1100 teach configure how to find the ANSI C compiler. The later can
1101 be done by adjusting the PATH environment variable and / or
1102 specifying the compiler via CC.
1105 <programlisting>./configure CC=<compiler> ...</programlisting>
1110 </qandadiv> <!-- HPUX -->
1112 <qandadiv><title>Linux</title>
1117 Why do I get the following errors:
1118 <programlisting>general: errno2result.c:109: unexpected error:
1119 general: unable to convert errno to isc_result: 14: Bad address
1120 client: UDP client handler shutting down due to fatal receive error: unexpected error</programlisting>
1125 This is the result of a Linux kernel bug.
1129 <ulink url="http://marc.theaimsgroup.com/?l=linux-netdev&m=113081708031466&w=2"><http://marc.theaimsgroup.com/?l=linux-netdev&m=113081708031466&w=2></ulink>
1137 Why does named lock up when it attempts to connect over IPSEC tunnels?
1142 This is due to a kernel bug where the fact that a socket is marked
1143 non-blocking is ignored. It is reported that setting
1144 xfrm_larval_drop to 1 helps but this may have negative side effects.
1146 <ulink url="https://bugzilla.redhat.com/show_bug.cgi?id=427629"><https://bugzilla.redhat.com/show_bug.cgi?id=427629></ulink>
1148 <ulink url="http://lkml.org/lkml/2007/12/4/260"><http://lkml.org/lkml/2007/12/4/260></ulink>.
1151 xfrm_larval_drop can be set to 1 by the following procedure:
1153 echo "1" > proc/sys/net/core/xfrm_larval_drop</programlisting>
1161 Why do I see 5 (or more) copies of named on Linux?
1166 Linux threads each show up as a process under ps. The
1167 approximate number of threads running is n+4, where n is
1168 the number of CPUs. Note that the amount of memory used
1169 is not cumulative; if each process is using 10M of memory,
1170 only a total of 10M is used.
1173 Newer versions of Linux's ps command hide the individual threads
1174 and require -L to display them.
1182 Why does BIND 9 log <quote>permission denied</quote> errors accessing
1183 its configuration files or zones on my Linux system even
1184 though it is running as root?
1189 On Linux, BIND 9 drops most of its root privileges on
1190 startup. This including the privilege to open files owned
1191 by other users. Therefore, if the server is running as
1192 root, the configuration files and zone files should also
1201 I get the error message <quote>named: capset failed: Operation
1202 not permitted</quote> when starting named.
1207 The capability module, part of "Linux Security Modules/LSM",
1208 has not been loaded into the kernel. See insmod(8), modprobe(8).
1211 The relevant modules can be loaded by running:
1214 modprobe capability</programlisting>
1222 I'm running BIND on Red Hat Enterprise Linux or Fedora Core -
1225 Why can't named update slave zone database files?
1228 Why can't named create DDNS journal files or update
1229 the master zones from journals?
1232 Why can't named create custom log files?
1238 Red Hat Security Enhanced Linux (SELinux) policy security
1243 Red Hat have adopted the National Security Agency's
1244 SELinux security policy (see <ulink
1245 url="http://www.nsa.gov/selinux"><http://www.nsa.gov/selinux></ulink>)
1246 and recommendations for BIND security , which are more
1247 secure than running named in a chroot and make use of
1248 the bind-chroot environment unnecessary .
1252 By default, named is not allowed by the SELinux policy
1253 to write, create or delete any files EXCEPT in these
1257 $ROOTDIR/var/named/slaves
1258 $ROOTDIR/var/named/data
1262 where $ROOTDIR may be set in /etc/sysconfig/named if
1263 bind-chroot is installed.
1267 The SELinux policy particularly does NOT allow named to modify
1268 the $ROOTDIR/var/named directory, the default location for master
1269 zone database files.
1273 SELinux policy overrules file access permissions - so
1274 even if all the files under /var/named have ownership
1275 named:named and mode rw-rw-r--, named will still not be
1276 able to write or create files except in the directories
1277 above, with SELinux in Enforcing mode.
1281 So, to allow named to update slave or DDNS zone files,
1282 it is best to locate them in $ROOTDIR/var/named/slaves,
1283 with named.conf zone statements such as:
1286 zone "slave.zone." IN {
1288 file "slaves/slave.zone.db";
1291 zone "ddns.zone." IN {
1293 allow-updates {...};
1294 file "slaves/ddns.zone.db";
1301 To allow named to create its cache dump and statistics
1302 files, for example, you could use named.conf options
1308 dump-file "/var/named/data/cache_dump.db";
1309 statistics-file "/var/named/data/named_stats.txt";
1317 You can also tell SELinux to allow named to update any
1318 zone database files, by setting the SELinux tunable boolean
1319 parameter 'named_write_master_zones=1', using the
1320 system-config-securitylevel GUI, using the 'setsebool'
1321 command, or in /etc/selinux/targeted/booleans.
1325 You can disable SELinux protection for named entirely by
1326 setting the 'named_disable_trans=1' SELinux tunable boolean
1331 The SELinux named policy defines these SELinux contexts for named:
1334 named_zone_t : for zone database files - $ROOTDIR/var/named/*
1335 named_conf_t : for named configuration files - $ROOTDIR/etc/{named,rndc}.*
1336 named_cache_t: for files modifiable by named - $ROOTDIR/var/{tmp,named/{slaves,data}}
1342 If you want to retain use of the SELinux policy for named,
1343 and put named files in different locations, you can do
1344 so by changing the context of the custom file locations
1349 To create a custom configuration file location, e.g.
1350 '/root/named.conf', to use with the 'named -c' option,
1354 # chcon system_u:object_r:named_conf_t /root/named.conf
1360 To create a custom modifiable named data location, e.g.
1361 '/var/log/named' for a log file, do:
1364 # chcon system_u:object_r:named_cache_t /var/log/named
1370 To create a custom zone file location, e.g. /root/zones/, do:
1373 # chcon system_u:object_r:named_zone_t /root/zones/{.,*}
1379 See these man-pages for more information : selinux(8),
1380 named_selinux(8), chcon(1), setsebool(8)
1388 Listening on individual IPv6 interfaces does not work.
1393 This is usually due to "/proc/net/if_inet6" not being available
1394 in the chroot file system. Mount another instance of "proc"
1395 in the chroot file system.
1398 This can be be made permanent by adding a second instance to
1402 proc /proc proc defaults 0 0
1403 proc /var/named/proc proc defaults 0 0</programlisting>
1409 </qandadiv> <!-- Linux -->
1411 <qandadiv><title>Windows</title>
1416 Zone transfers from my BIND 9 master to my Windows 2000
1422 This may be caused by a bug in the Windows 2000 DNS server
1423 where DNS messages larger than 16K are not handled properly.
1424 This can be worked around by setting the option "transfer-format
1425 one-answer;". Also check whether your zone contains domain
1426 names with embedded spaces or other special characters,
1427 like "John\032Doe\213s\032Computer", since such names have
1428 been known to cause Windows 2000 slaves to incorrectly
1437 I get <quote>Error 1067</quote> when starting named under Windows.
1442 This is the service manager saying that named exited. You
1443 need to examine the Application log in the EventViewer to
1447 Common causes are that you failed to create "named.conf"
1448 (usually "C:\windows\dns\etc\named.conf") or failed to
1449 specify the directory in named.conf.
1454 Directory "C:\windows\dns\etc";
1460 </qandadiv> <!-- Windows -->
1462 <qandadiv><title>FreeBSD</title>
1467 I have FreeBSD 4.x and "rndc-confgen -a" just sits there.
1472 /dev/random is not configured. Use rndcontrol(8) to tell
1473 the kernel to use certain interrupts as a source of random
1474 events. You can make this permanent by setting rand_irqs
1479 rand_irqs="3 14 15"</programlisting>
1483 <ulink url="http://people.freebsd.org/~dougb/randomness.html">
1484 <http://people.freebsd.org/~dougb/randomness.html></ulink>.
1489 </qandadiv> <!-- FreeBSD -->
1491 <qandadiv><title>Solaris</title>
1496 How do I integrate BIND 9 and Solaris SMF
1501 Sun has a blog entry describing how to do this.
1505 url="http://blogs.sun.com/roller/page/anay/Weblog?catname=%2FSolaris">
1506 <http://blogs.sun.com/roller/page/anay/Weblog?catname=%2FSolaris>
1514 <qandadiv><title>Apple Mac OS X</title>
1519 How do I run BIND 9 on Apple Mac OS X?
1524 If you run Tiger(Mac OS 10.4) or later then this is all you need to do:
1528 % sudo rndc-confgen > /etc/rndc.conf</programlisting>
1531 Copy the key statement from /etc/rndc.conf into /etc/rndc.key, e.g.:
1537 secret "uvceheVuqf17ZwIcTydddw==";
1541 Then start the relevant service:
1545 % sudo service org.isc.named start</programlisting>
1548 This is persistent upon a reboot, so you will have to do it only once.
1554 Alternatively you can just generate /etc/rndc.key by running:
1558 % sudo rndc-confgen -a</programlisting>
1561 Then start the relevant service:
1565 % sudo service org.isc.named start</programlisting>
1568 Named will look for /etc/rndc.key when it starts if it
1569 doesn't have a controls section or the existing controls are
1570 missing keys sub-clauses. This is persistent upon a
1571 reboot, so you will have to do it only once.
1578 </qandadiv> <!-- Operating-System Specific Questions -->