]> git.ipfire.org Git - thirdparty/systemd.git/blame - man/networkd.conf.xml
test: "never" is not a valid value for Restart=
[thirdparty/systemd.git] / man / networkd.conf.xml
CommitLineData
514094f9 1<?xml version='1.0'?>
3a54a157 2<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
413708d1
VK
3 "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
4
5<!--
db9ecf05 6 SPDX-License-Identifier: LGPL-2.1-or-later
572eb058 7
96b2fb93 8 Copyright © 2014 Vinay Kulkarni
413708d1
VK
9-->
10
11<refentry id="networkd.conf" conditional='ENABLE_NETWORKD'
12 xmlns:xi="http://www.w3.org/2001/XInclude">
13 <refentryinfo>
14 <title>networkd.conf</title>
15 <productname>systemd</productname>
413708d1
VK
16 </refentryinfo>
17
18 <refmeta>
19 <refentrytitle>networkd.conf</refentrytitle>
20 <manvolnum>5</manvolnum>
21 </refmeta>
22
23 <refnamediv>
24 <refname>networkd.conf</refname>
25 <refname>networkd.conf.d</refname>
26 <refpurpose>Global Network configuration files</refpurpose>
27 </refnamediv>
28
29 <refsynopsisdiv>
30 <para><filename>/etc/systemd/networkd.conf</filename></para>
31 <para><filename>/etc/systemd/networkd.conf.d/*.conf</filename></para>
32 <para><filename>/usr/lib/systemd/networkd.conf.d/*.conf</filename></para>
33 </refsynopsisdiv>
34
35 <refsect1>
36 <title>Description</title>
37
38 <para>These configuration files control global network parameters.
e2e08e77 39 Currently the DHCP Unique Identifier (DUID).</para>
413708d1
VK
40
41 </refsect1>
42
43 <xi:include href="standard-conf.xml" xpointer="main-conf" />
44
c9fdaed0
YW
45 <refsect1>
46 <title>[Network] Section Options</title>
47
bdac5608 48 <para>The following options are available in the [Network] section:</para>
c9fdaed0
YW
49
50 <variablelist class='network-directives'>
51 <varlistentry>
52 <term><varname>SpeedMeter=</varname></term>
53 <listitem><para>Takes a boolean. If set to yes, then <command>systemd-networkd</command>
54 measures the traffic of each interface, and
d91b9bbc 55 <command>networkctl status <replaceable>INTERFACE</replaceable></command> shows the measured speed.
ec07c3c8
AK
56 Defaults to no.</para>
57
58 <xi:include href="version-info.xml" xpointer="v244"/></listitem>
c9fdaed0
YW
59 </varlistentry>
60
61 <varlistentry>
62 <term><varname>SpeedMeterIntervalSec=</varname></term>
63 <listitem><para>Specifies the time interval to calculate the traffic speed of each interface.
ec07c3c8
AK
64 If <varname>SpeedMeter=no</varname>, the value is ignored. Defaults to 10sec.</para>
65
66 <xi:include href="version-info.xml" xpointer="v244"/></listitem>
c9fdaed0 67 </varlistentry>
5d3b8017 68
d94dfe70
YW
69 <varlistentry>
70 <term><varname>ManageForeignRoutingPolicyRules=</varname></term>
71 <listitem><para>A boolean. When true, <command>systemd-networkd</command> will remove rules
72 that are not configured in .network files (except for rules with protocol
73 <literal>kernel</literal>). When false, it will not remove any foreign rules, keeping them even
74 if they are not configured in a .network file. Defaults to yes.
ec07c3c8
AK
75 </para>
76
77 <xi:include href="version-info.xml" xpointer="v249"/></listitem>
d94dfe70
YW
78 </varlistentry>
79
5d3b8017
SS
80 <varlistentry>
81 <term><varname>ManageForeignRoutes=</varname></term>
3fe23a96
YW
82 <listitem><para>A boolean. When true, <command>systemd-networkd</command> will remove routes
83 that are not configured in .network files (except for routes with protocol
84 <literal>kernel</literal>, <literal>dhcp</literal> when <varname>KeepConfiguration=</varname>
85 is true or <literal>dhcp</literal>, and <literal>static</literal> when
86 <varname>KeepConfiguration=</varname> is true or <literal>static</literal>). When false, it will
87 not remove any foreign routes, keeping them even if they are not configured in a .network file.
ec07c3c8
AK
88 Defaults to yes.</para>
89
90 <xi:include href="version-info.xml" xpointer="v246"/></listitem>
5d3b8017
SS
91 </varlistentry>
92
c038ce46
SS
93 <varlistentry>
94 <term><varname>RouteTable=</varname></term>
310eff72
YW
95 <listitem><para>Defines the route table name. Takes a whitespace-separated list of the pairs of
96 route table name and number. The route table name and number in each pair are separated with a
97 colon, i.e., <literal><replaceable>name</replaceable>:<replaceable>number</replaceable></literal>.
98 The route table name must not be <literal>default</literal>, <literal>main</literal>, or
99 <literal>local</literal>, as these route table names are predefined with route table number 253,
e8e91a81
YW
100 254, and 255, respectively. The route table number must be an integer in the range 1…4294967295,
101 except for predefined numbers 253, 254, and 255. This setting can be specified multiple times.
102 If an empty string is specified, then the list specified earlier are cleared. Defaults to unset.
ec07c3c8
AK
103 </para>
104
105 <xi:include href="version-info.xml" xpointer="v248"/></listitem>
c038ce46
SS
106 </varlistentry>
107
932ef6ec
YW
108 <varlistentry>
109 <term><varname>IPv6PrivacyExtensions=</varname></term>
110 <listitem>
111 <para>Specifies the default value for per-network <varname>IPv6PrivacyExtensions=</varname>.
112 Takes a boolean or the special values <literal>prefer-public</literal> and
113 <literal>kernel</literal>. See for details in
114 <citerefentry><refentrytitle>systemd.network</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
115 Defaults to <literal>no</literal>.</para>
ec07c3c8
AK
116
117 <xi:include href="version-info.xml" xpointer="v254"/>
932ef6ec
YW
118 </listitem>
119 </varlistentry>
c9fdaed0
YW
120 </variablelist>
121 </refsect1>
122
413708d1 123 <refsect1>
4e26a5ba
YW
124 <title>[DHCPv4] Section Options</title>
125
126 <para>This section configures the DHCP Unique Identifier (DUID) value used by DHCP protocol. DHCPv4
127 client protocol sends IAID and DUID to the DHCP server when acquiring a dynamic IPv4 address if
128 <option>ClientIdentifier=duid</option>. IAID and DUID allows a DHCP server to uniquely identify the
129 machine and the interface requesting a DHCP IP address. To configure IAID and ClientIdentifier, see
e2e08e77
ZJS
130 <citerefentry><refentrytitle>systemd.network</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
131 </para>
413708d1 132
e2e08e77 133 <para>The following options are understood:</para>
413708d1
VK
134
135 <variablelist class='network-directives'>
e2e08e77
ZJS
136 <varlistentry>
137 <term><varname>DUIDType=</varname></term>
138 <listitem><para>Specifies how the DUID should be generated. See
139 <ulink url="https://tools.ietf.org/html/rfc3315#section-9">RFC 3315</ulink>
140 for a description of all the options.</para>
141
80500bb5 142 <para>This takes an integer in the range 0…65535, or one of the following string values:
e2e08e77
ZJS
143 <variablelist>
144 <varlistentry>
319b94bc 145 <term><option>vendor</option></term>
e2e08e77
ZJS
146 <listitem><para>If <literal>DUIDType=vendor</literal>, then the DUID value will be generated using
147 <literal>43793</literal> as the vendor identifier (systemd) and hashed contents of
148 <citerefentry><refentrytitle>machine-id</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
149 This is the default if <varname>DUIDType=</varname> is not specified.
aefdc112
AK
150 </para>
151
152 <xi:include href="version-info.xml" xpointer="v230"/></listitem>
e2e08e77
ZJS
153 </varlistentry>
154
155 <varlistentry>
319b94bc
YW
156 <term><option>uuid</option></term>
157 <listitem><para>If <literal>DUIDType=uuid</literal>, and <varname>DUIDRawData=</varname> is not set,
158 then the product UUID is used as a DUID value. If a system does not have valid product UUID, then
159 an application-specific
160 <citerefentry><refentrytitle>machine-id</refentrytitle><manvolnum>5</manvolnum></citerefentry>
161 is used as a DUID value. About the application-specific machine ID, see
162 <citerefentry><refentrytitle>sd_id128_get_machine_app_specific</refentrytitle><manvolnum>3</manvolnum></citerefentry>.
aefdc112
AK
163 </para>
164
165 <xi:include href="version-info.xml" xpointer="v230"/></listitem>
319b94bc
YW
166 </varlistentry>
167
168 <varlistentry>
8fa266c2 169 <term><option>link-layer-time[:<replaceable>TIME</replaceable>]</option></term>
319b94bc 170 <term><option>link-layer</option></term>
8fa266c2
YW
171 <listitem><para>If <literal>link-layer-time</literal> or <literal>link-layer</literal> is specified,
172 then the MAC address of the interface is used as a DUID value. The value <literal>link-layer-time</literal>
173 can take additional time value after a colon, e.g. <literal>link-layer-time:2018-01-23 12:34:56 UTC</literal>.
174 The default time value is <literal>2000-01-01 00:00:00 UTC</literal>.
aefdc112
AK
175 </para>
176
177 <xi:include href="version-info.xml" xpointer="v240"/></listitem>
e2e08e77
ZJS
178 </varlistentry>
179 </variablelist>
180 </para>
181
182 <para>In all cases, <varname>DUIDRawData=</varname> can be used to override the
aefdc112
AK
183 actual DUID value that is used.</para>
184
185 <xi:include href="version-info.xml" xpointer="v230"/></listitem>
e2e08e77 186 </varlistentry>
413708d1 187
413708d1 188 <varlistentry>
e2e08e77
ZJS
189 <term><varname>DUIDRawData=</varname></term>
190 <listitem><para>Specifies the DHCP DUID value as a single newline-terminated, hexadecimal string, with each
191 byte separated by <literal>:</literal>. The DUID that is sent is composed of the DUID type specified by
192 <varname>DUIDType=</varname> and the value configured here.</para>
193
319b94bc
YW
194 <para>The DUID value specified here overrides the DUID that
195 <citerefentry><refentrytitle>systemd-networkd.service</refentrytitle><manvolnum>8</manvolnum></citerefentry>
196 generates from the machine ID. To configure DUID per-network, see
2ac5fe95 197 <citerefentry><refentrytitle>systemd.network</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
e2e08e77
ZJS
198 The configured DHCP DUID should conform to the specification in
199 <ulink url="http://tools.ietf.org/html/rfc3315#section-9">RFC 3315</ulink>,
200 <ulink url="http://tools.ietf.org/html/rfc6355">RFC 6355</ulink>. To configure IAID, see
201 <citerefentry><refentrytitle>systemd.network</refentrytitle><manvolnum>5</manvolnum>
202 </citerefentry>.</para>
203
204 <example>
205 <title>A <option>DUIDType=vendor</option> with a custom value</title>
206
207 <programlisting>DUIDType=vendor
208DUIDRawData=00:00:ab:11:f9:2a:c2:77:29:f9:5c:00</programlisting>
209
210 <para>This specifies a 14 byte DUID, with the type DUID-EN (<literal>00:02</literal>), enterprise number
211 43793 (<literal>00:00:ab:11</literal>), and identifier value <literal>f9:2a:c2:77:29:f9:5c:00</literal>.
212 </para>
213 </example>
aefdc112
AK
214
215 <xi:include href="version-info.xml" xpointer="v230"/>
e2e08e77 216 </listitem>
413708d1
VK
217 </varlistentry>
218 </variablelist>
219 </refsect1>
220
4e26a5ba
YW
221 <refsect1>
222 <title>[DHCPv6] Section Options</title>
223
224 <para>This section configures the DHCP Unique Identifier (DUID) value used by DHCPv6 protocol.
225 DHCPv6 client protocol sends the DHCP Unique Identifier and the interface Identity Association
226 Identifier (IAID) to a DHCPv6 server when acquiring a dynamic IPv6 address. IAID and DUID allows a
227 DHCPv6 server to uniquely identify the machine and the interface requesting a DHCP IP address. To
228 configure IAID, see
229 <citerefentry><refentrytitle>systemd.network</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
230 </para>
231
232 <para>The following options are understood:</para>
233
234 <variablelist class='network-directives'>
235 <varlistentry>
236 <term><varname>DUIDType=</varname></term>
237 <term><varname>DUIDRawData=</varname></term>
ec07c3c8
AK
238 <listitem><para>As in the [DHCPv4] section.</para>
239
240 <xi:include href="version-info.xml" xpointer="v249"/></listitem>
4e26a5ba
YW
241 </varlistentry>
242 </variablelist>
243 </refsect1>
244
413708d1
VK
245 <refsect1>
246 <title>See Also</title>
247 <para>
248 <citerefentry><refentrytitle>systemd</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
249 <citerefentry><refentrytitle>systemd.network</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
319b94bc
YW
250 <citerefentry><refentrytitle>systemd-networkd.service</refentrytitle><manvolnum>8</manvolnum></citerefentry>,
251 <citerefentry><refentrytitle>machine-id</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
252 <citerefentry><refentrytitle>sd_id128_get_machine_app_specific</refentrytitle><manvolnum>3</manvolnum></citerefentry>
413708d1
VK
253 </para>
254 </refsect1>
255
256</refentry>