Changeset 9288855


Ignore:
Timestamp:
03/09/2008 04:10:02 PM (16 years ago)
Author:
DJ Lucas <dj@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 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:
f7090c3a
Parents:
00166c8a
Message:

changes to bind instructions

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@7223 af4574ff-66df-0310-9fd7-8a98e5e911e0

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • introduction/welcome/changelog.xml

    r00166c8a r9288855  
    4545      <para>March 9th, 2008</para>
    4646      <itemizedlist>
     47        <listitem>
     48          <para>[dj] - Added iproute2 patch for bind, corrected
     49          L.ROOT-SERVERS.NET IP address, and added -r /dev/urandom to
     50          rdnc-confgen command.</para>
     51        </listitem>
    4752        <listitem>
    4853          <para>[randy] - Updated to libxml2-2.6.31.</para>
  • server/major/bind.xml

    r00166c8a r9288855  
    5555    </itemizedlist>
    5656
     57    <bridgehead renderas="sect3">Additional Downloads</bridgehead>
     58    <itemizedlist spacing='compact'>
     59      <listitem>
     60        <para>Required patch: <ulink
     61        url="&patch-root;/bind-&bind-version;-use_iproute2-1.patch"/></para>
     62      </listitem>
     63    </itemizedlist>
     64
    5765    <bridgehead renderas="sect3">BIND Dependencies</bridgehead>
    5866
     
    6068    <para role="optional"><xref linkend="openssl"/></para>
    6169
    62     <bridgehead renderas="sect4">Optional (to Run the Test Suite)</bridgehead>
    63     <para role="optional"><xref linkend="net-tools"/> (for <command>ifconfig</command>)
    64     and <xref linkend="perl-net-dns"/></para>
    65 
    66     <bridgehead renderas="sect4">Optional to [Re]Build Documentation</bridgehead>
     70    <bridgehead renderas="sect4">Optional (to run the test suite)</bridgehead>
     71    <para role="optional"><xref linkend="perl-net-dns"/></para>
     72
     73    <bridgehead renderas="sect4">Optional (to rebuild documentation)</bridgehead>
    6774    <para role="optional"><xref linkend="tetex"/> and
    6875    <xref linkend="libxslt"/></para>
     
    7986    following commands:</para>
    8087
    81 <screen><userinput>./configure --prefix=/usr \
     88<screen><userinput>patch -Np1 -i ../bind-&bind-version;-use_iproute2-1.patch &amp;&amp;
     89./configure --prefix=/usr \
    8290            --sysconfdir=/etc \
    8391            --localstatedir=/var \
     
    8593            --enable-threads \
    8694            --with-libtool &amp;&amp;
     95sed -i "s@198.32.64.12@199.7.83.42@" \
     96    lib/dns/rootns.c &amp;&amp;
    8797make</userinput></screen>
    8898
     
    102112<screen role="root"><userinput>bin/tests/system/ifconfig.sh down</userinput></screen>
    103113
    104     <para>Issue the following command to check that all 146 tests
     114    <para>Issue the following command to check that all 148 tests
    105115    ran successfully:</para>
    106116
     
    141151    building of dynamic libraries and links the installed binaries to these
    142152    libraries.</para>
     153   
     154    <para><command>sed -i "s@198.32.64.12@199.7.83.42@"
     155    lib/dns/rootns.c</command>: Use updated address for
     156    L.ROOT-SERVERS.NET.</para>
    143157
    144158    <para><command>chmod 755
     
    201215
    202216<screen role="root"><userinput>groupadd -g 20 named &amp;&amp;
    203 useradd -c "BIND Owner" -g named -s /bin/false -u 20 named
     217useradd -c "BIND Owner" -g named -s /bin/false -u 20 named &amp;&amp;
    204218install -d -m770 -o named -g named /srv/named</userinput></screen>
    205219
     
    219233      <command>rndc-confgen</command> command:</para>
    220234
    221 <screen role="root"><userinput>rndc-confgen -b 512 | grep -m 1 "secret" | cut -d '"' -f 2</userinput></screen>
     235<screen role="root"><userinput>rndc-confgen -r /dev/urandom -b 512 | \
     236    grep -m 1 "secret" | cut -d '"' -f 2</userinput></screen>
    222237
    223238      <para>Create the <filename>named.conf</filename> file from which
     
    353368J.ROOT-SERVERS.NET.     6D  IN      A       192.58.128.30
    354369K.ROOT-SERVERS.NET.     6D  IN      A       193.0.14.129
    355 L.ROOT-SERVERS.NET.     6D  IN      A       198.32.64.12
     370L.ROOT-SERVERS.NET.     6D  IN      A       199.7.83.42
    356371M.ROOT-SERVERS.NET.     6D  IN      A       202.12.27.33</literal>
    357372EOF</userinput></screen>
Note: See TracChangeset for help on using the changeset viewer.