source: server/other/dhcp.xml@ fa052cc7

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
Last change on this file since fa052cc7 was fa052cc7, checked in by DJ Lucas <dj@…>, 20 years ago

Updated to dhcp-3.0.1

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

  • Property mode set to 100644
File size: 5.8 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
3 "http://www.oasis-open.org/docbook/xml/4.3/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-&dhcp-version;.tar.gz">
8<!ENTITY dhcp-download-ftp "ftp://ftp.isc.org/isc/dhcp/dhcp-&dhcp-version;.tar.gz">
9<!ENTITY dhcp-size "852 KB">
10<!ENTITY dhcp-buildsize "29.6 MB">
11<!ENTITY dhcp-time "0.23 SBU">
12
13]>
14
15<sect1 id="dhcp" xreflabel="DHCP-&dhcp-version;">
16<?dbhtml filename="dhcp.html"?>
17<title><acronym>DHCP</acronym>-&dhcp-version;</title>
18
19<sect2>
20<title>Introduction to <application><acronym>DHCP</acronym></application></title>
21
22<para>The <application><acronym>DHCP</acronym></application> package contains
23both the client and server programs for <acronym>DHCP</acronym>.
24<command>dhclient</command> (the client) is useful for connecting your computer
25to a network which uses <acronym>DHCP</acronym> to assign network addresses.
26<command>dhcpd</command> (the server) is useful for assigning network addresses
27on your private network.</para>
28
29<sect3><title>Package information</title>
30<itemizedlist spacing='compact'>
31<listitem><para>Download (HTTP): <ulink
32url="&dhcp-download-http;"/></para></listitem>
33<listitem><para>Download (FTP): <ulink
34url="&dhcp-download-ftp;"/></para></listitem>
35<listitem><para>Download size: &dhcp-size;</para></listitem>
36<listitem><para>Estimated Disk space required:
37&dhcp-buildsize;</para></listitem>
38<listitem><para>Estimated build time:
39&dhcp-time;</para></listitem></itemizedlist>
40</sect3>
41
42<sect3><title>Additional downloads</title>
43<itemizedlist spacing='compact'>
44<listitem><para>Required Patch:
45<ulink url="&patch-root;/dhcp-&dhcp-version;-iproute2-1.patch"/></para></listitem>
46</itemizedlist>
47</sect3>
48
49</sect2>
50
51<sect2>
52<title>Installation of <application><acronym>DHCP</acronym></application></title>
53
54<note><para>You must have Packet Socket support compiled in the kernel and
55Socket Filtering either compiled in or as a kernel module.</para></note>
56
57<para>Install <application><acronym>DHCP</acronym></application> by running the following commands:</para>
58
59<screen><userinput><command>patch -Np1 -i ../dhcp-&dhcp-version;-iproute2-1.patch &amp;&amp;
60./configure &amp;&amp;
61make &amp;&amp;
62make LIBDIR=/usr/lib INCDIR=/usr/include install</command></userinput></screen>
63
64</sect2>
65
66<sect2>
67<title>Command explanations</title>
68
69<para><parameter>LIBDIR=/usr/lib INCDIR=/usr/include</parameter>: This
70command installs the library and include files in <filename
71class="directory">/usr</filename> instead of <filename
72class="directory">/usr/local</filename>.</para>
73
74</sect2>
75
76<sect2>
77<title>Configuring <application><acronym>DHCP</acronym></application></title>
78
79<sect3><title>Config files</title>
80<para><filename>/etc/dhclient.conf</filename></para>
81</sect3>
82
83<sect3><title>Configuration Information</title>
84
85<para>Information on configuring the <acronym>DHCP</acronym> client can be
86found in <xref linkend="connect-dhcp"/>.</para>
87
88<para>Note that you only need the <acronym>DHCP</acronym> server if
89you want to issue <acronym>LAN</acronym> addresses over your network. The
90<acronym>DHCP</acronym> client doesn't need this script to be used. Also note
91that this script is coded for the <emphasis role="strong">eth1</emphasis>
92interface, which may need to be modified for your hardware configuration.</para>
93
94<para>Install the <filename>/etc/rc.d/init.d/dhcp</filename>
95init script included in the <xref linkend="intro-important-bootscripts"/> package.</para>
96
97<screen><userinput><command>make install-dhcp</command></userinput></screen>
98
99<para>The lease file must exist on startup. The following command will
100satisfy that requirement:</para>
101
102<screen><userinput><command>touch /var/state/dhcp/dhcpd.leases</command></userinput></screen>
103
104<para>The following commands will create a base configuration file for a
105<acronym>DHCP</acronym> server. There are several options that you may want to
106add (information that is passed back to the <acronym>DHCP</acronym> client) and
107those are covered in the man pages for <filename>dhcp.conf</filename>.</para>
108
109<screen><userinput><command>cat &gt; /etc/dhcpd.conf &lt;&lt; "EOF"</command>
110default-lease-time 72000;
111max-lease-time 144000;
112ddns-update-style ad-hoc;
113
114subnet <replaceable>[192.168.5.0]</replaceable> netmask <replaceable>[255.255.255.0]</replaceable> {
115 range <replaceable>[192.168.5.10] [192.168.5.240]</replaceable>;
116 option broadcast-address <replaceable>[195.168.5.255]</replaceable>;
117 option routers <replaceable>[192.168.5.1]</replaceable>;
118}
119<command>EOF</command></userinput></screen>
120
121<para>All addresses should be changed to meet your circumstance.</para>
122
123</sect3>
124
125</sect2>
126
127<sect2>
128<title>Contents</title>
129
130<para>The <application><acronym>DHCP</acronym></application> package contains
131<command>dhclient</command>, <command>dhcpd</command> and <command>dhcrelay</command>.</para>
132
133</sect2>
134
135<sect2><title>Description</title>
136
137<sect3><title>dhclient</title>
138<para><command>dhclient</command> is the implementation of the
139<acronym>DHCP</acronym> client.</para></sect3>
140
141<sect3><title>dhcpd</title>
142<para><command>dhcpd</command> implements Dynamic Host Configuration Protocol
143(<acronym>DHCP</acronym>) and Internet Bootstrap Protocol
144(<acronym>BOOTP</acronym>) requests for network addresses.</para></sect3>
145
146<sect3><title>dhcrelay</title>
147<para><command>dhcrelay</command> provides a means to accept <acronym>DHCP
148</acronym> and <acronym>BOOTP</acronym> requests on a subnet without a
149<acronym>DHCP</acronym> server and relay them to a <acronym>DHCP</acronym>
150server on another subnet.</para></sect3>
151
152</sect2>
153
154</sect1>
155
Note: See TracBrowser for help on using the repository browser.