source: server/other/dhcp/dhcp-config.xml@ fe88f584

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 v5_1 v5_1-pre1 xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since fe88f584 was ae9c528, checked in by Tushar Teredesai <tushar@…>, 20 years ago

More2 bootscript changes

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

  • Property mode set to 100644
File size: 2.0 KB
Line 
1<sect2>
2<title>Configuring <application><acronym>DHCP</acronym></application></title>
3
4<sect3><title>Config files</title>
5<para><filename>/etc/dhclient.conf</filename></para>
6</sect3>
7
8<sect3><title>Configuration Information</title>
9
10<para>Information on configuring the <acronym>DHCP</acronym> client can be
11found in Chapter 14.</para>
12
13<para>Note that you only need the <acronym>DHCP</acronym> server if
14you want to issue <acronym>LAN</acronym> addresses over your network. The
15<acronym>DHCP</acronym> client doesn't need this script to be used. Also note
16that this script is coded for the <emphasis role="strong">eth1</emphasis>
17interface, which may need to be modified for your hardware configuration.</para>
18
19<para>Install <filename>/etc/rc.d/init.d/dhcp</filename>
20init script included in the <xref linkend="intro-important-bootscripts"/> package.</para>
21
22<screen><userinput><command>make install-dhcp</command></userinput></screen>
23
24<para>The lease file must exist on startup. The following command will
25satisfy that requirement:</para>
26
27<screen><userinput><command>touch /var/state/dhcp/dhcpd.leases</command></userinput></screen>
28
29<para>The follow commands will create a base configuration file for a
30<acronym>DHCP</acronym> server. There are several options that you may want to
31add (information that is passed back to the <acronym>DHCP</acronym> client) and
32those are covered in the man pages for <filename>dhcp.conf</filename>.</para>
33
34<screen><userinput><command>cat &gt; /etc/dhcpd.conf &lt;&lt; "EOF"</command>
35default-lease-time 72000;
36max-lease-time 144000;
37ddns-update-style ad-hoc;
38
39subnet 192.168.5.0 netmask 255.255.255.0 {
40 range 192.168.5.10 192.168.5.240;
41 option broadcast-address 195.168.5.255;
42 option routers 192.168.5.1;
43}
44<command>EOF</command></userinput></screen>
45
46<para>All addresses should be changed to meet your circumstance.</para>
47
48</sect3>
49
50</sect2>
51
Note: See TracBrowser for help on using the repository browser.