Changeset 1c2cfae1 for server


Ignore:
Timestamp:
11/28/2004 09:17:56 AM (19 years ago)
Author:
DJ Lucas <dj@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 6.0, 6.1, 6.2, 6.2.0, 6.2.0-rc1, 6.2.0-rc2, 6.3, 6.3-rc1, 6.3-rc2, 6.3-rc3, 7.10, 7.4, 7.5, 7.6, 7.6-blfs, 7.6-systemd, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gnome, kde5-13430, kde5-14269, kde5-14686, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, systemd-11177, systemd-13485, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
8f9c9862
Parents:
802e40b9
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • server/other/bind.xml

    r802e40b9 r1c2cfae1  
    125125     file "pz/127.0.0";
    126126 };
     127
     128// Bind 9 now logs by default through syslog (except debug).
     129// These are the default logging rules.
     130
     131logging {
     132     category default { default_syslog; default_debug; };
     133     category unmatched { null; };
     134
     135  channel default_syslog {
     136      syslog daemon;                      // send to syslog's daemon
     137                                          // facility
     138      severity info;                      // only send priority info
     139                                          // and higher
     140  };
     141
     142  channel default_debug {
     143      file "named.run";                   // write to named.run in
     144                                          // the working directory
     145                                          // Note: stderr is used instead
     146                                          // of "named.run"
     147                                          // if the server is started
     148                                          // with the '-f' option.
     149      severity dynamic;                   // log at the server's
     150                                          // current debug level
     151  };
     152
     153  channel default_stderr {
     154      stderr;                             // writes to stderr
     155      severity info;                      // only send priority info
     156                                          // and higher
     157  };
     158
     159  channel null {
     160     null;                                // toss anything sent to
     161                                          // this channel
     162  };
     163};
     164
     165
     166
    127167<command>EOF</command></userinput></screen>
    128168
     
    180220.                       6D  IN      NS      M.ROOT-SERVERS.NET.
    181221A.ROOT-SERVERS.NET.     6D  IN      A       198.41.0.4
    182 B.ROOT-SERVERS.NET.     6D  IN      A       128.9.0.107
     222B.ROOT-SERVERS.NET.     6D  IN      A       192.228.79.201
    183223C.ROOT-SERVERS.NET.     6D  IN      A       192.33.4.12
    184224D.ROOT-SERVERS.NET.     6D  IN      A       128.8.10.90
     
    196236<para>The <filename>root.hints</filename> file is a list of root name
    197237servers. This file must be updated periodically with the
    198 <command>dig</command> utility.
     238<command>dig</command> utility.  A current copy of root.hints can be
     239obtained from <ulink url="ftp://rs.internic.net/domain/named.root" />.
    199240Consult the <ulink url="http://www.bind9.net/Bv9ARM.html"><application><acronym>BIND</acronym></application> 9 Administrator Reference Manual</ulink> for
    200241details.</para>
Note: See TracChangeset for help on using the changeset viewer.