fixed root servers and made mention of logging for bind 9

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@3044 af4574ff-66df-0310-9fd7-8a98e5e911e0
This commit is contained in:
DJ Lucas 2004-11-28 09:17:56 +00:00
parent 802e40b9ac
commit 1c2cfae1a6
2 changed files with 47 additions and 2 deletions

View File

@ -22,6 +22,10 @@ who wrote what.</para>
<itemizedlist>
<listitem><para>November 28th, 2004 [dj]: Added default logging lines to
named.conf, corrected IP for B.ROOT-SERVERS.NET and added note about
Internic's current copy of named.root.</para></listitem>
<listitem><para>November 28th, 2004 [randy]: Updated to
AbiWord-2.2.0.</para></listitem>

View File

@ -124,6 +124,46 @@ will read the location of zone files, root name servers and secure
type master;
file "pz/127.0.0";
};
// Bind 9 now logs by default through syslog (except debug).
// These are the default logging rules.
logging {
category default { default_syslog; default_debug; };
category unmatched { null; };
channel default_syslog {
syslog daemon; // send to syslog's daemon
// facility
severity info; // only send priority info
// and higher
};
channel default_debug {
file "named.run"; // write to named.run in
// the working directory
// Note: stderr is used instead
// of "named.run"
// if the server is started
// with the '-f' option.
severity dynamic; // log at the server's
// current debug level
};
channel default_stderr {
stderr; // writes to stderr
severity info; // only send priority info
// and higher
};
channel null {
null; // toss anything sent to
// this channel
};
};
<command>EOF</command></userinput></screen>
<para>Create the <filename>rndc.conf</filename> with the following commands:</para>
@ -179,7 +219,7 @@ file.</para></note>
. 6D IN NS L.ROOT-SERVERS.NET.
. 6D IN NS M.ROOT-SERVERS.NET.
A.ROOT-SERVERS.NET. 6D IN A 198.41.0.4
B.ROOT-SERVERS.NET. 6D IN A 128.9.0.107
B.ROOT-SERVERS.NET. 6D IN A 192.228.79.201
C.ROOT-SERVERS.NET. 6D IN A 192.33.4.12
D.ROOT-SERVERS.NET. 6D IN A 128.8.10.90
E.ROOT-SERVERS.NET. 6D IN A 192.203.230.10
@ -195,7 +235,8 @@ M.ROOT-SERVERS.NET. 6D IN A 202.12.27.33
<para>The <filename>root.hints</filename> file is a list of root name
servers. This file must be updated periodically with the
<command>dig</command> utility.
<command>dig</command> utility. A current copy of root.hints can be
obtained from <ulink url="ftp://rs.internic.net/domain/named.root" />.
Consult the <ulink url="http://www.bind9.net/Bv9ARM.html"><application><acronym>BIND</acronym></application> 9 Administrator Reference Manual</ulink> for
details.</para>