]> git.ipfire.org Git - thirdparty/systemd.git/blob - man/systemd.network.xml
3c887b01059a1c5ae58d4d57a95e4789d4047d6b
[thirdparty/systemd.git] / man / systemd.network.xml
1 <?xml version='1.0'?>
2 <!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd">
4 <!-- SPDX-License-Identifier: LGPL-2.1-or-later -->
5
6 <refentry id="systemd.network" conditional='ENABLE_NETWORKD'
7 xmlns:xi="http://www.w3.org/2001/XInclude">
8
9 <refentryinfo>
10 <title>systemd.network</title>
11 <productname>systemd</productname>
12 </refentryinfo>
13
14 <refmeta>
15 <refentrytitle>systemd.network</refentrytitle>
16 <manvolnum>5</manvolnum>
17 </refmeta>
18
19 <refnamediv>
20 <refname>systemd.network</refname>
21 <refpurpose>Network configuration</refpurpose>
22 </refnamediv>
23
24 <refsynopsisdiv>
25 <para><filename><replaceable>network</replaceable>.network</filename></para>
26 </refsynopsisdiv>
27
28 <refsect1>
29 <title>Description</title>
30
31 <para>A plain ini-style text file that encodes network configuration for matching network
32 interfaces, used by
33 <citerefentry><refentrytitle>systemd-networkd</refentrytitle><manvolnum>8</manvolnum></citerefentry>.
34 See <citerefentry><refentrytitle>systemd.syntax</refentrytitle><manvolnum>7</manvolnum></citerefentry>
35 for a general description of the syntax.</para>
36
37 <para>The main network file must have the extension <filename>.network</filename>; other
38 extensions are ignored. Networks are applied to links whenever the links appear.</para>
39
40 <para>The <filename>.network</filename> files are read from the files located in the system network
41 directories <filename>/usr/lib/systemd/network</filename> and
42 <filename>/usr/local/lib/systemd/network</filename>, the volatile runtime network directory
43 <filename>/run/systemd/network</filename> and the local administration network directory
44 <filename>/etc/systemd/network</filename>. All configuration files are collectively sorted and
45 processed in alphanumeric order, regardless of the directories in which they live. However, files
46 with identical filenames replace each other. It is recommended that each filename is prefixed with
47 a number smaller than <literal>70</literal> (e.g. <filename>10-eth0.network</filename>). Otherwise, the
48 default <filename>.network</filename> files or those generated by
49 <citerefentry><refentrytitle>systemd-network-generator.service</refentrytitle><manvolnum>8</manvolnum></citerefentry>
50 may take precedence over user configured files. Files in <filename>/etc/</filename> have the highest
51 priority, files in <filename>/run/</filename> take precedence over files with the same name under
52 <filename>/usr/</filename>. This can be used to override a system-supplied configuration file with
53 a local file if needed. As a special case, an empty file (file size 0) or symlink with the same
54 name pointing to <filename>/dev/null</filename> disables the configuration file entirely (it is
55 "masked").</para>
56
57 <para>Along with the network file <filename>foo.network</filename>, a "drop-in" directory
58 <filename>foo.network.d/</filename> may exist. All files with the suffix
59 <literal>.conf</literal> from this directory will be merged in the alphanumeric order and parsed
60 after the main file itself has been parsed. This is useful to alter or add configuration settings,
61 without having to modify the main configuration file. Each drop-in file must have appropriate
62 section headers.</para>
63
64 <para>In addition to <filename>/etc/systemd/network</filename>, drop-in <literal>.d</literal>
65 directories can be placed in <filename>/usr/lib/systemd/network</filename> or
66 <filename>/run/systemd/network</filename> directories. Drop-in files in
67 <filename>/etc/</filename> take precedence over those in <filename>/run/</filename> which in turn
68 take precedence over those in <filename>/usr/lib/</filename>. Drop-in files under any of these
69 directories take precedence over the main network file wherever located.</para>
70 </refsect1>
71
72 <refsect1>
73 <title>[Match] Section Options</title>
74
75 <para>The network file contains a [Match] section, which determines if a given network file may
76 be applied to a given interface; and a [Network] section specifying how the interface should be
77 configured. The first (in alphanumeric order) of the network files that matches a given interface
78 is applied, all later files are ignored, even if they match as well.</para>
79
80 <para>Note that any network interfaces that have the <varname>ID_NET_MANAGED_BY=</varname> udev property
81 set will never be matched by any .network files – unless the property's value is the string
82 <literal>io.systemd.Network</literal> – even if the [Match] section would otherwise match. This may be
83 used to exclude specific network interfaces from <command>systemd-networkd</command>'s management, while
84 keeping the [Match] section generic. The <varname>ID_NET_MANAGED_BY=</varname> property thus declares
85 intended <emphasis>ownership</emphasis> of the device, and permits ensuring that concurrent network
86 management implementations do not compete for management of specific devices.</para>
87
88 <para>A network file is said to match a network interface if all matches specified by the [Match]
89 section are satisfied. When a network file does not contain valid settings in [Match] section, then
90 the file will match all interfaces and <command>systemd-networkd</command> warns about that. Hint:
91 to avoid the warning and to make it clear that all interfaces shall be matched, add the following:
92 <programlisting>Name=*</programlisting> The following keys are accepted:</para>
93
94 <variablelist class='network-directives'>
95 <xi:include href="systemd.link.xml" xpointer="mac-address" />
96 <xi:include href="systemd.link.xml" xpointer="permanent-mac-address" />
97 <xi:include href="systemd.link.xml" xpointer="path" />
98 <xi:include href="systemd.link.xml" xpointer="driver" />
99 <xi:include href="systemd.link.xml" xpointer="type" />
100 <xi:include href="systemd.link.xml" xpointer="kind" />
101 <xi:include href="systemd.link.xml" xpointer="property" />
102
103 <varlistentry>
104 <term><varname>Name=</varname></term>
105 <listitem>
106 <para>A whitespace-separated list of shell-style globs matching the device name, as exposed
107 by the udev property <literal>INTERFACE</literal>, or device's alternative names. If the
108 list is prefixed with a "!", the test is inverted.</para>
109
110 <xi:include href="version-info.xml" xpointer="v211"/>
111 </listitem>
112 </varlistentry>
113
114 <varlistentry>
115 <term><varname>WLANInterfaceType=</varname></term>
116 <listitem>
117 <para>A whitespace-separated list of wireless network type. Supported values are
118 <literal>ad-hoc</literal>, <literal>station</literal>, <literal>ap</literal>,
119 <literal>ap-vlan</literal>, <literal>wds</literal>, <literal>monitor</literal>,
120 <literal>mesh-point</literal>, <literal>p2p-client</literal>, <literal>p2p-go</literal>,
121 <literal>p2p-device</literal>, <literal>ocb</literal>, and <literal>nan</literal>. If the
122 list is prefixed with a "!", the test is inverted. </para>
123
124 <xi:include href="version-info.xml" xpointer="v244"/>
125 </listitem>
126 </varlistentry>
127
128 <varlistentry>
129 <term><varname>SSID=</varname></term>
130 <listitem>
131 <para>A whitespace-separated list of shell-style globs matching the SSID of the currently
132 connected wireless LAN. If the list is prefixed with a "!", the test is inverted.</para>
133
134 <xi:include href="version-info.xml" xpointer="v244"/>
135 </listitem>
136 </varlistentry>
137
138 <varlistentry>
139 <term><varname>BSSID=</varname></term>
140 <listitem>
141 <para>A whitespace-separated list of hardware address of the currently connected wireless
142 LAN. Use full colon-, hyphen- or dot-delimited hexadecimal. See the example in
143 <varname>MACAddress=</varname>. This option may appear more than once, in which case the
144 lists are merged. If the empty string is assigned to this option, the list is reset.</para>
145
146 <xi:include href="version-info.xml" xpointer="v244"/>
147 </listitem>
148 </varlistentry>
149
150 <xi:include href="systemd.link.xml" xpointer="host" />
151 <xi:include href="systemd.link.xml" xpointer="virtualization" />
152 <xi:include href="systemd.link.xml" xpointer="kernel-command-line" />
153 <xi:include href="systemd.link.xml" xpointer="kernel-version" />
154 <xi:include href="systemd.link.xml" xpointer="credential" />
155 <xi:include href="systemd.link.xml" xpointer="architecture" />
156 <xi:include href="systemd.link.xml" xpointer="firmware" />
157 </variablelist>
158 </refsect1>
159
160 <refsect1>
161 <title>[Link] Section Options</title>
162
163 <para>The [Link] section accepts the following keys:</para>
164
165 <variablelist class='network-directives'>
166 <varlistentry>
167 <term><varname>MACAddress=</varname></term>
168 <listitem>
169 <para>The hardware address to set for the device.</para>
170
171 <xi:include href="version-info.xml" xpointer="v218"/>
172 </listitem>
173 </varlistentry>
174
175 <varlistentry>
176 <term><varname>MTUBytes=</varname></term>
177 <listitem>
178 <para>The maximum transmission unit in bytes to set for the device. The usual suffixes K, M,
179 G, are supported and are understood to the base of 1024.</para>
180 <para>Note that if IPv6 is enabled on the interface, and the MTU is chosen below 1280 (the
181 minimum MTU for IPv6) it will automatically be increased to this value.</para>
182
183 <xi:include href="version-info.xml" xpointer="v218"/>
184 </listitem>
185 </varlistentry>
186
187 <varlistentry>
188 <term><varname>ARP=</varname></term>
189 <listitem>
190 <para>Takes a boolean. If set to true, the ARP (low-level Address Resolution Protocol)
191 for this interface is enabled. When unset, the kernel's default will be used.</para>
192 <para> For example, disabling ARP is useful when creating multiple MACVLAN or VLAN virtual
193 interfaces atop a single lower-level physical interface, which will then only serve as a
194 link/"bridge" device aggregating traffic to the same physical link and not participate in
195 the network otherwise. Defaults to unset.</para>
196
197 <xi:include href="version-info.xml" xpointer="v232"/>
198 </listitem>
199 </varlistentry>
200
201 <varlistentry>
202 <term><varname>Multicast=</varname></term>
203 <listitem>
204 <para>Takes a boolean. If set to true, the multicast flag on the device is enabled. Defaults
205 to unset.</para>
206
207 <xi:include href="version-info.xml" xpointer="v239"/>
208 </listitem>
209 </varlistentry>
210
211 <varlistentry>
212 <term><varname>AllMulticast=</varname></term>
213 <listitem>
214 <para>Takes a boolean. If set to true, the driver retrieves all multicast packets from the
215 network. This happens when multicast routing is enabled. Defaults to unset.</para>
216
217 <xi:include href="version-info.xml" xpointer="v239"/>
218 </listitem>
219 </varlistentry>
220
221 <varlistentry>
222 <term><varname>Promiscuous=</varname></term>
223 <listitem>
224 <para>Takes a boolean. If set to true, promiscuous mode of the interface is enabled. Defaults
225 to unset.</para>
226 <para>If this is set to false for the underlying link of a <literal>passthru</literal> mode
227 MACVLAN/MACVTAP, the virtual interface will be created with the <literal>nopromisc</literal>
228 flag set.</para>
229
230 <xi:include href="version-info.xml" xpointer="v248"/>
231 </listitem>
232 </varlistentry>
233
234 <varlistentry>
235 <term><varname>Unmanaged=</varname></term>
236 <listitem>
237 <para>Takes a boolean. When <literal>yes</literal>, no attempts are made to bring up or
238 configure matching links, equivalent to when there are no matching network files. Defaults to
239 <literal>no</literal>.</para>
240 <para>This is useful for preventing later matching network files from interfering with
241 certain interfaces that are fully controlled by other applications.</para>
242
243 <xi:include href="version-info.xml" xpointer="v233"/>
244 </listitem>
245 </varlistentry>
246
247 <varlistentry>
248 <term><varname>Group=</varname></term>
249 <listitem>
250 <para>Link groups are similar to port ranges found in managed switches. When network
251 interfaces are added to a numbered group, operations on all the interfaces from that group
252 can be performed at once. Takes an unsigned integer in the range 02147483647. Defaults to
253 unset.</para>
254
255 <xi:include href="version-info.xml" xpointer="v246"/>
256 </listitem>
257 </varlistentry>
258
259 <varlistentry>
260 <term><varname>RequiredForOnline=</varname></term>
261 <listitem>
262 <para>Takes a boolean, a minimum operational state (e.g., <literal>carrier</literal>), or a range
263 of operational state separated with a colon (e.g., <literal>degraded:routable</literal>).
264 Please see
265 <citerefentry><refentrytitle>networkctl</refentrytitle><manvolnum>1</manvolnum></citerefentry>
266 for possible operational states. When <literal>yes</literal>, the network is deemed required
267 when determining whether the system is online (including when running
268 <command>systemd-networkd-wait-online</command>). When <literal>no</literal>, the network is
269 ignored when determining the online state. When a minimum operational state and an optional
270 maximum operational state are set, <command>systemd-networkd-wait-online</command> deems that the
271 interface is online when the operational state is in the specified range.</para>
272
273 <para>Defaults to <literal>yes</literal> when <varname>ActivationPolicy=</varname> is not
274 set, or set to <literal>up</literal>, <literal>always-up</literal>, or
275 <literal>bound</literal>. Defaults to <literal>no</literal> when
276 <varname>ActivationPolicy=</varname> is set to <literal>manual</literal> or
277 <literal>down</literal>. This is forced to <literal>no</literal> when
278 <varname>ActivationPolicy=</varname> is set to <literal>always-down</literal>.</para>
279
280 <para>The network will be brought up normally (as configured by
281 <varname>ActivationPolicy=</varname>), but in the event that there is no address being
282 assigned by DHCP or the cable is not plugged in, the link will simply remain offline and be
283 skipped automatically by <command>systemd-networkd-wait-online</command> if
284 <literal>RequiredForOnline=no</literal>.</para>
285
286 <para>The boolean value <literal>yes</literal> is translated as follows;
287 <variablelist>
288 <varlistentry>
289 <term><option>CAN devices</option></term>
290 <listitem>
291 <para><literal>carrier</literal>,</para>
292 <xi:include href="version-info.xml" xpointer="v256"/>
293 </listitem>
294 </varlistentry>
295 <varlistentry>
296 <term><option>Master devices, e.g. bond or bridge</option></term>
297 <listitem>
298 <para><literal>degraded-carrier</literal> with <varname>RequiredFamilyForOnline=any</varname>,</para>
299 <xi:include href="version-info.xml" xpointer="v256"/>
300 </listitem>
301 </varlistentry>
302 <varlistentry>
303 <term><option>Bonding port interfaces</option></term>
304 <listitem>
305 <para><literal>enslaved</literal>,</para>
306 <xi:include href="version-info.xml" xpointer="v256"/>
307 </listitem>
308 </varlistentry>
309 <varlistentry>
310 <term><option>Other interfaces</option></term>
311 <listitem>
312 <para><literal>degraded</literal>.</para>
313 <xi:include href="version-info.xml" xpointer="v236"/>
314 </listitem>
315 </varlistentry>
316 </variablelist>
317 </para>
318
319 <para>This setting can be overridden by the command line option for
320 <command>systemd-networkd-wait-online</command>. See
321 <citerefentry><refentrytitle>systemd-networkd-wait-online.service</refentrytitle><manvolnum>8</manvolnum></citerefentry>
322 for more details.</para>
323
324 <xi:include href="version-info.xml" xpointer="v236"/>
325 </listitem>
326 </varlistentry>
327
328 <varlistentry>
329 <term><varname>RequiredFamilyForOnline=</varname></term>
330 <listitem>
331 <para>Takes an address family. When specified, an IP address in the given family is deemed
332 required when determining whether the link is online (including when running
333 <command>systemd-networkd-wait-online</command>). Takes one of <literal>ipv4</literal>,
334 <literal>ipv6</literal>, <literal>both</literal>, or <literal>any</literal>. Defaults to
335 <literal>no</literal>. Note that this option has no effect if
336 <literal>RequiredForOnline=no</literal>.</para>
337
338 <xi:include href="version-info.xml" xpointer="v249"/>
339 </listitem>
340 </varlistentry>
341
342 <varlistentry>
343 <term><varname>ActivationPolicy=</varname></term>
344 <listitem>
345 <para>Specifies the policy for <command>systemd-networkd</command> managing the link
346 administrative state. Specifically, this controls how <command>systemd-networkd</command>
347 changes the network device's <literal>IFF_UP</literal> flag, which is sometimes
348 controlled by system administrators by running e.g.,
349 <command>ip link set dev eth0 up</command> or <command>ip link set dev eth0 down</command>,
350 and can also be changed with <command>networkctl up eth0</command> or
351 <command>networkctl down eth0</command>.</para>
352
353 <para>Takes one of <literal>up</literal>, <literal>always-up</literal>,
354 <literal>manual</literal>, <literal>always-down</literal>, <literal>down</literal>,
355 or <literal>bound</literal>. When <literal>manual</literal>,
356 <command>systemd-networkd</command> will not change the link's admin state automatically;
357 the system administrator must bring the interface up or down manually, as desired. When
358 <literal>up</literal> (the default) or <literal>always-up</literal>, or
359 <literal>down</literal> or <literal>always-down</literal>,
360 <command>systemd-networkd</command> will set the link up or down, respectively, when the
361 interface is (re)configured. When <literal>always-up</literal> or
362 <literal>always-down</literal>, <command>systemd-networkd</command> will set the link up or
363 down, respectively, any time <command>systemd-networkd</command> detects a change in the
364 administrative state. When <varname>BindCarrier=</varname> is also set, this is automatically
365 set to <literal>bound</literal> and any other value is ignored.</para>
366
367 <para>When the policy is set to <literal>down</literal> or <literal>manual</literal>, the
368 default value of <varname>RequiredForOnline=</varname> is <literal>no</literal>. When the
369 policy is set to <literal>always-down</literal>, the value of
370 <varname>RequiredForOnline=</varname> forced to <literal>no</literal>.</para>
371
372 <para>The administrative state is not the same as the carrier state, so using
373 <literal>always-up</literal> does not mean the link will never lose carrier. The link carrier
374 depends on both the administrative state as well as the network device's physical connection.
375 However, to avoid reconfiguration failures, when using <literal>always-up</literal>,
376 <varname>IgnoreCarrierLoss=</varname> is forced to true.</para>
377
378 <xi:include href="version-info.xml" xpointer="v248"/>
379 </listitem>
380 </varlistentry>
381 </variablelist>
382 </refsect1>
383
384 <xi:include href="systemd.link.xml" xpointer="sr-iov" />
385
386 <refsect1>
387 <title>[Network] Section Options</title>
388
389 <para>The [Network] section accepts the following keys:</para>
390
391 <variablelist class='network-directives'>
392 <varlistentry>
393 <term><varname>Description=</varname></term>
394 <listitem>
395 <para>A description of the device. This is only used for presentation purposes.</para>
396
397 <xi:include href="version-info.xml" xpointer="v211"/>
398 </listitem>
399 </varlistentry>
400
401 <varlistentry>
402 <term><varname>DHCP=</varname></term>
403 <listitem>
404 <para>Enables DHCPv4 and/or DHCPv6 client support. Accepts <literal>yes</literal>,
405 <literal>no</literal>, <literal>ipv4</literal>, or <literal>ipv6</literal>. Defaults to
406 <literal>no</literal>.</para>
407
408 <para>Note that DHCPv6 will by default be triggered by Router Advertisements, if reception is
409 enabled, regardless of this parameter. By explicitly enabling DHCPv6 support here, the DHCPv6
410 client will be started in the mode specified by the <varname>WithoutRA=</varname> setting in the
411 [DHCPv6] section, regardless of the presence of routers on the link, or what flags the routers
412 pass. See <varname>IPv6AcceptRA=</varname>.</para>
413
414 <para>Furthermore, note that by default the domain name specified through DHCP is not used
415 for name resolution. See option <option>UseDomains=</option> below.</para>
416
417 <para>See the [DHCPv4] or [DHCPv6] sections below for further configuration options for the
418 DHCP client support.</para>
419
420 <xi:include href="version-info.xml" xpointer="v211"/>
421 </listitem>
422 </varlistentry>
423
424 <varlistentry>
425 <term><varname>DHCPServer=</varname></term>
426 <listitem>
427 <para>Takes a boolean. If set to <literal>yes</literal>, DHCPv4 server will be started.
428 Defaults to <literal>no</literal>. Further settings for the DHCP server may be set in the
429 [DHCPServer] section described below.</para>
430
431 <para>Even if this is enabled, the DHCP server will not be started automatically and wait for the
432 persistent storage being ready to load/save leases in the storage, unless
433 <varname>RelayTarget=</varname> or <varname>PersistLeases=no</varname> are specified in the
434 [DHCPServer] section. It will be started after
435 <filename>systemd-networkd-persistent-storage.service</filename> is started, which calls
436 <command>networkctl persistent-storage yes</command>. See
437 <citerefentry><refentrytitle>networkctl</refentrytitle><manvolnum>1</manvolnum></citerefentry>
438 for more details.</para>
439
440 <xi:include href="version-info.xml" xpointer="v215"/>
441 </listitem>
442 </varlistentry>
443
444 <varlistentry>
445 <term><varname>LinkLocalAddressing=</varname></term>
446 <listitem>
447 <para>Enables link-local address autoconfiguration. Accepts <option>yes</option>,
448 <option>no</option>, <option>ipv4</option>, and <option>ipv6</option>. An IPv6 link-local
449 address is configured when <option>yes</option> or <option>ipv6</option>. An IPv4 link-local
450 address is configured when <option>yes</option> or <option>ipv4</option> and when DHCPv4
451 autoconfiguration has been unsuccessful for some time. (IPv4 link-local address
452 autoconfiguration will usually happen in parallel with repeated attempts to acquire a DHCPv4
453 lease).</para>
454
455 <para>Defaults to <option>no</option> when <varname>KeepMaster=</varname> or
456 <varname>Bridge=</varname> is set or when the specified
457 <varname>MACVLAN=</varname>/<varname>MACVTAP=</varname> has <varname>Mode=passthru</varname>,
458 or <option>ipv6</option> otherwise.</para>
459
460 <xi:include href="version-info.xml" xpointer="v219"/>
461 </listitem>
462 </varlistentry>
463
464 <varlistentry>
465 <term><varname>IPv6LinkLocalAddressGenerationMode=</varname></term>
466 <listitem>
467 <para>Specifies how IPv6 link-local address is generated. Takes one of
468 <literal>eui64</literal>, <literal>none</literal>, <literal>stable-privacy</literal> and
469 <literal>random</literal>. When unset, <literal>stable-privacy</literal> is used if
470 <varname>IPv6StableSecretAddress=</varname> is specified, and if not,
471 <literal>eui64</literal> is used. Note that if <varname>LinkLocalAddressing=</varname> is
472 <literal>no</literal> or <literal>ipv4</literal>, then
473 <varname>IPv6LinkLocalAddressGenerationMode=</varname> will be ignored. Also, even if
474 <varname>LinkLocalAddressing=</varname> is <literal>yes</literal> or <literal>ipv6</literal>,
475 setting <varname>IPv6LinkLocalAddressGenerationMode=none</varname>
476 disables to configure an IPv6 link-local address.</para>
477
478 <xi:include href="version-info.xml" xpointer="v246"/>
479 </listitem>
480 </varlistentry>
481
482 <varlistentry>
483 <term><varname>IPv6StableSecretAddress=</varname></term>
484 <listitem>
485 <para>Takes an IPv6 address. The specified address will be used as a stable secret for
486 generating IPv6 link-local address. If this setting is specified, and
487 <varname>IPv6LinkLocalAddressGenerationMode=</varname> is unset, then
488 <varname>IPv6LinkLocalAddressGenerationMode=stable-privacy</varname> is implied.
489 If this setting is not specified, and <literal>stable-privacy</literal> is set to
490 <varname>IPv6LinkLocalAddressGenerationMode=</varname>,
491 then a stable secret address will be generated from the local machine ID and the interface
492 name.</para>
493
494 <xi:include href="version-info.xml" xpointer="v249"/>
495 </listitem>
496 </varlistentry>
497
498 <varlistentry>
499 <term><varname>IPv4LLStartAddress=</varname></term>
500 <listitem>
501 <para>Specifies the first IPv4 link-local address to try. Takes an IPv4 address for example
502 169.254.1.2, from the link-local address range: 169.254.0.0/16 except for 169.254.0.0/24 and
503 169.254.255.0/24. This setting may be useful if the device should always have the same address
504 as long as there is no address conflict. When unset, a random address will be automatically
505 selected. Defaults to unset.</para>
506
507 <xi:include href="version-info.xml" xpointer="v252"/>
508 </listitem>
509 </varlistentry>
510
511 <varlistentry>
512 <term><varname>IPv4LLRoute=</varname></term>
513 <listitem>
514 <para>Takes a boolean. If set to true, sets up the route needed for non-IPv4LL hosts to
515 communicate with IPv4LL-only hosts. Defaults to false.</para>
516
517 <xi:include href="version-info.xml" xpointer="v216"/>
518 </listitem>
519 </varlistentry>
520
521 <varlistentry>
522 <term><varname>DefaultRouteOnDevice=</varname></term>
523 <listitem>
524 <para>Takes a boolean. If set to true, sets up the IPv4 default route bound to the interface.
525 Defaults to false. This is useful when creating routes on point-to-point interfaces. This is
526 equivalent to e.g. the following,
527 <programlisting>ip route add default dev veth99</programlisting>
528 or,
529 <programlisting>[Route]
530 Gateway=0.0.0.0</programlisting></para>
531 <para>Currently, there are no way to specify e.g., the table for the route configured by this
532 setting. To configure the default route with such an additional property, please use the
533 following instead:
534 <programlisting>[Route]
535 Gateway=0.0.0.0
536 Table=1234</programlisting></para>
537 <para>If you'd like to create an IPv6 default route bound to the interface, please use the
538 following:
539 <programlisting>[Route]
540 Gateway=::
541 Table=1234</programlisting></para>
542
543 <xi:include href="version-info.xml" xpointer="v243"/>
544 </listitem>
545 </varlistentry>
546
547 <varlistentry>
548 <term><varname>LLMNR=</varname></term>
549 <listitem>
550 <para>Takes a boolean or <literal>resolve</literal>. When true, enables
551 <ulink url="https://tools.ietf.org/html/rfc4795">Link-Local Multicast Name Resolution</ulink>
552 on the link. When set to <literal>resolve</literal>, only resolution is enabled, but not host
553 registration and announcement. Defaults to true. This setting is read by
554 <citerefentry><refentrytitle>systemd-resolved.service</refentrytitle><manvolnum>8</manvolnum></citerefentry>.
555 </para>
556
557 <xi:include href="version-info.xml" xpointer="v216"/>
558 </listitem>
559 </varlistentry>
560
561 <varlistentry>
562 <term><varname>MulticastDNS=</varname></term>
563 <listitem>
564 <para>Takes a boolean or <literal>resolve</literal>. When true, enables
565 <ulink url="https://tools.ietf.org/html/rfc6762">Multicast DNS</ulink> support on the link.
566 When set to <literal>resolve</literal>, only resolution is enabled, but not host or service
567 registration and announcement. Defaults to false. This setting is read by
568 <citerefentry><refentrytitle>systemd-resolved.service</refentrytitle><manvolnum>8</manvolnum></citerefentry>.
569 </para>
570
571 <xi:include href="version-info.xml" xpointer="v229"/>
572 </listitem>
573 </varlistentry>
574
575 <varlistentry>
576 <term><varname>DNSOverTLS=</varname></term>
577 <listitem>
578 <para>Takes a boolean or <literal>opportunistic</literal>. When true, enables
579 <ulink url="https://tools.ietf.org/html/rfc7858">DNS-over-TLS</ulink> support on the link.
580 When set to <literal>opportunistic</literal>, compatibility with non-DNS-over-TLS servers is
581 increased, by automatically turning off DNS-over-TLS servers in this case. This option
582 defines a per-interface setting for
583 <citerefentry><refentrytitle>resolved.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>'s
584 global <varname>DNSOverTLS=</varname> option. Defaults to unset, and the global setting will
585 be used. This setting is read by
586 <citerefentry><refentrytitle>systemd-resolved.service</refentrytitle><manvolnum>8</manvolnum></citerefentry>.
587 </para>
588
589 <xi:include href="version-info.xml" xpointer="v239"/>
590 </listitem>
591 </varlistentry>
592
593 <varlistentry>
594 <term><varname>DNSSEC=</varname></term>
595 <listitem>
596 <para>Takes a boolean or <literal>allow-downgrade</literal>. When true, enables
597 <ulink url="https://tools.ietf.org/html/rfc4033">DNSSEC</ulink> DNS validation support on the
598 link. When set to <literal>allow-downgrade</literal>, compatibility with non-DNSSEC capable
599 networks is increased, by automatically turning off DNSSEC in this case. This option defines
600 a per-interface setting for
601 <citerefentry><refentrytitle>resolved.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>'s
602 global <varname>DNSSEC=</varname> option. Defaults to unset, and the global setting will be
603 used. This setting is read by
604 <citerefentry><refentrytitle>systemd-resolved.service</refentrytitle><manvolnum>8</manvolnum></citerefentry>.
605 </para>
606
607 <xi:include href="version-info.xml" xpointer="v229"/>
608 </listitem>
609 </varlistentry>
610
611 <varlistentry>
612 <term><varname>DNSSECNegativeTrustAnchors=</varname></term>
613 <listitem>
614 <para>A space-separated list of DNSSEC negative trust anchor domains. If specified and DNSSEC
615 is enabled, look-ups done via the interface's DNS server will be subject to the list of
616 negative trust anchors, and not require authentication for the specified domains, or anything
617 below it. Use this to disable DNSSEC authentication for specific private domains, that cannot
618 be proven valid using the Internet DNS hierarchy. Defaults to the empty list. This setting is
619 read by
620 <citerefentry><refentrytitle>systemd-resolved.service</refentrytitle><manvolnum>8</manvolnum></citerefentry>.
621 </para>
622
623 <xi:include href="version-info.xml" xpointer="v229"/>
624 </listitem>
625 </varlistentry>
626
627 <varlistentry>
628 <term><varname>LLDP=</varname></term>
629 <listitem>
630 <para>Controls support for Ethernet LLDP packet reception. LLDP is a link-layer protocol
631 commonly implemented on professional routers and bridges which announces which physical port
632 a system is connected to, as well as other related data. Accepts a boolean or the special
633 value <literal>routers-only</literal>. When true, incoming LLDP packets are accepted and a
634 database of all LLDP neighbors maintained. If <literal>routers-only</literal> is set only
635 LLDP data of various types of routers is collected and LLDP data about other types of devices
636 ignored (such as stations, telephones and others). If false, LLDP reception is disabled.
637 Defaults to <literal>routers-only</literal>. Use
638 <citerefentry><refentrytitle>networkctl</refentrytitle><manvolnum>1</manvolnum></citerefentry>
639 to query the collected neighbor data. LLDP is only available on Ethernet links. See
640 <varname>EmitLLDP=</varname> below for enabling LLDP packet emission from the local system.
641 </para>
642
643 <xi:include href="version-info.xml" xpointer="v219"/>
644 </listitem>
645 </varlistentry>
646
647 <varlistentry>
648 <term><varname>EmitLLDP=</varname></term>
649 <listitem>
650 <para>Controls support for Ethernet LLDP packet emission. Accepts a boolean parameter or the
651 special values <literal>nearest-bridge</literal>, <literal>non-tpmr-bridge</literal> and
652 <literal>customer-bridge</literal>. Defaults to false, which turns off LLDP packet emission.
653 If not false, a short LLDP packet with information about the local system is sent out in
654 regular intervals on the link. The LLDP packet will contain information about the local
655 hostname, the local machine ID (as stored in
656 <citerefentry><refentrytitle>machine-id</refentrytitle><manvolnum>5</manvolnum></citerefentry>)
657 and the local interface name, as well as the pretty hostname of the system (as set in
658 <citerefentry><refentrytitle>machine-info</refentrytitle><manvolnum>5</manvolnum></citerefentry>).
659 LLDP emission is only available on Ethernet links. Note that this setting passes data
660 suitable for identification of host to the network and should thus not be enabled on
661 untrusted networks, where such identification data should not be made available. Use this
662 option to permit other systems to identify on which interfaces they are connected to this
663 system. The three special values control propagation of the LLDP packets. The
664 <literal>nearest-bridge</literal> setting permits propagation only to the nearest connected
665 bridge, <literal>non-tpmr-bridge</literal> permits propagation across Two-Port MAC Relays,
666 but not any other bridges, and <literal>customer-bridge</literal> permits propagation until
667 a customer bridge is reached. For details about these concepts, see
668 <ulink url="https://standards.ieee.org/findstds/standard/802.1AB-2016.html">IEEE 802.1AB-2016</ulink>.
669 Note that configuring this setting to true is equivalent to
670 <literal>nearest-bridge</literal>, the recommended and most restricted level of propagation.
671 See <varname>LLDP=</varname> above for an option to enable LLDP reception.</para>
672
673 <xi:include href="version-info.xml" xpointer="v230"/>
674 </listitem>
675 </varlistentry>
676
677 <varlistentry>
678 <term><varname>BindCarrier=</varname></term>
679 <listitem>
680 <para>A link name or a list of link names. When set, controls the behavior of the current
681 link. When all links in the list are in an operational down state, the current link is
682 brought down. When at least one link has carrier, the current interface is brought up.</para>
683
684 <para>This forces <varname>ActivationPolicy=</varname> to be set to <literal>bound</literal>.
685 </para>
686
687 <xi:include href="version-info.xml" xpointer="v220"/>
688 </listitem>
689 </varlistentry>
690
691 <varlistentry>
692 <term><varname>Address=</varname></term>
693 <listitem>
694 <para>A static IPv4 or IPv6 address and its prefix length, separated by a
695 <literal>/</literal> character. Specify this key more than once to configure several
696 addresses. The format of the address must be as described in
697 <citerefentry project='man-pages'><refentrytitle>inet_pton</refentrytitle><manvolnum>3</manvolnum></citerefentry>.
698 This is a short-hand for an [Address] section only containing an Address key (see below).
699 This option may be specified more than once.</para>
700
701 <para>If the specified address is <literal>0.0.0.0</literal> (for IPv4) or
702 <literal>::</literal> (for IPv6), a new address range of the requested size is automatically
703 allocated from a system-wide pool of unused ranges. Note that the prefix length must be equal
704 or larger than 8 for IPv4, and 64 for IPv6. The allocated range is checked against all
705 current network interfaces and all known network configuration files to avoid address range
706 conflicts. The default system-wide pool consists of 192.168.0.0/16, 172.16.0.0/12 and
707 10.0.0.0/8 for IPv4, and fd00::/8 for IPv6. This functionality is useful to manage a large
708 number of dynamically created network interfaces with the same network configuration and
709 automatic address range assignment.</para>
710
711 <para>If an empty string is specified, then the all previous assignments in both [Network] and
712 [Address] sections are cleared.</para>
713
714 <xi:include href="version-info.xml" xpointer="v211"/>
715 </listitem>
716 </varlistentry>
717
718 <varlistentry>
719 <term><varname>Gateway=</varname></term>
720 <listitem>
721 <para>The gateway address, which must be in the format described in
722 <citerefentry project='man-pages'><refentrytitle>inet_pton</refentrytitle><manvolnum>3</manvolnum></citerefentry>.
723 This is a short-hand for a [Route] section only containing a <varname>Gateway=</varname> key.
724 This option may be specified more than once.</para>
725
726 <xi:include href="version-info.xml" xpointer="v211"/>
727 </listitem>
728 </varlistentry>
729
730 <varlistentry>
731 <term><varname>DNS=</varname></term>
732 <listitem>
733 <para>A DNS server address, which must be in the format described in
734 <citerefentry project='man-pages'><refentrytitle>inet_pton</refentrytitle><manvolnum>3</manvolnum></citerefentry>.
735 This option may be specified more than once. Each address can optionally take a port number
736 separated with <literal>:</literal>, a network interface name or index separated with
737 <literal>%</literal>, and a Server Name Indication (SNI) separated with <literal>#</literal>.
738 When IPv6 address is specified with a port number, then the address must be in the square
739 brackets. That is, the acceptable full formats are
740 <literal>111.222.333.444:9953%ifname#example.com</literal> for IPv4 and
741 <literal>[1111:2222::3333]:9953%ifname#example.com</literal> for IPv6. If an empty string is
742 assigned, then the all previous assignments are cleared. This setting is read by
743 <citerefentry><refentrytitle>systemd-resolved.service</refentrytitle><manvolnum>8</manvolnum></citerefentry>.
744 </para>
745
746 <xi:include href="version-info.xml" xpointer="v211"/>
747 </listitem>
748 </varlistentry>
749
750 <varlistentry>
751 <term><varname>Domains=</varname></term>
752 <listitem>
753 <para>A whitespace-separated list of domains which should be resolved using the DNS servers
754 on this link. Each item in the list should be a domain name, optionally prefixed with a tilde
755 (<literal>~</literal>). The domains with the prefix are called "routing-only domains". The
756 domains without the prefix are called "search domains" and are first used as search suffixes
757 for extending single-label hostnames (hostnames containing no dots) to become fully qualified
758 domain names (FQDNs). If a single-label hostname is resolved on this interface, each of the
759 specified search domains are appended to it in turn, converting it into a fully qualified
760 domain name, until one of them may be successfully resolved.</para>
761
762 <para>Both "search" and "routing-only" domains are used for routing of DNS queries: look-ups
763 for hostnames ending in those domains (hence also single label names, if any "search domains"
764 are listed), are routed to the DNS servers configured for this interface. The domain routing
765 logic is particularly useful on multi-homed hosts with DNS servers serving particular private
766 DNS zones on each interface.</para>
767
768 <para>The "routing-only" domain <literal>~.</literal> (the tilde indicating definition of a
769 routing domain, the dot referring to the DNS root domain which is the implied suffix of all
770 valid DNS names) has special effect. It causes all DNS traffic which does not match another
771 configured domain routing entry to be routed to DNS servers specified for this interface.
772 This setting is useful to prefer a certain set of DNS servers if a link on which they are
773 connected is available.</para>
774
775 <para>This setting is read by
776 <citerefentry><refentrytitle>systemd-resolved.service</refentrytitle><manvolnum>8</manvolnum></citerefentry>.
777 "Search domains" correspond to the <varname>domain</varname> and <varname>search</varname>
778 entries in
779 <citerefentry project='man-pages'><refentrytitle>resolv.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
780 Domain name routing has no equivalent in the traditional glibc API, which has no concept of
781 domain name servers limited to a specific link.</para>
782
783 <xi:include href="version-info.xml" xpointer="v216"/>
784 </listitem>
785 </varlistentry>
786
787 <varlistentry>
788 <term><varname>DNSDefaultRoute=</varname></term>
789 <listitem>
790 <para>Takes a boolean argument. If true, this link's configured DNS servers are used for
791 resolving domain names that do not match any link's configured <varname>Domains=</varname>
792 setting. If false, this link's configured DNS servers are never used for such domains, and
793 are exclusively used for resolving names that match at least one of the domains configured on
794 this link. If not specified defaults to an automatic mode: queries not matching any link's
795 configured domains will be routed to this link if it has no routing-only domains configured.
796 </para>
797
798 <xi:include href="version-info.xml" xpointer="v240"/>
799 </listitem>
800 </varlistentry>
801
802 <varlistentry>
803 <term><varname>NTP=</varname></term>
804 <listitem>
805 <para>An NTP server address (either an IP address, or a hostname). This option may be
806 specified more than once. This setting is read by
807 <citerefentry><refentrytitle>systemd-timesyncd.service</refentrytitle><manvolnum>8</manvolnum></citerefentry>.
808 </para>
809
810 <xi:include href="version-info.xml" xpointer="v216"/>
811 </listitem>
812 </varlistentry>
813
814 <varlistentry>
815 <term><varname>IPv4Forwarding=</varname></term>
816 <listitem>
817 <para>Configures IPv4 packet forwarding for the interface. Takes a boolean value. This controls the
818 <filename>net.ipv4.conf.<replaceable>INTERFACE</replaceable>.forwarding</filename> sysctl option of
819 the network interface. See
820 <ulink url="https://docs.kernel.org/networking/ip-sysctl.html">IP Sysctl</ulink>
821 for more details about the sysctl option. Defaults to true if <varname>IPMasquerade=</varname> is
822 enabled for IPv4, otherwise the value specified to the same setting in
823 <citerefentry><refentrytitle>networkd.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>
824 will be used. If none of them are specified, the sysctl option will not be changed.</para>
825
826 <para>To control the global setting, use the same setting in
827 <citerefentry><refentrytitle>networkd.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
828 </para>
829
830 <xi:include href="version-info.xml" xpointer="v256"/>
831 </listitem>
832 </varlistentry>
833
834 <varlistentry>
835 <term><varname>IPv6Forwarding=</varname></term>
836 <listitem>
837 <para>Configures IPv6 packet forwarding for the interface. Takes a boolean value. This controls the
838 <filename>net.ipv6.conf.<replaceable>INTERFACE</replaceable>.forwarding</filename> sysctl option of
839 the network interface. See
840 <ulink url="https://docs.kernel.org/networking/ip-sysctl.html">IP Sysctl</ulink>
841 for more details about the sysctl option. Defaults to true if <varname>IPMasquerade=</varname> is
842 enabled for IPv6 or <varname>IPv6SendRA=</varname> is enabled, otherwise the value specified to the
843 same setting in
844 <citerefentry><refentrytitle>networkd.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>
845 will be used. If none of them are specified, the sysctl option will not be changed.</para>
846
847 <para>To control the global setting, use the same setting in
848 <citerefentry><refentrytitle>networkd.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
849 </para>
850
851 <xi:include href="version-info.xml" xpointer="v256"/>
852 </listitem>
853 </varlistentry>
854
855 <varlistentry>
856 <term><varname>IPMasquerade=</varname></term>
857 <listitem>
858 <para>Configures IP masquerading for the network interface. If enabled, packets forwarded
859 from the network interface will be appear as coming from the local host. Takes one of
860 <literal>ipv4</literal>, <literal>ipv6</literal>, <literal>both</literal>, or
861 <literal>no</literal>. Defaults to <literal>no</literal>.</para>
862 <para>Note. Any positive boolean values such as <literal>yes</literal> or
863 <literal>true</literal> are now deprecated. Please use one of the values above.</para>
864
865 <xi:include href="version-info.xml" xpointer="v219"/>
866 </listitem>
867 </varlistentry>
868
869 <varlistentry>
870 <term><varname>IPv6PrivacyExtensions=</varname></term>
871 <listitem>
872 <para>Configures use of stateless temporary addresses that change over time (see
873 <ulink url="https://tools.ietf.org/html/rfc4941">RFC 4941</ulink>,
874 Privacy Extensions for Stateless Address Autoconfiguration in IPv6). Takes a boolean or the
875 special values <literal>prefer-public</literal> and <literal>kernel</literal>. When true,
876 enables the privacy extensions and prefers temporary addresses over public addresses. When
877 <literal>prefer-public</literal>, enables the privacy extensions, but prefers public
878 addresses over temporary addresses. When false, the privacy extensions remain disabled. When
879 <literal>kernel</literal>, the kernel's default setting will be left in place. When unspecified,
880 the value specified in the same setting in
881 <citerefentry><refentrytitle>networkd.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
882 which defaults to <literal>no</literal>, will be used.</para>
883
884 <xi:include href="version-info.xml" xpointer="v222"/>
885 </listitem>
886 </varlistentry>
887
888 <varlistentry>
889 <term><varname>IPv6AcceptRA=</varname></term>
890 <listitem>
891 <para>Takes a boolean. Controls IPv6 Router Advertisement (RA) reception support for the
892 interface. If true, RAs are accepted; if false, RAs are ignored. When RAs are accepted, they
893 may trigger the start of the DHCPv6 client if the relevant flags are set in the RA data, or
894 if no routers are found on the link. The default is to disable RA reception for bridge
895 devices or when IP forwarding is enabled, and to enable it otherwise. Cannot be enabled on
896 devices aggregated in a bond device or when link-local addressing is disabled.</para>
897
898 <para>Further settings for the IPv6 RA support may be configured in the [IPv6AcceptRA]
899 section, see below.</para>
900
901 <para>Also see
902 <ulink url="https://docs.kernel.org/networking/ip-sysctl.html">IP Sysctl</ulink>
903 in the kernel documentation regarding <literal>accept_ra</literal>, but note that systemd's
904 setting of <constant>1</constant> (i.e. true) corresponds to kernel's setting of
905 <constant>2</constant>.</para>
906
907 <para>Note that kernel's implementation of the IPv6 RA protocol is always disabled,
908 regardless of this setting. If this option is enabled, a userspace implementation of the IPv6
909 RA protocol is used, and the kernel's own implementation remains disabled, since
910 <command>systemd-networkd</command> needs to know all details supplied in the advertisements,
911 and these are not available from the kernel if the kernel's own implementation is used.
912 </para>
913
914 <xi:include href="version-info.xml" xpointer="v231"/>
915 </listitem>
916 </varlistentry>
917
918 <varlistentry>
919 <term><varname>IPv6DuplicateAddressDetection=</varname></term>
920 <listitem>
921 <para>Configures the amount of IPv6 Duplicate Address Detection (DAD) probes to send. When
922 unset, the kernel's default will be used.</para>
923
924 <xi:include href="version-info.xml" xpointer="v228"/>
925 </listitem>
926 </varlistentry>
927
928 <varlistentry>
929 <term><varname>IPv6HopLimit=</varname></term>
930 <listitem>
931 <para>Configures IPv6 Hop Limit. Takes an integer in the range 1255. For each router that
932 forwards the packet, the hop limit is decremented by 1. When the hop limit field reaches zero, the
933 packet is discarded. When unset, the kernel's default will be used.</para>
934
935 <xi:include href="version-info.xml" xpointer="v228"/>
936 </listitem>
937 </varlistentry>
938
939 <varlistentry>
940 <term><varname>IPv6RetransmissionTimeSec=</varname></term>
941 <listitem>
942 <para>Configures IPv6 Retransmission Time. The time between retransmitted Neighbor
943 Solicitation messages. Used by address resolution and the Neighbor Unreachability
944 Detection algorithm. A value of zero is ignored and the kernel's current value
945 will be used. Defaults to unset, and the kernel's current value will be used.</para>
946
947 <xi:include href="version-info.xml" xpointer="v256"/>
948 </listitem>
949 </varlistentry>
950
951 <varlistentry>
952 <term><varname>IPv4ReversePathFilter=</varname></term>
953 <listitem>
954 <para>Configure IPv4 Reverse Path Filtering. If enabled, when an IPv4 packet is received, the machine will first check
955 whether the <emphasis>source</emphasis> of the packet would be routed through the interface it came in. If there is no
956 route to the source on that interface, the machine will drop the packet. Takes one of
957 <literal>no</literal>, <literal>strict</literal>, or <literal>loose</literal>. When <literal>no</literal>,
958 no source validation will be done. When <literal>strict</literal>, mode each incoming packet is tested against the FIB and
959 if the incoming interface is not the best reverse path, the packet check will fail. By default failed packets are discarded.
960 When <literal>loose</literal>, mode each incoming packet's source address is tested against the FIB. The packet is dropped
961 only if the source address is not reachable via any interface on that router.
962 See <ulink url="https://tools.ietf.org/html/rfc1027">RFC 3704</ulink>.
963 When unset, the kernel's default will be used.</para>
964
965 <xi:include href="version-info.xml" xpointer="v255"/>
966 </listitem>
967 </varlistentry>
968
969 <varlistentry>
970 <term><varname>IPv4AcceptLocal=</varname></term>
971 <listitem>
972 <para>Takes a boolean. Accept packets with local source addresses. In combination with
973 suitable routing, this can be used to direct packets between two local interfaces over the
974 wire and have them accepted properly. When unset, the kernel's default will be used.</para>
975
976 <xi:include href="version-info.xml" xpointer="v246"/>
977 </listitem>
978 </varlistentry>
979
980 <varlistentry>
981 <term><varname>IPv4RouteLocalnet=</varname></term>
982 <listitem>
983 <para>Takes a boolean. When true, the kernel does not consider loopback addresses as martian
984 source or destination while routing. This enables the use of 127.0.0.0/8 for local routing
985 purposes. When unset, the kernel's default will be used.</para>
986
987 <xi:include href="version-info.xml" xpointer="v248"/>
988 </listitem>
989 </varlistentry>
990
991 <varlistentry>
992 <term><varname>IPv4ProxyARP=</varname></term>
993 <listitem>
994 <para>Takes a boolean. Configures proxy ARP for IPv4. Proxy ARP is the technique in which one
995 host, usually a router, answers ARP requests intended for another machine. By "faking" its
996 identity, the router accepts responsibility for routing packets to the "real" destination.
997 See <ulink url="https://tools.ietf.org/html/rfc1027">RFC 1027</ulink>. When unset, the
998 kernel's default will be used.</para>
999
1000 <xi:include href="version-info.xml" xpointer="v233"/>
1001 </listitem>
1002 </varlistentry>
1003
1004 <varlistentry>
1005 <term><varname>IPv4ProxyARPPrivateVLAN=</varname></term>
1006 <listitem>
1007 <para>Takes a boolean. Configures proxy ARP private VLAN for IPv4, also known as VLAN aggregation,
1008 private VLAN, source-port filtering, port-isolation, or MAC-forced forwarding.</para>
1009
1010 <para>This variant of the ARP proxy technique will allow the ARP proxy to reply back to the same
1011 interface.</para>
1012
1013 <para>See <ulink url="https://tools.ietf.org/html/rfc3069">RFC 3069</ulink>. When unset,
1014 the kernel's default will be used.</para>
1015 <xi:include href="version-info.xml" xpointer="v256"/>
1016 </listitem>
1017 </varlistentry>
1018
1019 <varlistentry>
1020 <term><varname>IPv6ProxyNDP=</varname></term>
1021 <listitem>
1022 <para>Takes a boolean. Configures proxy NDP for IPv6. Proxy NDP (Neighbor Discovery Protocol)
1023 is a technique for IPv6 to allow routing of addresses to a different destination when peers
1024 expect them to be present on a certain physical link. In this case a router answers Neighbour
1025 Advertisement messages intended for another machine by offering its own MAC address as
1026 destination. Unlike proxy ARP for IPv4, it is not enabled globally, but will only send
1027 Neighbour Advertisement messages for addresses in the IPv6 neighbor proxy table, which can
1028 also be shown by <command>ip -6 neighbour show proxy</command>. systemd-networkd will control
1029 the per-interface `proxy_ndp` switch for each configured interface depending on this option.
1030 When unset, the kernel's default will be used.</para>
1031
1032 <xi:include href="version-info.xml" xpointer="v234"/>
1033 </listitem>
1034 </varlistentry>
1035
1036 <varlistentry>
1037 <term><varname>IPv6ProxyNDPAddress=</varname></term>
1038 <listitem>
1039 <para>An IPv6 address, for which Neighbour Advertisement messages will be proxied. This
1040 option may be specified more than once. systemd-networkd will add the
1041 <varname>IPv6ProxyNDPAddress=</varname> entries to the kernel's IPv6 neighbor proxy table.
1042 This setting implies <varname>IPv6ProxyNDP=yes</varname> but has no effect if
1043 <varname>IPv6ProxyNDP=</varname> has been set to false. When unset, the kernel's default will
1044 be used.</para>
1045
1046 <xi:include href="version-info.xml" xpointer="v233"/>
1047 </listitem>
1048 </varlistentry>
1049
1050 <varlistentry>
1051 <term><varname>IPv6SendRA=</varname></term>
1052 <listitem>
1053 <para>Whether to enable or disable Router Advertisement sending on a link. Takes a boolean
1054 value. When enabled, prefixes configured in [IPv6Prefix] sections and routes configured in
1055 the [IPv6RoutePrefix] sections are distributed as defined in the [IPv6SendRA] section. If
1056 <varname>DHCPPrefixDelegation=</varname> is enabled, then the delegated prefixes are also
1057 distributed. See <varname>DHCPPrefixDelegation=</varname> setting and the [IPv6SendRA],
1058 [IPv6Prefix], [IPv6RoutePrefix], and [DHCPPrefixDelegation] sections for more configuration
1059 options.</para>
1060
1061 <xi:include href="version-info.xml" xpointer="v247"/>
1062 </listitem>
1063 </varlistentry>
1064
1065 <varlistentry>
1066 <term><varname>DHCPPrefixDelegation=</varname></term>
1067 <listitem>
1068 <para>Takes a boolean value. When enabled, requests subnet prefixes on another link via the DHCPv6
1069 protocol or via the 6RD option in the DHCPv4 protocol. An address within each delegated prefix will
1070 be assigned, and the prefixes will be announced through IPv6 Router Advertisement if
1071 <varname>IPv6SendRA=</varname> is enabled. This behaviour can be configured in the
1072 [DHCPPrefixDelegation] section. Defaults to disabled.</para>
1073
1074 <xi:include href="version-info.xml" xpointer="v250"/>
1075 </listitem>
1076 </varlistentry>
1077
1078 <varlistentry>
1079 <term><varname>IPv6MTUBytes=</varname></term>
1080 <listitem>
1081 <para>Configures IPv6 maximum transmission unit (MTU). An integer greater than or equal to
1082 1280 bytes. When unset, the kernel's default will be used.</para>
1083
1084 <xi:include href="version-info.xml" xpointer="v239"/>
1085 </listitem>
1086 </varlistentry>
1087
1088 <varlistentry>
1089 <term><varname>KeepMaster=</varname></term>
1090 <listitem>
1091 <para>Takes a boolean value. When enabled, the current master interface index will not be
1092 changed, and <varname>BatmanAdvanced=</varname>, <varname>Bond=</varname>,
1093 <varname>Bridge=</varname>, and <varname>VRF=</varname> settings are ignored. This may be
1094 useful when a netdev with a master interface is created by another program, e.g.
1095 <citerefentry><refentrytitle>systemd-nspawn</refentrytitle><manvolnum>1</manvolnum></citerefentry>.
1096 Defaults to false.</para>
1097
1098 <xi:include href="version-info.xml" xpointer="v250"/>
1099 </listitem>
1100 </varlistentry>
1101
1102 <varlistentry>
1103 <term><varname>BatmanAdvanced=</varname></term>
1104 <term><varname>Bond=</varname></term>
1105 <term><varname>Bridge=</varname></term>
1106 <term><varname>VRF=</varname></term>
1107 <listitem>
1108 <para>The name of the B.A.T.M.A.N. Advanced, bond, bridge, or VRF interface to add the link
1109 to. See
1110 <citerefentry><refentrytitle>systemd.netdev</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
1111 </para>
1112
1113 <xi:include href="version-info.xml" xpointer="v211"/>
1114 </listitem>
1115 </varlistentry>
1116
1117 <varlistentry>
1118 <term><varname>IPoIB=</varname></term>
1119 <term><varname>IPVLAN=</varname></term>
1120 <term><varname>IPVTAP=</varname></term>
1121 <term><varname>MACsec=</varname></term>
1122 <term><varname>MACVLAN=</varname></term>
1123 <term><varname>MACVTAP=</varname></term>
1124 <term><varname>Tunnel=</varname></term>
1125 <term><varname>VLAN=</varname></term>
1126 <term><varname>VXLAN=</varname></term>
1127 <term><varname>Xfrm=</varname></term>
1128 <listitem>
1129 <para>The name of an IPoIB, IPVLAN, IPVTAP, MACsec, MACVLAN, MACVTAP, tunnel, VLAN,
1130 VXLAN, or Xfrm to be created on the link. See
1131 <citerefentry><refentrytitle>systemd.netdev</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
1132 This option may be specified more than once.</para>
1133
1134 <xi:include href="version-info.xml" xpointer="v211"/>
1135 </listitem>
1136 </varlistentry>
1137
1138 <varlistentry>
1139 <term><varname>ActiveSlave=</varname></term>
1140 <listitem>
1141 <para>Takes a boolean. Specifies the new active slave. The <literal>ActiveSlave=</literal>
1142 option is only valid for following modes: <literal>active-backup</literal>,
1143 <literal>balance-alb</literal>, and <literal>balance-tlb</literal>. Defaults to false.</para>
1144
1145 <xi:include href="version-info.xml" xpointer="v235"/>
1146 </listitem>
1147 </varlistentry>
1148
1149 <varlistentry>
1150 <term><varname>PrimarySlave=</varname></term>
1151 <listitem>
1152 <para>Takes a boolean. Specifies which slave is the primary device. The specified device will
1153 always be the active slave while it is available. Only when the primary is off-line will
1154 alternate devices be used. This is useful when one slave is preferred over another, e.g.
1155 when one slave has higher throughput than another. The <literal>PrimarySlave=</literal>
1156 option is only valid for following modes: <literal>active-backup</literal>,
1157 <literal>balance-alb</literal>, and <literal>balance-tlb</literal>. Defaults to false.</para>
1158
1159 <xi:include href="version-info.xml" xpointer="v235"/>
1160 </listitem>
1161 </varlistentry>
1162
1163 <varlistentry>
1164 <term><varname>ConfigureWithoutCarrier=</varname></term>
1165 <listitem>
1166 <para>Takes a boolean. Allows networkd to configure a specific link even if it has no
1167 carrier. Defaults to false. If enabled, and the <varname>IgnoreCarrierLoss=</varname> setting
1168 is not explicitly set, then it is enabled as well.</para>
1169
1170 <xi:include href="version-info.xml" xpointer="v235"/>
1171 </listitem>
1172 </varlistentry>
1173
1174 <varlistentry>
1175 <term><varname>IgnoreCarrierLoss=</varname></term>
1176 <listitem>
1177 <para>Takes a boolean or a timespan. When true, <command>systemd-networkd</command> retains
1178 both the static and dynamic configuration of the interface even if its carrier is lost. When
1179 false, <command>systemd-networkd</command> drops both the static and dynamic configuration of
1180 the interface. When a timespan is specified, <command>systemd-networkd</command> waits for
1181 the specified timespan, and ignores the carrier loss if the link regain its carrier within
1182 the timespan. Setting 0 seconds is equivalent to <literal>no</literal>, and
1183 <literal>infinite</literal> is equivalent to <literal>yes</literal>.</para>
1184
1185 <para>Setting a finite timespan may be useful when e.g. in the following cases:
1186 <itemizedlist>
1187 <listitem>
1188 <para>A wireless interface connecting to a network which has multiple access points with
1189 the same SSID.</para>
1190 </listitem>
1191 <listitem>
1192 <para>Enslaving a wireless interface to a bond interface, which may disconnect from the
1193 connected access point and causes its carrier to be lost.</para>
1194 </listitem>
1195 <listitem>
1196 <para>The driver of the interface resets when the MTU is changed.</para>
1197 </listitem>
1198 </itemizedlist>
1199 </para>
1200
1201 <para>When <varname>Bond=</varname> is specified to a wireless interface, defaults to 3
1202 seconds. When the DHCPv4 client is enabled and <varname>UseMTU=</varname> in the [DHCPv4]
1203 section enabled, defaults to 5 seconds. Otherwise, defaults to the value specified with
1204 <varname>ConfigureWithoutCarrier=</varname>. When <varname>ActivationPolicy=</varname> is set
1205 to <literal>always-up</literal>, this is forced to <literal>yes</literal>, and ignored any
1206 user specified values.</para>
1207
1208 <xi:include href="version-info.xml" xpointer="v242"/>
1209 </listitem>
1210 </varlistentry>
1211
1212 <varlistentry>
1213 <term><varname>KeepConfiguration=</varname></term>
1214 <listitem>
1215 <para>Takes a boolean or one of <literal>static</literal>, <literal>dhcp-on-stop</literal>,
1216 <literal>dhcp</literal>. When <literal>static</literal>, <command>systemd-networkd</command>
1217 will not drop static addresses and routes on starting up process. When set to
1218 <literal>dhcp-on-stop</literal>, <command>systemd-networkd</command> will not drop addresses
1219 and routes on stopping the daemon. When <literal>dhcp</literal>,
1220 the addresses and routes provided by a DHCP server will never be dropped even if the DHCP
1221 lease expires. This is contrary to the DHCP specification, but may be the best choice if,
1222 e.g., the root filesystem relies on this connection. The setting <literal>dhcp</literal>
1223 implies <literal>dhcp-on-stop</literal>, and <literal>yes</literal> implies
1224 <literal>dhcp</literal> and <literal>static</literal>. Defaults to
1225 <literal>dhcp-on-stop</literal> when <command>systemd-networkd</command> is running in
1226 initrd, <literal>yes</literal> when the root filesystem is a network filesystem, and
1227 <literal>no</literal> otherwise.</para>
1228
1229 <xi:include href="version-info.xml" xpointer="v243"/>
1230 </listitem>
1231 </varlistentry>
1232 </variablelist>
1233 </refsect1>
1234
1235 <refsect1>
1236 <title>[Address] Section Options</title>
1237
1238 <para>An [Address] section accepts the following keys. Specify several [Address] sections to
1239 configure several addresses.</para>
1240
1241 <variablelist class='network-directives'>
1242 <varlistentry>
1243 <term><varname>Address=</varname></term>
1244 <listitem>
1245 <para>As in the [Network] section. This setting is mandatory. Each [Address] section can
1246 contain one <varname>Address=</varname> setting.</para>
1247
1248 <xi:include href="version-info.xml" xpointer="v211"/>
1249 </listitem>
1250 </varlistentry>
1251
1252 <varlistentry>
1253 <term><varname>Peer=</varname></term>
1254 <listitem>
1255 <para>The peer address in a point-to-point connection. Accepts the same format as the
1256 <varname>Address=</varname> setting.</para>
1257
1258 <xi:include href="version-info.xml" xpointer="v216"/>
1259 </listitem>
1260 </varlistentry>
1261
1262 <varlistentry>
1263 <term><varname>Broadcast=</varname></term>
1264 <listitem>
1265 <para>Takes an IPv4 address or boolean value. The address must be in the format described in
1266 <citerefentry project='man-pages'><refentrytitle>inet_pton</refentrytitle><manvolnum>3</manvolnum></citerefentry>.
1267 If set to true, then the IPv4 broadcast address will be derived from the
1268 <varname>Address=</varname> setting. If set to false, then the broadcast address will not be
1269 set. Defaults to true, except for wireguard interfaces, where it default to false.</para>
1270
1271 <xi:include href="version-info.xml" xpointer="v211"/>
1272 </listitem>
1273 </varlistentry>
1274
1275 <varlistentry>
1276 <term><varname>Label=</varname></term>
1277 <listitem>
1278 <para>Specifies the label for the IPv4 address. The label must be a 7-bit ASCII string with
1279 a length of 115 characters. Defaults to unset.</para>
1280
1281 <xi:include href="version-info.xml" xpointer="v211"/>
1282 </listitem>
1283 </varlistentry>
1284
1285 <varlistentry>
1286 <term><varname>PreferredLifetime=</varname></term>
1287 <listitem>
1288 <para>Allows the default "preferred lifetime" of the address to be overridden. Only three
1289 settings are accepted: <literal>forever</literal>, <literal>infinity</literal>, which is the
1290 default and means that the address never expires, and <literal>0</literal>, which means that
1291 the address is considered immediately "expired" and will not be used, unless explicitly
1292 requested. A setting of <option>PreferredLifetime=0</option> is useful for addresses which
1293 are added to be used only by a specific application, which is then configured to use them
1294 explicitly.</para>
1295
1296 <xi:include href="version-info.xml" xpointer="v230"/>
1297 </listitem>
1298 </varlistentry>
1299
1300 <varlistentry>
1301 <term><varname>Scope=</varname></term>
1302 <listitem>
1303 <para>The scope of the address, which can be <literal>global</literal> (valid everywhere on
1304 the network, even through a gateway), <literal>link</literal> (only valid on this device,
1305 will not traverse a gateway) or <literal>host</literal> (only valid within the device itself,
1306 e.g. 127.0.0.1) or an integer in the range 0255. Defaults to <literal>global</literal>.
1307 IPv4 only - IPv6 scope is automatically assigned by the kernel and cannot be set manually.
1308 </para>
1309
1310 <xi:include href="version-info.xml" xpointer="v235"/>
1311 </listitem>
1312 </varlistentry>
1313
1314 <varlistentry>
1315 <term><varname>RouteMetric=</varname></term>
1316 <listitem>
1317 <para>The metric of the prefix route, which is pointing to the subnet of the configured IP
1318 address, taking the configured prefix length into account. Takes an unsigned integer in the
1319 range 04294967295. When unset or set to 0, the kernel's default value is used. This
1320 setting will be ignored when <varname>AddPrefixRoute=</varname> is false.</para>
1321
1322 <xi:include href="version-info.xml" xpointer="v246"/>
1323 </listitem>
1324 </varlistentry>
1325
1326 <varlistentry>
1327 <term><varname>HomeAddress=</varname></term>
1328 <listitem>
1329 <para>Takes a boolean. Designates this address the "home address" as defined in
1330 <ulink url="https://tools.ietf.org/html/rfc6275">RFC 6275</ulink>. Supported only on IPv6.
1331 Defaults to false.</para>
1332
1333 <xi:include href="version-info.xml" xpointer="v232"/>
1334 </listitem>
1335 </varlistentry>
1336
1337 <varlistentry>
1338 <term><varname>DuplicateAddressDetection=</varname></term>
1339 <listitem>
1340 <para>Takes one of <literal>ipv4</literal>, <literal>ipv6</literal>, <literal>both</literal>,
1341 or <literal>none</literal>. When <literal>ipv4</literal>, performs IPv4 Address Conflict
1342 Detection. See <ulink url="https://tools.ietf.org/html/rfc5227">RFC 5227</ulink>.
1343 When <literal>ipv6</literal>, performs IPv6 Duplicate Address Detection. See
1344 <ulink url="https://tools.ietf.org/html/rfc4862">RFC 4862</ulink>. Defaults to
1345 <literal>ipv4</literal> for IPv4 link-local addresses, <literal>ipv6</literal> for IPv6
1346 addresses, and <literal>none</literal> otherwise.</para>
1347
1348 <xi:include href="version-info.xml" xpointer="v232"/>
1349 </listitem>
1350 </varlistentry>
1351
1352 <varlistentry>
1353 <term><varname>ManageTemporaryAddress=</varname></term>
1354 <listitem>
1355 <para>Takes a boolean. If true the kernel manage temporary addresses created from this one as
1356 template on behalf of Privacy Extensions
1357 <ulink url="https://tools.ietf.org/html/rfc3041">RFC 3041</ulink>. For this to become active,
1358 the use_tempaddr sysctl setting has to be set to a value greater than zero. The given address
1359 needs to have a prefix length of 64. This flag allows using privacy extensions in a manually
1360 configured network, just like if stateless auto-configuration was active. Defaults to false.
1361 </para>
1362
1363 <xi:include href="version-info.xml" xpointer="v232"/>
1364 </listitem>
1365 </varlistentry>
1366
1367 <varlistentry>
1368 <term><varname>AddPrefixRoute=</varname></term>
1369 <listitem>
1370 <para>Takes a boolean. When true, the prefix route for the address is automatically added.
1371 Defaults to true.</para>
1372
1373 <xi:include href="version-info.xml" xpointer="v245"/>
1374 </listitem>
1375 </varlistentry>
1376
1377 <varlistentry>
1378 <term><varname>AutoJoin=</varname></term>
1379 <listitem>
1380 <para>Takes a boolean. Joining multicast group on ethernet level via
1381 <command>ip maddr</command> command would not work if we have an Ethernet switch that does
1382 IGMP snooping since the switch would not replicate multicast packets on ports that did not
1383 have IGMP reports for the multicast addresses. Linux vxlan interfaces created via
1384 <command>ip link add vxlan</command> or networkd's netdev kind vxlan have the group option
1385 that enables them to do the required join. By extending <command>ip address</command> command
1386 with option <literal>autojoin</literal> we can get similar functionality for openvswitch (OVS)
1387 vxlan interfaces as well as other tunneling mechanisms that need to receive multicast traffic.
1388 Defaults to <literal>no</literal>.</para>
1389
1390 <xi:include href="version-info.xml" xpointer="v232"/>
1391 </listitem>
1392 </varlistentry>
1393
1394 <varlistentry>
1395 <term><varname>NetLabel=</varname><replaceable>label</replaceable></term>
1396 <listitem>
1397
1398 <para>This setting provides a method for integrating static and dynamic network configuration into
1399 Linux <ulink url="https://docs.kernel.org/netlabel/index.html">NetLabel</ulink> subsystem rules,
1400 used by <ulink url="https://en.wikipedia.org/wiki/Linux_Security_Modules">Linux Security Modules
1401 (LSMs)</ulink> for network access control. The label, with suitable LSM rules, can be used to
1402 control connectivity of (for example) a service with peers in the local network. At least with
1403 SELinux, only the ingress can be controlled but not egress. The benefit of using this setting is
1404 that it may be possible to apply interface independent part of NetLabel configuration at very early
1405 stage of system boot sequence, at the time when the network interfaces are not available yet, with
1406 <citerefentry
1407 project='man-pages'><refentrytitle>netlabelctl</refentrytitle><manvolnum>8</manvolnum></citerefentry>,
1408 and the per-interface configuration with <command>systemd-networkd</command> once the interfaces
1409 appear later. Currently this feature is only implemented for SELinux.</para>
1410
1411 <para>The option expects a single NetLabel label. The label must conform to lexical restrictions of
1412 LSM labels. When an interface is configured with IP addresses, the addresses and subnetwork masks
1413 will be appended to the <ulink
1414 url="https://github.com/SELinuxProject/selinux-notebook/blob/main/src/network_support.md">NetLabel
1415 Fallback Peer Labeling</ulink> rules. They will be removed when the interface is
1416 deconfigured. Failures to manage the labels will be ignored.</para>
1417
1418 <warning>
1419 <para>Once labeling is enabled for network traffic, a lot of LSM access control points in
1420 Linux networking stack go from dormant to active. Care should be taken to avoid getting into a
1421 situation where for example remote connectivity is broken, when the security policy hasn't been
1422 updated to consider LSM per-packet access controls and no rules would allow any network
1423 traffic. Also note that additional configuration with <citerefentry
1424 project='man-pages'><refentrytitle>netlabelctl</refentrytitle><manvolnum>8</manvolnum></citerefentry>
1425 is needed.</para>
1426 </warning>
1427
1428 <para>Example:
1429 <programlisting>[Address]
1430 NetLabel=system_u:object_r:localnet_peer_t:s0</programlisting>
1431
1432 With the example rules applying for interface <literal>eth0</literal>, when the interface is
1433 configured with an IPv4 address of 10.0.0.123/8, <command>systemd-networkd</command> performs the
1434 equivalent of <command>netlabelctl</command> operation
1435
1436 <programlisting>netlabelctl unlbl add interface eth0 address:10.0.0.0/8 label:system_u:object_r:localnet_peer_t:s0</programlisting>
1437
1438 and the reverse operation when the IPv4 address is deconfigured. The configuration can be used with
1439 LSM rules; in case of SELinux to allow a SELinux domain to receive data from objects of SELinux
1440 <literal>peer</literal> class. For example:
1441
1442 <programlisting>type localnet_peer_t;
1443 allow my_server_t localnet_peer_t:peer recv;</programlisting>
1444
1445 The effect of the above configuration and rules (in absence of other rules as may be the case) is
1446 to only allow <literal>my_server_t</literal> (and nothing else) to receive data from local subnet
1447 10.0.0.0/8 of interface <literal>eth0</literal>.
1448 </para>
1449
1450 <xi:include href="version-info.xml" xpointer="v252"/>
1451 </listitem>
1452 </varlistentry>
1453
1454 <varlistentry>
1455 <term><varname>NFTSet=</varname><replaceable>source</replaceable>:<replaceable>family</replaceable>:<replaceable>table</replaceable>:<replaceable>set</replaceable></term>
1456 <listitem>
1457 <para>This setting provides a method for integrating network configuration into firewall rules with
1458 <ulink url="https://netfilter.org/projects/nftables/index.html">NFT</ulink> sets. The benefit of
1459 using the setting is that static network configuration (or dynamically obtained network addresses,
1460 see similar directives in other sections) can be used in firewall rules with the indirection of NFT
1461 set types. For example, access could be granted for hosts in the local subnetwork only. Firewall
1462 rules using IP address of an interface are also instantly updated when the network configuration
1463 changes, for example via DHCP.</para>
1464
1465 <para>This option expects a whitespace separated list of NFT set definitions. Each definition
1466 consists of a colon-separated tuple of source type (one of <literal>address</literal>,
1467 <literal>prefix</literal> or <literal>ifindex</literal>), NFT address family (one of
1468 <literal>arp</literal>, <literal>bridge</literal>, <literal>inet</literal>, <literal>ip</literal>,
1469 <literal>ip6</literal>, or <literal>netdev</literal>), table name and set name. The names of tables
1470 and sets must conform to lexical restrictions of NFT table names. The type of the element used in
1471 the NFT filter must match the type implied by the directive (<literal>address</literal>,
1472 <literal>prefix</literal> or <literal>ifindex</literal>) and address type (IPv4 or IPv6) as shown
1473 in the table below.</para>
1474
1475 <table>
1476 <title>Defined <varname>source type</varname> values</title>
1477 <tgroup cols='3'>
1478 <colspec colname='source type'/>
1479 <colspec colname='description'/>
1480 <colspec colname='NFT type name'/>
1481 <thead>
1482 <row>
1483 <entry>Source type</entry>
1484 <entry>Description</entry>
1485 <entry>Corresponding NFT type name</entry>
1486 </row>
1487 </thead>
1488
1489 <tbody>
1490 <row>
1491 <entry><literal>address</literal></entry>
1492 <entry>host IP address</entry>
1493 <entry><literal>ipv4_addr</literal> or <literal>ipv6_addr</literal></entry>
1494 </row>
1495 <row>
1496 <entry><literal>prefix</literal></entry>
1497 <entry>network prefix</entry>
1498 <entry><literal>ipv4_addr</literal> or <literal>ipv6_addr</literal>, with <literal>flags interval</literal></entry>
1499 </row>
1500 <row>
1501 <entry><literal>ifindex</literal></entry>
1502 <entry>interface index</entry>
1503 <entry><literal>iface_index</literal></entry>
1504 </row>
1505 </tbody>
1506 </tgroup>
1507 </table>
1508
1509 <para>When an interface is configured with IP addresses, the addresses, subnetwork masks or
1510 interface index will be appended to the NFT sets. The information will be removed when the
1511 interface is deconfigured. <command>systemd-networkd</command> only inserts elements to (or removes
1512 from) the sets, so the related NFT rules, tables and sets must be prepared elsewhere in
1513 advance. Failures to manage the sets will be ignored.</para>
1514
1515 <para>Example:
1516 <programlisting>[Address]
1517 NFTSet=prefix:netdev:filter:eth_ipv4_prefix</programlisting>
1518 Corresponding NFT rules:
1519 <programlisting>table netdev filter {
1520 set eth_ipv4_prefix {
1521 type ipv4_addr
1522 flags interval
1523 }
1524 chain eth_ingress {
1525 type filter hook ingress device "eth0" priority filter; policy drop;
1526 ip daddr != @eth_ipv4_prefix drop
1527 accept
1528 }
1529 }</programlisting>
1530 </para>
1531
1532 <xi:include href="version-info.xml" xpointer="v255"/>
1533 </listitem>
1534 </varlistentry>
1535 </variablelist>
1536 </refsect1>
1537
1538 <refsect1>
1539 <title>[Neighbor] Section Options</title>
1540
1541 <para>A [Neighbor] section accepts the following keys. The neighbor section adds a permanent,
1542 static entry to the neighbor table (IPv6) or ARP table (IPv4) for the given hardware address on the
1543 links matched for the network. Specify several [Neighbor] sections to configure several static
1544 neighbors.</para>
1545
1546 <variablelist class='network-directives'>
1547 <varlistentry>
1548 <term><varname>Address=</varname></term>
1549 <listitem>
1550 <para>The IP address of the neighbor.</para>
1551
1552 <xi:include href="version-info.xml" xpointer="v240"/>
1553 </listitem>
1554 </varlistentry>
1555
1556 <varlistentry>
1557 <term><varname>LinkLayerAddress=</varname></term>
1558 <listitem>
1559 <para>The link layer address (MAC address or IP address) of the neighbor.</para>
1560
1561 <xi:include href="version-info.xml" xpointer="v243"/>
1562 </listitem>
1563 </varlistentry>
1564 </variablelist>
1565 </refsect1>
1566
1567 <refsect1>
1568 <title>[IPv6AddressLabel] Section Options</title>
1569
1570 <para>An [IPv6AddressLabel] section accepts the following keys. Specify several [IPv6AddressLabel]
1571 sections to configure several address labels. IPv6 address labels are used for address selection.
1572 See <ulink url="https://tools.ietf.org/html/rfc3484">RFC 3484</ulink>. Precedence is managed by
1573 userspace, and only the label itself is stored in the kernel.</para>
1574
1575 <variablelist class='network-directives'>
1576 <varlistentry>
1577 <term><varname>Label=</varname></term>
1578 <listitem>
1579 <para>The label for the prefix, an unsigned integer in the range 04294967294. 0xffffffff is
1580 reserved. This setting is mandatory.</para>
1581
1582 <xi:include href="version-info.xml" xpointer="v234"/>
1583 </listitem>
1584 </varlistentry>
1585
1586 <varlistentry>
1587 <term><varname>Prefix=</varname></term>
1588 <listitem>
1589 <para>IPv6 prefix is an address with a prefix length, separated by a slash
1590 <literal>/</literal> character. This setting is mandatory. </para>
1591
1592 <xi:include href="version-info.xml" xpointer="v234"/>
1593 </listitem>
1594 </varlistentry>
1595 </variablelist>
1596 </refsect1>
1597
1598 <refsect1>
1599 <title>[RoutingPolicyRule] Section Options</title>
1600
1601 <para>An [RoutingPolicyRule] section accepts the following settings. Specify several
1602 [RoutingPolicyRule] sections to configure several rules.</para>
1603
1604 <variablelist class='network-directives'>
1605 <varlistentry>
1606 <term><varname>TypeOfService=</varname></term>
1607 <listitem>
1608 <para>
1609 This specifies the Type of Service (ToS) field of packets to match;
1610 it takes an unsigned integer in the range 0255.
1611 The field can be used to specify precedence (the first 3 bits) and ToS (the next 3 bits).
1612 The field can be also used to specify Differentiated Services Code Point (DSCP) (the first 6 bits) and
1613 Explicit Congestion Notification (ECN) (the last 2 bits).
1614 See <ulink url="https://en.wikipedia.org/wiki/Type_of_service">Type of Service</ulink>
1615 and <ulink url="https://en.wikipedia.org/wiki/Differentiated_services">Differentiated services</ulink>
1616 for more details.
1617 </para>
1618
1619 <xi:include href="version-info.xml" xpointer="v235"/>
1620 </listitem>
1621 </varlistentry>
1622
1623 <varlistentry>
1624 <term><varname>From=</varname></term>
1625 <listitem>
1626 <para>Specifies the source address prefix to match. Possibly followed by a slash and the
1627 prefix length.</para>
1628
1629 <xi:include href="version-info.xml" xpointer="v235"/>
1630 </listitem>
1631 </varlistentry>
1632
1633 <varlistentry>
1634 <term><varname>To=</varname></term>
1635 <listitem>
1636 <para>Specifies the destination address prefix to match. Possibly followed by a slash and the
1637 prefix length.</para>
1638
1639 <xi:include href="version-info.xml" xpointer="v235"/>
1640 </listitem>
1641 </varlistentry>
1642
1643 <varlistentry>
1644 <term><varname>FirewallMark=</varname></term>
1645 <listitem>
1646 <para>Specifies the iptables firewall mark value to match (a number in the range
1647 14294967295). Optionally, the firewall mask (also a number between 14294967295) can be
1648 suffixed with a slash (<literal>/</literal>), e.g., <literal>7/255</literal>.</para>
1649
1650 <xi:include href="version-info.xml" xpointer="v235"/>
1651 </listitem>
1652 </varlistentry>
1653
1654 <varlistentry>
1655 <term><varname>Table=</varname></term>
1656 <listitem>
1657 <para>Specifies the routing table identifier to look up if the rule selector matches. Takes
1658 one of predefined names <literal>default</literal>, <literal>main</literal>, and
1659 <literal>local</literal>, and names defined in <varname>RouteTable=</varname> in
1660 <citerefentry><refentrytitle>networkd.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
1661 or a number between 1 and 4294967295. Defaults to <literal>main</literal>.</para>
1662
1663 <xi:include href="version-info.xml" xpointer="v235"/>
1664 </listitem>
1665 </varlistentry>
1666
1667 <varlistentry>
1668 <term><varname>Priority=</varname></term>
1669 <listitem>
1670 <para>Specifies the priority of this rule. <varname>Priority=</varname> is an integer in the
1671 range 04294967295. Higher number means lower priority, and rules get processed in order of
1672 increasing number. Defaults to unset, and the kernel will pick a value dynamically.</para>
1673
1674 <xi:include href="version-info.xml" xpointer="v235"/>
1675 </listitem>
1676 </varlistentry>
1677
1678 <varlistentry>
1679 <term><varname>IncomingInterface=</varname></term>
1680 <listitem>
1681 <para>Specifies incoming device to match. If the interface is loopback, the rule only matches
1682 packets originating from this host.</para>
1683
1684 <xi:include href="version-info.xml" xpointer="v236"/>
1685 </listitem>
1686 </varlistentry>
1687
1688 <varlistentry>
1689 <term><varname>OutgoingInterface=</varname></term>
1690 <listitem>
1691 <para>Specifies the outgoing device to match. The outgoing interface is only available for
1692 packets originating from local sockets that are bound to a device.</para>
1693
1694 <xi:include href="version-info.xml" xpointer="v236"/>
1695 </listitem>
1696 </varlistentry>
1697
1698 <varlistentry>
1699 <term><varname>L3MasterDevice=</varname></term>
1700 <listitem>
1701 <para>A boolean. Specifies whether the rule is to direct lookups to the tables associated with
1702 level 3 master devices (also known as Virtual Routing and Forwarding or VRF devices).
1703 For further details see <ulink url="https://docs.kernel.org/networking/vrf.html">
1704 Virtual Routing and Forwarding (VRF)</ulink>. Defaults to false.</para>
1705
1706 <xi:include href="version-info.xml" xpointer="v256"/>
1707 </listitem>
1708 </varlistentry>
1709
1710 <varlistentry>
1711 <term><varname>SourcePort=</varname></term>
1712 <listitem>
1713 <para>Specifies the source IP port or IP port range match in forwarding information base
1714 (FIB) rules. A port range is specified by the lower and upper port separated by a dash.
1715 Defaults to unset.</para>
1716
1717 <xi:include href="version-info.xml" xpointer="v240"/>
1718 </listitem>
1719 </varlistentry>
1720
1721 <varlistentry>
1722 <term><varname>DestinationPort=</varname></term>
1723 <listitem>
1724 <para>Specifies the destination IP port or IP port range match in forwarding information base
1725 (FIB) rules. A port range is specified by the lower and upper port separated by a dash.
1726 Defaults to unset.</para>
1727
1728 <xi:include href="version-info.xml" xpointer="v240"/>
1729 </listitem>
1730 </varlistentry>
1731
1732 <varlistentry>
1733 <term><varname>IPProtocol=</varname></term>
1734 <listitem>
1735 <para>Specifies the IP protocol to match in forwarding information base (FIB) rules. Takes IP
1736 protocol name such as <literal>tcp</literal>, <literal>udp</literal> or
1737 <literal>sctp</literal>, or IP protocol number such as <literal>6</literal> for
1738 <literal>tcp</literal> or <literal>17</literal> for <literal>udp</literal>. Defaults to unset.
1739 </para>
1740
1741 <xi:include href="version-info.xml" xpointer="v240"/>
1742 </listitem>
1743 </varlistentry>
1744
1745 <varlistentry>
1746 <term><varname>InvertRule=</varname></term>
1747 <listitem>
1748 <para>A boolean. Specifies whether the rule is to be inverted. Defaults to false.</para>
1749
1750 <xi:include href="version-info.xml" xpointer="v240"/>
1751 </listitem>
1752 </varlistentry>
1753
1754 <varlistentry>
1755 <term><varname>Family=</varname></term>
1756 <listitem>
1757 <para>Takes a special value <literal>ipv4</literal>, <literal>ipv6</literal>, or
1758 <literal>both</literal>. By default, the address family is determined by the address
1759 specified in <varname>To=</varname> or <varname>From=</varname>. If neither
1760 <varname>To=</varname> nor <varname>From=</varname> are specified, then defaults to
1761 <literal>ipv4</literal>.</para>
1762
1763 <xi:include href="version-info.xml" xpointer="v243"/>
1764 </listitem>
1765 </varlistentry>
1766
1767 <varlistentry>
1768 <term><varname>User=</varname></term>
1769 <listitem>
1770 <para>Takes a username, a user ID, or a range of user IDs separated by a dash. Defaults to
1771 unset.</para>
1772
1773 <xi:include href="version-info.xml" xpointer="v245"/>
1774 </listitem>
1775 </varlistentry>
1776
1777 <varlistentry>
1778 <term><varname>SuppressPrefixLength=</varname></term>
1779 <listitem>
1780 <para>Takes a number <replaceable>N</replaceable> in the range 0128 and rejects routing
1781 decisions that have a prefix length of <replaceable>N</replaceable> or less. Defaults to
1782 unset.</para>
1783
1784 <xi:include href="version-info.xml" xpointer="v245"/>
1785 </listitem>
1786 </varlistentry>
1787
1788 <varlistentry>
1789 <term><varname>SuppressInterfaceGroup=</varname></term>
1790 <listitem>
1791 <para>Takes an integer in the range 02147483647 and rejects routing decisions that have
1792 an interface with the same group id. It has the same meaning as
1793 <option>suppress_ifgroup</option> in <command>ip rule</command>. Defaults to unset.</para>
1794
1795 <xi:include href="version-info.xml" xpointer="v250"/>
1796 </listitem>
1797 </varlistentry>
1798
1799 <varlistentry>
1800 <term><varname>Type=</varname></term>
1801 <listitem>
1802 <para>Specifies Routing Policy Database (RPDB) rule type. Takes one of
1803 <literal>blackhole</literal>, <literal>unreachable</literal> or <literal>prohibit</literal>.
1804 </para>
1805
1806 <xi:include href="version-info.xml" xpointer="v248"/>
1807 </listitem>
1808 </varlistentry>
1809 </variablelist>
1810 </refsect1>
1811
1812 <refsect1>
1813 <title>[NextHop] Section Options</title>
1814
1815 <para>The [NextHop] section is used to manipulate entries in the kernel's "nexthop" tables. The
1816 [NextHop] section accepts the following settings. Specify several [NextHop] sections to configure
1817 several hops.</para>
1818
1819 <variablelist class='network-directives'>
1820 <varlistentry>
1821 <term><varname>Id=</varname></term>
1822 <listitem>
1823 <para>The id of the next hop. Takes an integer in the range 14294967295.
1824 This is mandatory if <varname>ManageForeignNextHops=no</varname> is specified in
1825 <citerefentry><refentrytitle>networkd.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
1826 Otherwise, if unspecified, an unused ID will be automatically picked.</para>
1827
1828 <xi:include href="version-info.xml" xpointer="v244"/>
1829 </listitem>
1830 </varlistentry>
1831
1832 <varlistentry>
1833 <term><varname>Gateway=</varname></term>
1834 <listitem>
1835 <para>As in the [Network] section.</para>
1836
1837 <xi:include href="version-info.xml" xpointer="v244"/>
1838 </listitem>
1839 </varlistentry>
1840
1841 <varlistentry>
1842 <term><varname>Family=</varname></term>
1843 <listitem>
1844 <para>Takes one of the special values <literal>ipv4</literal> or <literal>ipv6</literal>.
1845 By default, the family is determined by the address specified in
1846 <varname>Gateway=</varname>. If <varname>Gateway=</varname> is not specified, then defaults
1847 to <literal>ipv4</literal>.</para>
1848
1849 <xi:include href="version-info.xml" xpointer="v248"/>
1850 </listitem>
1851 </varlistentry>
1852
1853 <varlistentry>
1854 <term><varname>OnLink=</varname></term>
1855 <listitem>
1856 <para>Takes a boolean. If set to true, the kernel does not have to check if the gateway is
1857 reachable directly by the current machine (i.e., attached to the local network), so that we
1858 can insert the nexthop in the kernel table without it being complained about. Defaults to
1859 <literal>no</literal>.</para>
1860
1861 <xi:include href="version-info.xml" xpointer="v248"/>
1862 </listitem>
1863 </varlistentry>
1864
1865 <varlistentry>
1866 <term><varname>Blackhole=</varname></term>
1867 <listitem>
1868 <para>Takes a boolean. If enabled, packets to the corresponding routes are discarded
1869 silently, and <varname>Gateway=</varname> cannot be specified. Defaults to
1870 <literal>no</literal>.</para>
1871
1872 <xi:include href="version-info.xml" xpointer="v248"/>
1873 </listitem>
1874 </varlistentry>
1875
1876 <varlistentry>
1877 <term><varname>Group=</varname></term>
1878 <listitem>
1879 <para>Takes a whitespace separated list of nexthop IDs. Each ID must be in the range
1880 14294967295. Optionally, each nexthop ID can take a weight after a colon
1881 (<literal><replaceable>id</replaceable><optional>:<replaceable>weight</replaceable></optional></literal>).
1882 The weight must be in the range 1255. If the weight is not specified, then it is assumed
1883 that the weight is 1. This setting cannot be specified with <varname>Gateway=</varname>,
1884 <varname>Family=</varname>, <varname>Blackhole=</varname>. This setting can be specified
1885 multiple times. If an empty string is assigned, then the all previous assignments are
1886 cleared. Defaults to unset.</para>
1887
1888 <xi:include href="version-info.xml" xpointer="v249"/>
1889 </listitem>
1890 </varlistentry>
1891 </variablelist>
1892 </refsect1>
1893
1894 <refsect1>
1895 <title>[Route] Section Options</title>
1896
1897 <para>The [Route] section accepts the following settings. Specify several [Route] sections to
1898 configure several routes.</para>
1899
1900 <variablelist class='network-directives'>
1901 <varlistentry>
1902 <term><varname>Gateway=</varname></term>
1903 <listitem>
1904 <para>Takes the gateway address or the special values <literal>_dhcp4</literal> and
1905 <literal>_ipv6ra</literal>. If <literal>_dhcp4</literal> or <literal>_ipv6ra</literal> is
1906 set, then the gateway address provided by DHCPv4 or IPv6 RA is used.</para>
1907
1908 <xi:include href="version-info.xml" xpointer="v211"/>
1909 </listitem>
1910 </varlistentry>
1911
1912 <varlistentry>
1913 <term><varname>GatewayOnLink=</varname></term>
1914 <listitem>
1915 <para>Takes a boolean. If set to true, the kernel does not have to check if the gateway is
1916 reachable directly by the current machine (i.e., attached to the local network), so that we
1917 can insert the route in the kernel table without it being complained about. Defaults to
1918 <literal>no</literal>.</para>
1919
1920 <xi:include href="version-info.xml" xpointer="v234"/>
1921 </listitem>
1922 </varlistentry>
1923
1924 <varlistentry>
1925 <term><varname>Destination=</varname></term>
1926 <listitem>
1927 <para>The destination prefix of the route. Possibly followed by a slash and the prefix
1928 length. If omitted, a full-length host route is assumed.</para>
1929
1930 <xi:include href="version-info.xml" xpointer="v211"/>
1931 </listitem>
1932 </varlistentry>
1933
1934 <varlistentry>
1935 <term><varname>Source=</varname></term>
1936 <listitem>
1937 <para>The source prefix of the route. Possibly followed by a slash and the prefix length. If
1938 omitted, a full-length host route is assumed.</para>
1939
1940 <xi:include href="version-info.xml" xpointer="v218"/>
1941 </listitem>
1942 </varlistentry>
1943
1944 <varlistentry>
1945 <term><varname>Metric=</varname></term>
1946 <listitem>
1947 <para>The metric of the route. Takes an unsigned integer in the range 04294967295. Defaults
1948 to unset, and the kernel's default will be used.</para>
1949
1950 <xi:include href="version-info.xml" xpointer="v216"/>
1951 </listitem>
1952 </varlistentry>
1953
1954 <varlistentry>
1955 <term><varname>IPv6Preference=</varname></term>
1956 <listitem>
1957 <para>Specifies the route preference as defined in
1958 <ulink url="https://tools.ietf.org/html/rfc4191">RFC 4191</ulink> for Router Discovery
1959 messages. Which can be one of <literal>low</literal> the route has a lowest priority,
1960 <literal>medium</literal> the route has a default priority or <literal>high</literal> the
1961 route has a highest priority.</para>
1962
1963 <xi:include href="version-info.xml" xpointer="v234"/>
1964 </listitem>
1965 </varlistentry>
1966
1967 <varlistentry>
1968 <term><varname>Scope=</varname></term>
1969 <listitem>
1970 <para>The scope of the IPv4 route, which can be <literal>global</literal>,
1971 <literal>site</literal>, <literal>link</literal>, <literal>host</literal>, or
1972 <literal>nowhere</literal>:</para>
1973 <itemizedlist>
1974 <listitem>
1975 <para><literal>global</literal> means the route can reach hosts more than one hop away.
1976 </para>
1977 </listitem>
1978
1979 <listitem>
1980 <para><literal>site</literal> means an interior route in the local autonomous system.
1981 </para>
1982 </listitem>
1983
1984 <listitem>
1985 <para><literal>link</literal> means the route can only reach hosts on the local network
1986 (one hop away).</para>
1987 </listitem>
1988
1989 <listitem>
1990 <para><literal>host</literal> means the route will not leave the local machine (used for
1991 internal addresses like 127.0.0.1).</para>
1992 </listitem>
1993
1994 <listitem>
1995 <para><literal>nowhere</literal> means the destination doesn't exist.</para>
1996 </listitem>
1997 </itemizedlist>
1998
1999 <para>For IPv4 route, defaults to <literal>host</literal> if <varname>Type=</varname> is
2000 <literal>local</literal> or <literal>nat</literal>, and <literal>link</literal> if
2001 <varname>Type=</varname> is <literal>broadcast</literal>, <literal>multicast</literal>,
2002 <literal>anycast</literal>, or <literal>unicast</literal>. In other cases,
2003 defaults to <literal>global</literal>. The value is not used for IPv6.</para>
2004
2005 <xi:include href="version-info.xml" xpointer="v219"/>
2006 </listitem>
2007 </varlistentry>
2008
2009 <varlistentry>
2010 <term><varname>PreferredSource=</varname></term>
2011 <listitem>
2012 <para>The preferred source address of the route. The address must be in the format described
2013 in
2014 <citerefentry project='man-pages'><refentrytitle>inet_pton</refentrytitle><manvolnum>3</manvolnum></citerefentry>.
2015 </para>
2016
2017 <xi:include href="version-info.xml" xpointer="v227"/>
2018 </listitem>
2019 </varlistentry>
2020
2021 <varlistentry>
2022 <term><varname>Table=</varname></term>
2023 <listitem>
2024 <para>The table identifier for the route. Takes one of predefined names
2025 <literal>default</literal>, <literal>main</literal>, and <literal>local</literal>, and names
2026 defined in <varname>RouteTable=</varname> in
2027 <citerefentry><refentrytitle>networkd.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
2028 or a number between 1 and 4294967295. The table can be retrieved using
2029 <command>ip route show table <replaceable>num</replaceable></command>. If unset and
2030 <varname>Type=</varname> is <literal>local</literal>, <literal>broadcast</literal>,
2031 <literal>anycast</literal>, or <literal>nat</literal>, then <literal>local</literal> is used.
2032 In other cases, defaults to <literal>main</literal>. Ignored if <varname>L3MasterDevice=</varname> is true.</para>
2033
2034 <xi:include href="version-info.xml" xpointer="v230"/>
2035 </listitem>
2036 </varlistentry>
2037
2038 <varlistentry>
2039 <term><varname>HopLimit=</varname></term>
2040 <listitem>
2041 <para>Configures per route hop limit. Takes an integer in the range 1255. See also
2042 <varname>IPv6HopLimit=</varname>.</para>
2043
2044 <xi:include href="version-info.xml" xpointer="v255"/>
2045 </listitem>
2046 </varlistentry>
2047
2048 <varlistentry>
2049 <term><varname>Protocol=</varname></term>
2050 <listitem>
2051 <para>The protocol identifier for the route. Takes a number between 0 and 255 or the special
2052 values <literal>kernel</literal>, <literal>boot</literal>, <literal>static</literal>,
2053 <literal>ra</literal> and <literal>dhcp</literal>. Defaults to <literal>static</literal>.
2054 </para>
2055
2056 <xi:include href="version-info.xml" xpointer="v234"/>
2057 </listitem>
2058 </varlistentry>
2059
2060 <varlistentry>
2061 <term><varname>Type=</varname></term>
2062 <listitem>
2063 <para>Specifies the type for the route. Takes one of <literal>unicast</literal>,
2064 <literal>local</literal>, <literal>broadcast</literal>, <literal>anycast</literal>,
2065 <literal>multicast</literal>, <literal>blackhole</literal>, <literal>unreachable</literal>,
2066 <literal>prohibit</literal>, <literal>throw</literal>, <literal>nat</literal>, and
2067 <literal>xresolve</literal>. If <literal>unicast</literal>, a regular route is defined, i.e.
2068 a route indicating the path to take to a destination network address. If
2069 <literal>blackhole</literal>, packets to the defined route are discarded silently. If
2070 <literal>unreachable</literal>, packets to the defined route are discarded and the ICMP
2071 message "Host Unreachable" is generated. If <literal>prohibit</literal>, packets to the
2072 defined route are discarded and the ICMP message "Communication Administratively Prohibited"
2073 is generated. If <literal>throw</literal>, route lookup in the current routing table will
2074 fail and the route selection process will return to Routing Policy Database (RPDB). Defaults
2075 to <literal>unicast</literal>.</para>
2076
2077 <xi:include href="version-info.xml" xpointer="v235"/>
2078 </listitem>
2079 </varlistentry>
2080
2081 <varlistentry>
2082 <term><varname>InitialCongestionWindow=</varname></term>
2083 <listitem>
2084 <para>The TCP initial congestion window is used during the start of a TCP connection.
2085 During the start of a TCP session, when a client requests a resource, the server's initial
2086 congestion window determines how many packets will be sent during the initial burst of data
2087 without waiting for acknowledgement. Takes a number between 1 and 1023. Note that 100 is
2088 considered an extremely large value for this option. When unset, the kernel's default
2089 (typically 10) will be used.</para>
2090
2091 <xi:include href="version-info.xml" xpointer="v237"/>
2092 </listitem>
2093 </varlistentry>
2094
2095 <varlistentry>
2096 <term><varname>InitialAdvertisedReceiveWindow=</varname></term>
2097 <listitem>
2098 <para>The TCP initial advertised receive window is the amount of receive data (in bytes)
2099 that can initially be buffered at one time on a connection. The sending host can send only
2100 that amount of data before waiting for an acknowledgment and window update from the
2101 receiving host. Takes a number between 1 and 1023. Note that 100 is considered an extremely
2102 large value for this option. When unset, the kernel's default will be used.</para>
2103
2104 <xi:include href="version-info.xml" xpointer="v237"/>
2105 </listitem>
2106 </varlistentry>
2107
2108 <varlistentry>
2109 <term><varname>QuickAck=</varname></term>
2110 <listitem>
2111 <para>Takes a boolean. When true, the TCP quick ACK mode for the route is enabled. When unset,
2112 the kernel's default will be used.</para>
2113
2114 <xi:include href="version-info.xml" xpointer="v237"/>
2115 </listitem>
2116 </varlistentry>
2117
2118 <varlistentry>
2119 <term><varname>FastOpenNoCookie=</varname></term>
2120 <listitem>
2121 <para>Takes a boolean. When true enables TCP fastopen without a cookie on a per-route basis.
2122 When unset, the kernel's default will be used.</para>
2123
2124 <xi:include href="version-info.xml" xpointer="v243"/>
2125 </listitem>
2126 </varlistentry>
2127
2128 <varlistentry>
2129 <term><varname>MTUBytes=</varname></term>
2130 <listitem>
2131 <para>The maximum transmission unit in bytes to set for the route. The usual suffixes K, M,
2132 G, are supported and are understood to the base of 1024.</para>
2133
2134 <xi:include href="version-info.xml" xpointer="v239"/>
2135 </listitem>
2136 </varlistentry>
2137
2138 <varlistentry>
2139 <term><varname>TCPAdvertisedMaximumSegmentSize=</varname></term>
2140 <listitem>
2141 <para>Specifies the Path MSS (in bytes) hints given on TCP layer. The usual suffixes K, M, G,
2142 are supported and are understood to the base of 1024. An unsigned integer in the range
2143 14294967294. When unset, the kernel's default will be used.</para>
2144
2145 <xi:include href="version-info.xml" xpointer="v248"/>
2146 </listitem>
2147 </varlistentry>
2148
2149 <varlistentry>
2150 <term><varname>TCPCongestionControlAlgorithm=</varname></term>
2151 <listitem>
2152 <para>Specifies the TCP congestion control algorithm for the route. Takes a name of the algorithm,
2153 e.g. <literal>bbr</literal>, <literal>dctcp</literal>, or <literal>vegas</literal>. When unset,
2154 the kernel's default will be used.</para>
2155
2156 <xi:include href="version-info.xml" xpointer="v252"/>
2157 </listitem>
2158 </varlistentry>
2159
2160 <varlistentry>
2161 <term><varname>TCPRetransmissionTimeoutSec=</varname></term>
2162 <listitem>
2163 <para>Specifies the TCP Retransmission Timeout (RTO) for the route. Takes time values in seconds.
2164 This value specifies the timeout of an alive TCP connection, when retransmissions remain
2165 unacknowledged. When unset, the kernel's default will be used.</para>
2166
2167 <xi:include href="version-info.xml" xpointer="v255"/>
2168 </listitem>
2169 </varlistentry>
2170
2171 <varlistentry>
2172 <term><varname>MultiPathRoute=<replaceable>address</replaceable>[@<replaceable>name</replaceable>] [<replaceable>weight</replaceable>]</varname></term>
2173 <listitem>
2174 <para>Configures multipath route. Multipath routing is the technique of using multiple
2175 alternative paths through a network. Takes gateway address. Optionally, takes a network
2176 interface name or index separated with <literal>@</literal>, and a weight in 1..256 for this
2177 multipath route separated with whitespace. This setting can be specified multiple times. If
2178 an empty string is assigned, then the all previous assignments are cleared.</para>
2179
2180 <xi:include href="version-info.xml" xpointer="v245"/>
2181 </listitem>
2182 </varlistentry>
2183
2184 <varlistentry>
2185 <term><varname>NextHop=</varname></term>
2186 <listitem>
2187 <para>Specifies the nexthop id. Takes an unsigned integer in the range 14294967295. If set,
2188 the corresponding [NextHop] section must be configured. Defaults to unset.</para>
2189
2190 <xi:include href="version-info.xml" xpointer="v248"/>
2191 </listitem>
2192 </varlistentry>
2193 </variablelist>
2194 </refsect1>
2195
2196 <refsect1>
2197 <title>[DHCPv4] Section Options</title>
2198
2199 <para>The [DHCPv4] section configures the DHCPv4 client, if it is enabled with the
2200 <varname>DHCP=</varname> setting described above:</para>
2201
2202 <variablelist class='network-directives'>
2203
2204 <!-- DHCP packet contents -->
2205
2206 <varlistentry>
2207 <term><varname>RequestAddress=</varname></term>
2208 <listitem>
2209 <para>Takes an IPv4 address. When specified, the Requested IP Address option (option code 50) is
2210 added with it to the initial DHCPDISCOVER message sent by the DHCP client. Defaults to unset, and
2211 an already assigned dynamic address to the interface is automatically picked.</para>
2212
2213 <xi:include href="version-info.xml" xpointer="v255"/>
2214 </listitem>
2215 </varlistentry>
2216
2217 <varlistentry>
2218 <term><varname>SendHostname=</varname></term>
2219 <listitem>
2220 <para>When true (the default), the machine's hostname (or the value specified with
2221 <varname>Hostname=</varname>, described below) will be sent to the DHCP server. Note that the
2222 hostname must consist only of 7-bit ASCII lower-case characters and no spaces or dots, and be
2223 formatted as a valid DNS domain name. Otherwise, the hostname is not sent even if this option
2224 is true.</para>
2225
2226 <xi:include href="version-info.xml" xpointer="v215"/>
2227 </listitem>
2228 </varlistentry>
2229
2230 <varlistentry>
2231 <term><varname>Hostname=</varname></term>
2232 <listitem>
2233 <para>Use this value for the hostname which is sent to the DHCP server, instead of machine's
2234 hostname. Note that the specified hostname must consist only of 7-bit ASCII lower-case
2235 characters and no spaces or dots, and be formatted as a valid DNS domain name.</para>
2236
2237 <xi:include href="version-info.xml" xpointer="v223"/>
2238 </listitem>
2239 </varlistentry>
2240
2241 <varlistentry>
2242 <term><varname>MUDURL=</varname></term>
2243 <listitem>
2244 <para>When configured, the specified Manufacturer Usage Description (MUD) URL will be sent
2245 to the DHCPv4 server. Takes a URL of length up to 255 characters. A superficial verification
2246 that the string is a valid URL will be performed. DHCPv4 clients are intended to have at most
2247 one MUD URL associated with them. See
2248 <ulink url="https://tools.ietf.org/html/rfc8520">RFC 8520</ulink>.</para>
2249
2250 <para>MUD is an embedded software standard defined by the IETF that allows IoT device makers
2251 to advertise device specifications, including the intended communication patterns for their
2252 device when it connects to the network. The network can then use this to author a
2253 context-specific access policy, so the device functions only within those parameters.</para>
2254
2255 <xi:include href="version-info.xml" xpointer="v246"/>
2256 </listitem>
2257 </varlistentry>
2258
2259 <varlistentry>
2260 <term><varname>ClientIdentifier=</varname></term>
2261 <listitem>
2262 <para>The DHCPv4 client identifier to use. Takes one of <option>mac</option> or
2263 <option>duid</option>. If set to <option>mac</option>, the MAC address of the link is used. If set
2264 to <option>duid</option>, an RFC4361-compliant Client ID, which is the combination of IAID and
2265 DUID, is used. IAID can be configured by <varname>IAID=</varname>. DUID can be configured by
2266 <varname>DUIDType=</varname> and <varname>DUIDRawData=</varname>. Defaults to
2267 <option>duid</option>.</para>
2268
2269 <xi:include href="version-info.xml" xpointer="v220"/>
2270 </listitem>
2271 </varlistentry>
2272
2273 <varlistentry>
2274 <term><varname>VendorClassIdentifier=</varname></term>
2275 <listitem>
2276 <para>The vendor class identifier used to identify vendor type and configuration.</para>
2277
2278 <xi:include href="version-info.xml" xpointer="v216"/>
2279 </listitem>
2280 </varlistentry>
2281
2282 <varlistentry>
2283 <term><varname>UserClass=</varname></term>
2284 <listitem>
2285 <para>A DHCPv4 client can use UserClass option to identify the type or category of user or
2286 applications it represents. The information contained in this option is a string that
2287 represents the user class of which the client is a member. Each class sets an identifying
2288 string of information to be used by the DHCP service to classify clients. Takes a
2289 whitespace-separated list of strings.</para>
2290
2291 <xi:include href="version-info.xml" xpointer="v239"/>
2292 </listitem>
2293 </varlistentry>
2294
2295 <varlistentry>
2296 <term><varname>DUIDType=</varname></term>
2297 <listitem>
2298 <para>Override the global <varname>DUIDType=</varname> setting for this network. See
2299 <citerefentry><refentrytitle>networkd.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>
2300 for a description of possible values.</para>
2301
2302 <xi:include href="version-info.xml" xpointer="v230"/>
2303 </listitem>
2304 </varlistentry>
2305
2306 <varlistentry>
2307 <term><varname>DUIDRawData=</varname></term>
2308 <listitem>
2309 <para>Override the global <varname>DUIDRawData=</varname> setting for this network. See
2310 <citerefentry><refentrytitle>networkd.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>
2311 for a description of possible values.</para>
2312
2313 <xi:include href="version-info.xml" xpointer="v230"/>
2314 </listitem>
2315 </varlistentry>
2316
2317 <varlistentry>
2318 <term><varname>IAID=</varname></term>
2319 <listitem>
2320 <para>The DHCP Identity Association Identifier (IAID) for the interface, a 32-bit unsigned
2321 integer.</para>
2322
2323 <xi:include href="version-info.xml" xpointer="v230"/>
2324 </listitem>
2325 </varlistentry>
2326
2327 <varlistentry>
2328 <term><varname>RapidCommit=</varname></term>
2329 <listitem>
2330 <para>Takes a boolean. The DHCPv4 client can obtain configuration parameters from a DHCPv4 server
2331 through a rapid two-message exchange (discover and ack). When the rapid commit option is set by
2332 both the DHCPv4 client and the DHCPv4 server, the two-message exchange is used. Otherwise, the
2333 four-message exchange (discover, offer, request, and ack) is used. The two-message exchange
2334 provides faster client configuration. See
2335 <ulink url="https://tools.ietf.org/html/rfc4039">RFC 4039</ulink> for details.
2336 Defaults to true when <varname>Anonymize=no</varname> and neither <varname>AllowList=</varname>
2337 nor <varname>DenyList=</varname> is specified, and false otherwise.</para>
2338
2339 <xi:include href="version-info.xml" xpointer="v255"/>
2340 </listitem>
2341 </varlistentry>
2342
2343 <varlistentry>
2344 <term><varname>Anonymize=</varname></term>
2345 <listitem>
2346 <para>Takes a boolean. When true, the options sent to the DHCP server will follow the
2347 <ulink url="https://tools.ietf.org/html/rfc7844">RFC 7844</ulink> (Anonymity Profiles for
2348 DHCP Clients) to minimize disclosure of identifying information. Defaults to false.</para>
2349
2350 <para>This option should only be set to true when <varname>MACAddressPolicy=</varname> is set
2351 to <option>random</option> (see
2352 <citerefentry><refentrytitle>systemd.link</refentrytitle><manvolnum>5</manvolnum></citerefentry>).
2353 </para>
2354
2355 <para>When true,
2356 <varname>ClientIdentifier=mac</varname>,
2357 <varname>RapidCommit=no</varname>,
2358 <varname>SendHostname=no</varname>,
2359 <varname>Use6RD=no</varname>,
2360 <varname>UseCaptivePortal=no</varname>,
2361 <varname>UseMTU=no</varname>,
2362 <varname>UseNTP=no</varname>,
2363 <varname>UseSIP=no</varname>, and
2364 <varname>UseTimezone=no</varname>
2365 are implied and these settings in the .network file are silently ignored. Also,
2366 <varname>Hostname=</varname>,
2367 <varname>MUDURL=</varname>,
2368 <varname>RequestAddress=</varname>,
2369 <varname>RequestOptions=</varname>,
2370 <varname>SendOption=</varname>,
2371 <varname>SendVendorOption=</varname>,
2372 <varname>UserClass=</varname>, and
2373 <varname>VendorClassIdentifier=</varname>
2374 are silently ignored.</para>
2375
2376 <para>With this option enabled DHCP requests will mimic those generated by Microsoft
2377 Windows, in order to reduce the ability to fingerprint and recognize installations. This
2378 means DHCP request sizes will grow and lease data will be more comprehensive than normally,
2379 though most of the requested data is not actually used.</para>
2380
2381 <xi:include href="version-info.xml" xpointer="v235"/>
2382 </listitem>
2383 </varlistentry>
2384
2385 <varlistentry>
2386 <term><varname>RequestOptions=</varname></term>
2387 <listitem>
2388 <para>Sets request options to be sent to the server in the DHCPv4 request options list. A
2389 whitespace-separated list of integers in the range 1254. Defaults to unset.</para>
2390
2391 <xi:include href="version-info.xml" xpointer="v244"/>
2392 </listitem>
2393 </varlistentry>
2394
2395 <varlistentry>
2396 <term><varname>SendOption=</varname></term>
2397 <listitem>
2398 <para>Send an arbitrary raw option in the DHCPv4 request. Takes a DHCP option number, data
2399 type and data separated with a colon
2400 (<literal><replaceable>option</replaceable>:<replaceable>type</replaceable>:<replaceable>value</replaceable></literal>).
2401 The option number must be an integer in the range 1254. The type takes one of
2402 <literal>uint8</literal>, <literal>uint16</literal>, <literal>uint32</literal>,
2403 <literal>ipv4address</literal>, or <literal>string</literal>. Special characters in the data
2404 string may be escaped using
2405 <ulink url="https://en.wikipedia.org/wiki/Escape_sequences_in_C#Table_of_escape_sequences">C-style
2406 escapes</ulink>. This setting can be specified multiple times. If an empty string is
2407 specified, then all options specified earlier are cleared. Defaults to unset.</para>
2408
2409 <xi:include href="version-info.xml" xpointer="v244"/>
2410 </listitem>
2411 </varlistentry>
2412
2413 <varlistentry>
2414 <term><varname>SendVendorOption=</varname></term>
2415 <listitem>
2416 <para>Send an arbitrary vendor option in the DHCPv4 request. Takes a DHCP option number, data
2417 type and data separated with a colon
2418 (<literal><replaceable>option</replaceable>:<replaceable>type</replaceable>:<replaceable>value</replaceable></literal>).
2419 The option number must be an integer in the range 1254. The type takes one of
2420 <literal>uint8</literal>, <literal>uint16</literal>, <literal>uint32</literal>,
2421 <literal>ipv4address</literal>, or <literal>string</literal>. Special characters in the data
2422 string may be escaped using
2423 <ulink url="https://en.wikipedia.org/wiki/Escape_sequences_in_C#Table_of_escape_sequences">C-style
2424 escapes</ulink>. This setting can be specified multiple times. If an empty string is specified,
2425 then all options specified earlier are cleared. Defaults to unset.</para>
2426
2427 <xi:include href="version-info.xml" xpointer="v246"/>
2428 </listitem>
2429 </varlistentry>
2430
2431 <varlistentry>
2432 <term><varname>IPServiceType=</varname></term>
2433 <listitem>
2434 <para>Takes one of the special values <literal>none</literal>, <literal>CS6</literal>, or
2435 <literal>CS4</literal>. When <literal>none</literal> no IP service type is set to the packet
2436 sent from the DHCPv4 client. When <literal>CS6</literal> (network control) or
2437 <literal>CS4</literal> (realtime), the corresponding service type will be set. Defaults to
2438 <literal>CS6</literal>.</para>
2439
2440 <xi:include href="version-info.xml" xpointer="v244"/>
2441 </listitem>
2442 </varlistentry>
2443
2444 <varlistentry>
2445 <term><varname>SocketPriority=</varname></term>
2446 <listitem>
2447 <para>The Linux socket option <constant>SO_PRIORITY</constant> applied to the raw IP socket used for
2448 initial DHCPv4 messages. Unset by default. Usual values range from 0 to 6.
2449 More details about <constant>SO_PRIORITY</constant> socket option in
2450 <citerefentry project='man-pages'><refentrytitle>socket</refentrytitle><manvolnum>7</manvolnum></citerefentry>.
2451 Can be used in conjunction with [VLAN] section <varname>EgressQOSMaps=</varname> setting of .netdev
2452 file to set the 802.1Q VLAN ethernet tagged header priority, see
2453 <citerefentry><refentrytitle>systemd.netdev</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
2454 </para>
2455
2456 <xi:include href="version-info.xml" xpointer="v253"/>
2457 </listitem>
2458 </varlistentry>
2459
2460 <!-- How to use the DHCP lease -->
2461
2462 <varlistentry>
2463 <term><varname>Label=</varname></term>
2464 <listitem>
2465 <para>Specifies the label for the IPv4 address received from the DHCP server. The label must
2466 be a 7-bit ASCII string with a length of 115 characters. Defaults to unset.</para>
2467
2468 <xi:include href="version-info.xml" xpointer="v250"/>
2469 </listitem>
2470 </varlistentry>
2471
2472 <varlistentry>
2473 <term><varname>UseDNS=</varname></term>
2474 <listitem>
2475 <para>When true (the default), the DNS servers received from the DHCP server will be used.
2476 </para>
2477
2478 <para>This corresponds to the <option>nameserver</option> option in
2479 <citerefentry project='man-pages'><refentrytitle>resolv.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
2480 </para>
2481
2482 <xi:include href="version-info.xml" xpointer="v211"/>
2483 </listitem>
2484 </varlistentry>
2485
2486 <varlistentry>
2487 <term><varname>RoutesToDNS=</varname></term>
2488 <listitem>
2489 <para>When true, the routes to the DNS servers received from the DHCP server will be
2490 configured. When <varname>UseDNS=</varname> is disabled, this setting is ignored. Defaults to
2491 true.</para>
2492
2493 <xi:include href="version-info.xml" xpointer="v243"/>
2494 </listitem>
2495 </varlistentry>
2496
2497 <varlistentry>
2498 <term><varname>UseNTP=</varname></term>
2499 <listitem>
2500 <para>When true (the default), the NTP servers received from the DHCP server will be used by
2501 <filename>systemd-timesyncd.service</filename>.</para>
2502
2503 <xi:include href="version-info.xml" xpointer="v220"/>
2504 </listitem>
2505 </varlistentry>
2506
2507 <varlistentry>
2508 <term><varname>RoutesToNTP=</varname></term>
2509 <listitem>
2510 <para>When true, the routes to the NTP servers received from the DHCP server will be
2511 configured. When <varname>UseNTP=</varname> is disabled, this setting is ignored. Defaults to
2512 true.</para>
2513
2514 <xi:include href="version-info.xml" xpointer="v249"/>
2515 </listitem>
2516 </varlistentry>
2517
2518 <varlistentry>
2519 <term><varname>UseSIP=</varname></term>
2520 <listitem>
2521 <para>When true (the default), the SIP servers received from the DHCP server will be collected
2522 and made available to client programs.</para>
2523
2524 <xi:include href="version-info.xml" xpointer="v244"/>
2525 </listitem>
2526 </varlistentry>
2527
2528 <varlistentry>
2529 <term><varname>UseCaptivePortal=</varname></term>
2530 <listitem>
2531 <para>When true (the default), the captive portal advertised by the DHCP server will be recorded
2532 and made available to client programs and displayed in the
2533 <citerefentry><refentrytitle>networkctl</refentrytitle><manvolnum>1</manvolnum></citerefentry>
2534 status output per-link.</para>
2535
2536 <xi:include href="version-info.xml" xpointer="v254"/>
2537 </listitem>
2538 </varlistentry>
2539
2540 <varlistentry>
2541 <term><varname>UseMTU=</varname></term>
2542 <listitem>
2543 <para>When true, the interface maximum transmission unit from the DHCP server will be used on
2544 the current link. If <varname>MTUBytes=</varname> is set, then this setting is ignored.
2545 Defaults to false.</para>
2546
2547 <para>Note, some drivers will reset the interfaces if the MTU is changed. For such
2548 interfaces, please try to use <varname>IgnoreCarrierLoss=</varname> with a short timespan,
2549 e.g. <literal>3 seconds</literal>.</para>
2550
2551 <xi:include href="version-info.xml" xpointer="v211"/>
2552 </listitem>
2553 </varlistentry>
2554
2555 <varlistentry>
2556 <term><varname>UseHostname=</varname></term>
2557 <listitem>
2558 <para>When true (the default), the hostname received from the DHCP server will be set as the
2559 transient hostname of the system.</para>
2560
2561 <xi:include href="version-info.xml" xpointer="v211"/>
2562 </listitem>
2563 </varlistentry>
2564
2565 <varlistentry>
2566 <term><varname>UseDomains=</varname></term>
2567 <listitem>
2568 <para>Takes a boolean, or the special value <option>route</option>. When true, the domain name
2569 received from the DHCP server will be used as DNS search domain over this link, similarly to the
2570 effect of the <option>Domains=</option> setting. If set to <option>route</option>, the domain name
2571 received from the DHCP server will be used for routing DNS queries only, but not for searching,
2572 similarly to the effect of the <option>Domains=</option> setting when the argument is prefixed with
2573 <literal>~</literal>. Defaults to false.</para>
2574
2575 <para>It is recommended to enable this option only on trusted networks, as setting this
2576 affects resolution of all hostnames, in particular of single-label names. It is generally
2577 safer to use the supplied domain only as routing domain, rather than as search domain, in
2578 order to not have it affect local resolution of single-label names.</para>
2579
2580 <para>When set to true, this setting corresponds to the <option>domain</option> option in
2581 <citerefentry project='man-pages'><refentrytitle>resolv.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
2582 </para>
2583
2584 <xi:include href="version-info.xml" xpointer="v216"/>
2585 </listitem>
2586 </varlistentry>
2587
2588 <varlistentry>
2589 <term><varname>UseRoutes=</varname></term>
2590 <listitem>
2591 <para>When true (the default), the static routes will be requested from the DHCP server and
2592 added to the routing table with a metric of 1024, and a scope of <option>global</option>,
2593 <option>link</option> or <option>host</option>, depending on the route's destination and
2594 gateway. If the destination is on the local host, e.g., 127.x.x.x, or the same as the link's
2595 own address, the scope will be set to <option>host</option>. Otherwise if the gateway is null
2596 (a direct route), a <option>link</option> scope will be used. For anything else, scope
2597 defaults to <option>global</option>.</para>
2598
2599 <xi:include href="version-info.xml" xpointer="v215"/>
2600 </listitem>
2601 </varlistentry>
2602
2603 <varlistentry>
2604 <term><varname>RouteMetric=</varname></term>
2605 <listitem>
2606 <para>Set the routing metric for routes specified by the DHCP server (including the prefix
2607 route added for the specified prefix). Takes an unsigned integer in the range 04294967295.
2608 Defaults to 1024.</para>
2609
2610 <xi:include href="version-info.xml" xpointer="v217"/>
2611 </listitem>
2612 </varlistentry>
2613
2614 <varlistentry>
2615 <term><varname>RouteTable=<replaceable>num</replaceable></varname></term>
2616 <listitem>
2617 <para>The table identifier for DHCP routes. Takes one of predefined names
2618 <literal>default</literal>, <literal>main</literal>, and <literal>local</literal>, and names
2619 defined in <varname>RouteTable=</varname> in
2620 <citerefentry><refentrytitle>networkd.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
2621 or a number between 14294967295.</para>
2622
2623 <para>When used in combination with <varname>VRF=</varname>, the VRF's routing table is
2624 used when this parameter is not specified.</para>
2625
2626 <xi:include href="version-info.xml" xpointer="v232"/>
2627 </listitem>
2628 </varlistentry>
2629
2630 <varlistentry>
2631 <term><varname>RouteMTUBytes=</varname></term>
2632 <listitem>
2633 <para>Specifies the MTU for the DHCP routes. Please see the [Route] section for further
2634 details.</para>
2635
2636 <xi:include href="version-info.xml" xpointer="v245"/>
2637 </listitem>
2638 </varlistentry>
2639
2640 <varlistentry>
2641 <term><varname>QuickAck=</varname></term>
2642 <listitem>
2643 <para>Takes a boolean. When true, the TCP quick ACK mode is enabled for the routes configured by
2644 the acquired DHCPv4 lease. When unset, the kernel's default will be used.</para>
2645
2646 <xi:include href="version-info.xml" xpointer="v253"/>
2647 </listitem>
2648 </varlistentry>
2649
2650 <varlistentry>
2651 <term><varname>InitialCongestionWindow=</varname></term>
2652 <listitem>
2653 <para>As in the [Route] section.</para>
2654
2655 <xi:include href="version-info.xml" xpointer="v255"/>
2656 </listitem>
2657 </varlistentry>
2658
2659 <varlistentry>
2660 <term><varname>InitialAdvertisedReceiveWindow=</varname></term>
2661 <listitem>
2662 <para>As in the [Route] section.</para>
2663
2664 <xi:include href="version-info.xml" xpointer="v255"/>
2665 </listitem>
2666 </varlistentry>
2667
2668 <varlistentry>
2669 <term><varname>UseGateway=</varname></term>
2670 <listitem>
2671 <para>When true, and the DHCP server provides a Router option, the default gateway based on the
2672 router address will be configured. Defaults to unset, and the value specified with
2673 <varname>UseRoutes=</varname> will be used.</para>
2674
2675 <para>Note, when the server provides both the Router and Classless Static Routes option, and
2676 <varname>UseRoutes=</varname> is enabled, the Router option is always ignored regardless of this
2677 setting. See <ulink url="https://datatracker.ietf.org/doc/html/rfc3442">RFC 3442</ulink>.</para>
2678
2679 <xi:include href="version-info.xml" xpointer="v246"/>
2680 </listitem>
2681 </varlistentry>
2682
2683 <varlistentry>
2684 <term><varname>UseTimezone=</varname></term>
2685 <listitem><para>When true, the timezone received from the DHCP server will be set as timezone
2686 of the local system. Defaults to false.</para>
2687
2688 <xi:include href="version-info.xml" xpointer="v226"/></listitem>
2689 </varlistentry>
2690
2691 <varlistentry>
2692 <term><varname>Use6RD=</varname></term>
2693 <listitem>
2694 <para>When true, subnets of the received IPv6 prefix are assigned to downstream interfaces
2695 which enables <varname>DHCPPrefixDelegation=</varname>. See also
2696 <varname>DHCPPrefixDelegation=</varname> in the [Network] section, the [DHCPPrefixDelegation]
2697 section, and <ulink url="https://tools.ietf.org/html/rfc5969">RFC 5969</ulink>. Defaults to
2698 false.</para>
2699
2700 <xi:include href="version-info.xml" xpointer="v250"/>
2701 </listitem>
2702 </varlistentry>
2703
2704 <varlistentry>
2705 <term><varname>IPv6OnlyMode=</varname></term>
2706 <listitem>
2707 <para>When true, the DHCPv4 configuration will be delayed by the timespan provided by the DHCP
2708 server and skip to configure dynamic IPv4 network connectivity if IPv6 connectivity is provided
2709 within the timespan. See <ulink url="https://tools.ietf.org/html/rfc8925">RFC 8925</ulink>.
2710 Defaults to false.</para>
2711
2712 <xi:include href="version-info.xml" xpointer="v255"/>
2713 </listitem>
2714 </varlistentry>
2715
2716 <varlistentry>
2717 <term><varname>FallbackLeaseLifetimeSec=</varname></term>
2718 <listitem>
2719 <para>Allows one to set DHCPv4 lease lifetime when DHCPv4 server does not send the lease
2720 lifetime. Takes one of <literal>forever</literal> or <literal>infinity</literal>. If
2721 specified, the acquired address never expires. Defaults to unset.</para>
2722
2723 <xi:include href="version-info.xml" xpointer="v246"/>
2724 </listitem>
2725 </varlistentry>
2726
2727 <!-- How to communicate with the server -->
2728
2729 <varlistentry>
2730 <term><varname>RequestBroadcast=</varname></term>
2731 <listitem>
2732 <para>Request the server to use broadcast messages before the IP address has been configured.
2733 This is necessary for devices that cannot receive RAW packets, or that cannot receive packets
2734 at all before an IP address has been configured. On the other hand, this must not be enabled
2735 on networks where broadcasts are filtered out.</para>
2736
2737 <xi:include href="version-info.xml" xpointer="v216"/>
2738 </listitem>
2739 </varlistentry>
2740
2741 <varlistentry>
2742 <term><varname>MaxAttempts=</varname></term>
2743 <listitem>
2744 <para>Specifies how many times the DHCPv4 client configuration should be attempted. Takes a
2745 number or <literal>infinity</literal>. Defaults to <literal>infinity</literal>. Note that the
2746 time between retries is increased exponentially, up to approximately one per minute, so the
2747 network will not be overloaded even if this number is high. The default is suitable in most
2748 circumstances.</para>
2749
2750 <xi:include href="version-info.xml" xpointer="v243"/>
2751 </listitem>
2752 </varlistentry>
2753
2754 <varlistentry>
2755 <term><varname>ListenPort=</varname></term>
2756 <listitem>
2757 <para>Set the port from which the DHCP client packets originate.</para>
2758
2759 <xi:include href="version-info.xml" xpointer="v233"/>
2760 </listitem>
2761 </varlistentry>
2762
2763 <varlistentry>
2764 <term><varname>ServerPort=</varname></term>
2765 <listitem>
2766 <para>Set the port on which the DHCP server is listening.</para>
2767
2768 <xi:include href="version-info.xml" xpointer="v256"/>
2769 </listitem>
2770 </varlistentry>
2771
2772 <varlistentry>
2773 <term><varname>DenyList=</varname></term>
2774 <listitem>
2775 <para>A whitespace-separated list of IPv4 addresses. Each address can optionally take a
2776 prefix length after <literal>/</literal>. DHCP offers from servers in the list are rejected.
2777 Note that if <varname>AllowList=</varname> is configured then <varname>DenyList=</varname> is
2778 ignored.</para>
2779 <para>Note that this filters only DHCP offers, so the filtering may not work when
2780 <varname>RapidCommit=</varname> is enabled. See also <varname>RapidCommit=</varname> in the above.
2781 </para>
2782
2783 <xi:include href="version-info.xml" xpointer="v246"/>
2784 </listitem>
2785 </varlistentry>
2786
2787 <varlistentry>
2788 <term><varname>AllowList=</varname></term>
2789 <listitem>
2790 <para>A whitespace-separated list of IPv4 addresses. Each address can optionally take a
2791 prefix length after <literal>/</literal>. DHCP offers from servers in the list are accepted.
2792 </para>
2793 <para>Note that this filters only DHCP offers, so the filtering may not work when
2794 <varname>RapidCommit=</varname> is enabled. See also <varname>RapidCommit=</varname> in the above.
2795 </para>
2796
2797 <xi:include href="version-info.xml" xpointer="v246"/>
2798 </listitem>
2799 </varlistentry>
2800
2801 <varlistentry>
2802 <term><varname>SendRelease=</varname></term>
2803 <listitem>
2804 <para>When true, the DHCPv4 client sends a DHCP release packet when it stops. Defaults to
2805 true.</para>
2806
2807 <xi:include href="version-info.xml" xpointer="v243"/>
2808 </listitem>
2809 </varlistentry>
2810
2811 <varlistentry>
2812 <term><varname>SendDecline=</varname></term>
2813 <listitem>
2814 <para>A boolean. When true, <command>systemd-networkd</command> performs IPv4 Duplicate
2815 Address Detection to the acquired address by the DHCPv4 client. If duplicate is detected,
2816 the DHCPv4 client rejects the address by sending a <constant>DHCPDECLINE</constant> packet to
2817 the DHCP server, and tries to obtain an IP address again. See
2818 <ulink url="https://tools.ietf.org/html/rfc5227">RFC 5227</ulink>. Defaults to false.</para>
2819
2820 <xi:include href="version-info.xml" xpointer="v245"/>
2821 </listitem>
2822 </varlistentry>
2823
2824 <varlistentry>
2825 <term><varname>NetLabel=</varname></term>
2826 <listitem>
2827 <para>This applies the NetLabel for the addresses received with DHCP, like
2828 <varname>NetLabel=</varname> in [Address] section applies it to statically configured
2829 addresses. See <varname>NetLabel=</varname> in [Address] section for more details.</para>
2830
2831 <xi:include href="version-info.xml" xpointer="v252"/>
2832 </listitem>
2833 </varlistentry>
2834
2835 <varlistentry>
2836 <term><varname>NFTSet=</varname></term>
2837 <listitem>
2838 <para>This applies the NFT set for the network configuration received with DHCP, like
2839 <varname>NFTSet=</varname> in [Address] section applies it to static configuration. See
2840 <varname>NFTSet=</varname> in [Address] section for more details. For <literal>address</literal> or
2841 <literal>prefix</literal> source types, the type of the element used in the NFT filter must be
2842 <literal>ipv4_addr</literal>.</para>
2843
2844 <xi:include href="version-info.xml" xpointer="v255"/>
2845 </listitem>
2846 </varlistentry>
2847 </variablelist>
2848 </refsect1>
2849
2850 <refsect1>
2851 <title>[DHCPv6] Section Options</title>
2852
2853 <para>The [DHCPv6] section configures the DHCPv6 client, if it is enabled with the
2854 <varname>DHCP=</varname> setting described above, or invoked by the IPv6 Router Advertisement:
2855 </para>
2856
2857 <variablelist class='network-directives'>
2858
2859 <!-- DHCP packet contents -->
2860
2861 <varlistentry>
2862 <term><varname>MUDURL=</varname></term>
2863 <term><varname>IAID=</varname></term>
2864 <term><varname>DUIDType=</varname></term>
2865 <term><varname>DUIDRawData=</varname></term>
2866 <term><varname>RequestOptions=</varname></term>
2867 <listitem>
2868 <para>As in the [DHCPv4] section.</para>
2869
2870 <xi:include href="version-info.xml" xpointer="v246"/>
2871 </listitem>
2872 </varlistentry>
2873
2874 <varlistentry>
2875 <term><varname>SendOption=</varname></term>
2876 <listitem>
2877 <para>As in the [DHCPv4] section, however because DHCPv6 uses 16-bit fields to store option
2878 numbers, the option number is an integer in the range 165536.</para>
2879
2880 <xi:include href="version-info.xml" xpointer="v246"/>
2881 </listitem>
2882 </varlistentry>
2883
2884 <varlistentry>
2885 <term><varname>SendVendorOption=</varname></term>
2886 <listitem>
2887 <para>Send an arbitrary vendor option in the DHCPv6 request. Takes an enterprise identifier,
2888 DHCP option number, data type, and data separated with a colon
2889 (<literal><replaceable>enterprise identifier</replaceable>:<replaceable>option</replaceable>:<replaceable>type</replaceable>:<replaceable>value</replaceable></literal>).
2890 Enterprise identifier is an unsigned integer in the range 14294967294. The option number
2891 must be an integer in the range 1254. Data type takes one of <literal>uint8</literal>,
2892 <literal>uint16</literal>, <literal>uint32</literal>, <literal>ipv4address</literal>,
2893 <literal>ipv6address</literal>, or <literal>string</literal>. Special characters in the data
2894 string may be escaped using
2895 <ulink url="https://en.wikipedia.org/wiki/Escape_sequences_in_C#Table_of_escape_sequences">C-style
2896 escapes</ulink>. This setting can be specified multiple times. If an empty string is
2897 specified, then all options specified earlier are cleared. Defaults to unset.</para>
2898
2899 <xi:include href="version-info.xml" xpointer="v246"/>
2900 </listitem>
2901 </varlistentry>
2902
2903 <varlistentry>
2904 <term><varname>UserClass=</varname></term>
2905 <listitem>
2906 <para>A DHCPv6 client can use User Class option to identify the type or category of user or
2907 applications it represents. The information contained in this option is a string that
2908 represents the user class of which the client is a member. Each class sets an identifying
2909 string of information to be used by the DHCP service to classify clients. Special characters
2910 in the data string may be escaped using
2911 <ulink url="https://en.wikipedia.org/wiki/Escape_sequences_in_C#Table_of_escape_sequences">C-style
2912 escapes</ulink>. This setting can be specified multiple times. If an empty string is
2913 specified, then all options specified earlier are cleared. Takes a whitespace-separated list
2914 of strings. Note that currently <constant>NUL</constant> bytes are not allowed.</para>
2915
2916 <xi:include href="version-info.xml" xpointer="v246"/>
2917 </listitem>
2918 </varlistentry>
2919
2920 <varlistentry>
2921 <term><varname>VendorClass=</varname></term>
2922 <listitem>
2923 <para>A DHCPv6 client can use VendorClass option to identify the vendor that manufactured the
2924 hardware on which the client is running. The information contained in the data area of this
2925 option is contained in one or more opaque fields that identify details of the hardware
2926 configuration. Takes a whitespace-separated list of strings.</para>
2927
2928 <xi:include href="version-info.xml" xpointer="v246"/>
2929 </listitem>
2930 </varlistentry>
2931
2932 <varlistentry>
2933 <term><varname>PrefixDelegationHint=</varname></term>
2934 <listitem>
2935 <para>Takes an IPv6 address with prefix length in the same format as the
2936 <varname>Address=</varname> in the [Network] section. The DHCPv6 client will include a prefix
2937 hint in the DHCPv6 solicitation sent to the server. The prefix length must be in the range
2938 1128. Defaults to unset.</para>
2939
2940 <xi:include href="version-info.xml" xpointer="v244"/>
2941 </listitem>
2942 </varlistentry>
2943
2944 <varlistentry>
2945 <term><varname>RapidCommit=</varname></term>
2946 <listitem>
2947 <para>Takes a boolean. The DHCPv6 client can obtain configuration parameters from a DHCPv6 server
2948 through a rapid two-message exchange (solicit and reply). When the rapid commit option is set by
2949 both the DHCPv6 client and the DHCPv6 server, the two-message exchange is used. Otherwise, the
2950 four-message exchange (solicit, advertise, request, and reply) is used. The two-message exchange
2951 provides faster client configuration. See
2952 <ulink url="https://tools.ietf.org/html/rfc3315#section-17.2.1">RFC 3315</ulink> for details.
2953 Defaults to true, and the two-message exchange will be used if the server support it.</para>
2954
2955 <xi:include href="version-info.xml" xpointer="v252"/>
2956 </listitem>
2957 </varlistentry>
2958
2959 <varlistentry>
2960 <term><varname>SendHostname=</varname></term>
2961 <listitem>
2962 <para>When true (the default), the machine's hostname (or the value specified with
2963 <varname>Hostname=</varname>, described below) will be sent to the DHCPv6 server. Note that the
2964 hostname must consist only of 7-bit ASCII lower-case characters and no spaces or dots, and be
2965 formatted as a valid DNS domain name. Otherwise, the hostname is not sent even if this option
2966 is true.</para>
2967
2968 <xi:include href="version-info.xml" xpointer="v255"/>
2969 </listitem>
2970 </varlistentry>
2971
2972 <varlistentry>
2973 <term><varname>Hostname=</varname></term>
2974 <listitem>
2975 <para>Use this value for the hostname which is sent to the DHCPv6 server, instead of machine's
2976 hostname. Note that the specified hostname must consist only of 7-bit ASCII lower-case
2977 characters and no spaces or dots, and be formatted as a valid DNS domain name.</para>
2978
2979 <xi:include href="version-info.xml" xpointer="v255"/>
2980 </listitem>
2981 </varlistentry>
2982
2983 <!-- How to use the DHCP lease -->
2984
2985 <varlistentry>
2986 <term><varname>UseAddress=</varname></term>
2987 <listitem>
2988 <para>When true (the default), the IP addresses provided by the DHCPv6 server will be
2989 assigned.</para>
2990
2991 <xi:include href="version-info.xml" xpointer="v248"/>
2992 </listitem>
2993 </varlistentry>
2994
2995 <varlistentry>
2996 <term><varname>UseCaptivePortal=</varname></term>
2997 <listitem>
2998 <para>When true (the default), the captive portal advertised by the DHCPv6 server will be recorded
2999 and made available to client programs and displayed in the
3000 <citerefentry><refentrytitle>networkctl</refentrytitle><manvolnum>1</manvolnum></citerefentry>
3001 status output per-link.</para>
3002
3003 <xi:include href="version-info.xml" xpointer="v254"/>
3004 </listitem>
3005 </varlistentry>
3006
3007 <varlistentry>
3008 <term><varname>UseDelegatedPrefix=</varname></term>
3009 <listitem>
3010 <para>When true (the default), the client will request the DHCPv6 server to delegate
3011 prefixes. If the server provides prefixes to be delegated, then subnets of the prefixes are
3012 assigned to the interfaces that have <varname>DHCPPrefixDelegation=yes</varname>.
3013 See also the <varname>DHCPPrefixDelegation=</varname> setting in the [Network] section,
3014 settings in the [DHCPPrefixDelegation] section, and
3015 <ulink url="https://www.rfc-editor.org/rfc/rfc8415.html#section-6.3">RFC 8415</ulink>.
3016 </para>
3017
3018 <xi:include href="version-info.xml" xpointer="v250"/>
3019 </listitem>
3020 </varlistentry>
3021
3022 <varlistentry>
3023 <term><varname>UseDNS=</varname></term>
3024 <term><varname>UseNTP=</varname></term>
3025 <term><varname>UseHostname=</varname></term>
3026 <term><varname>UseDomains=</varname></term>
3027 <term><varname>NetLabel=</varname></term>
3028 <term><varname>SendRelease=</varname></term>
3029 <listitem>
3030 <para>As in the [DHCPv4] section.</para>
3031
3032 <xi:include href="version-info.xml" xpointer="v243"/>
3033 </listitem>
3034 </varlistentry>
3035
3036 <varlistentry>
3037 <term><varname>NFTSet=</varname></term>
3038 <listitem>
3039 <para>This applies the NFT set for the network configuration received with DHCP, like
3040 <varname>NFTSet=</varname> in [Address] section applies it to static configuration. See
3041 <varname>NFTSet=</varname> in [Address] section for more details. For <literal>address</literal>
3042 or <literal>prefix</literal> source types, the type of the element used in the NFT filter must be
3043 <literal>ipv6_addr</literal>.</para>
3044
3045 <xi:include href="version-info.xml" xpointer="v255"/>
3046 </listitem>
3047 </varlistentry>
3048
3049 <!-- How to communicate with the server -->
3050
3051 <varlistentry>
3052 <term><varname>WithoutRA=</varname></term>
3053 <listitem>
3054 <para>Allows DHCPv6 client to start without router advertisements's
3055 <literal>managed</literal> or <literal>other configuration</literal> flag. Takes one of
3056 <literal>no</literal>, <literal>solicit</literal>, or
3057 <literal>information-request</literal>. If this is not specified,
3058 <literal>solicit</literal> is used when <varname>DHCPPrefixDelegation=</varname> is enabled
3059 and <varname>UplinkInterface=:self</varname> is specified in the [DHCPPrefixDelegation]
3060 section. Otherwise, defaults to <literal>no</literal>, and the DHCPv6 client will be started
3061 when an RA is received. See also the <varname>DHCPv6Client=</varname> setting in the
3062 [IPv6AcceptRA] section.</para>
3063
3064 <xi:include href="version-info.xml" xpointer="v246"/>
3065 </listitem>
3066 </varlistentry>
3067 </variablelist>
3068 </refsect1>
3069
3070 <refsect1>
3071 <title>[DHCPPrefixDelegation] Section Options</title>
3072 <para>The [DHCPPrefixDelegation] section configures subnet prefixes of the delegated prefixes
3073 acquired by a DHCPv6 client or by a DHCPv4 client through the 6RD option on another interface.
3074 The settings in this section are used only when the <varname>DHCPPrefixDelegation=</varname>
3075 setting in the [Network] section is enabled.</para>
3076
3077 <variablelist class='network-directives'>
3078 <varlistentry>
3079 <term><varname>UplinkInterface=</varname></term>
3080 <listitem>
3081 <para>Specifies the name or the index of the uplink interface, or one of the special values
3082 <literal>:self</literal> and <literal>:auto</literal>. When <literal>:self</literal>, the
3083 interface itself is considered the uplink interface, and
3084 <varname>WithoutRA=solicit</varname> is implied if the setting is not explicitly specified.
3085 When <literal>:auto</literal>, the first link which acquired prefixes to be delegated from
3086 the DHCPv6 or DHCPv4 server is selected. Defaults to <literal>:auto</literal>.</para>
3087
3088 <xi:include href="version-info.xml" xpointer="v250"/>
3089 </listitem>
3090 </varlistentry>
3091
3092 <varlistentry>
3093 <term><varname>SubnetId=</varname></term>
3094 <listitem>
3095 <para>Configure a specific subnet ID on the interface from a (previously) received prefix
3096 delegation. You can either set "auto" (the default) or a specific subnet ID (as defined in
3097 <ulink url="https://tools.ietf.org/html/rfc4291#section-2.5.4">RFC 4291</ulink>, section
3098 2.5.4), in which case the allowed value is hexadecimal, from 0 to 0x7fffffffffffffff
3099 inclusive.</para>
3100
3101 <xi:include href="version-info.xml" xpointer="v246"/>
3102 </listitem>
3103 </varlistentry>
3104
3105 <varlistentry>
3106 <term><varname>Announce=</varname></term>
3107 <listitem>
3108 <para>Takes a boolean. When enabled, and <varname>IPv6SendRA=</varname> in [Network] section
3109 is enabled, the delegated prefixes are distributed through the IPv6 Router Advertisement.
3110 This setting will be ignored when the <varname>DHCPPrefixDelegation=</varname> setting is
3111 enabled on the upstream interface. Defaults to yes.</para>
3112
3113 <xi:include href="version-info.xml" xpointer="v247"/>
3114 </listitem>
3115 </varlistentry>
3116
3117 <varlistentry>
3118 <term><varname>Assign=</varname></term>
3119 <listitem>
3120 <para>Takes a boolean. Specifies whether to add an address from the delegated prefixes which
3121 are received from the WAN interface by the DHCPv6 Prefix Delegation. When true (on LAN
3122 interface), the EUI-64 algorithm will be used by default to form an interface identifier from
3123 the delegated prefixes. See also <varname>Token=</varname> setting below. Defaults to yes.
3124 </para>
3125
3126 <xi:include href="version-info.xml" xpointer="v246"/>
3127 </listitem>
3128 </varlistentry>
3129
3130 <varlistentry>
3131 <term><varname>Token=</varname></term>
3132 <listitem>
3133 <para>Specifies an optional address generation mode for assigning an address in each
3134 delegated prefix. This accepts the same syntax as <varname>Token=</varname> in the
3135 [IPv6AcceptRA] section. If <varname>Assign=</varname> is set to false, then this setting will
3136 be ignored. Defaults to unset, which means the EUI-64 algorithm will be used.</para>
3137
3138 <xi:include href="version-info.xml" xpointer="v246"/>
3139 </listitem>
3140 </varlistentry>
3141
3142 <varlistentry>
3143 <term><varname>ManageTemporaryAddress=</varname></term>
3144 <listitem>
3145 <para>As in the [Address] section, but defaults to true.</para>
3146
3147 <xi:include href="version-info.xml" xpointer="v248"/>
3148 </listitem>
3149 </varlistentry>
3150
3151 <varlistentry>
3152 <term><varname>RouteMetric=</varname></term>
3153 <listitem>
3154 <para>The metric of the route to the delegated prefix subnet. Takes an unsigned integer in
3155 the range 04294967295. When set to 0, the kernel's default value is used. Defaults to 256.
3156 </para>
3157
3158 <xi:include href="version-info.xml" xpointer="v249"/>
3159 </listitem>
3160 </varlistentry>
3161
3162 <varlistentry>
3163 <term><varname>NetLabel=</varname></term>
3164 <listitem>
3165 <para>This applies the NetLabel for the addresses received with DHCP, like
3166 <varname>NetLabel=</varname> in [Address] section applies it to statically configured
3167 addresses. See <varname>NetLabel=</varname> in [Address] section for more details.</para>
3168
3169 <xi:include href="version-info.xml" xpointer="v252"/>
3170 </listitem>
3171 </varlistentry>
3172
3173 <varlistentry>
3174 <term><varname>NFTSet=</varname></term>
3175 <listitem>
3176 <para>This applies the NFT set for the network configuration received with DHCP, like
3177 <varname>NFTSet=</varname> in [Address] section applies it to static configuration. See
3178 <varname>NFTSet=</varname> in [Address] section for more details. For <literal>address</literal> or
3179 <literal>prefix</literal> source types, the type of the element used in the NFT filter must be
3180 <literal>ipv6_addr</literal>.</para>
3181
3182 <xi:include href="version-info.xml" xpointer="v255"/>
3183 </listitem>
3184 </varlistentry>
3185 </variablelist>
3186 </refsect1>
3187
3188 <refsect1>
3189 <title>[IPv6AcceptRA] Section Options</title>
3190 <para>The [IPv6AcceptRA] section configures the IPv6 Router Advertisement (RA) client, if it is enabled
3191 with the <varname>IPv6AcceptRA=</varname> setting described above:</para>
3192
3193 <variablelist class='network-directives'>
3194 <varlistentry>
3195 <term><varname>UseRedirect=</varname></term>
3196 <listitem>
3197 <para>When true (the default), Redirect message sent by the current first-hop router will be
3198 accepted, and configures routes to redirected nodes will be configured.</para>
3199
3200 <xi:include href="version-info.xml" xpointer="v256"/>
3201 </listitem>
3202 </varlistentry>
3203
3204 <varlistentry>
3205 <term><varname>Token=</varname></term>
3206 <listitem>
3207 <para>Specifies an optional address generation mode for the Stateless Address
3208 Autoconfiguration (SLAAC). The following values are supported:</para>
3209
3210 <variablelist>
3211 <varlistentry>
3212 <term><option>eui64</option></term>
3213 <listitem>
3214 <para>
3215 The EUI-64 algorithm will be used to generate an address for that prefix. Only
3216 supported by Ethernet or InfiniBand interfaces.
3217 </para>
3218
3219 <xi:include href="version-info.xml" xpointer="v250"/>
3220 </listitem>
3221 </varlistentry>
3222 <varlistentry>
3223 <term><option>static:<replaceable>ADDRESS</replaceable></option></term>
3224 <listitem>
3225 <para>
3226 An IPv6 address must be specified after a colon (<literal>:</literal>), and the
3227 lower bits of the supplied address are combined with the upper bits of a prefix
3228 received in a Router Advertisement (RA) message to form a complete address. Note
3229 that if multiple prefixes are received in an RA message, or in multiple RA messages,
3230 addresses will be formed from each of them using the supplied address. This mode
3231 implements SLAAC but uses a static interface identifier instead of an identifier
3232 generated by using the EUI-64 algorithm. Because the interface identifier is static,
3233 if Duplicate Address Detection detects that the computed address is a duplicate
3234 (in use by another node on the link), then this mode will fail to provide an address
3235 for that prefix. If an IPv6 address without mode is specified, then
3236 <literal>static</literal> mode is assumed.
3237 </para>
3238
3239 <xi:include href="version-info.xml" xpointer="v250"/>
3240 </listitem>
3241 </varlistentry>
3242 <varlistentry>
3243 <term><option>prefixstable[:<replaceable>ADDRESS</replaceable>][,<replaceable>UUID</replaceable>]</option></term>
3244 <listitem>
3245 <para>
3246 The algorithm specified in
3247 <ulink url="https://tools.ietf.org/html/rfc7217">RFC 7217</ulink> will be used to
3248 generate interface identifiers. This mode can optionally take an IPv6 address
3249 separated with a colon (<literal>:</literal>). If an IPv6 address is specified,
3250 then an interface identifier is generated only when a prefix received in an RA
3251 message matches the supplied address.
3252 </para>
3253 <para>
3254 This mode can also optionally take a non-null UUID in the format which
3255 <function>sd_id128_from_string()</function> accepts, e.g.
3256 <literal>86b123b969ba4b7eb8b3d8605123525a</literal> or
3257 <literal>86b123b9-69ba-4b7e-b8b3-d8605123525a</literal>. If a UUID is specified, the
3258 value is used as the secret key to generate interface identifiers. If not specified,
3259 then an application specific ID generated with the system's machine-ID will be used
3260 as the secret key. See
3261 <citerefentry><refentrytitle>sd-id128</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
3262 <citerefentry><refentrytitle>sd_id128_from_string</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
3263 and
3264 <citerefentry><refentrytitle>sd_id128_get_machine</refentrytitle><manvolnum>3</manvolnum></citerefentry>.
3265 </para>
3266 <para>
3267 Note that the <literal>prefixstable</literal> algorithm uses both the interface
3268 name and MAC address as input to the hash to compute the interface identifier, so
3269 if either of those are changed the resulting interface identifier (and address)
3270 will be changed, even if the prefix received in the RA message has not been
3271 changed.
3272 </para>
3273
3274 <xi:include href="version-info.xml" xpointer="v250"/>
3275 </listitem>
3276 </varlistentry>
3277 </variablelist>
3278
3279 <para>If no address generation mode is specified (which is the default), or a received
3280 prefix does not match any of the addresses provided in <literal>prefixstable</literal>
3281 mode, then the EUI-64 algorithm will be used for Ethernet or InfiniBand interfaces,
3282 otherwise <literal>prefixstable</literal> will be used to form an interface identifier for
3283 that prefix.</para>
3284
3285 <para>This setting can be specified multiple times. If an empty string is assigned, then
3286 the all previous assignments are cleared.</para>
3287
3288 <para>Examples:
3289 <programlisting>Token=eui64
3290 Token=::1a:2b:3c:4d
3291 Token=static:::1a:2b:3c:4d
3292 Token=prefixstable
3293 Token=prefixstable:2002:da8:1::</programlisting></para>
3294
3295 <xi:include href="version-info.xml" xpointer="v250"/>
3296 </listitem>
3297 </varlistentry>
3298
3299 <varlistentry>
3300 <term><varname>UseDNS=</varname></term>
3301 <listitem>
3302 <para>When true (the default), the DNS servers received in the Router Advertisement will be used.</para>
3303
3304 <para>This corresponds to the <option>nameserver</option> option in <citerefentry
3305 project='man-pages'><refentrytitle>resolv.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>.</para>
3306
3307 <xi:include href="version-info.xml" xpointer="v231"/>
3308 </listitem>
3309 </varlistentry>
3310
3311 <varlistentry>
3312 <term><varname>UseDomains=</varname></term>
3313 <listitem>
3314 <para>Takes a boolean, or the special value <literal>route</literal>. When true, the domain name
3315 received via IPv6 Router Advertisement (RA) will be used as DNS search domain over this link,
3316 similarly to the effect of the <option>Domains=</option> setting. If set to
3317 <literal>route</literal>, the domain name received via IPv6 RA will be used for routing DNS queries
3318 only, but not for searching, similarly to the effect of the <option>Domains=</option> setting when
3319 the argument is prefixed with <literal>~</literal>. Defaults to false.</para>
3320
3321 <para>It is recommended to enable this option only on trusted networks, as setting this affects resolution
3322 of all hostnames, in particular of single-label names. It is generally safer to use the supplied domain
3323 only as routing domain, rather than as search domain, in order to not have it affect local resolution of
3324 single-label names.</para>
3325
3326 <para>When set to true, this setting corresponds to the <option>domain</option> option in <citerefentry
3327 project='man-pages'><refentrytitle>resolv.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>.</para>
3328
3329 <xi:include href="version-info.xml" xpointer="v231"/>
3330 </listitem>
3331 </varlistentry>
3332
3333 <varlistentry>
3334 <term><varname>RouteTable=<replaceable>num</replaceable></varname></term>
3335 <listitem>
3336 <para>The table identifier for the routes received in the Router Advertisement. Takes one of
3337 predefined names <literal>default</literal>, <literal>main</literal>, and <literal>local</literal>,
3338 and names defined in <varname>RouteTable=</varname> in
3339 <citerefentry><refentrytitle>networkd.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
3340 or a number between 14294967295.</para>
3341
3342 <para>When used in combination with <varname>VRF=</varname>, the VRF's routing table is
3343 used when this parameter is not specified.</para>
3344
3345 <xi:include href="version-info.xml" xpointer="v232"/>
3346 </listitem>
3347 </varlistentry>
3348
3349 <varlistentry>
3350 <term><varname>RouteMetric=</varname></term>
3351 <listitem>
3352 <para>Set the routing metric for the routes received in the Router Advertisement. Takes an unsigned
3353 integer in the range 04294967295, or three unsigned integer separated with <literal>:</literal>,
3354 in that case the first one is used when the router preference is high, the second is for medium
3355 preference, and the last is for low preference
3356 (<literal><replaceable>high</replaceable>:<replaceable>medium</replaceable>:<replaceable>low</replaceable></literal>).
3357 Defaults to <literal>512:1024:2048</literal>.</para>
3358
3359 <xi:include href="version-info.xml" xpointer="v249"/>
3360 </listitem>
3361 </varlistentry>
3362
3363 <varlistentry>
3364 <term><varname>QuickAck=</varname></term>
3365 <listitem>
3366 <para>Takes a boolean. When true, the TCP quick ACK mode is enabled for the routes configured by
3367 the received RAs. When unset, the kernel's default will be used.</para>
3368
3369 <xi:include href="version-info.xml" xpointer="v253"/>
3370 </listitem>
3371 </varlistentry>
3372
3373 <varlistentry>
3374 <term><varname>UseMTU=</varname></term>
3375 <listitem>
3376 <para>Takes a boolean. When true, the MTU received in the Router Advertisement will be
3377 used. Defaults to true.</para>
3378
3379 <xi:include href="version-info.xml" xpointer="v250"/>
3380 </listitem>
3381 </varlistentry>
3382
3383 <varlistentry>
3384 <term><varname>UseHopLimit=</varname></term>
3385 <listitem>
3386 <para>Takes a boolean. When true, the hop limit received in the Router Advertisement will be set to routes
3387 configured based on the advertisement. See also <varname>IPv6HopLimit=</varname>. Defaults to true.</para>
3388
3389 <xi:include href="version-info.xml" xpointer="v255"/>
3390 </listitem>
3391 </varlistentry>
3392
3393 <varlistentry>
3394 <term><varname>UseReachableTime=</varname></term>
3395 <listitem>
3396 <para>Takes a boolean. When true, the reachable time received in the Router Advertisement will be
3397 set on the interface receiving the advertisement. It is used as the base timespan of the validity
3398 of a neighbor entry. Defaults to true.</para>
3399
3400 <xi:include href="version-info.xml" xpointer="v256"/>
3401 </listitem>
3402 </varlistentry>
3403
3404 <varlistentry>
3405 <term><varname>UseRetransmissionTime=</varname></term>
3406 <listitem>
3407 <para>Takes a boolean. When true, the retransmission time received in the Router Advertisement will be set
3408 on the interface receiving the advertisement. It is used as the time between retransmissions of Neighbor
3409 Solicitation messages to a neighbor when resolving the address or when probing the reachability of a neighbor.
3410 Defaults to true.</para>
3411
3412 <xi:include href="version-info.xml" xpointer="v256"/>
3413 </listitem>
3414 </varlistentry>
3415
3416 <varlistentry>
3417 <term><varname>UseGateway=</varname></term>
3418 <listitem>
3419 <para>When true (the default), the router address will be configured as the default gateway.
3420 </para>
3421
3422 <xi:include href="version-info.xml" xpointer="v250"/>
3423 </listitem>
3424 </varlistentry>
3425
3426 <varlistentry>
3427 <term><varname>UseRoutePrefix=</varname></term>
3428 <listitem>
3429 <para>When true (the default), the routes corresponding to the route prefixes received in
3430 the Router Advertisement will be configured.</para>
3431
3432 <xi:include href="version-info.xml" xpointer="v250"/>
3433 </listitem>
3434 </varlistentry>
3435
3436 <varlistentry>
3437 <term><varname>UseCaptivePortal=</varname></term>
3438 <listitem>
3439 <para>When true (the default), the captive portal received in the Router Advertisement will be recorded
3440 and made available to client programs and displayed in the
3441 <citerefentry><refentrytitle>networkctl</refentrytitle><manvolnum>1</manvolnum></citerefentry>
3442 status output per-link.</para>
3443
3444 <xi:include href="version-info.xml" xpointer="v254"/>
3445 </listitem>
3446 </varlistentry>
3447
3448 <varlistentry>
3449 <term><varname>UsePREF64=</varname></term>
3450 <listitem>
3451 <para>When true, the IPv6 PREF64 (or NAT64) prefixes received in the Router Advertisement will be
3452 recorded and made available to client programs and displayed in the
3453 <citerefentry><refentrytitle>networkctl</refentrytitle><manvolnum>1</manvolnum></citerefentry>
3454 status output per-link. See <ulink url="https://tools.ietf.org/html/rfc8781">RFC 8781</ulink>.
3455 Defaults to false.</para>
3456
3457 <xi:include href="version-info.xml" xpointer="v255"/>
3458 </listitem>
3459 </varlistentry>
3460
3461 <varlistentry>
3462 <term><varname>UseAutonomousPrefix=</varname></term>
3463 <listitem>
3464 <para>When true (the default), the autonomous prefix received in the Router Advertisement will be used and take
3465 precedence over any statically configured ones.</para>
3466
3467 <xi:include href="version-info.xml" xpointer="v242"/>
3468 </listitem>
3469 </varlistentry>
3470
3471 <varlistentry>
3472 <term><varname>UseOnLinkPrefix=</varname></term>
3473 <listitem>
3474 <para>When true (the default), the onlink prefix received in the Router Advertisement will be
3475 used and takes precedence over any statically configured ones.</para>
3476
3477 <xi:include href="version-info.xml" xpointer="v242"/>
3478 </listitem>
3479 </varlistentry>
3480
3481 <varlistentry>
3482 <term><varname>RouterDenyList=</varname></term>
3483 <listitem>
3484 <para>A whitespace-separated list of IPv6 router addresses. Each address can optionally
3485 take a prefix length after <literal>/</literal>. Any information advertised by the listed
3486 router is ignored.</para>
3487
3488 <xi:include href="version-info.xml" xpointer="v248"/>
3489 </listitem>
3490 </varlistentry>
3491
3492 <varlistentry>
3493 <term><varname>RouterAllowList=</varname></term>
3494 <listitem>
3495 <para>A whitespace-separated list of IPv6 router addresses. Each address can optionally
3496 take a prefix length after <literal>/</literal>. Only information advertised by the listed
3497 router is accepted. Note that if <varname>RouterAllowList=</varname> is configured then
3498 <varname>RouterDenyList=</varname> is ignored.</para>
3499
3500 <xi:include href="version-info.xml" xpointer="v248"/>
3501 </listitem>
3502 </varlistentry>
3503
3504 <varlistentry>
3505 <term><varname>PrefixDenyList=</varname></term>
3506 <listitem>
3507 <para>A whitespace-separated list of IPv6 prefixes. Each prefix can optionally take its
3508 prefix length after <literal>/</literal>. IPv6 prefixes supplied via router advertisements
3509 in the list are ignored.</para>
3510
3511 <xi:include href="version-info.xml" xpointer="v248"/>
3512 </listitem>
3513 </varlistentry>
3514
3515 <varlistentry>
3516 <term><varname>PrefixAllowList=</varname></term>
3517 <listitem>
3518 <para>A whitespace-separated list of IPv6 prefixes. Each prefix can optionally take its
3519 prefix length after <literal>/</literal>. IPv6 prefixes supplied via router advertisements
3520 in the list are allowed. Note that if <varname>PrefixAllowList=</varname> is configured
3521 then <varname>PrefixDenyList=</varname> is ignored.</para>
3522
3523 <xi:include href="version-info.xml" xpointer="v248"/>
3524 </listitem>
3525 </varlistentry>
3526
3527 <varlistentry>
3528 <term><varname>RouteDenyList=</varname></term>
3529 <listitem>
3530 <para>A whitespace-separated list of IPv6 route prefixes. Each prefix can optionally take
3531 its prefix length after <literal>/</literal>. IPv6 route prefixes supplied via router
3532 advertisements in the list are ignored.</para>
3533
3534 <xi:include href="version-info.xml" xpointer="v248"/>
3535 </listitem>
3536 </varlistentry>
3537
3538 <varlistentry>
3539 <term><varname>RouteAllowList=</varname></term>
3540 <listitem>
3541 <para>A whitespace-separated list of IPv6 route prefixes. Each prefix can optionally take
3542 its prefix length after <literal>/</literal>. IPv6 route prefixes supplied via router
3543 advertisements in the list are allowed. Note that if <varname>RouteAllowList=</varname> is
3544 configured then <varname>RouteDenyList=</varname> is ignored.</para>
3545
3546 <xi:include href="version-info.xml" xpointer="v248"/>
3547 </listitem>
3548 </varlistentry>
3549
3550 <varlistentry>
3551 <term><varname>DHCPv6Client=</varname></term>
3552 <listitem>
3553 <para>Takes a boolean, or the special value <literal>always</literal>. When true, the
3554 DHCPv6 client will be started in <literal>solicit</literal> mode if the RA has the
3555 <literal>managed</literal> flag or <literal>information-request</literal> mode if the RA
3556 lacks the <literal>managed</literal> flag but has the
3557 <literal>other configuration</literal> flag. If set to <literal>always</literal>, the
3558 DHCPv6 client will be started in <literal>solicit</literal> mode when an RA is received,
3559 even if neither the <literal>managed</literal> nor the
3560 <literal>other configuration</literal> flag is set in the RA. This will be ignored when
3561 <varname>WithoutRA=</varname> in the [DHCPv6] section is enabled, or
3562 <varname>UplinkInterface=:self</varname> in the [DHCPPrefixDelegation] section is
3563 specified. Defaults to true.</para>
3564
3565 <xi:include href="version-info.xml" xpointer="v246"/>
3566 </listitem>
3567 </varlistentry>
3568
3569 <varlistentry>
3570 <term><varname>NetLabel=</varname></term>
3571 <listitem>
3572 <para>This applies the NetLabel for the addresses received with RA, like
3573 <varname>NetLabel=</varname> in [Address] section applies it to statically configured
3574 addresses. See <varname>NetLabel=</varname> in [Address] section for more details.</para>
3575
3576 <xi:include href="version-info.xml" xpointer="v252"/>
3577 </listitem>
3578 </varlistentry>
3579
3580 <varlistentry>
3581 <term><varname>NFTSet=</varname></term>
3582 <listitem>
3583 <para>This applies the NFT set for the network configuration received with RA, like
3584 <varname>NFTSet=</varname> in [Address] section applies it to static configuration. See
3585 <varname>NFTSet=</varname> in [Address] section for more details. For <literal>address</literal> or
3586 <literal>prefix</literal> source types, the type of the element used in the NFT filter must be
3587 <literal>ipv6_addr</literal>.</para>
3588
3589 <xi:include href="version-info.xml" xpointer="v255"/>
3590 </listitem>
3591 </varlistentry>
3592 </variablelist>
3593 </refsect1>
3594
3595 <refsect1>
3596 <title>[DHCPServer] Section Options</title>
3597 <para>The [DHCPServer] section contains settings for the DHCP server, if enabled via the
3598 <varname>DHCPServer=</varname> option described above:</para>
3599
3600 <variablelist class='network-directives'>
3601
3602 <varlistentry>
3603 <term><varname>ServerAddress=</varname></term>
3604 <listitem>
3605 <para>Specifies the server address for the DHCP server. Takes an IPv4 address with prefix length
3606 separated with a slash, e.g. <literal>192.168.0.1/24</literal>. Defaults to unset, and one of
3607 static IPv4 addresses configured in [Network] or [Address] section will be automatically selected.
3608 This setting may be useful when the interface on which the DHCP server is running has multiple
3609 static IPv4 addresses.</para>
3610 <para>This implies <varname>Address=</varname> in [Network] or [Address] section with the same
3611 address and prefix length. That is,
3612 <programlisting>[Network]
3613 DHCPServer=yes
3614 Address=192.168.0.1/24
3615 Address=192.168.0.2/24
3616 [DHCPServer]
3617 ServerAddress=192.168.0.1/24</programlisting>
3618 or
3619 <programlisting>[Network]
3620 DHCPServer=yes
3621 [Address]
3622 Address=192.168.0.1/24
3623 [Address]
3624 Address=192.168.0.2/24
3625 [DHCPServer]
3626 ServerAddress=192.168.0.1/24</programlisting>
3627 are equivalent to the following:
3628 <programlisting>[Network]
3629 DHCPServer=yes
3630 Address=192.168.0.2/24
3631 [DHCPServer]
3632 ServerAddress=192.168.0.1/24</programlisting>
3633 </para>
3634 <para>Since version 255, like the <varname>Address=</varname> setting in [Network] or [Address]
3635 section, this also supports a null address, e.g. <literal>0.0.0.0/24</literal>, and an unused
3636 address will be automatically selected. For more details about the automatic address selection,
3637 see <varname>Address=</varname> setting in [Network] section in the above.</para>
3638
3639 <xi:include href="version-info.xml" xpointer="v249"/>
3640 </listitem>
3641 </varlistentry>
3642
3643 <varlistentry>
3644 <term><varname>PoolOffset=</varname></term>
3645 <term><varname>PoolSize=</varname></term>
3646
3647 <listitem><para>Configures the pool of addresses to hand out. The pool
3648 is a contiguous sequence of IP addresses in the subnet configured for
3649 the server address, which does not include the subnet nor the broadcast
3650 address. <varname>PoolOffset=</varname> takes the offset of the pool
3651 from the start of subnet, or zero to use the default value.
3652 <varname>PoolSize=</varname> takes the number of IP addresses in the
3653 pool or zero to use the default value. By default, the pool starts at
3654 the first address after the subnet address and takes up the rest of
3655 the subnet, excluding the broadcast address. If the pool includes
3656 the server address (the default), this is reserved and not handed
3657 out to clients.</para>
3658
3659 <xi:include href="version-info.xml" xpointer="v226"/></listitem>
3660 </varlistentry>
3661
3662 <varlistentry>
3663 <term><varname>DefaultLeaseTimeSec=</varname></term>
3664 <term><varname>MaxLeaseTimeSec=</varname></term>
3665
3666 <listitem><para>Control the default and maximum DHCP lease
3667 time to pass to clients. These settings take time values in seconds or
3668 another common time unit, depending on the suffix. The default
3669 lease time is used for clients that did not ask for a specific
3670 lease time. If a client asks for a lease time longer than the
3671 maximum lease time, it is automatically shortened to the
3672 specified time. The default lease time defaults to 1h, the
3673 maximum lease time to 12h. Shorter lease times are beneficial
3674 if the configuration data in DHCP leases changes frequently
3675 and clients shall learn the new settings with shorter
3676 latencies. Longer lease times reduce the generated DHCP
3677 network traffic.</para>
3678
3679 <xi:include href="version-info.xml" xpointer="v226"/></listitem>
3680 </varlistentry>
3681
3682 <varlistentry>
3683 <term><varname>UplinkInterface=</varname></term>
3684 <listitem><para>Specifies the name or the index of the uplink interface, or one of the special
3685 values <literal>:none</literal> and <literal>:auto</literal>. When emitting DNS, NTP, or SIP
3686 servers is enabled but no servers are specified, the servers configured in the uplink interface
3687 will be emitted. When <literal>:auto</literal>, the link which has a default gateway with the
3688 highest priority will be automatically selected. When <literal>:none</literal>, no uplink
3689 interface will be selected. Defaults to <literal>:auto</literal>.</para>
3690
3691 <xi:include href="version-info.xml" xpointer="v249"/></listitem>
3692 </varlistentry>
3693
3694 <varlistentry>
3695 <term><varname>EmitDNS=</varname></term>
3696 <term><varname>DNS=</varname></term>
3697
3698 <listitem><para><varname>EmitDNS=</varname> takes a boolean. Configures whether the DHCP leases
3699 handed out to clients shall contain DNS server information. Defaults to <literal>yes</literal>.
3700 The DNS servers to pass to clients may be configured with the <varname>DNS=</varname> option,
3701 which takes a list of IPv4 addresses, or special value <literal>_server_address</literal> which
3702 will be converted to the address used by the DHCP server.</para>
3703
3704 <para>If the <varname>EmitDNS=</varname> option is enabled but no servers configured, the
3705 servers are automatically propagated from an "uplink" interface that has appropriate servers
3706 set. The "uplink" interface is determined by the default route of the system with the highest
3707 priority. Note that this information is acquired at the time the lease is handed out, and does
3708 not take uplink interfaces into account that acquire DNS server information at a later point.
3709 If no suitable uplink interface is found the DNS server data from
3710 <filename>/etc/resolv.conf</filename> is used. Also, note that the leases are not refreshed if
3711 the uplink network configuration changes. To ensure clients regularly acquire the most current
3712 uplink DNS server information, it is thus advisable to shorten the DHCP lease time via
3713 <varname>MaxLeaseTimeSec=</varname> described above.</para>
3714
3715 <para>This setting can be specified multiple times. If an empty string is specified, then all
3716 DNS servers specified earlier are cleared.</para>
3717
3718 <xi:include href="version-info.xml" xpointer="v226"/></listitem>
3719 </varlistentry>
3720
3721 <varlistentry>
3722 <term><varname>EmitNTP=</varname></term>
3723 <term><varname>NTP=</varname></term>
3724 <term><varname>EmitSIP=</varname></term>
3725 <term><varname>SIP=</varname></term>
3726 <term><varname>EmitPOP3=</varname></term>
3727 <term><varname>POP3=</varname></term>
3728 <term><varname>EmitSMTP=</varname></term>
3729 <term><varname>SMTP=</varname></term>
3730 <term><varname>EmitLPR=</varname></term>
3731 <term><varname>LPR=</varname></term>
3732
3733 <listitem><para>Similar to the <varname>EmitDNS=</varname> and <varname>DNS=</varname> settings
3734 described above, these settings configure whether and what server information for the indicate
3735 protocol shall be emitted as part of the DHCP lease. The same syntax, propagation semantics and
3736 defaults apply as for <varname>EmitDNS=</varname> and <varname>DNS=</varname>.</para>
3737
3738 <xi:include href="version-info.xml" xpointer="v226"/></listitem>
3739 </varlistentry>
3740
3741 <varlistentry>
3742 <term><varname>EmitRouter=</varname></term>
3743 <term><varname>Router=</varname></term>
3744
3745 <listitem><para>The <varname>EmitRouter=</varname> setting takes a boolean value, and configures
3746 whether the DHCP lease should contain the router option. The <varname>Router=</varname> setting
3747 takes an IPv4 address, and configures the router address to be emitted. When the
3748 <varname>Router=</varname> setting is not specified, then the server address will be used for
3749 the router option. When the <varname>EmitRouter=</varname> setting is disabled, the
3750 <varname>Router=</varname> setting will be ignored. The <varname>EmitRouter=</varname> setting
3751 defaults to true, and the <varname>Router=</varname> setting defaults to unset.
3752 </para>
3753
3754 <xi:include href="version-info.xml" xpointer="v230"/></listitem>
3755 </varlistentry>
3756
3757 <varlistentry>
3758 <term><varname>EmitTimezone=</varname></term>
3759 <term><varname>Timezone=</varname></term>
3760
3761 <listitem><para>Takes a boolean. Configures whether the DHCP leases handed out
3762 to clients shall contain timezone information. Defaults to <literal>yes</literal>. The
3763 <varname>Timezone=</varname> setting takes a timezone string
3764 (such as <literal>Europe/Berlin</literal> or
3765 <literal>UTC</literal>) to pass to clients. If no explicit
3766 timezone is set, the system timezone of the local host is
3767 propagated, as determined by the
3768 <filename>/etc/localtime</filename> symlink.</para>
3769
3770 <xi:include href="version-info.xml" xpointer="v226"/></listitem>
3771 </varlistentry>
3772
3773 <varlistentry>
3774 <term><varname>BootServerAddress=</varname></term>
3775
3776 <listitem>
3777 <para>Takes an IPv4 address of the boot server used by e.g. PXE boot systems. When specified, this
3778 address is sent in the <option>siaddr</option> field of the DHCP message header. See <ulink
3779 url="https://www.rfc-editor.org/rfc/rfc2131.html">RFC 2131</ulink> for more details. Defaults to
3780 unset.</para>
3781
3782 <xi:include href="version-info.xml" xpointer="v251"/>
3783 </listitem>
3784 </varlistentry>
3785
3786 <varlistentry>
3787 <term><varname>BootServerName=</varname></term>
3788
3789 <listitem>
3790 <para>Takes a name of the boot server used by e.g. PXE boot systems. When specified, this name is
3791 sent in the DHCP option 66 ("TFTP server name"). See <ulink
3792 url="https://www.rfc-editor.org/rfc/rfc2132.html">RFC 2132</ulink> for more details. Defaults to
3793 unset.</para>
3794
3795 <para>Note that typically setting one of <varname>BootServerName=</varname> or
3796 <varname>BootServerAddress=</varname> is sufficient, but both can be set too, if desired.</para>
3797
3798 <xi:include href="version-info.xml" xpointer="v251"/>
3799 </listitem>
3800 </varlistentry>
3801
3802 <varlistentry>
3803 <term><varname>BootFilename=</varname></term>
3804
3805 <listitem>
3806 <para>Takes a path or URL to a file loaded by e.g. a PXE boot loader. When specified, this path is
3807 sent in the DHCP option 67 ("Bootfile name"). See <ulink
3808 url="https://www.rfc-editor.org/rfc/rfc2132.html">RFC 2132</ulink> for more details. Defaults to
3809 unset.</para>
3810
3811 <xi:include href="version-info.xml" xpointer="v251"/>
3812 </listitem>
3813 </varlistentry>
3814
3815 <varlistentry>
3816 <term><varname>IPv6OnlyPreferredSec=</varname></term>
3817
3818 <listitem>
3819 <para>Takes a timespan. Controls the
3820 <ulink url="https://tools.ietf.org/html/rfc8925">RFC 8925</ulink> IPv6-Only Preferred option.
3821 Specifies the DHCPv4 option to indicate that a host supports an IPv6-only mode and is willing to
3822 forgo obtaining an IPv4 address if the network provides IPv6 connectivity. Defaults to unset, and
3823 not send the option. The minimum allowed value is 300 seconds.</para>
3824
3825 <xi:include href="version-info.xml" xpointer="v255"/>
3826 </listitem>
3827 </varlistentry>
3828
3829 <varlistentry>
3830 <term><varname>SendOption=</varname></term>
3831 <listitem>
3832 <para>Send a raw option with value via DHCPv4 server. Takes a DHCP option number, data type
3833 and data (<literal><replaceable>option</replaceable>:<replaceable>type</replaceable>:<replaceable>value</replaceable></literal>).
3834 The option number is an integer in the range 1254. The type takes one of <literal>uint8</literal>,
3835 <literal>uint16</literal>, <literal>uint32</literal>, <literal>ipv4address</literal>, <literal>ipv6address</literal>, or
3836 <literal>string</literal>. Special characters in the data string may be escaped using
3837 <ulink url="https://en.wikipedia.org/wiki/Escape_sequences_in_C#Table_of_escape_sequences">C-style
3838 escapes</ulink>. This setting can be specified multiple times. If an empty string is specified,
3839 then all options specified earlier are cleared. Defaults to unset.</para>
3840
3841 <xi:include href="version-info.xml" xpointer="v244"/>
3842 </listitem>
3843 </varlistentry>
3844
3845 <varlistentry>
3846 <term><varname>SendVendorOption=</varname></term>
3847 <listitem>
3848 <para>Send a vendor option with value via DHCPv4 server. Takes a DHCP option number, data type
3849 and data (<literal><replaceable>option</replaceable>:<replaceable>type</replaceable>:<replaceable>value</replaceable></literal>).
3850 The option number is an integer in the range 1254. The type takes one of <literal>uint8</literal>,
3851 <literal>uint16</literal>, <literal>uint32</literal>, <literal>ipv4address</literal>, or
3852 <literal>string</literal>. Special characters in the data string may be escaped using
3853 <ulink url="https://en.wikipedia.org/wiki/Escape_sequences_in_C#Table_of_escape_sequences">C-style
3854 escapes</ulink>. This setting can be specified multiple times. If an empty string is specified,
3855 then all options specified earlier are cleared. Defaults to unset.</para>
3856
3857 <xi:include href="version-info.xml" xpointer="v246"/>
3858 </listitem>
3859 </varlistentry>
3860 <varlistentry>
3861 <term><varname>BindToInterface=</varname></term>
3862 <listitem>
3863 <para>Takes a boolean value. When <literal>yes</literal>, DHCP server socket will be bound
3864 to its network interface and all socket communication will be restricted to this interface.
3865 Defaults to <literal>yes</literal>, except if <varname>RelayTarget=</varname> is used (see below),
3866 in which case it defaults to <literal>no</literal>.</para>
3867
3868 <xi:include href="version-info.xml" xpointer="v249"/>
3869 </listitem>
3870 </varlistentry>
3871 <varlistentry>
3872 <term><varname>RelayTarget=</varname></term>
3873 <listitem>
3874 <para>Takes an IPv4 address, which must be in the format described in
3875 <citerefentry project='man-pages'><refentrytitle>inet_pton</refentrytitle><manvolnum>3</manvolnum></citerefentry>.
3876 Turns this DHCP server into a DHCP relay agent. See <ulink url="https://tools.ietf.org/html/rfc1542">RFC 1542</ulink>.
3877 The address is the address of DHCP server or another relay agent to forward DHCP messages to and from.</para>
3878
3879 <xi:include href="version-info.xml" xpointer="v249"/>
3880 </listitem>
3881 </varlistentry>
3882 <varlistentry>
3883 <term><varname>RelayAgentCircuitId=</varname></term>
3884 <listitem>
3885 <para>Specifies value for Agent Circuit ID suboption of Relay Agent Information option.
3886 Takes a string, which must be in the format <literal>string:<replaceable>value</replaceable></literal>,
3887 where <literal><replaceable>value</replaceable></literal> should be replaced with the value of the suboption.
3888 Defaults to unset (means no Agent Circuit ID suboption is generated).
3889 Ignored if <varname>RelayTarget=</varname> is not specified.</para>
3890
3891 <xi:include href="version-info.xml" xpointer="v249"/>
3892 </listitem>
3893 </varlistentry>
3894 <varlistentry>
3895 <term><varname>RelayAgentRemoteId=</varname></term>
3896 <listitem>
3897 <para>Specifies value for Agent Remote ID suboption of Relay Agent Information option.
3898 Takes a string, which must be in the format <literal>string:<replaceable>value</replaceable></literal>,
3899 where <literal><replaceable>value</replaceable></literal> should be replaced with the value of the suboption.
3900 Defaults to unset (means no Agent Remote ID suboption is generated).
3901 Ignored if <varname>RelayTarget=</varname> is not specified.</para>
3902
3903 <xi:include href="version-info.xml" xpointer="v249"/>
3904 </listitem>
3905 </varlistentry>
3906
3907 <varlistentry>
3908 <term><varname>RapidCommit=</varname></term>
3909 <listitem>
3910 <para>Takes a boolean. When true, the server supports
3911 <ulink url="https://datatracker.ietf.org/doc/html/rfc4039">RFC 4039</ulink>. When a client sends
3912 a DHCPDISCOVER message with the Rapid Commit option to the server, then the server will reply with
3913 a DHCPACK message to the client, instead of DHCPOFFER. Defaults to true.</para>
3914
3915 <xi:include href="version-info.xml" xpointer="v255"/>
3916 </listitem>
3917 </varlistentry>
3918
3919 <varlistentry>
3920 <term><varname>PersistLeases=</varname></term>
3921 <listitem>
3922 <para>Takes a boolean. When true, the DHCP server will load and save leases in the persistent
3923 storage. When false, the DHCP server will neither load nor save leases in the persistent storage.
3924 Hence, bound leases will be lost when the interface is reconfigured e.g. by
3925 <command>networkctl reconfigure</command>, or <filename>systemd-networkd.service</filename>
3926 is restarted. That may cause address conflict on the network. So, please take an extra care when
3927 disable this setting. When unspecified, the value specified in the same setting in
3928 <citerefentry><refentrytitle>networkd.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
3929 which defaults to <literal>yes</literal>, will be used.</para>
3930
3931 <xi:include href="version-info.xml" xpointer="v256"/>
3932 </listitem>
3933 </varlistentry>
3934
3935 </variablelist>
3936 </refsect1>
3937
3938 <refsect1>
3939 <title>[DHCPServerStaticLease] Section Options</title>
3940 <para>The <literal>[DHCPServerStaticLease]</literal> section configures a static DHCP lease to assign a
3941 fixed IPv4 address to a specific device based on its MAC address. This section can be specified multiple
3942 times.</para>
3943
3944 <variablelist class='network-directives'>
3945 <varlistentry>
3946 <term><varname>MACAddress=</varname></term>
3947
3948 <listitem><para>The hardware address of a device to match. This key is mandatory.</para>
3949
3950 <xi:include href="version-info.xml" xpointer="v249"/></listitem>
3951 </varlistentry>
3952
3953 <varlistentry>
3954 <term><varname>Address=</varname></term>
3955
3956 <listitem><para>The IPv4 address that should be assigned to the device that was matched with
3957 <varname>MACAddress=</varname>. This key is mandatory.</para>
3958
3959 <xi:include href="version-info.xml" xpointer="v249"/></listitem>
3960 </varlistentry>
3961 </variablelist>
3962 </refsect1>
3963
3964 <refsect1>
3965 <title>[IPv6SendRA] Section Options</title>
3966 <para>The [IPv6SendRA] section contains settings for sending IPv6 Router Advertisements and whether
3967 to act as a router, if enabled via the <varname>IPv6SendRA=</varname> option described above. IPv6
3968 network prefixes or routes are defined with one or more [IPv6Prefix] or [IPv6RoutePrefix] sections.
3969 </para>
3970
3971 <variablelist class='network-directives'>
3972
3973 <varlistentry>
3974 <term><varname>Managed=</varname></term>
3975 <term><varname>OtherInformation=</varname></term>
3976
3977 <listitem><para>Takes a boolean. Controls whether a DHCPv6 server is used to acquire IPv6
3978 addresses on the network link when <varname>Managed=</varname>
3979 is set to <literal>true</literal> or if only additional network
3980 information can be obtained via DHCPv6 for the network link when
3981 <varname>OtherInformation=</varname> is set to
3982 <literal>true</literal>. Both settings default to
3983 <literal>false</literal>, which means that a DHCPv6 server is not being
3984 used.</para>
3985
3986 <xi:include href="version-info.xml" xpointer="v235"/></listitem>
3987 </varlistentry>
3988
3989 <varlistentry>
3990 <term><varname>RouterLifetimeSec=</varname></term>
3991
3992 <listitem><para>Takes a timespan. Configures the IPv6 router lifetime in seconds. The value must be 0
3993 seconds, or between 4 seconds and 9000 seconds. When set to 0, the host is not acting as a router.
3994 Defaults to 1800 seconds (30 minutes).</para>
3995
3996 <xi:include href="version-info.xml" xpointer="v235"/>
3997 </listitem>
3998 </varlistentry>
3999
4000 <varlistentry>
4001 <term><varname>RetransmitSec=</varname></term>
4002
4003 <listitem><para>Takes a timespan. Configures the retransmit time, used by clients to retransmit Neighbor
4004 Solicitation messages on address resolution and the Neighbor Unreachability Detection algorithm.
4005 An integer, the default unit is seconds, in the range 04294967295 msec. Defaults to 0.</para>
4006
4007 <xi:include href="version-info.xml" xpointer="v255"/>
4008 </listitem>
4009 </varlistentry>
4010
4011 <varlistentry>
4012 <term><varname>RouterPreference=</varname></term>
4013
4014 <listitem><para>Configures IPv6 router preference if
4015 <varname>RouterLifetimeSec=</varname> is non-zero. Valid values are
4016 <literal>high</literal>, <literal>medium</literal> and
4017 <literal>low</literal>, with <literal>normal</literal> and
4018 <literal>default</literal> added as synonyms for
4019 <literal>medium</literal> just to make configuration easier. See
4020 <ulink url="https://tools.ietf.org/html/rfc4191">RFC 4191</ulink>
4021 for details. Defaults to <literal>medium</literal>.</para>
4022
4023 <xi:include href="version-info.xml" xpointer="v235"/></listitem>
4024 </varlistentry>
4025
4026 <varlistentry>
4027 <term><varname>HopLimit=</varname></term>
4028 <listitem>
4029 <para>Configures hop limit. Takes an integer in the range 0255. See also
4030 <varname>IPv6HopLimit=</varname>.</para>
4031
4032 <xi:include href="version-info.xml" xpointer="v255"/>
4033 </listitem>
4034 </varlistentry>
4035
4036 <varlistentry>
4037 <term><varname>UplinkInterface=</varname></term>
4038 <listitem><para>Specifies the name or the index of the uplink interface, or one of the special
4039 values <literal>:none</literal> and <literal>:auto</literal>. When emitting DNS servers or
4040 search domains is enabled but no servers are specified, the servers configured in the uplink
4041 interface will be emitted. When <literal>:auto</literal>, the value specified to the same
4042 setting in the [DHCPPrefixDelegation] section will be used if
4043 <varname>DHCPPrefixDelegation=</varname> is enabled, otherwise the link which has a default
4044 gateway with the highest priority will be automatically selected. When <literal>:none</literal>,
4045 no uplink interface will be selected. Defaults to <literal>:auto</literal>.</para>
4046
4047 <xi:include href="version-info.xml" xpointer="v250"/></listitem>
4048 </varlistentry>
4049
4050 <varlistentry>
4051 <term><varname>EmitDNS=</varname></term>
4052 <term><varname>DNS=</varname></term>
4053
4054 <listitem><para><varname>DNS=</varname> specifies a list of recursive DNS server IPv6 addresses
4055 that are distributed via Router Advertisement messages when <varname>EmitDNS=</varname> is true.
4056 <varname>DNS=</varname> also takes special value <literal>_link_local</literal>; in that case
4057 the IPv6 link-local address is distributed. If <varname>DNS=</varname> is empty, DNS servers are
4058 read from the [Network] section. If the [Network] section does not contain any DNS servers
4059 either, DNS servers from the uplink interface specified in <varname>UplinkInterface=</varname>
4060 will be used. When <varname>EmitDNS=</varname> is false, no DNS server information is sent in
4061 Router Advertisement messages. <varname>EmitDNS=</varname> defaults to true.</para>
4062
4063 <xi:include href="version-info.xml" xpointer="v235"/></listitem>
4064 </varlistentry>
4065
4066 <varlistentry>
4067 <term><varname>EmitDomains=</varname></term>
4068 <term><varname>Domains=</varname></term>
4069
4070 <listitem><para>A list of DNS search domains distributed via Router Advertisement messages when
4071 <varname>EmitDomains=</varname> is true. If <varname>Domains=</varname> is empty, DNS search
4072 domains are read from the [Network] section. If the [Network] section does not contain any DNS
4073 search domains either, DNS search domains from the uplink interface specified in
4074 <varname>UplinkInterface=</varname> will be used. When <varname>EmitDomains=</varname> is false,
4075 no DNS search domain information is sent in Router Advertisement messages.
4076 <varname>EmitDomains=</varname> defaults to true.</para>
4077
4078 <xi:include href="version-info.xml" xpointer="v235"/></listitem>
4079 </varlistentry>
4080
4081 <varlistentry>
4082 <term><varname>DNSLifetimeSec=</varname></term>
4083
4084 <listitem><para>Lifetime in seconds for the DNS server addresses listed in
4085 <varname>DNS=</varname> and search domains listed in <varname>Domains=</varname>. Defaults to
4086 3600 seconds (one hour).</para>
4087
4088 <xi:include href="version-info.xml" xpointer="v235"/></listitem>
4089 </varlistentry>
4090
4091 <varlistentry>
4092 <term><varname>HomeAgent=</varname></term>
4093
4094 <listitem><para>Takes a boolean. Specifies that IPv6 router advertisements which indicate to hosts that
4095 the router acts as a Home Agent and includes a Home Agent option. Defaults to false. See
4096 <ulink url="https://tools.ietf.org/html/rfc6275">RFC 6275</ulink> for further details.</para>
4097
4098 <xi:include href="version-info.xml" xpointer="v255"/>
4099 </listitem>
4100 </varlistentry>
4101
4102 <varlistentry>
4103 <term><varname>HomeAgentLifetimeSec=</varname></term>
4104
4105 <listitem><para>Takes a timespan. Specifies the lifetime of the Home Agent. An integer, the default unit is seconds,
4106 in the range 165535. Defaults to the value set to <varname>RouterLifetimeSec=</varname>.</para>
4107
4108 <xi:include href="version-info.xml" xpointer="v255"/>
4109 </listitem>
4110 </varlistentry>
4111
4112 <varlistentry>
4113 <term><varname>HomeAgentPreference=</varname></term>
4114
4115 <listitem><para>Configures IPv6 Home Agent preference. Takes an integer in the range 065535.
4116 Defaults to 0.</para>
4117
4118 <xi:include href="version-info.xml" xpointer="v255"/>
4119 </listitem>
4120 </varlistentry>
4121
4122 </variablelist>
4123 </refsect1>
4124
4125 <refsect1>
4126 <title>[IPv6Prefix] Section Options</title>
4127 <para>One or more [IPv6Prefix] sections contain the IPv6 prefixes that are announced via Router
4128 Advertisements. See <ulink url="https://tools.ietf.org/html/rfc4861">RFC 4861</ulink> for further
4129 details.</para>
4130
4131 <variablelist class='network-directives'>
4132
4133 <varlistentry>
4134 <term><varname>AddressAutoconfiguration=</varname></term>
4135 <term><varname>OnLink=</varname></term>
4136
4137 <listitem><para>Takes a boolean to specify whether IPv6 addresses can be
4138 autoconfigured with this prefix and whether the prefix can be used for
4139 onlink determination. Both settings default to <literal>true</literal>
4140 in order to ease configuration.
4141 </para>
4142
4143 <xi:include href="version-info.xml" xpointer="v235"/></listitem>
4144 </varlistentry>
4145
4146 <varlistentry>
4147 <term><varname>Prefix=</varname></term>
4148
4149 <listitem><para>The IPv6 prefix that is to be distributed to hosts. Similarly to configuring static
4150 IPv6 addresses, the setting is configured as an IPv6 prefix and its prefix length, separated by a
4151 <literal>/</literal> character. Use multiple [IPv6Prefix] sections to configure multiple IPv6
4152 prefixes since prefix lifetimes, address autoconfiguration and onlink status may differ from one
4153 prefix to another.</para>
4154
4155 <xi:include href="version-info.xml" xpointer="v235"/></listitem>
4156 </varlistentry>
4157
4158 <varlistentry>
4159 <term><varname>PreferredLifetimeSec=</varname></term>
4160 <term><varname>ValidLifetimeSec=</varname></term>
4161
4162 <listitem><para>Preferred and valid lifetimes for the prefix measured in seconds.
4163 <varname>PreferredLifetimeSec=</varname> defaults to 1800 seconds (30 minutes) and
4164 <varname>ValidLifetimeSec=</varname> defaults to 3600 seconds (one hour).</para>
4165
4166 <xi:include href="version-info.xml" xpointer="v235"/></listitem>
4167 </varlistentry>
4168
4169 <varlistentry>
4170 <term><varname>Assign=</varname></term>
4171 <listitem><para>Takes a boolean. When true, adds an address from the prefix. Default to false.
4172 </para>
4173
4174 <xi:include href="version-info.xml" xpointer="v246"/></listitem>
4175 </varlistentry>
4176
4177 <varlistentry>
4178 <term><varname>Token=</varname></term>
4179 <listitem>
4180 <para>Specifies an optional address generation mode for assigning an address in each
4181 prefix. This accepts the same syntax as <varname>Token=</varname> in the [IPv6AcceptRA]
4182 section. If <varname>Assign=</varname> is set to false, then this setting will be ignored.
4183 Defaults to unset, which means the EUI-64 algorithm will be used.</para>
4184
4185 <xi:include href="version-info.xml" xpointer="v250"/>
4186 </listitem>
4187 </varlistentry>
4188
4189 <varlistentry>
4190 <term><varname>RouteMetric=</varname></term>
4191 <listitem>
4192 <para>The metric of the prefix route. Takes an unsigned integer in the range 04294967295.
4193 When unset or set to 0, the kernel's default value is used. This setting is ignored when
4194 <varname>Assign=</varname> is false.</para>
4195
4196 <xi:include href="version-info.xml" xpointer="v249"/>
4197 </listitem>
4198 </varlistentry>
4199 </variablelist>
4200 </refsect1>
4201
4202 <refsect1>
4203 <title>[IPv6RoutePrefix] Section Options</title>
4204 <para>One or more [IPv6RoutePrefix] sections contain the IPv6
4205 prefix routes that are announced via Router Advertisements. See
4206 <ulink url="https://tools.ietf.org/html/rfc4191">RFC 4191</ulink>
4207 for further details.</para>
4208
4209 <variablelist class='network-directives'>
4210
4211 <varlistentry>
4212 <term><varname>Route=</varname></term>
4213
4214 <listitem><para>The IPv6 route that is to be distributed to hosts. Similarly to configuring static
4215 IPv6 routes, the setting is configured as an IPv6 prefix routes and its prefix route length,
4216 separated by a <literal>/</literal> character. Use multiple [IPv6RoutePrefix] sections to configure
4217 multiple IPv6 prefix routes.</para>
4218
4219 <xi:include href="version-info.xml" xpointer="v244"/></listitem>
4220 </varlistentry>
4221
4222 <varlistentry>
4223 <term><varname>LifetimeSec=</varname></term>
4224
4225 <listitem><para>Lifetime for the route prefix measured in seconds.
4226 <varname>LifetimeSec=</varname> defaults to 3600 seconds (one hour).</para>
4227
4228 <xi:include href="version-info.xml" xpointer="v244"/></listitem>
4229 </varlistentry>
4230
4231 </variablelist>
4232 </refsect1>
4233
4234 <refsect1>
4235 <title>[IPv6PREF64Prefix] Section Options</title>
4236 <para>One or more [IPv6PREF64Prefix] sections contain the IPv6 PREF64 (or NAT64) prefixes that are announced via Router
4237 Advertisements. See <ulink url="https://tools.ietf.org/html/rfc8781">RFC 8781</ulink> for further
4238 details.</para>
4239
4240 <variablelist class='network-directives'>
4241
4242 <varlistentry>
4243 <term><varname>Prefix=</varname></term>
4244
4245 <listitem><para>The IPv6 PREF64 (or NAT64) prefix that is to be distributed to hosts. The setting holds
4246 an IPv6 prefix that should be set up for NAT64 translation (PLAT) to allow 464XLAT on the network segment.
4247 Use multiple [IPv6PREF64Prefix] sections to configure multiple IPv6 prefixes since prefix lifetime may differ
4248 from one prefix to another. The prefix is an address with a prefix length, separated by a slash
4249 <literal>/</literal> character. Valid NAT64 prefix length are 96, 64, 56, 48, 40, and 32 bits.</para>
4250
4251 <xi:include href="version-info.xml" xpointer="v255"/></listitem></varlistentry>
4252
4253 <varlistentry>
4254 <term><varname>LifetimeSec=</varname></term>
4255 <listitem><para>Lifetime for the prefix measured in seconds. Should be greater than or equal to <varname>RouterLifetimeSec=</varname>.
4256 <varname>LifetimeSec=</varname> defaults to 1800 seconds.</para>
4257
4258 <xi:include href="version-info.xml" xpointer="v255"/></listitem>
4259 </varlistentry>
4260 </variablelist>
4261 </refsect1>
4262
4263 <refsect1>
4264 <title>[Bridge] Section Options</title>
4265 <para>The [Bridge] section accepts the following keys:</para>
4266
4267 <variablelist class='network-directives'>
4268 <varlistentry>
4269 <term><varname>UnicastFlood=</varname></term>
4270 <listitem>
4271 <para>Takes a boolean. Controls whether the bridge should flood
4272 traffic for which an FDB entry is missing and the destination
4273 is unknown through this port. When unset, the kernel's default will be used.
4274 </para>
4275
4276 <xi:include href="version-info.xml" xpointer="v223"/>
4277 </listitem>
4278 </varlistentry>
4279 <varlistentry>
4280 <term><varname>MulticastFlood=</varname></term>
4281 <listitem>
4282 <para>Takes a boolean. Controls whether the bridge should flood
4283 traffic for which an MDB entry is missing and the destination
4284 is unknown through this port. When unset, the kernel's default will be used.
4285 </para>
4286
4287 <xi:include href="version-info.xml" xpointer="v242"/>
4288 </listitem>
4289 </varlistentry>
4290 <varlistentry>
4291 <term><varname>MulticastToUnicast=</varname></term>
4292 <listitem>
4293 <para>Takes a boolean. Multicast to unicast works on top of the multicast snooping feature of
4294 the bridge. Which means unicast copies are only delivered to hosts which are interested in it.
4295 When unset, the kernel's default will be used.
4296 </para>
4297
4298 <xi:include href="version-info.xml" xpointer="v240"/>
4299 </listitem>
4300 </varlistentry>
4301 <varlistentry>
4302 <term><varname>NeighborSuppression=</varname></term>
4303 <listitem>
4304 <para>Takes a boolean. Configures whether ARP and ND neighbor suppression is enabled for
4305 this port. When unset, the kernel's default will be used.
4306 </para>
4307
4308 <xi:include href="version-info.xml" xpointer="v242"/>
4309 </listitem>
4310 </varlistentry>
4311 <varlistentry>
4312 <term><varname>Learning=</varname></term>
4313 <listitem>
4314 <para>Takes a boolean. Configures whether MAC address learning is enabled for
4315 this port. When unset, the kernel's default will be used.
4316 </para>
4317
4318 <xi:include href="version-info.xml" xpointer="v242"/>
4319 </listitem>
4320 </varlistentry>
4321 <varlistentry>
4322 <term><varname>HairPin=</varname></term>
4323 <listitem>
4324 <para>Takes a boolean. Configures whether traffic may be sent back out of the port on which it
4325 was received. When this flag is false, then the bridge will not forward traffic back out of the
4326 receiving port. When unset, the kernel's default will be used.</para>
4327
4328 <xi:include href="version-info.xml" xpointer="v223"/>
4329 </listitem>
4330 </varlistentry>
4331 <varlistentry>
4332 <term><varname>Isolated=</varname></term>
4333 <listitem>
4334 <para>Takes a boolean. Configures whether this port is isolated or not. Within a bridge,
4335 isolated ports can only communicate with non-isolated ports. When set to true, this port can only
4336 communicate with other ports whose Isolated setting is false. When set to false, this port
4337 can communicate with any other ports. When unset, the kernel's default will be used.</para>
4338
4339 <xi:include href="version-info.xml" xpointer="v251"/>
4340 </listitem>
4341 </varlistentry>
4342 <varlistentry>
4343 <term><varname>UseBPDU=</varname></term>
4344 <listitem>
4345 <para>Takes a boolean. Configures whether STP Bridge Protocol Data Units will be
4346 processed by the bridge port. When unset, the kernel's default will be used.</para>
4347
4348 <xi:include href="version-info.xml" xpointer="v223"/>
4349 </listitem>
4350 </varlistentry>
4351 <varlistentry>
4352 <term><varname>FastLeave=</varname></term>
4353 <listitem>
4354 <para>Takes a boolean. This flag allows the bridge to immediately stop multicast
4355 traffic on a port that receives an IGMP Leave message. It is only used with
4356 IGMP snooping if enabled on the bridge. When unset, the kernel's default will be used.</para>
4357
4358 <xi:include href="version-info.xml" xpointer="v223"/>
4359 </listitem>
4360 </varlistentry>
4361 <varlistentry>
4362 <term><varname>AllowPortToBeRoot=</varname></term>
4363 <listitem>
4364 <para>Takes a boolean. Configures whether a given port is allowed to
4365 become a root port. Only used when STP is enabled on the bridge.
4366 When unset, the kernel's default will be used.</para>
4367
4368 <xi:include href="version-info.xml" xpointer="v223"/>
4369 </listitem>
4370 </varlistentry>
4371 <varlistentry>
4372 <term><varname>ProxyARP=</varname></term>
4373 <listitem>
4374 <para>Takes a boolean. Configures whether proxy ARP to be enabled on this port.
4375 When unset, the kernel's default will be used.</para>
4376
4377 <xi:include href="version-info.xml" xpointer="v243"/>
4378 </listitem>
4379 </varlistentry>
4380 <varlistentry>
4381 <term><varname>ProxyARPWiFi=</varname></term>
4382 <listitem>
4383 <para>Takes a boolean. Configures whether proxy ARP to be enabled on this port
4384 which meets extended requirements by IEEE 802.11 and Hotspot 2.0 specifications.
4385 When unset, the kernel's default will be used.</para>
4386
4387 <xi:include href="version-info.xml" xpointer="v243"/>
4388 </listitem>
4389 </varlistentry>
4390 <varlistentry>
4391 <term><varname>MulticastRouter=</varname></term>
4392 <listitem>
4393 <para>Configures this port for having multicast routers attached. A port with a multicast
4394 router will receive all multicast traffic. Takes one of <literal>no</literal>
4395 to disable multicast routers on this port, <literal>query</literal> to let the system detect
4396 the presence of routers, <literal>permanent</literal> to permanently enable multicast traffic
4397 forwarding on this port, or <literal>temporary</literal> to enable multicast routers temporarily
4398 on this port, not depending on incoming queries. When unset, the kernel's default will be used.</para>
4399
4400 <xi:include href="version-info.xml" xpointer="v243"/>
4401 </listitem>
4402 </varlistentry>
4403 <varlistentry>
4404 <term><varname>Cost=</varname></term>
4405 <listitem>
4406 <para>Sets the "cost" of sending packets of this interface.
4407 Each port in a bridge may have a different speed and the cost
4408 is used to decide which link to use. Faster interfaces
4409 should have lower costs. It is an integer value between 1 and
4410 65535.</para>
4411
4412 <xi:include href="version-info.xml" xpointer="v218"/>
4413 </listitem>
4414 </varlistentry>
4415 <varlistentry>
4416 <term><varname>Priority=</varname></term>
4417 <listitem>
4418 <para>Sets the "priority" of sending packets on this interface.
4419 Each port in a bridge may have a different priority which is used
4420 to decide which link to use. Lower value means higher priority.
4421 It is an integer value between 0 to 63. Networkd does not set any
4422 default, meaning the kernel default value of 32 is used.</para>
4423
4424 <xi:include href="version-info.xml" xpointer="v234"/>
4425 </listitem>
4426 </varlistentry>
4427 </variablelist>
4428 </refsect1>
4429
4430 <refsect1>
4431 <title>[BridgeFDB] Section Options</title>
4432
4433 <para>The [BridgeFDB] section manages the forwarding database table of a port and accepts the following
4434 keys. Specify several [BridgeFDB] sections to configure several static MAC table entries.</para>
4435
4436 <variablelist class='network-directives'>
4437 <varlistentry>
4438 <term><varname>MACAddress=</varname></term>
4439 <listitem>
4440 <para>As in the [Network] section. This key is mandatory.</para>
4441
4442 <xi:include href="version-info.xml" xpointer="v219"/>
4443 </listitem>
4444 </varlistentry>
4445 <varlistentry>
4446 <term><varname>Destination=</varname></term>
4447 <listitem>
4448 <para>Takes an IP address of the destination VXLAN tunnel endpoint.</para>
4449
4450 <xi:include href="version-info.xml" xpointer="v243"/>
4451 </listitem>
4452 </varlistentry>
4453 <varlistentry>
4454 <term><varname>VLANId=</varname></term>
4455 <listitem>
4456 <para>The VLAN ID for the new static MAC table entry. If
4457 omitted, no VLAN ID information is appended to the new static MAC
4458 table entry.</para>
4459
4460 <xi:include href="version-info.xml" xpointer="v219"/>
4461 </listitem>
4462 </varlistentry>
4463 <varlistentry>
4464 <term><varname>VNI=</varname></term>
4465 <listitem>
4466 <para>The VXLAN Network Identifier (or VXLAN Segment ID) to use to connect to
4467 the remote VXLAN tunnel endpoint. Takes a number in the range 116777215.
4468 Defaults to unset.</para>
4469
4470 <xi:include href="version-info.xml" xpointer="v243"/>
4471 </listitem>
4472 </varlistentry>
4473 <varlistentry>
4474 <term><varname>AssociatedWith=</varname></term>
4475 <listitem>
4476 <para>Specifies where the address is associated with. Takes one of <literal>use</literal>,
4477 <literal>self</literal>, <literal>master</literal> or <literal>router</literal>.
4478 <literal>use</literal> means the address is in use. User space can use this option to
4479 indicate to the kernel that the fdb entry is in use. <literal>self</literal> means
4480 the address is associated with the port drivers fdb. Usually hardware. <literal>master</literal>
4481 means the address is associated with master devices fdb. <literal>router</literal> means
4482 the destination address is associated with a router. Note that it's valid if the referenced
4483 device is a VXLAN type device and has route shortcircuit enabled. Defaults to <literal>self</literal>.</para>
4484
4485 <xi:include href="version-info.xml" xpointer="v243"/>
4486 </listitem>
4487 </varlistentry>
4488 <varlistentry>
4489 <term><varname>OutgoingInterface=</varname></term>
4490 <listitem>
4491 <para>Specifies the name or index of the outgoing interface for the VXLAN device driver to
4492 reach the remote VXLAN tunnel endpoint. Defaults to unset.</para>
4493
4494 <xi:include href="version-info.xml" xpointer="v249"/>
4495 </listitem>
4496 </varlistentry>
4497 </variablelist>
4498 </refsect1>
4499
4500 <refsect1>
4501 <title>[BridgeMDB] Section Options</title>
4502 <para>The [BridgeMDB] section manages the multicast membership entries forwarding database table of a port and accepts the following
4503 keys. Specify several [BridgeMDB] sections to configure several permanent multicast membership entries.</para>
4504
4505 <variablelist class='network-directives'>
4506 <varlistentry>
4507 <term><varname>MulticastGroupAddress=</varname></term>
4508 <listitem>
4509 <para>Specifies the IPv4 or IPv6 multicast group address to add. This setting is mandatory.</para>
4510
4511 <xi:include href="version-info.xml" xpointer="v247"/>
4512 </listitem>
4513 </varlistentry>
4514 <varlistentry>
4515 <term><varname>VLANId=</varname></term>
4516 <listitem>
4517 <para>The VLAN ID for the new entry. Valid ranges are 0 (no VLAN) to 4094. Optional, defaults to 0.</para>
4518
4519 <xi:include href="version-info.xml" xpointer="v247"/>
4520 </listitem>
4521 </varlistentry>
4522 </variablelist>
4523 </refsect1>
4524
4525 <refsect1>
4526 <title>[LLDP] Section Options</title>
4527 <para>The [LLDP] section manages the Link Layer Discovery Protocol (LLDP) and accepts the following
4528 keys:</para>
4529
4530 <variablelist class='network-directives'>
4531 <varlistentry>
4532 <term><varname>MUDURL=</varname></term>
4533 <listitem>
4534 <para>When configured, the specified Manufacturer Usage Descriptions (MUD) URL will be sent in
4535 LLDP packets. The syntax and semantics are the same as for <varname>MUDURL=</varname> in the
4536 [DHCPv4] section described above.</para>
4537
4538 <para>The MUD URLs received via LLDP packets are saved and can be read using the
4539 <function>sd_lldp_neighbor_get_mud_url()</function> function.</para>
4540
4541 <xi:include href="version-info.xml" xpointer="v246"/>
4542 </listitem>
4543 </varlistentry>
4544 </variablelist>
4545 </refsect1>
4546
4547 <refsect1>
4548 <title>[CAN] Section Options</title>
4549 <para>The [CAN] section manages the Controller Area Network (CAN bus) and accepts the
4550 following keys:</para>
4551 <variablelist class='network-directives'>
4552 <varlistentry>
4553 <term><varname>BitRate=</varname></term>
4554 <listitem>
4555 <para>The bitrate of CAN device in bits per second. The usual SI prefixes (K, M) with the base of 1000 can
4556 be used here. Takes a number in the range 14294967295.</para>
4557
4558 <xi:include href="version-info.xml" xpointer="v239"/>
4559 </listitem>
4560 </varlistentry>
4561 <varlistentry>
4562 <term><varname>SamplePoint=</varname></term>
4563 <listitem>
4564 <para>Optional sample point in percent with one decimal (e.g. <literal>75%</literal>,
4565 <literal>87.5%</literal>) or permille (e.g. <literal>875</literal>). This will be ignored when
4566 <varname>BitRate=</varname> is unspecified.</para>
4567
4568 <xi:include href="version-info.xml" xpointer="v239"/>
4569 </listitem>
4570 </varlistentry>
4571 <varlistentry>
4572 <term><varname>TimeQuantaNSec=</varname></term>
4573 <term><varname>PropagationSegment=</varname></term>
4574 <term><varname>PhaseBufferSegment1=</varname></term>
4575 <term><varname>PhaseBufferSegment2=</varname></term>
4576 <term><varname>SyncJumpWidth=</varname></term>
4577 <listitem>
4578 <para>Specifies the time quanta, propagation segment, phase buffer segment 1 and 2, and the
4579 synchronization jump width, which allow one to define the CAN bit-timing in a hardware
4580 independent format as proposed by the Bosch CAN 2.0 Specification.
4581 <varname>TimeQuantaNSec=</varname> takes a timespan in nanoseconds.
4582 <varname>PropagationSegment=</varname>, <varname>PhaseBufferSegment1=</varname>,
4583 <varname>PhaseBufferSegment2=</varname>, and <varname>SyncJumpWidth=</varname> take number
4584 of time quantum specified in <varname>TimeQuantaNSec=</varname> and must be an unsigned
4585 integer in the range 04294967295. These settings except for
4586 <varname>SyncJumpWidth=</varname> will be ignored when <varname>BitRate=</varname> is
4587 specified.</para>
4588
4589 <xi:include href="version-info.xml" xpointer="v250"/>
4590 </listitem>
4591 </varlistentry>
4592 <varlistentry>
4593 <term><varname>DataBitRate=</varname></term>
4594 <term><varname>DataSamplePoint=</varname></term>
4595 <listitem>
4596 <para>The bitrate and sample point for the data phase, if CAN-FD is used. These settings are
4597 analogous to the <varname>BitRate=</varname> and <varname>SamplePoint=</varname> keys.</para>
4598
4599 <xi:include href="version-info.xml" xpointer="v246"/>
4600 </listitem>
4601 </varlistentry>
4602 <varlistentry>
4603 <term><varname>DataTimeQuantaNSec=</varname></term>
4604 <term><varname>DataPropagationSegment=</varname></term>
4605 <term><varname>DataPhaseBufferSegment1=</varname></term>
4606 <term><varname>DataPhaseBufferSegment2=</varname></term>
4607 <term><varname>DataSyncJumpWidth=</varname></term>
4608 <listitem>
4609 <para>Specifies the time quanta, propagation segment, phase buffer segment 1 and 2, and the
4610 synchronization jump width for the data phase, if CAN-FD is used. These settings are
4611 analogous to the <varname>TimeQuantaNSec=</varname> or related settings.</para>
4612
4613 <xi:include href="version-info.xml" xpointer="v250"/>
4614 </listitem>
4615 </varlistentry>
4616 <varlistentry>
4617 <term><varname>FDMode=</varname></term>
4618 <listitem>
4619 <para>Takes a boolean. When <literal>yes</literal>, CAN-FD mode is enabled for the interface.
4620 Note, that a bitrate and optional sample point should also be set for the CAN-FD data phase using
4621 the <varname>DataBitRate=</varname> and <varname>DataSamplePoint=</varname> keys, or
4622 <varname>DataTimeQuanta=</varname> and related settings.</para>
4623
4624 <xi:include href="version-info.xml" xpointer="v246"/>
4625 </listitem>
4626 </varlistentry>
4627 <varlistentry>
4628 <term><varname>FDNonISO=</varname></term>
4629 <listitem>
4630 <para>Takes a boolean. When <literal>yes</literal>, non-ISO CAN-FD mode is enabled for the
4631 interface. When unset, the kernel's default will be used.</para>
4632
4633 <xi:include href="version-info.xml" xpointer="v246"/>
4634 </listitem>
4635 </varlistentry>
4636 <varlistentry>
4637 <term><varname>RestartSec=</varname></term>
4638 <listitem>
4639 <para>Automatic restart delay time. If set to a non-zero value, a restart of the CAN controller will be
4640 triggered automatically in case of a bus-off condition after the specified delay time. Subsecond delays can
4641 be specified using decimals (e.g. <literal>0.1s</literal>) or a <literal>ms</literal> or
4642 <literal>us</literal> postfix. Using <literal>infinity</literal> or <literal>0</literal> will turn the
4643 automatic restart off. By default automatic restart is disabled.</para>
4644
4645 <xi:include href="version-info.xml" xpointer="v239"/>
4646 </listitem>
4647 </varlistentry>
4648 <varlistentry>
4649 <term><varname>Termination=</varname></term>
4650 <listitem>
4651 <para>Takes a boolean or a termination resistor value in ohm in the range 065535. When
4652 <literal>yes</literal>, the termination resistor is set to 120 ohm. When
4653 <literal>no</literal> or <literal>0</literal> is set, the termination resistor is disabled.
4654 When unset, the kernel's default will be used.</para>
4655
4656 <xi:include href="version-info.xml" xpointer="v246"/>
4657 </listitem>
4658 </varlistentry>
4659 <varlistentry>
4660 <term><varname>TripleSampling=</varname></term>
4661 <listitem>
4662 <para>Takes a boolean. When <literal>yes</literal>, three samples (instead of one) are used to determine
4663 the value of a received bit by majority rule. When unset, the kernel's default will be used.</para>
4664
4665 <xi:include href="version-info.xml" xpointer="v242"/>
4666 </listitem>
4667 </varlistentry>
4668 <varlistentry>
4669 <term><varname>BusErrorReporting=</varname></term>
4670 <listitem>
4671 <para>Takes a boolean. When <literal>yes</literal>, reporting of CAN bus errors is activated
4672 (those include single bit, frame format, and bit stuffing errors, unable to send dominant bit,
4673 unable to send recessive bit, bus overload, active error announcement, error occurred on
4674 transmission). When unset, the kernel's default will be used. Note: in case of a CAN bus with a
4675 single CAN device, sending a CAN frame may result in a huge number of CAN bus errors.</para>
4676
4677 <xi:include href="version-info.xml" xpointer="v248"/>
4678 </listitem>
4679 </varlistentry>
4680 <varlistentry>
4681 <term><varname>ListenOnly=</varname></term>
4682 <listitem>
4683 <para>Takes a boolean. When <literal>yes</literal>, listen-only mode is enabled. When the
4684 interface is in listen-only mode, the interface neither transmit CAN frames nor send ACK
4685 bit. Listen-only mode is important to debug CAN networks without interfering with the
4686 communication or acknowledge the CAN frame. When unset, the kernel's default will be used.
4687 </para>
4688
4689 <xi:include href="version-info.xml" xpointer="v246"/>
4690 </listitem>
4691 </varlistentry>
4692 <varlistentry>
4693 <term><varname>Loopback=</varname></term>
4694 <listitem>
4695 <para>Takes a boolean. When <literal>yes</literal>, loopback mode is enabled. When the
4696 loopback mode is enabled, the interface treats messages transmitted by itself as received
4697 messages. The loopback mode is important to debug CAN networks. When unset, the kernel's
4698 default will be used.</para>
4699
4700 <xi:include href="version-info.xml" xpointer="v250"/>
4701 </listitem>
4702 </varlistentry>
4703 <varlistentry>
4704 <term><varname>OneShot=</varname></term>
4705 <listitem>
4706 <para>Takes a boolean. When <literal>yes</literal>, one-shot mode is enabled. When unset,
4707 the kernel's default will be used.</para>
4708
4709 <xi:include href="version-info.xml" xpointer="v250"/>
4710 </listitem>
4711 </varlistentry>
4712 <varlistentry>
4713 <term><varname>PresumeAck=</varname></term>
4714 <listitem>
4715 <para>Takes a boolean. When <literal>yes</literal>, the interface will ignore missing CAN
4716 ACKs. When unset, the kernel's default will be used.</para>
4717
4718 <xi:include href="version-info.xml" xpointer="v250"/>
4719 </listitem>
4720 </varlistentry>
4721 <varlistentry>
4722 <term><varname>ClassicDataLengthCode=</varname></term>
4723 <listitem>
4724 <para>Takes a boolean. When <literal>yes</literal>, the interface will handle the 4bit data
4725 length code (DLC). When unset, the kernel's default will be used.</para>
4726
4727 <xi:include href="version-info.xml" xpointer="v250"/>
4728 </listitem>
4729 </varlistentry>
4730 </variablelist>
4731 </refsect1>
4732
4733 <refsect1>
4734 <title>[IPoIB] Section Options</title>
4735 <para>The [IPoIB] section manages the IP over Infiniband and accepts the following keys:</para>
4736
4737 <variablelist class='network-directives'>
4738 <xi:include href="systemd.netdev.xml" xpointer="ipoib_mode" />
4739 <xi:include href="systemd.netdev.xml" xpointer="ipoib_umcast" />
4740 </variablelist>
4741 </refsect1>
4742
4743 <refsect1>
4744 <title>[QDisc] Section Options</title>
4745 <para>The [QDisc] section manages the traffic control queueing discipline (qdisc).</para>
4746
4747 <variablelist class='network-directives'>
4748 <varlistentry>
4749 <term><varname>Parent=</varname></term>
4750 <listitem>
4751 <para>Specifies the parent Queueing Discipline (qdisc). Takes one of <literal>clsact</literal>
4752 or <literal>ingress</literal>. This is mandatory.</para>
4753
4754 <xi:include href="version-info.xml" xpointer="v244"/>
4755 </listitem>
4756 </varlistentry>
4757
4758 <xi:include href="tc.xml" xpointer="qdisc-handle" />
4759 </variablelist>
4760 </refsect1>
4761
4762 <refsect1>
4763 <title>[NetworkEmulator] Section Options</title>
4764 <para>The [NetworkEmulator] section manages the queueing discipline (qdisc) of the network emulator. It
4765 can be used to configure the kernel packet scheduler and simulate packet delay and loss for UDP or TCP
4766 applications, or limit the bandwidth usage of a particular service to simulate internet connections.
4767 </para>
4768
4769 <variablelist class='network-directives'>
4770 <xi:include href="tc.xml" xpointer="qdisc-parent" />
4771 <xi:include href="tc.xml" xpointer="qdisc-handle" />
4772
4773 <varlistentry>
4774 <term><varname>DelaySec=</varname></term>
4775 <listitem>
4776 <para>Specifies the fixed amount of delay to be added to all packets going out of the
4777 interface. Defaults to unset.</para>
4778
4779 <xi:include href="version-info.xml" xpointer="v245"/>
4780 </listitem>
4781 </varlistentry>
4782
4783 <varlistentry>
4784 <term><varname>DelayJitterSec=</varname></term>
4785 <listitem>
4786 <para>Specifies the chosen delay to be added to the packets outgoing to the network
4787 interface. Defaults to unset.</para>
4788
4789 <xi:include href="version-info.xml" xpointer="v245"/>
4790 </listitem>
4791 </varlistentry>
4792
4793 <varlistentry>
4794 <term><varname>PacketLimit=</varname></term>
4795 <listitem>
4796 <para>Specifies the maximum number of packets the qdisc may hold queued at a time.
4797 An unsigned integer in the range 04294967294. Defaults to 1000.</para>
4798
4799 <xi:include href="version-info.xml" xpointer="v245"/>
4800 </listitem>
4801 </varlistentry>
4802
4803 <varlistentry>
4804 <term><varname>LossRate=</varname></term>
4805 <listitem>
4806 <para>Specifies an independent loss probability to be added to the packets outgoing from the
4807 network interface. Takes a percentage value, suffixed with "%". Defaults to unset.</para>
4808
4809 <xi:include href="version-info.xml" xpointer="v245"/>
4810 </listitem>
4811 </varlistentry>
4812
4813 <varlistentry>
4814 <term><varname>DuplicateRate=</varname></term>
4815 <listitem>
4816 <para>Specifies that the chosen percent of packets is duplicated before queuing them.
4817 Takes a percentage value, suffixed with "%". Defaults to unset.</para>
4818
4819 <xi:include href="version-info.xml" xpointer="v245"/>
4820 </listitem>
4821 </varlistentry>
4822 </variablelist>
4823 </refsect1>
4824
4825 <refsect1>
4826 <title>[TokenBucketFilter] Section Options</title>
4827 <para>The [TokenBucketFilter] section manages the queueing discipline (qdisc) of token bucket filter
4828 (tbf).</para>
4829
4830 <variablelist class='network-directives'>
4831 <xi:include href="tc.xml" xpointer="qdisc-parent" />
4832 <xi:include href="tc.xml" xpointer="qdisc-handle" />
4833
4834 <varlistentry>
4835 <term><varname>LatencySec=</varname></term>
4836 <listitem>
4837 <para>Specifies the latency parameter, which specifies the maximum amount of time a
4838 packet can sit in the Token Bucket Filter (TBF). Defaults to unset.</para>
4839
4840 <xi:include href="version-info.xml" xpointer="v245"/>
4841 </listitem>
4842 </varlistentry>
4843
4844 <varlistentry>
4845 <term><varname>LimitBytes=</varname></term>
4846 <listitem>
4847 <para>Takes the number of bytes that can be queued waiting for tokens to become available.
4848 When the size is suffixed with K, M, or G, it is parsed as Kilobytes, Megabytes, or Gigabytes,
4849 respectively, to the base of 1024. Defaults to unset.</para>
4850
4851 <xi:include href="version-info.xml" xpointer="v246"/>
4852 </listitem>
4853 </varlistentry>
4854
4855 <varlistentry>
4856 <term><varname>BurstBytes=</varname></term>
4857 <listitem>
4858 <para>Specifies the size of the bucket. This is the maximum amount of bytes that tokens
4859 can be available for instantaneous transfer. When the size is suffixed with K, M, or G, it is
4860 parsed as Kilobytes, Megabytes, or Gigabytes, respectively, to the base of 1024. Defaults to
4861 unset.</para>
4862
4863 <xi:include href="version-info.xml" xpointer="v246"/>
4864 </listitem>
4865 </varlistentry>
4866
4867 <varlistentry>
4868 <term><varname>Rate=</varname></term>
4869 <listitem>
4870 <para>Specifies the device specific bandwidth. When suffixed with K, M, or G, the specified
4871 bandwidth is parsed as Kilobits, Megabits, or Gigabits, respectively, to the base of 1000.
4872 Defaults to unset.</para>
4873
4874 <xi:include href="version-info.xml" xpointer="v245"/>
4875 </listitem>
4876 </varlistentry>
4877
4878 <varlistentry>
4879 <term><varname>MPUBytes=</varname></term>
4880 <listitem>
4881 <para>The Minimum Packet Unit (MPU) determines the minimal token usage (specified in bytes)
4882 for a packet. When suffixed with K, M, or G, the specified size is parsed as Kilobytes,
4883 Megabytes, or Gigabytes, respectively, to the base of 1024. Defaults to zero.</para>
4884
4885 <xi:include href="version-info.xml" xpointer="v245"/>
4886 </listitem>
4887 </varlistentry>
4888
4889 <varlistentry>
4890 <term><varname>PeakRate=</varname></term>
4891 <listitem>
4892 <para>Takes the maximum depletion rate of the bucket. When suffixed with K, M, or G, the
4893 specified size is parsed as Kilobits, Megabits, or Gigabits, respectively, to the base of
4894 1000. Defaults to unset.</para>
4895
4896 <xi:include href="version-info.xml" xpointer="v245"/>
4897 </listitem>
4898 </varlistentry>
4899
4900 <varlistentry>
4901 <term><varname>MTUBytes=</varname></term>
4902 <listitem>
4903 <para>Specifies the size of the peakrate bucket. When suffixed with K, M, or G, the specified
4904 size is parsed as Kilobytes, Megabytes, or Gigabytes, respectively, to the base of 1024.
4905 Defaults to unset.</para>
4906
4907 <xi:include href="version-info.xml" xpointer="v245"/>
4908 </listitem>
4909 </varlistentry>
4910 </variablelist>
4911 </refsect1>
4912
4913 <refsect1>
4914 <title>[PIE] Section Options</title>
4915 <para>The [PIE] section manages the queueing discipline (qdisc) of Proportional Integral
4916 controller-Enhanced (PIE).</para>
4917
4918 <variablelist class='network-directives'>
4919 <xi:include href="tc.xml" xpointer="qdisc-parent" />
4920 <xi:include href="tc.xml" xpointer="qdisc-handle" />
4921
4922 <varlistentry>
4923 <term><varname>PacketLimit=</varname></term>
4924 <listitem>
4925 <para>Specifies the hard limit on the queue size in number of packets. When this limit is reached,
4926 incoming packets are dropped. An unsigned integer in the range 14294967294. Defaults to unset and
4927 kernel's default is used.</para>
4928
4929 <xi:include href="version-info.xml" xpointer="v246"/>
4930 </listitem>
4931 </varlistentry>
4932 </variablelist>
4933 </refsect1>
4934
4935 <refsect1>
4936 <title>[FlowQueuePIE] Section Options</title>
4937 <para>The <literal>[FlowQueuePIE]</literal> section manages the queueing discipline
4938 (qdisc) of Flow Queue Proportional Integral controller-Enhanced (fq_pie).</para>
4939
4940 <variablelist class='network-directives'>
4941 <xi:include href="tc.xml" xpointer="qdisc-parent" />
4942 <xi:include href="tc.xml" xpointer="qdisc-handle" />
4943
4944 <varlistentry>
4945 <term><varname>PacketLimit=</varname></term>
4946 <listitem>
4947 <para>Specifies the hard limit on the queue size in number of packets. When this limit is reached,
4948 incoming packets are dropped. An unsigned integer ranges 1 to 4294967294. Defaults to unset and
4949 kernel's default is used.</para>
4950
4951 <xi:include href="version-info.xml" xpointer="v247"/>
4952 </listitem>
4953 </varlistentry>
4954 </variablelist>
4955 </refsect1>
4956
4957 <refsect1>
4958 <title>[StochasticFairBlue] Section Options</title>
4959 <para>The [StochasticFairBlue] section manages the queueing discipline (qdisc) of stochastic fair blue
4960 (sfb).</para>
4961
4962 <variablelist class='network-directives'>
4963 <xi:include href="tc.xml" xpointer="qdisc-parent" />
4964 <xi:include href="tc.xml" xpointer="qdisc-handle" />
4965
4966 <varlistentry>
4967 <term><varname>PacketLimit=</varname></term>
4968 <listitem>
4969 <para>Specifies the hard limit on the queue size in number of packets. When this limit is reached,
4970 incoming packets are dropped. An unsigned integer in the range 04294967294. Defaults to unset and
4971 kernel's default is used.</para>
4972
4973 <xi:include href="version-info.xml" xpointer="v246"/>
4974 </listitem>
4975 </varlistentry>
4976 </variablelist>
4977 </refsect1>
4978
4979 <refsect1>
4980 <title>[StochasticFairnessQueueing] Section Options</title>
4981 <para>The [StochasticFairnessQueueing] section manages the queueing discipline (qdisc) of stochastic
4982 fairness queueing (sfq).</para>
4983
4984 <variablelist class='network-directives'>
4985 <xi:include href="tc.xml" xpointer="qdisc-parent" />
4986 <xi:include href="tc.xml" xpointer="qdisc-handle" />
4987
4988 <varlistentry>
4989 <term><varname>PerturbPeriodSec=</varname></term>
4990 <listitem>
4991 <para>Specifies the interval in seconds for queue algorithm perturbation. Defaults to unset.</para>
4992
4993 <xi:include href="version-info.xml" xpointer="v245"/>
4994 </listitem>
4995 </varlistentry>
4996 </variablelist>
4997 </refsect1>
4998
4999 <refsect1>
5000 <title>[BFIFO] Section Options</title>
5001 <para>The [BFIFO] section manages the queueing discipline (qdisc) of Byte limited Packet First In First
5002 Out (bfifo).</para>
5003
5004 <variablelist class='network-directives'>
5005 <xi:include href="tc.xml" xpointer="qdisc-parent" />
5006 <xi:include href="tc.xml" xpointer="qdisc-handle" />
5007
5008 <varlistentry>
5009 <term><varname>LimitBytes=</varname></term>
5010 <listitem>
5011 <para>Specifies the hard limit in bytes on the FIFO buffer size. The size limit prevents overflow
5012 in case the kernel is unable to dequeue packets as quickly as it receives them. When this limit is
5013 reached, incoming packets are dropped. When suffixed with K, M, or G, the specified size is parsed
5014 as Kilobytes, Megabytes, or Gigabytes, respectively, to the base of 1024. Defaults to unset and
5015 kernel default is used.</para>
5016
5017 <xi:include href="version-info.xml" xpointer="v246"/>
5018 </listitem>
5019 </varlistentry>
5020 </variablelist>
5021 </refsect1>
5022
5023 <refsect1>
5024 <title>[PFIFO] Section Options</title>
5025 <para>The [PFIFO] section manages the queueing discipline (qdisc) of Packet First In First Out
5026 (pfifo).</para>
5027
5028 <variablelist class='network-directives'>
5029 <xi:include href="tc.xml" xpointer="qdisc-parent" />
5030 <xi:include href="tc.xml" xpointer="qdisc-handle" />
5031
5032 <varlistentry>
5033 <term><varname>PacketLimit=</varname></term>
5034 <listitem>
5035 <para>Specifies the hard limit on the number of packets in the FIFO queue. The size limit prevents
5036 overflow in case the kernel is unable to dequeue packets as quickly as it receives them. When this
5037 limit is reached, incoming packets are dropped. An unsigned integer in the range
5038 04294967294. Defaults to unset and kernel's default is used.</para>
5039
5040 <xi:include href="version-info.xml" xpointer="v246"/>
5041 </listitem>
5042 </varlistentry>
5043 </variablelist>
5044 </refsect1>
5045
5046 <refsect1>
5047 <title>[PFIFOHeadDrop] Section Options</title>
5048 <para>The [PFIFOHeadDrop] section manages the queueing discipline (qdisc) of Packet First In First Out
5049 Head Drop (pfifo_head_drop).</para>
5050
5051 <variablelist class='network-directives'>
5052 <xi:include href="tc.xml" xpointer="qdisc-parent" />
5053 <xi:include href="tc.xml" xpointer="qdisc-handle" />
5054
5055 <varlistentry>
5056 <term><varname>PacketLimit=</varname></term>
5057 <listitem>
5058 <para>As in [PFIFO] section.</para>
5059
5060 <xi:include href="version-info.xml" xpointer="v246"/></listitem>
5061 </varlistentry>
5062 </variablelist>
5063 </refsect1>
5064
5065 <refsect1>
5066 <title>[PFIFOFast] Section Options</title>
5067 <para>The [PFIFOFast] section manages the queueing discipline (qdisc) of Packet First In First Out Fast
5068 (pfifo_fast).</para>
5069
5070 <variablelist class='network-directives'>
5071 <xi:include href="tc.xml" xpointer="qdisc-parent" />
5072 <xi:include href="tc.xml" xpointer="qdisc-handle" />
5073 </variablelist>
5074 </refsect1>
5075
5076 <refsect1>
5077 <title>[CAKE] Section Options</title>
5078 <para>The [CAKE] section manages the queueing discipline (qdisc) of Common Applications Kept Enhanced
5079 (CAKE).</para>
5080
5081 <variablelist class='network-directives'>
5082 <xi:include href="tc.xml" xpointer="qdisc-parent" />
5083 <xi:include href="tc.xml" xpointer="qdisc-handle" />
5084
5085 <varlistentry>
5086 <term><varname>Bandwidth=</varname></term>
5087 <listitem>
5088 <para>Specifies the shaper bandwidth. When suffixed with K, M, or G, the specified size is
5089 parsed as Kilobits, Megabits, or Gigabits, respectively, to the base of 1000. Defaults to
5090 unset and kernel's default is used.</para>
5091
5092 <xi:include href="version-info.xml" xpointer="v246"/>
5093 </listitem>
5094 </varlistentry>
5095
5096 <varlistentry>
5097 <term><varname>AutoRateIngress=</varname></term>
5098 <listitem>
5099 <para>Takes a boolean value. Enables automatic capacity estimation based on traffic arriving
5100 at this qdisc. This is most likely to be useful with cellular links, which tend to change
5101 quality randomly. If this setting is enabled, the <varname>Bandwidth=</varname> setting is
5102 used as an initial estimate. Defaults to unset, and the kernel's default is used.</para>
5103
5104 <xi:include href="version-info.xml" xpointer="v250"/>
5105 </listitem>
5106 </varlistentry>
5107
5108 <varlistentry>
5109 <term><varname>OverheadBytes=</varname></term>
5110 <listitem>
5111 <para>Specifies that bytes to be addeded to the size of each packet. Bytes may be negative.
5112 Takes an integer in the range -64256. Defaults to unset and kernel's default is used.
5113 </para>
5114
5115 <xi:include href="version-info.xml" xpointer="v246"/>
5116 </listitem>
5117 </varlistentry>
5118
5119 <varlistentry>
5120 <term><varname>MPUBytes=</varname></term>
5121 <listitem>
5122 <para>Rounds each packet (including overhead) up to the specified bytes. Takes an integer in
5123 the range 1256. Defaults to unset and kernel's default is used.</para>
5124
5125 <xi:include href="version-info.xml" xpointer="v250"/>
5126 </listitem>
5127 </varlistentry>
5128
5129 <varlistentry>
5130 <term><varname>CompensationMode=</varname></term>
5131 <listitem>
5132 <para>Takes one of <literal>none</literal>, <literal>atm</literal>, or <literal>ptm</literal>.
5133 Specifies the compensation mode for overhead calculation. When <literal>none</literal>, no
5134 compensation is taken into account. When <literal>atm</literal>, enables the compensation for
5135 ATM cell framing, which is normally found on ADSL links. When <literal>ptm</literal>, enables
5136 the compensation for PTM encoding, which is normally found on VDSL2 links and uses a 64b/65b
5137 encoding scheme. Defaults to unset and the kernel's default is used.</para>
5138
5139 <xi:include href="version-info.xml" xpointer="v250"/>
5140 </listitem>
5141 </varlistentry>
5142
5143 <varlistentry>
5144 <term><varname>UseRawPacketSize=</varname></term>
5145 <listitem>
5146 <para>Takes a boolean value. When true, the packet size reported by the Linux kernel will be
5147 used, instead of the underlying IP packet size. Defaults to unset, and the kernel's default
5148 is used.</para>
5149
5150 <xi:include href="version-info.xml" xpointer="v250"/>
5151 </listitem>
5152 </varlistentry>
5153
5154 <varlistentry>
5155 <term><varname>FlowIsolationMode=</varname></term>
5156 <listitem>
5157 <para>CAKE places packets from different flows into different queues, then packets from each
5158 queue are delivered fairly. This specifies whether the fairness is based on source address,
5159 destination address, individual flows, or any combination of those. The available values are:
5160 </para>
5161
5162 <variablelist>
5163 <varlistentry>
5164 <term><option>none</option></term>
5165 <listitem><para>
5166 The flow isolation is disabled, and all traffic passes through a single queue.
5167 </para>
5168
5169 <xi:include href="version-info.xml" xpointer="v250"/></listitem>
5170 </varlistentry>
5171 <varlistentry>
5172 <term><option>src-host</option></term>
5173 <listitem><para>
5174 Flows are defined only by source address. Equivalent to the <literal>srchost</literal>
5175 option for <command>tc qdisc</command> command. See also
5176 <citerefentry project='man-pages'><refentrytitle>tc-cake</refentrytitle><manvolnum>8</manvolnum></citerefentry>.
5177 </para>
5178
5179 <xi:include href="version-info.xml" xpointer="v250"/></listitem>
5180 </varlistentry>
5181 <varlistentry>
5182 <term><option>dst-host</option></term>
5183 <listitem><para>
5184 Flows are defined only by destination address. Equivalent to the
5185 <literal>dsthost</literal> option for <command>tc qdisc</command> command. See also
5186 <citerefentry project='man-pages'><refentrytitle>tc-cake</refentrytitle><manvolnum>8</manvolnum></citerefentry>.
5187 </para>
5188
5189 <xi:include href="version-info.xml" xpointer="v250"/></listitem>
5190 </varlistentry>
5191 <varlistentry>
5192 <term><option>hosts</option></term>
5193 <listitem><para>
5194 Flows are defined by source-destination host pairs. Equivalent to the same option for
5195 <command>tc qdisc</command> command. See also
5196 <citerefentry project='man-pages'><refentrytitle>tc-cake</refentrytitle><manvolnum>8</manvolnum></citerefentry>.
5197 </para>
5198
5199 <xi:include href="version-info.xml" xpointer="v250"/></listitem>
5200 </varlistentry>
5201 <varlistentry>
5202 <term><option>flows</option></term>
5203 <listitem><para>
5204 Flows are defined by the entire 5-tuple of source address, destination address,
5205 transport protocol, source port and destination port. Equivalent to the same option for
5206 <command>tc qdisc</command> command. See also
5207 <citerefentry project='man-pages'><refentrytitle>tc-cake</refentrytitle><manvolnum>8</manvolnum></citerefentry>.
5208 </para>
5209
5210 <xi:include href="version-info.xml" xpointer="v250"/></listitem>
5211 </varlistentry>
5212 <varlistentry>
5213 <term><option>dual-src-host</option></term>
5214 <listitem><para>
5215 Flows are defined by the 5-tuple (see <literal>flows</literal> in the above), and
5216 fairness is applied first over source addresses, then over individual flows. Equivalent
5217 to the <literal>dual-srchost</literal> option for <command>tc qdisc</command> command.
5218 See also
5219 <citerefentry project='man-pages'><refentrytitle>tc-cake</refentrytitle><manvolnum>8</manvolnum></citerefentry>.
5220 </para>
5221
5222 <xi:include href="version-info.xml" xpointer="v250"/></listitem>
5223 </varlistentry>
5224 <varlistentry>
5225 <term><option>dual-dst-host</option></term>
5226 <listitem><para>
5227 Flows are defined by the 5-tuple (see <literal>flows</literal> in the above), and
5228 fairness is applied first over destination addresses, then over individual flows.
5229 Equivalent to the <literal>dual-dsthost</literal> option for
5230 <command>tc qdisc</command> command. See also
5231 <citerefentry project='man-pages'><refentrytitle>tc-cake</refentrytitle><manvolnum>8</manvolnum></citerefentry>.
5232 </para>
5233
5234 <xi:include href="version-info.xml" xpointer="v250"/></listitem>
5235 </varlistentry>
5236 <varlistentry>
5237 <term><option>triple</option></term>
5238 <listitem><para>
5239 Flows are defined by the 5-tuple (see <literal>flows</literal>), and fairness is
5240 applied over source and destination addresses, and also over individual flows.
5241 Equivalent to the <literal>triple-isolate</literal> option for
5242 <command>tc qdisc</command> command. See also
5243 <citerefentry project='man-pages'><refentrytitle>tc-cake</refentrytitle><manvolnum>8</manvolnum></citerefentry>.
5244 </para>
5245
5246 <xi:include href="version-info.xml" xpointer="v250"/></listitem>
5247 </varlistentry>
5248 </variablelist>
5249
5250 <para>Defaults to unset and the kernel's default is used.</para>
5251
5252 <xi:include href="version-info.xml" xpointer="v250"/>
5253 </listitem>
5254 </varlistentry>
5255
5256 <varlistentry>
5257 <term><varname>NAT=</varname></term>
5258 <listitem>
5259 <para>Takes a boolean value. When true, CAKE performs a NAT lookup before applying
5260 flow-isolation rules, to determine the true addresses and port numbers of the packet, to
5261 improve fairness between hosts inside the NAT. This has no practical effect when
5262 <varname>FlowIsolationMode=</varname> is <literal>none</literal> or <literal>flows</literal>,
5263 or if NAT is performed on a different host. Defaults to unset, and the kernel's default is
5264 used.</para>
5265
5266 <xi:include href="version-info.xml" xpointer="v250"/>
5267 </listitem>
5268 </varlistentry>
5269
5270 <varlistentry>
5271 <term><varname>PriorityQueueingPreset=</varname></term>
5272 <listitem>
5273 <para>CAKE divides traffic into <literal>tins</literal>, and each tin has its own independent
5274 set of flow-isolation queues, bandwidth threshold, and priority. This specifies the preset of
5275 tin profiles. The available values are:</para>
5276
5277 <variablelist>
5278 <varlistentry>
5279 <term><option>besteffort</option></term>
5280 <listitem><para>
5281 Disables priority queueing by placing all traffic in one tin.
5282 </para>
5283
5284 <xi:include href="version-info.xml" xpointer="v250"/></listitem>
5285 </varlistentry>
5286 <varlistentry>
5287 <term><option>precedence</option></term>
5288 <listitem><para>
5289 Enables priority queueing based on the legacy interpretation of TOS
5290 <literal>Precedence</literal> field. Use of this preset on the modern Internet is
5291 firmly discouraged.
5292 </para>
5293
5294 <xi:include href="version-info.xml" xpointer="v250"/></listitem>
5295 </varlistentry>
5296 <varlistentry>
5297 <term><option>diffserv8</option></term>
5298 <listitem><para>
5299 Enables priority queueing based on the Differentiated Service
5300 (<literal>DiffServ</literal>) field with eight tins: Background Traffic, High
5301 Throughput, Best Effort, Video Streaming, Low Latency Transactions, Interactive Shell,
5302 Minimum Latency, and Network Control.
5303 </para>
5304
5305 <xi:include href="version-info.xml" xpointer="v250"/></listitem>
5306 </varlistentry>
5307 <varlistentry>
5308 <term><option>diffserv4</option></term>
5309 <listitem><para>
5310 Enables priority queueing based on the Differentiated Service
5311 (<literal>DiffServ</literal>) field with four tins: Background Traffic, Best Effort,
5312 Streaming Media, and Latency Sensitive.
5313 </para>
5314
5315 <xi:include href="version-info.xml" xpointer="v250"/></listitem>
5316 </varlistentry>
5317 <varlistentry>
5318 <term><option>diffserv3</option></term>
5319 <listitem><para>
5320 Enables priority queueing based on the Differentiated Service
5321 (<literal>DiffServ</literal>) field with three tins: Background Traffic, Best Effort,
5322 and Latency Sensitive.
5323 </para>
5324
5325 <xi:include href="version-info.xml" xpointer="v250"/></listitem>
5326 </varlistentry>
5327 </variablelist>
5328
5329 <para>Defaults to unset, and the kernel's default is used.</para>
5330
5331 <xi:include href="version-info.xml" xpointer="v250"/>
5332 </listitem>
5333 </varlistentry>
5334
5335 <varlistentry>
5336 <term><varname>FirewallMark=</varname></term>
5337 <listitem>
5338 <para>Takes an integer in the range 14294967295. When specified, firewall-mark-based
5339 overriding of CAKE's tin selection is enabled. Defaults to unset, and the kernel's default is
5340 used.</para>
5341
5342 <xi:include href="version-info.xml" xpointer="v250"/>
5343 </listitem>
5344 </varlistentry>
5345
5346 <varlistentry>
5347 <term><varname>Wash=</varname></term>
5348 <listitem>
5349 <para>Takes a boolean value. When true, CAKE clears the DSCP fields, except for ECN bits, of
5350 any packet passing through CAKE. Defaults to unset, and the kernel's default is used.</para>
5351
5352 <xi:include href="version-info.xml" xpointer="v250"/>
5353 </listitem>
5354 </varlistentry>
5355
5356 <varlistentry>
5357 <term><varname>SplitGSO=</varname></term>
5358 <listitem>
5359 <para>Takes a boolean value. When true, CAKE will split General Segmentation Offload (GSO)
5360 super-packets into their on-the-wire components and dequeue them individually. Defaults to
5361 unset, and the kernel's default is used.</para>
5362
5363 <xi:include href="version-info.xml" xpointer="v250"/>
5364 </listitem>
5365 </varlistentry>
5366
5367 <varlistentry>
5368 <term><varname>RTTSec=</varname></term>
5369 <listitem>
5370 <para>Specifies the RTT for the filter. Takes a timespan. Typical values are e.g. 100us for
5371 extremely high-performance 10GigE+ networks like datacentre, 1ms for non-WiFi LAN connections,
5372 100ms for typical internet connections. Defaults to unset, and the kernel's default will be used.
5373 </para>
5374
5375 <xi:include href="version-info.xml" xpointer="v253"/>
5376 </listitem>
5377 </varlistentry>
5378
5379 <varlistentry>
5380 <term><varname>AckFilter=</varname></term>
5381 <listitem>
5382 <para>Takes a boolean value, or special value <literal>aggressive</literal>. If enabled, ACKs in
5383 each flow are queued and redundant ACKs to the upstream are dropped. If yes, the filter will always
5384 keep at least two redundant ACKs in the queue, while in <literal>aggressive</literal> mode, it will
5385 filter down to a single ACK. This may improve download throughput on links with very asymmetrical
5386 rate limits. Defaults to unset, and the kernel's default will be used.</para>
5387
5388 <xi:include href="version-info.xml" xpointer="v253"/>
5389 </listitem>
5390 </varlistentry>
5391
5392 </variablelist>
5393 </refsect1>
5394
5395 <refsect1>
5396 <title>[ControlledDelay] Section Options</title>
5397 <para>The [ControlledDelay] section manages the queueing discipline (qdisc) of
5398 controlled delay (CoDel).</para>
5399
5400 <variablelist class='network-directives'>
5401 <xi:include href="tc.xml" xpointer="qdisc-parent" />
5402 <xi:include href="tc.xml" xpointer="qdisc-handle" />
5403
5404 <varlistentry>
5405 <term><varname>PacketLimit=</varname></term>
5406 <listitem>
5407 <para>Specifies the hard limit on the queue size in number of packets. When this limit is reached,
5408 incoming packets are dropped. An unsigned integer in the range 04294967294. Defaults to unset and
5409 kernel's default is used.</para>
5410
5411 <xi:include href="version-info.xml" xpointer="v245"/>
5412 </listitem>
5413 </varlistentry>
5414
5415 <varlistentry>
5416 <term><varname>TargetSec=</varname></term>
5417 <listitem>
5418 <para>Takes a timespan. Specifies the acceptable minimum standing/persistent queue delay.
5419 Defaults to unset and kernel's default is used.</para>
5420
5421 <xi:include href="version-info.xml" xpointer="v245"/>
5422 </listitem>
5423 </varlistentry>
5424
5425 <varlistentry>
5426 <term><varname>IntervalSec=</varname></term>
5427 <listitem>
5428 <para>Takes a timespan. This is used to ensure that the measured minimum delay does not
5429 become too stale. Defaults to unset and kernel's default is used.</para>
5430
5431 <xi:include href="version-info.xml" xpointer="v245"/>
5432 </listitem>
5433 </varlistentry>
5434
5435 <varlistentry>
5436 <term><varname>ECN=</varname></term>
5437 <listitem>
5438 <para>Takes a boolean. This can be used to mark packets instead of dropping them. Defaults to
5439 unset and kernel's default is used.</para>
5440
5441 <xi:include href="version-info.xml" xpointer="v245"/>
5442 </listitem>
5443 </varlistentry>
5444
5445 <varlistentry>
5446 <term><varname>CEThresholdSec=</varname></term>
5447 <listitem>
5448 <para>Takes a timespan. This sets a threshold above which all packets are marked with ECN
5449 Congestion Experienced (CE). Defaults to unset and kernel's default is used.</para>
5450
5451 <xi:include href="version-info.xml" xpointer="v245"/>
5452 </listitem>
5453 </varlistentry>
5454 </variablelist>
5455 </refsect1>
5456
5457 <refsect1>
5458 <title>[DeficitRoundRobinScheduler] Section Options</title>
5459 <para>The [DeficitRoundRobinScheduler] section manages the queueing discipline (qdisc) of Deficit Round
5460 Robin Scheduler (DRR).</para>
5461
5462 <variablelist class='network-directives'>
5463 <xi:include href="tc.xml" xpointer="qdisc-parent" />
5464 <xi:include href="tc.xml" xpointer="qdisc-handle" />
5465 </variablelist>
5466 </refsect1>
5467
5468 <refsect1>
5469 <title>[DeficitRoundRobinSchedulerClass] Section Options</title>
5470 <para>The [DeficitRoundRobinSchedulerClass] section manages the traffic control class of Deficit Round
5471 Robin Scheduler (DRR).</para>
5472
5473 <variablelist class='network-directives'>
5474 <xi:include href="tc.xml" xpointer="tclass-parent" />
5475 <xi:include href="tc.xml" xpointer="tclass-classid" />
5476
5477 <varlistentry>
5478 <term><varname>QuantumBytes=</varname></term>
5479 <listitem>
5480 <para>Specifies the amount of bytes a flow is allowed to dequeue before the scheduler moves
5481 to the next class. When suffixed with K, M, or G, the specified size is parsed as Kilobytes,
5482 Megabytes, or Gigabytes, respectively, to the base of 1024. Defaults to the MTU of the
5483 interface.</para>
5484
5485 <xi:include href="version-info.xml" xpointer="v246"/>
5486 </listitem>
5487 </varlistentry>
5488
5489 </variablelist>
5490 </refsect1>
5491
5492 <refsect1>
5493 <title>[EnhancedTransmissionSelection] Section Options</title>
5494 <para>The [EnhancedTransmissionSelection] section manages the queueing discipline (qdisc) of Enhanced
5495 Transmission Selection (ETS).</para>
5496
5497 <variablelist class='network-directives'>
5498 <xi:include href="tc.xml" xpointer="qdisc-parent" />
5499 <xi:include href="tc.xml" xpointer="qdisc-handle" />
5500
5501 <varlistentry>
5502 <term><varname>Bands=</varname></term>
5503 <listitem>
5504 <para>Specifies the number of bands. An unsigned integer in the range 116. This value has to be at
5505 least large enough to cover the strict bands specified through the <varname>StrictBands=</varname>
5506 and bandwidth-sharing bands specified in <varname>QuantumBytes=</varname>.</para>
5507
5508 <xi:include href="version-info.xml" xpointer="v246"/>
5509 </listitem>
5510 </varlistentry>
5511
5512 <varlistentry>
5513 <term><varname>StrictBands=</varname></term>
5514 <listitem>
5515 <para>Specifies the number of bands that should be created in strict mode. An unsigned integer in
5516 the range 116.</para>
5517
5518 <xi:include href="version-info.xml" xpointer="v246"/>
5519 </listitem>
5520 </varlistentry>
5521
5522 <varlistentry>
5523 <term><varname>QuantumBytes=</varname></term>
5524 <listitem>
5525 <para>Specifies the white-space separated list of quantum used in band-sharing bands. When
5526 suffixed with K, M, or G, the specified size is parsed as Kilobytes, Megabytes, or Gigabytes,
5527 respectively, to the base of 1024. This setting can be specified multiple times. If an empty
5528 string is assigned, then the all previous assignments are cleared.</para>
5529
5530 <xi:include href="version-info.xml" xpointer="v246"/>
5531 </listitem>
5532 </varlistentry>
5533
5534 <varlistentry>
5535 <term><varname>PriorityMap=</varname></term>
5536 <listitem>
5537 <para>The priority map maps the priority of a packet to a band. The argument is a whitespace
5538 separated list of numbers. The first number indicates which band the packets with priority 0 should
5539 be put to, the second is for priority 1, and so on. There can be up to 16 numbers in the list. If
5540 there are fewer, the default band that traffic with one of the unmentioned priorities goes to is
5541 the last one. Each band number must be in the range 0255. This setting can be specified multiple
5542 times. If an empty string is assigned, then the all previous assignments are cleared.</para>
5543
5544 <xi:include href="version-info.xml" xpointer="v246"/>
5545 </listitem>
5546 </varlistentry>
5547 </variablelist>
5548 </refsect1>
5549
5550 <refsect1>
5551 <title>[GenericRandomEarlyDetection] Section Options</title>
5552 <para>The [GenericRandomEarlyDetection] section manages the queueing discipline (qdisc) of Generic Random
5553 Early Detection (GRED).</para>
5554
5555 <variablelist class='network-directives'>
5556 <xi:include href="tc.xml" xpointer="qdisc-parent" />
5557 <xi:include href="tc.xml" xpointer="qdisc-handle" />
5558
5559 <varlistentry>
5560 <term><varname>VirtualQueues=</varname></term>
5561 <listitem>
5562 <para>Specifies the number of virtual queues. Takes an integer in the range 116. Defaults to unset
5563 and kernel's default is used.</para>
5564
5565 <xi:include href="version-info.xml" xpointer="v246"/>
5566 </listitem>
5567 </varlistentry>
5568
5569 <varlistentry>
5570 <term><varname>DefaultVirtualQueue=</varname></term>
5571 <listitem>
5572 <para>Specifies the number of default virtual queue. This must be less than <varname>VirtualQueue=</varname>.
5573 Defaults to unset and kernel's default is used.</para>
5574
5575 <xi:include href="version-info.xml" xpointer="v246"/>
5576 </listitem>
5577 </varlistentry>
5578
5579 <varlistentry>
5580 <term><varname>GenericRIO=</varname></term>
5581 <listitem>
5582 <para>Takes a boolean. It turns on the RIO-like buffering scheme. Defaults to
5583 unset and kernel's default is used.</para>
5584
5585 <xi:include href="version-info.xml" xpointer="v246"/>
5586 </listitem>
5587 </varlistentry>
5588 </variablelist>
5589 </refsect1>
5590
5591 <refsect1>
5592 <title>[FairQueueingControlledDelay] Section Options</title>
5593 <para>The [FairQueueingControlledDelay] section manages the queueing discipline (qdisc) of fair queuing
5594 controlled delay (FQ-CoDel).</para>
5595
5596 <variablelist class='network-directives'>
5597 <xi:include href="tc.xml" xpointer="qdisc-parent" />
5598 <xi:include href="tc.xml" xpointer="qdisc-handle" />
5599
5600 <varlistentry>
5601 <term><varname>PacketLimit=</varname></term>
5602 <listitem>
5603 <para>Specifies the hard limit on the real queue size. When this limit is reached, incoming packets are
5604 dropped. Defaults to unset and kernel's default is used.</para>
5605
5606 <xi:include href="version-info.xml" xpointer="v245"/>
5607 </listitem>
5608 </varlistentry>
5609
5610 <varlistentry>
5611 <term><varname>MemoryLimitBytes=</varname></term>
5612 <listitem>
5613 <para>Specifies the limit on the total number of bytes that can be queued in this FQ-CoDel instance.
5614 When suffixed with K, M, or G, the specified size is parsed as Kilobytes, Megabytes, or Gigabytes,
5615 respectively, to the base of 1024. Defaults to unset and kernel's default is used.</para>
5616
5617 <xi:include href="version-info.xml" xpointer="v246"/>
5618 </listitem>
5619 </varlistentry>
5620
5621 <varlistentry>
5622 <term><varname>Flows=</varname></term>
5623 <listitem>
5624 <para>Specifies the number of flows into which the incoming packets are classified.
5625 Defaults to unset and kernel's default is used.</para>
5626
5627 <xi:include href="version-info.xml" xpointer="v245"/>
5628 </listitem>
5629 </varlistentry>
5630
5631 <varlistentry>
5632 <term><varname>TargetSec=</varname></term>
5633 <listitem>
5634 <para>Takes a timespan. Specifies the acceptable minimum standing/persistent queue delay.
5635 Defaults to unset and kernel's default is used.</para>
5636
5637 <xi:include href="version-info.xml" xpointer="v245"/>
5638 </listitem>
5639 </varlistentry>
5640
5641 <varlistentry>
5642 <term><varname>IntervalSec=</varname></term>
5643 <listitem>
5644 <para>Takes a timespan. This is used to ensure that the measured minimum delay does not
5645 become too stale. Defaults to unset and kernel's default is used.</para>
5646
5647 <xi:include href="version-info.xml" xpointer="v245"/>
5648 </listitem>
5649 </varlistentry>
5650
5651 <varlistentry>
5652 <term><varname>QuantumBytes=</varname></term>
5653 <listitem>
5654 <para>Specifies the number of bytes used as the "deficit" in the fair queuing algorithm timespan.
5655 When suffixed with K, M, or G, the specified size is parsed as Kilobytes, Megabytes, or Gigabytes,
5656 respectively, to the base of 1024. Defaults to unset and kernel's default is used.</para>
5657
5658 <xi:include href="version-info.xml" xpointer="v246"/>
5659 </listitem>
5660 </varlistentry>
5661
5662 <varlistentry>
5663 <term><varname>ECN=</varname></term>
5664 <listitem>
5665 <para>Takes a boolean. This can be used to mark packets instead of dropping them. Defaults to
5666 unset and kernel's default is used.</para>
5667
5668 <xi:include href="version-info.xml" xpointer="v245"/>
5669 </listitem>
5670 </varlistentry>
5671
5672 <varlistentry>
5673 <term><varname>CEThresholdSec=</varname></term>
5674 <listitem>
5675 <para>Takes a timespan. This sets a threshold above which all packets are marked with ECN
5676 Congestion Experienced (CE). Defaults to unset and kernel's default is used.</para>
5677
5678 <xi:include href="version-info.xml" xpointer="v245"/>
5679 </listitem>
5680 </varlistentry>
5681 </variablelist>
5682 </refsect1>
5683
5684 <refsect1>
5685 <title>[FairQueueing] Section Options</title>
5686 <para>The [FairQueueing] section manages the queueing discipline (qdisc) of fair queue traffic policing
5687 (FQ).</para>
5688
5689 <variablelist class='network-directives'>
5690 <xi:include href="tc.xml" xpointer="qdisc-parent" />
5691 <xi:include href="tc.xml" xpointer="qdisc-handle" />
5692
5693 <varlistentry>
5694 <term><varname>PacketLimit=</varname></term>
5695 <listitem>
5696 <para>Specifies the hard limit on the real queue size. When this limit is reached, incoming packets are
5697 dropped. Defaults to unset and kernel's default is used.</para>
5698
5699 <xi:include href="version-info.xml" xpointer="v245"/>
5700 </listitem>
5701 </varlistentry>
5702
5703 <varlistentry>
5704 <term><varname>FlowLimit=</varname></term>
5705 <listitem>
5706 <para>Specifies the hard limit on the maximum number of packets queued per flow. Defaults to
5707 unset and kernel's default is used.</para>
5708
5709 <xi:include href="version-info.xml" xpointer="v245"/>
5710 </listitem>
5711 </varlistentry>
5712
5713 <varlistentry>
5714 <term><varname>QuantumBytes=</varname></term>
5715 <listitem>
5716 <para>Specifies the credit per dequeue RR round, i.e. the amount of bytes a flow is allowed
5717 to dequeue at once. When suffixed with K, M, or G, the specified size is parsed as Kilobytes,
5718 Megabytes, or Gigabytes, respectively, to the base of 1024. Defaults to unset and kernel's
5719 default is used.</para>
5720
5721 <xi:include href="version-info.xml" xpointer="v246"/>
5722 </listitem>
5723 </varlistentry>
5724
5725 <varlistentry>
5726 <term><varname>InitialQuantumBytes=</varname></term>
5727 <listitem>
5728 <para>Specifies the initial sending rate credit, i.e. the amount of bytes a new flow is
5729 allowed to dequeue initially. When suffixed with K, M, or G, the specified size is parsed as
5730 Kilobytes, Megabytes, or Gigabytes, respectively, to the base of 1024. Defaults to unset and
5731 kernel's default is used.</para>
5732
5733 <xi:include href="version-info.xml" xpointer="v245"/>
5734 </listitem>
5735 </varlistentry>
5736
5737 <varlistentry>
5738 <term><varname>MaximumRate=</varname></term>
5739 <listitem>
5740 <para>Specifies the maximum sending rate of a flow. When suffixed with K, M, or G, the
5741 specified size is parsed as Kilobits, Megabits, or Gigabits, respectively, to the base of
5742 1000. Defaults to unset and kernel's default is used.</para>
5743
5744 <xi:include href="version-info.xml" xpointer="v245"/>
5745 </listitem>
5746 </varlistentry>
5747
5748 <varlistentry>
5749 <term><varname>Buckets=</varname></term>
5750 <listitem>
5751 <para>Specifies the size of the hash table used for flow lookups. Defaults to unset and
5752 kernel's default is used.</para>
5753
5754 <xi:include href="version-info.xml" xpointer="v245"/>
5755 </listitem>
5756 </varlistentry>
5757
5758 <varlistentry>
5759 <term><varname>OrphanMask=</varname></term>
5760 <listitem>
5761 <para>Takes an unsigned integer. For packets not owned by a socket, fq is able to mask a part
5762 of hash and reduce number of buckets associated with the traffic. Defaults to unset and
5763 kernel's default is used.</para>
5764
5765 <xi:include href="version-info.xml" xpointer="v245"/>
5766 </listitem>
5767 </varlistentry>
5768
5769 <varlistentry>
5770 <term><varname>Pacing=</varname></term>
5771 <listitem>
5772 <para>Takes a boolean, and enables or disables flow pacing. Defaults to unset and kernel's
5773 default is used.</para>
5774
5775 <xi:include href="version-info.xml" xpointer="v245"/>
5776 </listitem>
5777 </varlistentry>
5778
5779 <varlistentry>
5780 <term><varname>CEThresholdSec=</varname></term>
5781 <listitem>
5782 <para>Takes a timespan. This sets a threshold above which all packets are marked with ECN
5783 Congestion Experienced (CE). Defaults to unset and kernel's default is used.</para>
5784
5785 <xi:include href="version-info.xml" xpointer="v245"/>
5786 </listitem>
5787 </varlistentry>
5788 </variablelist>
5789 </refsect1>
5790
5791 <refsect1>
5792 <title>[TrivialLinkEqualizer] Section Options</title>
5793 <para>The [TrivialLinkEqualizer] section manages the queueing discipline (qdisc) of trivial link
5794 equalizer (teql).</para>
5795
5796 <variablelist class='network-directives'>
5797 <xi:include href="tc.xml" xpointer="qdisc-parent" />
5798 <xi:include href="tc.xml" xpointer="qdisc-handle" />
5799
5800 <varlistentry>
5801 <term><varname>Id=</varname></term>
5802 <listitem>
5803 <para>Specifies the interface ID <literal>N</literal> of teql. Defaults to <literal>0</literal>.
5804 Note that when teql is used, currently, the module <constant>sch_teql</constant> with
5805 <constant>max_equalizers=N+1</constant> option must be loaded before
5806 <command>systemd-networkd</command> is started.</para>
5807
5808 <xi:include href="version-info.xml" xpointer="v245"/>
5809 </listitem>
5810 </varlistentry>
5811 </variablelist>
5812 </refsect1>
5813
5814 <refsect1>
5815 <title>[HierarchyTokenBucket] Section Options</title>
5816 <para>The [HierarchyTokenBucket] section manages the queueing discipline (qdisc) of hierarchy token
5817 bucket (htb).</para>
5818
5819 <variablelist class='network-directives'>
5820 <xi:include href="tc.xml" xpointer="qdisc-parent" />
5821 <xi:include href="tc.xml" xpointer="qdisc-handle" />
5822
5823 <varlistentry>
5824 <term><varname>DefaultClass=</varname></term>
5825 <listitem>
5826 <para>Takes the minor id in hexadecimal of the default class. Unclassified traffic gets sent
5827 to the class. Defaults to unset.</para>
5828
5829 <xi:include href="version-info.xml" xpointer="v246"/>
5830 </listitem>
5831 </varlistentry>
5832
5833 <varlistentry>
5834 <term><varname>RateToQuantum=</varname></term>
5835 <listitem>
5836 <para>Takes an unsigned integer. The DRR quantums are calculated by dividing the value
5837 configured in <varname>Rate=</varname> by <varname>RateToQuantum=</varname>.</para>
5838
5839 <xi:include href="version-info.xml" xpointer="v246"/>
5840 </listitem>
5841 </varlistentry>
5842 </variablelist>
5843 </refsect1>
5844
5845 <refsect1>
5846 <title>[HierarchyTokenBucketClass] Section Options</title>
5847 <para>The [HierarchyTokenBucketClass] section manages the traffic control class of hierarchy token bucket
5848 (htb).</para>
5849
5850 <variablelist class='network-directives'>
5851 <xi:include href="tc.xml" xpointer="tclass-parent" />
5852 <xi:include href="tc.xml" xpointer="tclass-classid" />
5853
5854 <varlistentry>
5855 <term><varname>Priority=</varname></term>
5856 <listitem>
5857 <para>Specifies the priority of the class. In the round-robin process, classes with the lowest
5858 priority field are tried for packets first.</para>
5859
5860 <xi:include href="version-info.xml" xpointer="v246"/>
5861 </listitem>
5862 </varlistentry>
5863
5864 <varlistentry>
5865 <term><varname>QuantumBytes=</varname></term>
5866 <listitem>
5867 <para>Specifies how many bytes to serve from leaf at once. When suffixed with K, M, or G, the
5868 specified size is parsed as Kilobytes, Megabytes, or Gigabytes, respectively, to the base of
5869 1024.</para>
5870
5871 <xi:include href="version-info.xml" xpointer="v246"/>
5872 </listitem>
5873 </varlistentry>
5874
5875 <varlistentry>
5876 <term><varname>MTUBytes=</varname></term>
5877 <listitem>
5878 <para>Specifies the maximum packet size we create. When suffixed with K, M, or G, the specified
5879 size is parsed as Kilobytes, Megabytes, or Gigabytes, respectively, to the base of 1024.</para>
5880
5881 <xi:include href="version-info.xml" xpointer="v246"/>
5882 </listitem>
5883 </varlistentry>
5884
5885 <varlistentry>
5886 <term><varname>OverheadBytes=</varname></term>
5887 <listitem>
5888 <para>Takes an unsigned integer which specifies per-packet size overhead used in rate
5889 computations. When suffixed with K, M, or G, the specified size is parsed as Kilobytes,
5890 Megabytes, or Gigabytes, respectively, to the base of 1024.</para>
5891
5892 <xi:include href="version-info.xml" xpointer="v246"/>
5893 </listitem>
5894 </varlistentry>
5895
5896 <varlistentry>
5897 <term><varname>Rate=</varname></term>
5898 <listitem>
5899 <para>Specifies the maximum rate this class and all its children are guaranteed. When suffixed
5900 with K, M, or G, the specified size is parsed as Kilobits, Megabits, or Gigabits, respectively,
5901 to the base of 1000. This setting is mandatory.</para>
5902
5903 <xi:include href="version-info.xml" xpointer="v246"/>
5904 </listitem>
5905 </varlistentry>
5906
5907 <varlistentry>
5908 <term><varname>CeilRate=</varname></term>
5909 <listitem>
5910 <para>Specifies the maximum rate at which a class can send, if its parent has bandwidth to spare.
5911 When suffixed with K, M, or G, the specified size is parsed as Kilobits, Megabits, or Gigabits,
5912 respectively, to the base of 1000. When unset, the value specified with <varname>Rate=</varname>
5913 is used.</para>
5914
5915 <xi:include href="version-info.xml" xpointer="v246"/>
5916 </listitem>
5917 </varlistentry>
5918
5919 <varlistentry>
5920 <term><varname>BufferBytes=</varname></term>
5921 <listitem>
5922 <para>Specifies the maximum bytes burst which can be accumulated during idle period. When suffixed
5923 with K, M, or G, the specified size is parsed as Kilobytes, Megabytes, or Gigabytes, respectively,
5924 to the base of 1024.</para>
5925
5926 <xi:include href="version-info.xml" xpointer="v246"/>
5927 </listitem>
5928 </varlistentry>
5929
5930 <varlistentry>
5931 <term><varname>CeilBufferBytes=</varname></term>
5932 <listitem>
5933 <para>Specifies the maximum bytes burst for ceil which can be accumulated during idle period.
5934 When suffixed with K, M, or G, the specified size is parsed as Kilobytes, Megabytes, or Gigabytes,
5935 respectively, to the base of 1024.</para>
5936
5937 <xi:include href="version-info.xml" xpointer="v246"/>
5938 </listitem>
5939 </varlistentry>
5940 </variablelist>
5941 </refsect1>
5942
5943 <refsect1>
5944 <title>[HeavyHitterFilter] Section Options</title>
5945 <para>The [HeavyHitterFilter] section manages the queueing discipline (qdisc) of Heavy Hitter Filter
5946 (hhf).</para>
5947
5948 <variablelist class='network-directives'>
5949 <xi:include href="tc.xml" xpointer="qdisc-parent" />
5950 <xi:include href="tc.xml" xpointer="qdisc-handle" />
5951
5952 <varlistentry>
5953 <term><varname>PacketLimit=</varname></term>
5954 <listitem>
5955 <para>Specifies the hard limit on the queue size in number of packets. When this limit is reached,
5956 incoming packets are dropped. An unsigned integer in the range 04294967294. Defaults to unset and
5957 kernel's default is used.</para>
5958
5959 <xi:include href="version-info.xml" xpointer="v246"/>
5960 </listitem>
5961 </varlistentry>
5962 </variablelist>
5963 </refsect1>
5964
5965 <refsect1>
5966 <title>[QuickFairQueueing] Section Options</title>
5967 <para>The [QuickFairQueueing] section manages the queueing discipline (qdisc) of Quick Fair Queueing
5968 (QFQ).</para>
5969
5970 <variablelist class='network-directives'>
5971 <xi:include href="tc.xml" xpointer="qdisc-parent" />
5972 <xi:include href="tc.xml" xpointer="qdisc-handle" />
5973 </variablelist>
5974 </refsect1>
5975
5976 <refsect1>
5977 <title>[QuickFairQueueingClass] Section Options</title>
5978 <para>The [QuickFairQueueingClass] section manages the traffic control class of Quick Fair Queueing
5979 (qfq).</para>
5980
5981 <variablelist class='network-directives'>
5982 <xi:include href="tc.xml" xpointer="tclass-parent" />
5983 <xi:include href="tc.xml" xpointer="tclass-classid" />
5984
5985 <varlistentry>
5986 <term><varname>Weight=</varname></term>
5987 <listitem>
5988 <para>Specifies the weight of the class. Takes an integer in the range 11023. Defaults to
5989 unset in which case the kernel default is used.</para>
5990
5991 <xi:include href="version-info.xml" xpointer="v246"/>
5992 </listitem>
5993 </varlistentry>
5994
5995 <varlistentry>
5996 <term><varname>MaxPacketBytes=</varname></term>
5997 <listitem>
5998 <para>Specifies the maximum packet size in bytes for the class. When suffixed with K, M, or G, the
5999 specified size is parsed as Kilobytes, Megabytes, or Gigabytes, respectively, to the base of
6000 1024. When unset, the kernel default is used.</para>
6001
6002 <xi:include href="version-info.xml" xpointer="v246"/>
6003 </listitem>
6004 </varlistentry>
6005 </variablelist>
6006 </refsect1>
6007
6008 <refsect1>
6009 <title>[BridgeVLAN] Section Options</title>
6010 <para>
6011 The [BridgeVLAN] section manages the VLAN ID configurations of a bridge master or port, and accepts the
6012 following keys. To make the settings in this section take an effect,
6013 <varname>VLANFiltering=</varname> option has to be enabled on the bridge master, see the [Bridge]
6014 section in
6015 <citerefentry><refentrytitle>systemd.netdev</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
6016 If at least one valid settings specified in this section in a .network file for an interface, all
6017 assigned VLAN IDs on the interface that are not configured in the .network file will be removed. If
6018 VLAN IDs on an interface need to be managed by other tools, then the settings in this section cannot
6019 be used in the matching .network file.
6020 </para>
6021
6022 <variablelist class='network-directives'>
6023 <varlistentry>
6024 <term><varname>VLAN=</varname></term>
6025 <listitem>
6026 <para>The VLAN ID allowed on the port. This can be either a single ID or a range M-N. Takes an
6027 integer in the range 14094. This setting can be specified multiple times. If an empty string is
6028 assigned, then the all previous assignments are cleared.</para>
6029
6030 <xi:include href="version-info.xml" xpointer="v231"/>
6031 </listitem>
6032 </varlistentry>
6033 <varlistentry>
6034 <term><varname>EgressUntagged=</varname></term>
6035 <listitem>
6036 <para>The VLAN ID specified here will be used to untag frames on egress. Configuring
6037 <varname>EgressUntagged=</varname> implicates the use of <varname>VLAN=</varname> above and will
6038 enable the VLAN ID for ingress as well. This can be either a single ID or a range M-N. This
6039 setting can be specified multiple times. If an empty string is assigned, then the all previous
6040 assignments are cleared.</para>
6041
6042 <xi:include href="version-info.xml" xpointer="v231"/>
6043 </listitem>
6044 </varlistentry>
6045 <varlistentry>
6046 <term><varname>PVID=</varname></term>
6047 <listitem>
6048 <para>The port VLAN ID specified here is assigned to all untagged frames at ingress. Takes an
6049 VLAN ID or negative boolean value (e.g. <literal>no</literal>). When false, the currently
6050 assigned port VLAN ID will be dropped. Configuring <varname>PVID=</varname> implicates the use of
6051 <varname>VLAN=</varname> setting in the above and will enable the VLAN ID for ingress as well.
6052 Defaults to unset, and will keep the assigned port VLAN ID if exists.</para>
6053
6054 <xi:include href="version-info.xml" xpointer="v231"/>
6055 </listitem>
6056 </varlistentry>
6057 </variablelist>
6058 </refsect1>
6059
6060 <refsect1>
6061 <title>Examples</title>
6062 <example>
6063 <title>Static network configuration</title>
6064
6065 <programlisting># /etc/systemd/network/50-static.network
6066 [Match]
6067 Name=enp2s0
6068
6069 [Network]
6070 Address=192.168.0.15/24
6071 Gateway=192.168.0.1</programlisting>
6072
6073 <para>This brings interface <literal>enp2s0</literal> up with a static address. The
6074 specified gateway will be used for a default route.</para>
6075 </example>
6076
6077 <example>
6078 <title>DHCP on ethernet links</title>
6079
6080 <programlisting># /etc/systemd/network/80-dhcp.network
6081 [Match]
6082 Name=en*
6083
6084 [Network]
6085 DHCP=yes</programlisting>
6086
6087 <para>This will enable DHCPv4 and DHCPv6 on all interfaces with names starting with
6088 <literal>en</literal> (i.e. ethernet interfaces).</para>
6089 </example>
6090
6091 <example>
6092 <title>IPv6 Prefix Delegation (DHCPv6 PD)</title>
6093
6094 <programlisting># /etc/systemd/network/55-dhcpv6-pd-upstream.network
6095 [Match]
6096 Name=enp1s0
6097
6098 [Network]
6099 DHCP=ipv6
6100
6101 # The below setting is optional, to also assign an address in the delegated prefix
6102 # to the upstream interface. If not necessary, then comment out the line below and
6103 # the [DHCPPrefixDelegation] section.
6104 DHCPPrefixDelegation=yes
6105
6106 # If the upstream network provides Router Advertisement with Managed bit set,
6107 # then comment out the line below and WithoutRA= setting in the [DHCPv6] section.
6108 IPv6AcceptRA=no
6109
6110 [DHCPv6]
6111 WithoutRA=solicit
6112
6113 [DHCPPrefixDelegation]
6114 UplinkInterface=:self
6115 SubnetId=0
6116 Announce=no</programlisting>
6117
6118 <programlisting># /etc/systemd/network/55-dhcpv6-pd-downstream.network
6119 [Match]
6120 Name=enp2s0
6121
6122 [Network]
6123 DHCPPrefixDelegation=yes
6124 IPv6SendRA=yes
6125
6126 # It is expected that the host is acting as a router. So, usually it is not
6127 # necessary to receive Router Advertisement from other hosts in the downstream network.
6128 IPv6AcceptRA=no
6129
6130 [DHCPPrefixDelegation]
6131 UplinkInterface=enp1s0
6132 SubnetId=1
6133 Announce=yes</programlisting>
6134
6135 <para>This will enable DHCPv6-PD on the interface enp1s0 as an upstream interface where the
6136 DHCPv6 client is running and enp2s0 as a downstream interface where the prefix is delegated to.
6137 The delegated prefixes are distributed by IPv6 Router Advertisement on the downstream network.
6138 </para>
6139 </example>
6140
6141 <example>
6142 <title>IPv6 Prefix Delegation (DHCPv4 6RD)</title>
6143
6144 <programlisting># /etc/systemd/network/55-dhcpv4-6rd-upstream.network
6145 [Match]
6146 Name=enp1s0
6147
6148 [Network]
6149 DHCP=ipv4
6150
6151 # When DHCPv4-6RD is used, the upstream network does not support IPv6.
6152 # Hence, it is not necessary to wait for Router Advertisement, which is enabled by default.
6153 IPv6AcceptRA=no
6154
6155 [DHCPv4]
6156 Use6RD=yes</programlisting>
6157
6158 <programlisting># /etc/systemd/network/55-dhcpv4-6rd-downstream.network
6159 [Match]
6160 Name=enp2s0
6161
6162 [Network]
6163 DHCPPrefixDelegation=yes
6164 IPv6SendRA=yes
6165
6166 # It is expected that the host is acting as a router. So, usually it is not
6167 # necessary to receive Router Advertisement from other hosts in the downstream network.
6168 IPv6AcceptRA=no
6169
6170 [DHCPPrefixDelegation]
6171 UplinkInterface=enp1s0
6172 SubnetId=1
6173 Announce=yes</programlisting>
6174
6175 <para>This will enable DHCPv4-6RD on the interface enp1s0 as an upstream interface where the
6176 DHCPv4 client is running and enp2s0 as a downstream interface where the prefix is delegated to.
6177 The delegated prefixes are distributed by IPv6 Router Advertisement on the downstream network.
6178 </para>
6179 </example>
6180
6181 <example>
6182 <title>A bridge with two enslaved links</title>
6183
6184 <programlisting># /etc/systemd/network/25-bridge-static.netdev
6185 [NetDev]
6186 Name=bridge0
6187 Kind=bridge</programlisting>
6188
6189 <programlisting># /etc/systemd/network/25-bridge-static.network
6190 [Match]
6191 Name=bridge0
6192
6193 [Network]
6194 Address=192.168.0.15/24
6195 Gateway=192.168.0.1
6196 DNS=192.168.0.1</programlisting>
6197
6198 <programlisting># /etc/systemd/network/25-bridge-slave-interface-1.network
6199 [Match]
6200 Name=enp2s0
6201
6202 [Network]
6203 Bridge=bridge0</programlisting>
6204
6205 <programlisting># /etc/systemd/network/25-bridge-slave-interface-2.network
6206 [Match]
6207 Name=wlp3s0
6208
6209 [Network]
6210 Bridge=bridge0</programlisting>
6211
6212 <para>This creates a bridge and attaches devices <literal>enp2s0</literal> and
6213 <literal>wlp3s0</literal> to it. The bridge will have the specified static address
6214 and network assigned, and a default route via the specified gateway will be
6215 added. The specified DNS server will be added to the global list of DNS resolvers.
6216 </para>
6217 </example>
6218
6219 <example>
6220 <title>Bridge port with VLAN forwarding</title>
6221
6222 <programlisting>
6223 # /etc/systemd/network/25-bridge-slave-interface-1.network
6224 [Match]
6225 Name=enp2s0
6226
6227 [Network]
6228 Bridge=bridge0
6229
6230 [BridgeVLAN]
6231 VLAN=1-32
6232 PVID=42
6233 EgressUntagged=42
6234
6235 [BridgeVLAN]
6236 VLAN=100-200
6237
6238 [BridgeVLAN]
6239 EgressUntagged=300-400</programlisting>
6240
6241 <para>This overrides the configuration specified in the previous example for the
6242 interface <literal>enp2s0</literal>, and enables VLAN on that bridge port. VLAN IDs
6243 1-32, 42, 100-400 will be allowed. Packets tagged with VLAN IDs 42, 300-400 will be
6244 untagged when they leave on this interface. Untagged packets which arrive on this
6245 interface will be assigned VLAN ID 42.</para>
6246 </example>
6247
6248 <example>
6249 <title>Various tunnels</title>
6250
6251 <programlisting>/etc/systemd/network/25-tunnels.network
6252 [Match]
6253 Name=ens1
6254
6255 [Network]
6256 Tunnel=ipip-tun
6257 Tunnel=sit-tun
6258 Tunnel=gre-tun
6259 Tunnel=vti-tun
6260 </programlisting>
6261
6262 <programlisting>/etc/systemd/network/25-tunnel-ipip.netdev
6263 [NetDev]
6264 Name=ipip-tun
6265 Kind=ipip
6266 </programlisting>
6267
6268 <programlisting>/etc/systemd/network/25-tunnel-sit.netdev
6269 [NetDev]
6270 Name=sit-tun
6271 Kind=sit
6272 </programlisting>
6273
6274 <programlisting>/etc/systemd/network/25-tunnel-gre.netdev
6275 [NetDev]
6276 Name=gre-tun
6277 Kind=gre
6278 </programlisting>
6279
6280 <programlisting>/etc/systemd/network/25-tunnel-vti.netdev
6281 [NetDev]
6282 Name=vti-tun
6283 Kind=vti
6284 </programlisting>
6285
6286 <para>This will bring interface <literal>ens1</literal> up and create an IPIP tunnel,
6287 a SIT tunnel, a GRE tunnel, and a VTI tunnel using it.</para>
6288 </example>
6289
6290 <example>
6291 <title>A bond device</title>
6292
6293 <programlisting># /etc/systemd/network/30-bond1.network
6294 [Match]
6295 Name=bond1
6296
6297 [Network]
6298 DHCP=ipv6
6299 </programlisting>
6300
6301 <programlisting># /etc/systemd/network/30-bond1.netdev
6302 [NetDev]
6303 Name=bond1
6304 Kind=bond
6305 </programlisting>
6306
6307 <programlisting># /etc/systemd/network/30-bond1-dev1.network
6308 [Match]
6309 MACAddress=52:54:00:e9:64:41
6310
6311 [Network]
6312 Bond=bond1
6313 </programlisting>
6314
6315 <programlisting># /etc/systemd/network/30-bond1-dev2.network
6316 [Match]
6317 MACAddress=52:54:00:e9:64:42
6318
6319 [Network]
6320 Bond=bond1
6321 </programlisting>
6322
6323 <para>This will create a bond device <literal>bond1</literal> and enslave the two
6324 devices with MAC addresses 52:54:00:e9:64:41 and 52:54:00:e9:64:42 to it. IPv6 DHCP
6325 will be used to acquire an address.</para>
6326 </example>
6327
6328 <example>
6329 <title>Virtual Routing and Forwarding (VRF)</title>
6330 <para>Add the <literal>bond1</literal> interface to the VRF master interface
6331 <literal>vrf1</literal>. This will redirect routes generated on this interface to be
6332 within the routing table defined during VRF creation. For kernels before 4.8 traffic
6333 won't be redirected towards the VRFs routing table unless specific ip-rules are added.
6334 </para>
6335 <programlisting># /etc/systemd/network/25-vrf.network
6336 [Match]
6337 Name=bond1
6338
6339 [Network]
6340 VRF=vrf1
6341 </programlisting>
6342 </example>
6343
6344 <example>
6345 <title>MacVTap</title>
6346 <para>This brings up a network interface <literal>macvtap-test</literal>
6347 and attaches it to <literal>enp0s25</literal>.</para>
6348 <programlisting># /usr/lib/systemd/network/25-macvtap.network
6349 [Match]
6350 Name=enp0s25
6351
6352 [Network]
6353 MACVTAP=macvtap-test
6354 </programlisting>
6355 </example>
6356
6357 <example>
6358 <title>A Xfrm interface with physical underlying device.</title>
6359
6360 <programlisting># /etc/systemd/network/27-xfrm.netdev
6361 [NetDev]
6362 Name=xfrm0
6363 Kind=xfrm
6364
6365 [Xfrm]
6366 InterfaceId=7</programlisting>
6367
6368 <programlisting># /etc/systemd/network/27-eth0.network
6369 [Match]
6370 Name=eth0
6371
6372 [Network]
6373 Xfrm=xfrm0</programlisting>
6374
6375 <para>This creates a <literal>xfrm0</literal> interface and binds it to the <literal>eth0</literal> device.
6376 This allows hardware based ipsec offloading to the <literal>eth0</literal> nic.
6377 If offloading is not needed, xfrm interfaces can be assigned to the <literal>lo</literal> device.
6378 </para>
6379 </example>
6380 </refsect1>
6381
6382 <refsect1>
6383 <title>See Also</title>
6384 <para><simplelist type="inline">
6385 <member><citerefentry><refentrytitle>systemd</refentrytitle><manvolnum>1</manvolnum></citerefentry></member>
6386 <member><citerefentry><refentrytitle>systemd-networkd.service</refentrytitle><manvolnum>8</manvolnum></citerefentry></member>
6387 <member><citerefentry><refentrytitle>systemd.link</refentrytitle><manvolnum>5</manvolnum></citerefentry></member>
6388 <member><citerefentry><refentrytitle>systemd.netdev</refentrytitle><manvolnum>5</manvolnum></citerefentry></member>
6389 <member><citerefentry><refentrytitle>systemd-network-generator.service</refentrytitle><manvolnum>8</manvolnum></citerefentry></member>
6390 <member><citerefentry><refentrytitle>systemd-resolved.service</refentrytitle><manvolnum>8</manvolnum></citerefentry></member>
6391 </simplelist></para>
6392 </refsect1>
6393
6394 </refentry>