source: server/other/dhcp.xml@ a6ac43b

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.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 a6ac43b was a6ac43b, checked in by Manuel Canales Esparcia <manuel@…>, 18 years ago

Adding automatized scripts generation related tags. Server part.

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

  • Property mode set to 100644
File size: 8.9 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 dhcp-download-http "http://gd.tuwien.ac.at/infosys/servers/isc/dhcp/dhcp-3.0-history/dhcp-&dhcp-version;.tar.gz">
8 <!ENTITY dhcp-download-ftp "ftp://ftp.isc.org/isc/dhcp/dhcp-3.0-history/dhcp-&dhcp-version;.tar.gz">
9 <!ENTITY dhcp-md5sum "04800a111521e7442749b2ce883f962b">
10 <!ENTITY dhcp-size "834 KB">
11 <!ENTITY dhcp-buildsize "29.7 MB">
12 <!ENTITY dhcp-time "0.22 SBU">
13]>
14
15<sect1 id="dhcp" xreflabel="DHCP-&dhcp-version;">
16 <?dbhtml filename="dhcp.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 <keywordset>
22 <keyword role="package">dhcp-&dhcp-version;.tar</keyword>
23 <keyword role="ftptdir">dhcp</keyword>
24 </keywordset>
25 </sect1info>
26
27 <title>DHCP-&dhcp-version;</title>
28
29 <indexterm zone="dhcp">
30 <primary sortas="a-dhcp">Dhcp</primary>
31 </indexterm>
32
33 <sect2 role="package">
34 <title>Introduction to DHCP</title>
35
36 <para>The <application>DHCP</application> package contains both the client
37 and server programs for DHCP. <command>dhclient</command> (the client) is
38 useful for connecting your computer to a network which uses DHCP to assign
39 network addresses. <command>dhcpd</command> (the server) is useful for
40 assigning network addresses on your private network.</para>
41
42 <bridgehead renderas="sect3">Package Information</bridgehead>
43 <itemizedlist spacing="compact">
44 <listitem>
45 <para>Download (HTTP): <ulink url="&dhcp-download-http;"/></para>
46 </listitem>
47 <listitem>
48 <para>Download (FTP): <ulink url="&dhcp-download-ftp;"/></para>
49 </listitem>
50 <listitem>
51 <para>Download MD5 sum: &dhcp-md5sum;</para>
52 </listitem>
53 <listitem>
54 <para>Download size: &dhcp-size;</para>
55 </listitem>
56 <listitem>
57 <para>Estimated disk space required: &dhcp-buildsize;</para>
58 </listitem>
59 <listitem>
60 <para>Estimated build time: &dhcp-time;</para>
61 </listitem>
62 </itemizedlist>
63
64 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
65 <itemizedlist spacing='compact'>
66 <listitem>
67 <para>Required Patch:
68 <ulink url="&patch-root;/dhcp-&dhcp-version;-gcc_3.4.3-2.patch"/></para>
69 </listitem>
70 </itemizedlist>
71
72 <bridgehead renderas="sect3">DHCP Dependencies</bridgehead>
73
74 <bridgehead renderas="sect4">Required</bridgehead>
75 <para role="required"><xref linkend="net-tools"/> (you may omit
76 <application>net-tools</application> by using the following patch
77 to utilize <application>iproute2</application>:
78 <ulink url="&patch-root;/dhcp-&dhcp-version;-iproute2-3.patch"/>)</para>
79
80 </sect2>
81
82 <sect2 role="kernel" id='dhcp-kernel'>
83 <title>Kernel Configuration</title>
84
85 <para>You must have Packet Socket support (Device Drivers -&gt; Networking
86 Support -&gt; Networking Options -&gt; Packet Socket) compiled into
87 the kernel.</para>
88
89 <indexterm zone="dhcp dhcp-kernel">
90 <primary sortas="d-dhcp">DHCP</primary>
91 </indexterm>
92
93 </sect2>
94
95 <sect2 role="installation">
96 <title>Installation of DHCP</title>
97
98 <para>If you chose not to install net-tools, apply the
99 iproute2 patch:</para>
100
101<screen><userinput>patch -Np1 -i ../dhcp-&dhcp-version;-iproute2-3.patch</userinput></screen>
102
103 <para>Install <application>DHCP</application> by running
104 the following commands:</para>
105
106<screen><userinput>patch -Np1 -i ../dhcp-&dhcp-version;-gcc_3.4.3-2.patch &amp;&amp;
107./configure &amp;&amp;
108make</userinput></screen>
109
110 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
111
112<screen role="root"><userinput>make LIBDIR=/usr/lib INCDIR=/usr/include install</userinput></screen>
113
114 </sect2>
115
116 <sect2 role="commands">
117 <title>Command Explanations</title>
118
119 <para><parameter>LIBDIR=/usr/lib INCDIR=/usr/include</parameter>: This
120 command installs the library and include files in
121 <filename class="directory">/usr</filename> instead of
122 <filename class="directory">/usr/local</filename>.</para>
123
124 </sect2>
125
126 <sect2 role="configuration">
127 <title>Configuring DHCP</title>
128
129 <sect3 id='dhcp-config'>
130 <title>Config Files</title>
131
132 <para><filename>/etc/dhclient.conf</filename> and
133 <filename>/etc/dhcpd.conf</filename></para>
134
135 <indexterm zone="dhcp dhcp-config">
136 <primary sortas="e-etc-dhclient.conf">/etc/dhclient.conf</primary>
137 </indexterm>
138
139 <indexterm zone="dhcp dhcp-config">
140 <primary sortas="e-etc-dhcpd.conf">/etc/dhcpd.conf</primary>
141 </indexterm>
142
143 </sect3>
144
145 <sect3 id='dhcp-init'>
146 <title>Configuration Information</title>
147
148 <para>Information on configuring the DHCP client can be
149 found in <xref linkend="connect-dhcp"/>.</para>
150
151 <para>Note that you only need the DHCP server if you want to issue
152 LAN addresses over your network. The DHCP client doesn't need this
153 script to be used. Also note that this script is coded for the
154 <emphasis role="strong">eth1</emphasis> interface, which may need
155 to be modified for your hardware configuration.</para>
156
157 <para>Install the <filename>/etc/rc.d/init.d/dhcp</filename>
158 init script included in the <xref linkend="intro-important-bootscripts"/>
159 package.</para>
160
161 <indexterm zone="dhcp dhcp-init">
162 <primary sortas="f-dhcp">dhcpd</primary>
163 </indexterm>
164
165<screen role="root"><userinput>make install-dhcp</userinput></screen>
166
167 <para>The lease file must exist on startup. The following command will
168 satisfy that requirement:</para>
169
170<screen role="root"><userinput>touch /var/state/dhcp/dhcpd.leases</userinput></screen>
171
172 <para>The following commands will create a base configuration file
173 for a DHCP server. There are several options that you may want to
174 add (information that is passed back to the DHCP client) and those
175 are covered in the man pages for <filename>dhcp.conf</filename>.</para>
176
177<screen role="root"><userinput>cat &gt; /etc/dhcpd.conf &lt;&lt; "EOF"
178<literal>default-lease-time 72000;
179max-lease-time 144000;
180ddns-update-style ad-hoc;
181
182subnet <replaceable>[192.168.5.0]</replaceable> netmask <replaceable>[255.255.255.0]</replaceable> {
183 range <replaceable>[192.168.5.10] [192.168.5.240]</replaceable>;
184 option broadcast-address <replaceable>[192.168.5.255]</replaceable>;
185 option routers <replaceable>[192.168.5.1]</replaceable>;
186}</literal>
187EOF</userinput></screen>
188
189 <para>All addresses should be changed to meet your circumstance.</para>
190
191 </sect3>
192
193 </sect2>
194
195 <sect2 role="content">
196 <title>Contents</title>
197
198 <segmentedlist>
199 <segtitle>Installed Programs</segtitle>
200 <segtitle>Installed Libraries</segtitle>
201 <segtitle>Installed Directories</segtitle>
202
203 <seglistitem>
204 <seg>dhcpd, dhcrelay, dhclient, dhclient-script, and omshell</seg>
205 <seg>bdhcpctl.a, libomapi.a</seg>
206 <seg>/var/state/dhcp, /usr/include/omapip, and /usr/include/isi-dhcp</seg>
207 </seglistitem>
208 </segmentedlist>
209
210 <variablelist>
211 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
212 <?dbfo list-presentation="list"?>
213 <?dbhtml list-presentation="table"?>
214
215 <varlistentry id="dhclient">
216 <term><command>dhclient</command></term>
217 <listitem>
218 <para>is the implementation of the DHCP client.</para>
219 <indexterm zone="dhcp dhclient">
220 <primary sortas="b-dhclient">dhclient</primary>
221 </indexterm>
222 </listitem>
223 </varlistentry>
224
225 <varlistentry id="dhcpd">
226 <term><command>dhcpd</command></term>
227 <listitem>
228 <para>implements Dynamic Host Configuration Protocol (DHCP) and
229 Internet Bootstrap Protocol (BOOTP) requests for network
230 addresses.</para>
231 <indexterm zone="dhcp dhcpd">
232 <primary sortas="b-dhcpd">dhcpd</primary>
233 </indexterm>
234 </listitem>
235 </varlistentry>
236
237 <varlistentry id="dhcrelay">
238 <term><command>dhcrelay</command></term>
239 <listitem>
240 <para>provides a means to accept DHCP and BOOTP requests on a subnet
241 without a DHCP server and relay them to a DHCP server on another
242 subnet.</para>
243 <indexterm zone="dhcp dhcrelay">
244 <primary sortas="b-dhcrelay">dhcrelay</primary>
245 </indexterm>
246 </listitem>
247 </varlistentry>
248
249 <varlistentry id="omshell">
250 <term><command>omshell</command></term>
251 <listitem>
252 <para> provides an interactive way to connect to, query, and
253 possibly change, the ISC DHCP Server's state via OMAPI, the
254 Object Management API.</para>
255 <indexterm zone="dhcp omshell">
256 <primary sortas="b-omshell">omshell</primary>
257 </indexterm>
258 </listitem>
259 </varlistentry>
260
261 </variablelist>
262
263 </sect2>
264
265</sect1>
Note: See TracBrowser for help on using the repository browser.