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.bz2
|
---|
19 | cd bootscripts-cross-lfs-&bootscripts-clfs-version;
|
---|
20 | make 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 &&
|
---|
28 | mkdir -v ifconfig.eth0 &&
|
---|
29 | cat > ifconfig.eth0/dhcpcd << "EOF"
|
---|
30 | <literal>ONBOOT="yes"
|
---|
31 | SERVICE="dhcpcd"
|
---|
32 |
|
---|
33 | # Start Command for DHCPCD
|
---|
34 | DHCP_START="-q"
|
---|
35 |
|
---|
36 | # Stop Command for DHCPCD
|
---|
37 | DHCP_STOP="-k"</literal>
|
---|
38 | EOF</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>
|
---|