source: BOOK/network/common/dhcp.xml @ 05d3e34

clfs-3.0.0-systemdclfs-3.0.0-sysvinitsystemdsysvinit
Last change on this file since 05d3e34 was 23a1e45, checked in by William Harrington <kb0iic@…>, 11 years ago

Adjust suffix for bootscripts package.

  • Property mode set to 100644
File size: 1.9 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3  "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4  <!ENTITY % general-entities SYSTEM "../../general.ent">
5  %general-entities;
6]>
7
8<sect1 id="ch-network-dhcp">
9  <?dbhtml filename="network-dhcp.html"?>
10
11  <title>DHCP Networking Configuration</title>
12
13  <sect2>
14    <title>Creating the DHCP Network Interface Configuration Files</title>
15
16    <para>First install the service from the CLFS Bootscripts package:</para>
17
18<screen><userinput>tar -xvf bootscripts-cross-lfs-&bootscripts-clfs-version;.tar.xz
19cd bootscripts-cross-lfs-&bootscripts-clfs-version;
20make install-service-dhcpcd</userinput></screen>
21
22    <para>Finally, create the
23    <filename>/etc/sysconfig/network-devices/ifconfig.eth0/dhcpcd</filename>
24    configuration file using the following commands. Adjust appropriately for
25    additional interfaces:</para>
26
27<screen><userinput>cd /etc/sysconfig/network-devices &amp;&amp;
28mkdir -v ifconfig.eth0 &amp;&amp;
29cat &gt; ifconfig.eth0/dhcpcd &lt;&lt; "EOF"
30<literal>ONBOOT="yes"
31SERVICE="dhcpcd"
32
33# Start Command for DHCPCD
34DHCP_START="-q"
35
36# Stop Command for DHCPCD
37DHCP_STOP="-k"</literal>
38EOF</userinput></screen>
39
40    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
41    href="static.xml"
42    xpointer="xpointer(//*[@os='var-ob'])"/>
43
44    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
45    href="static.xml"
46    xpointer="xpointer(//*[@os='var-s'])"/>
47
48    <para>The <envar>DHCP_START</envar> and <envar>DHCP_STOP</envar> variables
49    arguments that are passed onto <filename>dhcpcd</filename> when starting
50    and stoppping the service. More information about what can be passed can
51    be found in the <filename>dhcpcd(8)</filename> man page.</para>
52
53    <para>To configure another Static Interface, Follow <xref linkend="ch-network-static"/>.</para>
54
55  </sect2>
56
57</sect1>
Note: See TracBrowser for help on using the repository browser.