1 | <sect1 id="dhcpclient" xreflabel="Configuring the LFS bootscripts to support DHCP clients">
|
---|
2 | <?dbhtml filename="configdhcp.html" dir="connect"?>
|
---|
3 | <title>Configuring the LFS bootscripts to support DHCP clients</title>
|
---|
4 |
|
---|
5 | <sect2><title>Config files</title>
|
---|
6 | <para><filename>/etc/sysconfig/network</filename>,
|
---|
7 | <filename>/etc/sysconfig/network-devices/ifup-eth0</filename>,
|
---|
8 | <filename>/etc/sysconfig/network-devices/ifdown-eth0</filename>,
|
---|
9 | <filename>/etc/sysconfig/network-devices/ifconfig.eth0</filename></para>
|
---|
10 | </sect2>
|
---|
11 |
|
---|
12 | <sect2><title>Configuration Information</title>
|
---|
13 |
|
---|
14 | <para>Note that on this and the following pages, we
|
---|
15 | use <userinput>eth0</userinput> as the example interface.
|
---|
16 | If you want to configure a different (or more than one) interface, simply
|
---|
17 | replace <userinput>eth0</userinput> with the interface you wish to use.</para>
|
---|
18 |
|
---|
19 | <para>These instructions will convert the configuration files from LFS
|
---|
20 | (a static configuration) to a configuration using the DHCP protocol.
|
---|
21 | Note that static and DHCP-based interfaces can co-exist on a LFS system. To
|
---|
22 | do this, you should only make the alterations to those interfaces which
|
---|
23 | need to support DHCP. All of the instructions on this page are applicable
|
---|
24 | no matter which DHCP client you intend to use.</para>
|
---|
25 |
|
---|
26 | <para>If the interface you intend to use as your default gateway is going to
|
---|
27 | use DHCP, the first step is to remove the <envar>GATEWAY</envar> and
|
---|
28 | <envar>GATEWAY_IF</envar> variables
|
---|
29 | from <filename>/etc/sysconfig/network</filename>. This will only need to be
|
---|
30 | done once.</para>
|
---|
31 |
|
---|
32 | <para><screen><userinput>cd /etc/sysconfig &&
|
---|
33 | cp network network.bak &&
|
---|
34 | sed "s/GATEWAY/# GATEWAY/" network.bak > network</userinput></screen></para>
|
---|
35 |
|
---|
36 | <para>You then need to create scripts which will override the default
|
---|
37 | network scripts and provide DHCP support. These two scripts are generic and
|
---|
38 | so for use with both DHCP clients. First, the
|
---|
39 | <filename>ifup-eth0</filename> script:</para>
|
---|
40 |
|
---|
41 | <para><screen><userinput>cat > /etc/sysconfig/network-devices/ifup-eth0 << "EOF" </userinput>
|
---|
42 | #!/bin/sh
|
---|
43 |
|
---|
44 | source /etc/sysconfig/rc || exit
|
---|
45 | source $rc_functions || exit
|
---|
46 | source $network_devices/ifconfig.eth0 || exit
|
---|
47 |
|
---|
48 | echo "Bringing up the eth0 interface..."
|
---|
49 | modprobe eth0
|
---|
50 | loadproc $DHCP_PROG $DHCP_START
|
---|
51 | <userinput>EOF</userinput></screen></para>
|
---|
52 |
|
---|
53 | <para>Then the <filename>ifdown-eth0</filename> script:</para>
|
---|
54 |
|
---|
55 | <para><screen><userinput>cat > /etc/sysconfig/network-devices/ifdown-eth0 << "EOF" </userinput>
|
---|
56 | #!/bin/sh
|
---|
57 |
|
---|
58 | source /etc/sysconfig/rc || exit
|
---|
59 | source $rc_functions || exit
|
---|
60 | source $network_devices/ifconfig.eth0 || exit
|
---|
61 |
|
---|
62 | echo "Bringing down the eth0 interface..."
|
---|
63 | $DHCP_PROG $DHCP_STOP
|
---|
64 | evaluate_retval
|
---|
65 | <userinput>EOF</userinput></screen></para>
|
---|
66 |
|
---|
67 | <para>Finally, we need to make these scripts executable:</para>
|
---|
68 |
|
---|
69 | <para><screen><userinput>chmod 755 /etc/sysconfig/network-devices/ifup-eth0 &&
|
---|
70 | chmod 755 /etc/sysconfig/network-devices/ifdown-eth0</userinput></screen></para>
|
---|
71 |
|
---|
72 | </sect2>
|
---|
73 |
|
---|
74 | </sect1>
|
---|
75 |
|
---|