source: networking/connect/dhcpcd.xml@ 4af155c

12.0 12.1 kea ken/TL2024 ken/tuningfonts lazarus plabs/newcss python3.11 rahul/power-profiles-daemon renodr/vulkan-addition trunk xry111/llvm18 xry111/xf86-video-removal
Last change on this file since 4af155c was 14891a90, checked in by Xi Ruoyao <xry111@…>, 12 months ago

treewide: More "User Notes" clean up

Remove links to pages w/o real contents.

  • Property mode set to 100644
File size: 15.4 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 <!ENTITY dhcpcd-download-http "https://github.com/NetworkConfiguration/dhcpcd/releases/download/v&dhcpcd-version;/dhcpcd-&dhcpcd-version;.tar.xz">
8 <!ENTITY dhcpcd-download-ftp " ">
9 <!ENTITY dhcpcd-md5sum "002d3c7bfa057248f23b2b2f33f02f5a">
10 <!ENTITY dhcpcd-size "260 KB">
11 <!ENTITY dhcpcd-buildsize "3.6 MB (with tests)">
12 <!ENTITY dhcpcd-time "less than 0.1 SBU (with tests)">
13]>
14
15<sect1 id="dhcpcd" xreflabel="dhcpcd-&dhcpcd-version;">
16 <?dbhtml filename="dhcpcd.html"?>
17
18
19 <title>dhcpcd-&dhcpcd-version;</title>
20
21 <indexterm zone="dhcpcd">
22 <primary sortas="a-dhcpcd">dhcpcd</primary>
23 </indexterm>
24
25 <sect2 role="package">
26 <title>Introduction to dhcpcd</title>
27
28 <para>
29 <application>dhcpcd</application> is an implementation of the
30 DHCP client specified in RFC2131. A DHCP client is useful for connecting
31 your computer to a network which uses DHCP to assign network
32 addresses. dhcpcd strives to be a fully featured, yet very lightweight
33 DHCP client.
34 </para>
35
36 &lfs113_checked;
37
38 <bridgehead renderas="sect3">Package Information</bridgehead>
39 <itemizedlist spacing="compact">
40 <listitem>
41 <para>
42 Download (HTTP): <ulink url="&dhcpcd-download-http;"/>
43 </para>
44 </listitem>
45 <listitem>
46 <para>
47 Download (FTP): <ulink url="&dhcpcd-download-ftp;"/>
48 </para>
49 </listitem>
50 <listitem>
51 <para>
52 Download MD5 sum: &dhcpcd-md5sum;
53 </para>
54 </listitem>
55 <listitem>
56 <para>
57 Download size: &dhcpcd-size;
58 </para>
59 </listitem>
60 <listitem>
61 <para>
62 Estimated disk space required: &dhcpcd-buildsize;
63 </para>
64 </listitem>
65 <listitem>
66 <para>
67 Estimated build time: &dhcpcd-time;
68 </para>
69 </listitem>
70 </itemizedlist>
71
72 <bridgehead renderas="sect3">dhcpcd Dependencies</bridgehead>
73
74 <bridgehead renderas="sect4">Optional</bridgehead>
75 <para role="optional">
76 <xref linkend="llvm"/> (with Clang),
77 <xref linkend="ntp"/>,
78 <ulink url="https://chrony.tuxfamily.org/">chronyd</ulink>, and
79 <ulink url="https://github.com/thkukuk/ypbind-mt/">ypbind</ulink>
80 </para>
81
82 </sect2>
83
84 <sect2 id='dhcpcd-privsep'>
85 <title>Privilege separation</title>
86
87 <para>
88 Recent releases of <application>dhcpcd</application> optionally support
89 privilege separation. As the practical security benefits of this are
90 unclear for a program like <application>dhcpcd</application> and the
91 setup is more complicated, the book currently defaults to disable it.
92 </para>
93 <para>
94 If you however would like to use privilege separation, additional
95 installation steps are necessary to set up the proper environment. Issue
96 the following commands as the
97 <systemitem class="username">root</systemitem> user:
98 </para>
99
100<screen role="root"><userinput>install -v -m700 -d /var/lib/dhcpcd &amp;&amp;
101
102groupadd -g 52 dhcpcd &amp;&amp;
103useradd -c 'dhcpcd PrivSep' \
104 -d /var/lib/dhcpcd \
105 -g dhcpcd \
106 -s /bin/false \
107 -u 52 dhcpcd &amp;&amp;
108chown -v dhcpcd:dhcpcd /var/lib/dhcpcd </userinput></screen>
109
110 </sect2>
111
112 <sect2 role="installation">
113 <title>Installation of dhcpcd</title>
114<!-- Now in the code
115 <para>Fix a runtime error caused by a change in glibc-2.36:</para>
116
117<screen><userinput>sed '/Deny everything else/i SECCOMP_ALLOW(__NR_getrandom),' \
118 -i src/privsep-linux.c</userinput></screen>
119-->
120 <para>
121 Build <application>dhcpcd</application> without privilege separation
122 by running the following command:
123 </para>
124
125<screen><userinput>./configure --prefix=/usr \
126 --sysconfdir=/etc \
127 --libexecdir=/usr/lib/dhcpcd \
128 --dbdir=/var/lib/dhcpcd \
129 --runstatedir=/run \
130 --disable-privsep &amp;&amp;
131make</userinput></screen>
132
133 <para>
134 Build <application>dhcpcd</application> with privilege separation
135 by running the following commands:
136 </para>
137
138<screen role="nodump"><userinput>./configure --prefix=/usr \
139 --sysconfdir=/etc \
140 --libexecdir=/usr/lib/dhcpcd \
141 --dbdir=/var/lib/dhcpcd \
142 --runstatedir=/run \
143 --privsepuser=dhcpcd &amp;&amp;
144make</userinput></screen>
145
146 <para>
147 To test the results, issue: <command>make test</command>.
148 </para>
149
150 <para>
151 Now, as the <systemitem class="username">root</systemitem> user:
152 </para>
153
154<screen role='root'><userinput>make install</userinput></screen>
155
156<!--
157 <para>
158 By default, a plain text lease info file isn't created but the
159 <application>dhcpcd</application> provides a hook which can be used for
160 creating such a file. Install the hook by running the following commands
161 as the <systemitem class="username">root</systemitem> user:
162 </para>
163
164<screen role='root'><userinput>sed -i "s;/var/lib;/run;g" dhcpcd-hooks/50-dhcpcd-compat &amp;&amp;
165install -v -m 644 dhcpcd-hooks/50-dhcpcd-compat /lib/dhcpcd/dhcpcd-hooks/</userinput></screen>
166-->
167
168 </sect2>
169
170 <sect2 role="commands">
171 <title>Command Explanations</title>
172
173 <para>
174 <parameter>--libexecdir=/usr/lib/dhcpcd</parameter>: Set a more proper
175 location for dhcpcd internal libraries.
176 </para>
177
178 <para>
179 <parameter>--dbdir=/var/lib/dhcpcd</parameter>: The default
180 <filename class="directory">/var/db</filename> is not FHS-compliant
181 </para>
182
183 <para>
184 <parameter>--runstatedir=/run</parameter>: The default
185 <filename class="directory">/var/run</filename> is a symbolic
186 link to <filename class="directory">/run</filename>.
187 </para>
188
189 <para>
190 <option>--with-hook=...</option>: You can optionally install more hooks,
191 for example to install some configuration files such as
192 <filename>ntp.conf</filename>. The set of hooks is in the
193 <filename class="directory">dhcpcd-hooks</filename> directory in the
194 build tree.
195 </para>
196
197 <para>
198 <parameter>--disable-privsep</parameter>: Do not use privilege separation,
199 which is the default.
200 </para>
201
202 <para>
203 <parameter>--privsepuser=dhcpcd</parameter>: Use this unprivileged user
204 in a privilege separation setup.
205 </para>
206
207 <para>
208 <option>--with-hook=...</option>: You can optionally install more hooks,
209 for example to install some configuration files such as
210 <filename>ntp.conf</filename>. The set of hooks is in the
211 <filename class="directory">dhcpcd-hooks</filename> directory in the
212 build tree.
213 </para>
214 </sect2>
215
216 <sect2 role="configuration">
217 <title>Configuring dhcpcd</title>
218
219 <sect3 id="dhcpcd-config">
220 <title>Config Files</title>
221
222 <para>
223 <filename>/etc/dhcpcd.conf</filename>
224 </para>
225
226 <indexterm zone="dhcpcd dhcpcd-config">
227 <primary sortas="e-etc-dhcpcd-dhcpcd-conf">/etc/dhcpcd/dhcpcd.conf</primary>
228 </indexterm>
229
230 </sect3>
231
232 <sect3 id="dhcpcd-init" revision="sysv">
233 <title>General Configuration Information</title>
234
235 <para>
236 To configure <command>dhcpcd</command>, you need to first install
237 the network service script,
238 <filename>/usr/lib/services/dhcpcd</filename>
239 included in the <xref linkend="bootscripts"/> package
240 (as user <systemitem class="username">root</systemitem>):
241 </para>
242
243 <indexterm zone="dhcpcd dhcpcd-init">
244 <primary sortas="f-dhcpcd">dhcpcd (service script)</primary>
245 </indexterm>
246
247<screen role='root'><userinput>make install-service-dhcpcd</userinput></screen>
248
249 <note>
250 <para id="dhcpcd-config3">
251 The default for <command>dhcpcd</command> is to set the hostname
252 and mtu. It also overwrites <filename>/etc/resolv.conf </filename>
253 and <filename>/etc/ntp.conf</filename>. These
254 modifications to system files are done by hooks which are stored in
255 <filename class="directory">/usr/lib/dhcpcd/dhcpcd-hooks</filename>.
256 Set up <command>dhcpcd</command> by removing or adding hooks from/to
257 that directory. The execution of hooks can be disabled by using
258 the <option>--nohook</option> (<option>-C</option>) command line
259 option or by the <option>nohook</option> option in the
260 <filename>/etc/dhcpcd.conf</filename> file.
261 </para>
262 </note>
263
264 <para id="dhcpcd-config2">
265 Finally, as the <systemitem class="username">root</systemitem> user
266 create the <filename>/etc/sysconfig/ifconfig.eth0</filename>
267 configuration file using the following commands. Adjust appropriately
268 for additional interfaces:
269 </para>
270
271 <indexterm zone="dhcpcd dhcpcd-config2">
272 <primary sortas="e-etc-sysconfig-dhcpcd">/etc/sysconfig/ifconfig.eth0 (dhcpcd)</primary>
273 </indexterm>
274
275<screen role='root'><userinput>cat &gt; /etc/sysconfig/ifconfig.eth0 &lt;&lt; "EOF"
276<literal>ONBOOT="yes"
277IFACE="eth0"
278SERVICE="dhcpcd"
279DHCP_START="-b -q -h ''<replaceable>&lt;insert appropriate start options here&gt;</replaceable>"
280DHCP_STOP="-k <replaceable>&lt;insert additional stop options here&gt;</replaceable>"</literal>
281EOF</userinput></screen>
282
283 <para>
284 For more information on the appropriate <envar>DHCP_START</envar> and
285 <envar>DHCP_STOP</envar> values, examine the man page for
286 <command>dhcpcd</command>.
287 </para>
288
289 <indexterm zone="dhcpcd dhcpcd-config3">
290 <primary sortas="e-etc-resolv.conf">/etc/resolv.conf</primary>
291 </indexterm>
292 </sect3>
293
294 <sect3 id="dhcpcd-init2" revision="sysv">
295 <title>Configuration Information: fixed ip</title>
296
297 <para id="dhcpcd-config4">
298 Although not usual, it is possible that you need
299 to configure <application>dhcpcd</application> to use a fixed ip. Here,
300 we give an example. As the
301 <systemitem class="username">root</systemitem> user create the
302 <filename>/etc/sysconfig/ifconfig.eth0</filename> configuration file
303 using the following commands. Adjust appropriately for additional
304 interfaces and for the actual ip and router you need:
305 </para>
306
307 <indexterm zone="dhcpcd dhcpcd-config4">
308 <primary sortas="e-etc-sysconfig-dhcpcd">/etc/sysconfig/ifconfig.eth0 (dhcpcd)</primary>
309 </indexterm>
310
311<screen role='nodump'><userinput>cat &gt; /etc/sysconfig/ifconfig.eth0 &lt;&lt; "EOF"
312<literal>ONBOOT="yes"
313IFACE="eth0"
314SERVICE="dhcpcd"
315DHCP_START="-b -q -S ip_address=192.168.0.10/24 -S routers=192.168.0.1"
316DHCP_STOP="-k"</literal>
317EOF</userinput></screen>
318
319 <para>
320 You can either use DNS servers in
321 <filename>/etc/resolv.conf</filename> from another system, your
322 preferred servers, or just the example
323 <filename>/etc/resolv.conf.head</filename> file below as is:
324 </para>
325
326<screen role='nodump'><userinput>cat &gt; /etc/resolv.conf.head &lt;&lt; "EOF"
327<literal># OpenDNS servers
328nameserver 208.67.222.222
329nameserver 208.67.220.220</literal>
330EOF</userinput></screen>
331
332 </sect3>
333
334 <sect3 id="dhcpcd-init3" revision="systemd">
335 <title>General Configuration Information</title>
336
337 <para>
338 If you want to configure network interfaces at boot using
339 <command>dhcpcd</command>, you need to install the
340 systemd unit included in <xref linkend="systemd-units"/>
341 package by running the following command as the
342 <systemitem class="username">root</systemitem> user:
343 </para>
344
345<screen role="root"><userinput>make install-dhcpcd</userinput></screen>
346
347 <indexterm zone="dhcpcd dhcpcd-init3">
348 <primary sortas="f-dhcpcd">dhcpcd</primary>
349 </indexterm>
350
351 <note>
352 <para id="dhcpcd-config5">
353 The default behavior of <command>dhcpcd</command> is to set the
354 hostname and the mtu. It also overwrites <filename>/etc/resolv.conf
355 </filename> and <filename>/etc/ntp.conf</filename>. These
356 modifications to system configuration files are done by hooks which
357 are stored in <filename class="directory">
358 /lib/dhcpcd/dhcpcd-hooks</filename>. Set up <command>dhcpcd</command>
359 by removing or adding hooks from/to that directory. The execution
360 of hooks can be disabled by using the <option>--nohook</option>
361 (<option>-C</option>) command line option or by the
362 <option>nohook</option> option in the <filename>/etc/dhcpcd.conf
363 </filename> file.
364 </para>
365 </note>
366
367 <indexterm zone="dhcpcd dhcpcd-config5">
368 <primary sortas="e-etc-resolv.conf">/etc/resolv.conf</primary>
369 </indexterm>
370
371 <note>
372 <para>
373 Make sure that you disable the <command>systemd-networkd</command>
374 service or configure it not to manage the interfaces you want to
375 manage with <application>dhcpcd</application>.
376 </para>
377 </note>
378
379 <para>
380 At this point you can test if <command>dhcpcd</command> is
381 behaving as expected by running the following command as the
382 <systemitem class="username">root</systemitem> user:
383 </para>
384
385<screen role="root"><userinput>systemctl start dhcpcd@<replaceable>eth0</replaceable></userinput></screen>
386
387 <para>
388 To start <command>dhcpcd</command> on a specific interface
389 at boot, enable the previously installed systemd unit by
390 running the following command as the
391 <systemitem class="username">root</systemitem> user:
392 </para>
393
394<screen role="root"><userinput>systemctl enable dhcpcd@<replaceable>eth0</replaceable></userinput></screen>
395
396 <para>
397 Replace <replaceable>eth0</replaceable> with the actual interface name.
398 </para>
399
400 </sect3>
401
402 </sect2>
403
404 <sect2 role="content">
405 <title>Contents</title>
406
407 <segmentedlist>
408 <segtitle>Installed Program</segtitle>
409 <segtitle>Installed Library</segtitle>
410 <segtitle>Installed Directory</segtitle>
411
412 <seglistitem>
413 <seg>dhcpcd</seg>
414 <seg>/usr/lib/dhcpcd/dev/udev.so</seg>
415 <seg>/{usr,var}/lib/dhcpcd and /usr/share/dhcpcd</seg>
416 </seglistitem>
417 </segmentedlist>
418
419 <variablelist>
420 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
421 <?dbfo list-presentation="list"?>
422 <?dbhtml list-presentation="table"?>
423
424 <varlistentry id="dhcpcd-prog">
425 <term><command>dhcpcd</command></term>
426 <listitem>
427 <para>
428 is an implementation of the DHCP client specified in RFC2131
429 </para>
430 <indexterm zone="dhcpcd dhcpcd-prog">
431 <primary sortas="b-dhcpcd">dhcpcd</primary>
432 </indexterm>
433 </listitem>
434 </varlistentry>
435
436 <varlistentry id="dhcpcd-udev">
437 <term><filename class="libraryfile">udev.so</filename></term>
438 <listitem>
439 <para>
440 adds udev support for interface arrival and departure; this is
441 because udev likes to rename the interface, which it can't do if
442 dhcpcd grabs it first
443 </para>
444 <indexterm zone="dhcpcd dhcpcd-udev">
445 <primary sortas="c-dhcpcd-udev">udev.so</primary>
446 </indexterm>
447 </listitem>
448 </varlistentry>
449
450 </variablelist>
451
452 </sect2>
453
454</sect1>
Note: See TracBrowser for help on using the repository browser.