source: server/other/dhcp/dhcp-config.xml@ 369af35a

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 369af35a was 369af35a, checked in by Igor Živković <igor@…>, 20 years ago

s/source/./ in init scripts

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

  • Property mode set to 100644
File size: 2.8 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 want to start 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.
18With that in mind the <application><acronym>DHCP</acronym></application> init.d script can be created
19using the following commands.</para>
20
21<screen><userinput><command>cat &gt; /etc/rc.d/init.d/dhcp &lt;&lt; "EOF"</command>
22#!/bin/sh
23# Begin $rc_base/init.d/dhcp
24
25# Based on sysklogd script from LFS-3.1 and earlier.
26# Rewritten by Gerard Beekmans - gerard@linuxfromscratch.org
27
28. /etc/sysconfig/rc
29. $rc_functions
30
31case "$1" in
32 start)
33 echo "Starting DHCP Server..."
34 loadproc dhcpd -q eth1
35 ;;
36
37 stop)
38 echo "Stopping DHCP Server..."
39 killproc dhcpd
40 ;;
41
42 reload)
43 echo "Reloading DHCP Server..."
44 reloadproc dhcpd
45 ;;
46
47 restart)
48 $0 stop
49 sleep 1
50 $0 start
51 ;;
52
53 status)
54 statusproc dhcpd
55 ;;
56
57 *)
58 echo "Usage: $0 {start|stop|reload|restart|status}"
59 exit 1
60 ;;
61esac
62
63# End $rc_base/init.d/dhcp
64<command>EOF
65chmod 755 /etc/rc.d/init.d/dhcp</command></userinput></screen>
66
67<para>The lease file must exist on startup. The following command will
68satisfy that requirement:</para>
69
70<screen><userinput><command>touch /var/state/dhcp/dhcpd.leases</command></userinput></screen>
71
72<para>The follow commands will create a base configuration file for a
73<acronym>DHCP</acronym> server. There are several options that you may want to
74add (information that is passed back to the <acronym>DHCP</acronym> client) and
75those are covered in the man pages for <filename>dhcp.conf</filename>.</para>
76
77<screen><userinput><command>cat &gt; /etc/dhcpd.conf &lt;&lt; "EOF"</command>
78default-lease-time 72000;
79max-lease-time 144000;
80ddns-update-style ad-hoc;
81
82subnet 192.168.5.0 netmask 255.255.255.0 {
83 range 192.168.5.10 192.168.5.240;
84 option broadcast-address 195.168.5.255;
85 option routers 192.168.5.1;
86}
87<command>EOF</command></userinput></screen>
88
89<para>All addresses should be changed to meet your circumstance.</para>
90
91</sect3>
92
93</sect2>
94
Note: See TracBrowser for help on using the repository browser.