source: basicnet/netutils/bind-utils.xml@ 1065a91

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 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
Last change on this file since 1065a91 was 1065a91, checked in by Randy McMurchy <randy@…>, 19 years ago

Removed excess spaces from the ends of lines in the source files

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

  • Property mode set to 100644
File size: 4.5 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
3 "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY bind-download-http "http://gd.tuwien.ac.at/infosys/servers/isc/bind9/&bind-version;/bind-&bind-version;.tar.gz">
8 <!ENTITY bind-download-ftp "ftp://ftp.isc.org/isc/bind9/&bind-version;/bind-&bind-version;.tar.gz">
9 <!ENTITY bind-md5sum "fdb42fff7e345372ac52a4493b77b694">
10 <!ENTITY bind-size "4.6 MB">
11 <!ENTITY bind-utils-buildsize "52.2 MB">
12 <!ENTITY bind-utils-time "0.65 SBU">
13]>
14
15<sect1 id="bind-utils" xreflabel="BIND Utilities-&bind-version;p1">
16 <?dbhtml filename="bind-utils.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>BIND Utilities-&bind-version;p1</title>
24
25 <indexterm zone="bind-utils">
26 <primary sortas="a-BIND-Utilities">BIND Utilities</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to BIND Utilities</title>
31
32 <para><application>BIND Utilities</application> is not a separate
33 package, it is a collection of the client side programs that are included
34 with <xref linkend="bind"/>. The <application>BIND</application>
35 package includes the client side programs <command>nslookup</command>,
36 <command>dig</command> and <command>host</command>. If you install
37 <application>BIND</application> server, these programs will be installed
38 automatically. This section is for those users who don't need the complete
39 <application>BIND</application> server, but need these
40 client side applications.</para>
41
42 <bridgehead renderas="sect3">Package Information</bridgehead>
43 <itemizedlist spacing="compact">
44 <listitem>
45 <para>Download (HTTP): <ulink url="&bind-download-http;"/></para>
46 </listitem>
47 <listitem>
48 <para>Download (FTP): <ulink url="&bind-download-ftp;"/></para>
49 </listitem>
50 <listitem>
51 <para>Download MD5 sum: &bind-md5sum;</para>
52 </listitem>
53 <listitem>
54 <para>Download size: &bind-size;</para>
55 </listitem>
56 <listitem>
57 <para>Estimated disk space required: &bind-utils-buildsize;</para>
58 </listitem>
59 <listitem>
60 <para>Estimated build time: &bind-utils-time;</para>
61 </listitem>
62 </itemizedlist>
63
64 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
65 <itemizedlist spacing='compact'>
66 <listitem>
67 <para>Required patch: <ulink
68 url="ftp://ftp.isc.org/isc/bind9/9.3.0/&bind-version;-patch1"/></para>
69 </listitem>
70 </itemizedlist>
71
72 <bridgehead renderas="sect3">BIND Utilities Dependencies</bridgehead>
73
74 <bridgehead renderas="sect4">Optional</bridgehead>
75 <para><xref linkend="openssl"/></para>
76
77 </sect2>
78
79 <sect2 role="installation">
80 <title>Installation of BIND Utilities</title>
81
82 <para>Install <application>BIND Utilities</application> by
83 running the following commands:</para>
84
85<screen><userinput>patch -Np1 -i ../&bind-version;-patch1 &amp;&amp;
86./configure --prefix=/usr &amp;&amp;
87make -C lib/dns &amp;&amp;
88make -C lib/isc &amp;&amp;
89make -C lib/bind9 &amp;&amp;
90make -C lib/isccfg &amp;&amp;
91make -C lib/lwres &amp;&amp;
92make -C bin/dig</userinput></screen>
93
94 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
95
96<screen role='root'><userinput>make -C bin/dig install</userinput></screen>
97
98 </sect2>
99
100 <sect2 role="commands">
101 <title>Command Explanations</title>
102
103 <para><command>patch -Np1 -i ../&bind-version;-patch1</command>: There's a
104 vulnerability in the DNSSEC code. See
105 <ulink url="http://www.kb.cert.org/vuls/id/938617"/>. The patch fixes the
106 bug.</para>
107
108 <para><command>make -C lib/...</command>: These commands build the
109 libraries that are needed for the client programs.</para>
110
111 <para><command>make -C bin/dig</command>: This command builds the
112 client programs.</para>
113
114 </sect2>
115
116 <sect2 role="content">
117 <title>Contents</title>
118
119 <segmentedlist>
120 <segtitle>Installed Programs</segtitle>
121 <segtitle>Installed Libraries</segtitle>
122 <segtitle>Installed Directories</segtitle>
123
124 <seglistitem>
125 <seg>dig, host, and nslookup</seg>
126 <seg>None</seg>
127 <seg>None</seg>
128 </seglistitem>
129 </segmentedlist>
130
131 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
132
133 <para>See the program descriptions in the <xref linkend="bind"/>
134 section.</para>
135
136 </sect2>
137
138</sect1>
139
Note: See TracBrowser for help on using the repository browser.