Ignore:
Timestamp:
06/03/2004 02:41:04 AM (20 years ago)
Author:
Larry Lawrence <larry@…>
Branches:
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, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
2cbfd78a
Parents:
23d784b
Message:

grammar corrections

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • server/other/dhcp/dhcp-config.xml

    r23d784b r65df9fca  
    99
    1010<para>Information on configuring the <acronym>DHCP</acronym> client can be
    11 found in Chapter 14.</para>
     11found in <xref linkend="connect-dhcp"/>.</para>
    1212
    1313<para>Note that you only need the <acronym>DHCP</acronym> server if
     
    1717interface, which may need to be modified for your hardware configuration.</para>
    1818
    19 <para>Install <filename>/etc/rc.d/init.d/dhcp</filename>
     19<para>Install the <filename>/etc/rc.d/init.d/dhcp</filename>
    2020init script included in the <xref linkend="intro-important-bootscripts"/> package.</para>
    2121                                                                                                               
     
    2727<screen><userinput><command>touch /var/state/dhcp/dhcpd.leases</command></userinput></screen>
    2828
    29 <para>The follow commands will create a base configuration file for a
     29<para>The following commands will create a base configuration file for a
    3030<acronym>DHCP</acronym> server.  There are several options that you may want to
    3131add (information that is passed back to the <acronym>DHCP</acronym> client) and
     
    3737ddns-update-style ad-hoc;
    3838
    39 subnet 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;
     39subnet <replaceable>[192.168.5.0]</replaceable> netmask <replaceable>[255.255.255.0]</replaceable> {
     40  range <replaceable>[192.168.5.10] [192.168.5.240]</replaceable>;
     41  option broadcast-address <replaceable>[195.168.5.255]</replaceable>;
     42  option routers <replaceable>[192.168.5.1]</replaceable>;
    4343}
    4444<command>EOF</command></userinput></screen>
Note: See TracChangeset for help on using the changeset viewer.