]> git.ipfire.org Git - thirdparty/systemd.git/blob - man/systemd.network.xml
network: DHCPv6 - Add support to send user class
[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.2/docbookx.dtd">
4 <!-- SPDX-License-Identifier: LGPL-2.1+ -->
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 interfaces,
32 used by
33 <citerefentry><refentrytitle>systemd-networkd</refentrytitle><manvolnum>8</manvolnum></citerefentry>.
34 See <citerefentry><refentrytitle>systemd.syntax</refentrytitle><manvolnum>5</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 processed
45 in lexical order, regardless of the directories in which they live. However, files with identical
46 filenames replace each other. Files in <filename>/etc</filename> have the highest priority, files in
47 <filename>/run</filename> take precedence over files with the same name under
48 <filename>/usr</filename>. This can be used to override a system-supplied configuration file with a local
49 file if needed. As a special case, an empty file (file size 0) or symlink with the same name pointing to
50 <filename>/dev/null</filename> disables the configuration file entirely (it is "masked").</para>
51
52 <para>Along with the network file <filename>foo.network</filename>, a "drop-in" directory
53 <filename>foo.network.d/</filename> may exist. All files with the suffix
54 <literal>.conf</literal> from this directory will be parsed after the file itself is
55 parsed. This is useful to alter or add configuration settings, without having to modify the main
56 configuration file. Each drop-in file must have appropriate section headers.</para>
57
58 <para>In addition to <filename>/etc/systemd/network</filename>, drop-in <literal>.d</literal>
59 directories can be placed in <filename>/usr/lib/systemd/network</filename> or
60 <filename>/run/systemd/network</filename> directories. Drop-in files in
61 <filename>/etc</filename> take precedence over those in <filename>/run</filename> which in turn
62 take precedence over those in <filename>/usr/lib</filename>. Drop-in files under any of these
63 directories take precedence over the main network file wherever located.</para>
64
65 <para>Note that an interface without any static IPv6 addresses configured, and neither DHCPv6
66 nor IPv6LL enabled, shall be considered to have no IPv6 support. IPv6 will be automatically
67 disabled for that interface by writing "1" to
68 <filename>/proc/sys/net/ipv6/conf/<replaceable>ifname</replaceable>/disable_ipv6</filename>.
69 </para>
70 </refsect1>
71
72 <refsect1>
73 <title>[Match] Section Options</title>
74
75 <para>The network file contains a <literal>[Match]</literal>
76 section, which determines if a given network file may be applied
77 to a given device; and a <literal>[Network]</literal> section
78 specifying how the device should be configured. The first (in
79 lexical order) of the network files that matches a given device
80 is applied, all later files are ignored, even if they match as
81 well.</para>
82
83 <para>A network file is said to match a network interface if all matches specified by the
84 <literal>[Match]</literal> section are satisfied. When a network file does not contain valid
85 settings in <literal>[Match]</literal> section, then the file will match all interfaces and
86 <command>systemd-networkd</command> warns about that. Hint: to avoid the warning and to make it
87 clear that all interfaces shall be matched, add the following:
88 <programlisting>Name=*</programlisting>
89 The following keys are accepted:</para>
90
91 <variablelist class='network-directives'>
92 <xi:include href="systemd.link.xml" xpointer="mac-address" />
93 <xi:include href="systemd.link.xml" xpointer="permanent-mac-address" />
94 <xi:include href="systemd.link.xml" xpointer="path" />
95 <xi:include href="systemd.link.xml" xpointer="driver" />
96 <xi:include href="systemd.link.xml" xpointer="type" />
97 <xi:include href="systemd.link.xml" xpointer="property" />
98
99 <varlistentry>
100 <term><varname>Name=</varname></term>
101 <listitem>
102 <para>A whitespace-separated list of shell-style globs matching the device name, as exposed
103 by the udev property <literal>INTERFACE</literal>, or device's alternative names. If the
104 list is prefixed with a "!", the test is inverted.</para>
105 </listitem>
106 </varlistentry>
107
108 <varlistentry>
109 <term><varname>WLANInterfaceType=</varname></term>
110 <listitem>
111 <para>A whitespace-separated list of wireless network type. Supported values are
112 <literal>ad-hoc</literal>, <literal>station</literal>, <literal>ap</literal>,
113 <literal>ap-vlan</literal>, <literal>wds</literal>, <literal>monitor</literal>,
114 <literal>mesh-point</literal>, <literal>p2p-client</literal>, <literal>p2p-go</literal>,
115 <literal>p2p-device</literal>, <literal>ocb</literal>, and <literal>nan</literal>. If the
116 list is prefixed with a "!", the test is inverted.
117 </para>
118 </listitem>
119 </varlistentry>
120
121 <varlistentry>
122 <term><varname>SSID=</varname></term>
123 <listitem>
124 <para>A whitespace-separated list of shell-style globs matching the SSID of the currently
125 connected wireless LAN. If the list is prefixed with a "!", the test is inverted.
126 </para>
127 </listitem>
128 </varlistentry>
129
130 <varlistentry>
131 <term><varname>BSSID=</varname></term>
132 <listitem>
133 <para>A whitespace-separated list of hardware address of the currently connected wireless
134 LAN. Use full colon-, hyphen- or dot-delimited hexadecimal. See the example in
135 <varname>MACAddress=</varname>. This option may appear more than one, in which case the
136 lists are merged. If the empty string is assigned to this option, the list of BSSID defined
137 prior to this is reset.</para>
138 </listitem>
139 </varlistentry>
140
141 <xi:include href="systemd.link.xml" xpointer="host" />
142 <xi:include href="systemd.link.xml" xpointer="virtualization" />
143 <xi:include href="systemd.link.xml" xpointer="kernel-command-line" />
144 <xi:include href="systemd.link.xml" xpointer="kernel-version" />
145 <xi:include href="systemd.link.xml" xpointer="architecture" />
146 </variablelist>
147
148 </refsect1>
149
150 <refsect1>
151 <title>[Link] Section Options</title>
152
153 <para> The <literal>[Link]</literal> section accepts the following keys:</para>
154
155 <variablelist class='network-directives'>
156 <varlistentry>
157 <term><varname>MACAddress=</varname></term>
158 <listitem>
159 <para>The hardware address to set for the device.</para>
160 </listitem>
161 </varlistentry>
162 <varlistentry>
163 <term><varname>MTUBytes=</varname></term>
164 <listitem>
165 <para>The maximum transmission unit in bytes to set for the
166 device. The usual suffixes K, M, G, are supported and are
167 understood to the base of 1024.</para>
168 <para>Note that if IPv6 is enabled on the interface, and the MTU is chosen
169 below 1280 (the minimum MTU for IPv6) it will automatically be increased to this value.</para>
170 </listitem>
171 </varlistentry>
172 <varlistentry>
173 <term><varname>ARP=</varname></term>
174 <listitem>
175 <para>Takes a boolean. If set to true, the ARP (low-level Address Resolution Protocol)
176 for this interface is enabled. When unset, the kernel's default will be used.</para>
177 <para> For example, disabling ARP is useful when creating multiple MACVLAN or VLAN virtual
178 interfaces atop a single lower-level physical interface, which will then only serve as a
179 link/"bridge" device aggregating traffic to the same physical link and not participate in
180 the network otherwise.</para>
181 </listitem>
182 </varlistentry>
183 <varlistentry>
184 <term><varname>Multicast=</varname></term>
185 <listitem>
186 <para>Takes a boolean. If set to true, the multicast flag on the device is enabled.</para>
187 </listitem>
188 </varlistentry>
189 <varlistentry>
190 <term><varname>AllMulticast=</varname></term>
191 <listitem>
192 <para>Takes a boolean. If set to true, the driver retrieves all multicast packets from the network.
193 This happens when multicast routing is enabled.</para>
194 </listitem>
195 </varlistentry>
196 <varlistentry>
197 <term><varname>Unmanaged=</varname></term>
198 <listitem>
199 <para>Takes a boolean. When <literal>yes</literal>, no attempts are
200 made to bring up or configure matching links, equivalent to
201 when there are no matching network files. Defaults to
202 <literal>no</literal>.</para>
203 <para>This is useful for preventing later matching network
204 files from interfering with certain interfaces that are fully
205 controlled by other applications.</para>
206 </listitem>
207 </varlistentry>
208 <varlistentry>
209 <term><varname>Group=</varname></term>
210 <listitem>
211 <para>Link groups are similar to port ranges found in managed switches.
212 When network interfaces are added to a numbered group, operations on
213 all the interfaces from that group can be performed at once. An unsigned
214 integer ranges 0 to 4294967294. Default to unset.</para>
215 </listitem>
216 </varlistentry>
217 <varlistentry>
218 <term><varname>RequiredForOnline=</varname></term>
219 <listitem>
220 <para>Takes a boolean or a minimum operational state and an optional maximum operational state.
221 Please see <citerefentry><refentrytitle>networkctl</refentrytitle><manvolnum>1</manvolnum></citerefentry>
222 for possible operational states. When <literal>yes</literal>, the network is deemed required when
223 determining whether the system is online when running
224 <command>systemd-networkd-wait-online</command>. When <literal>no</literal>, the network is ignored
225 when checking for online state. When a minimum operational state and an optional maximum operational
226 state are set, <literal>yes</literal> is implied, and this controls the minimum and maximum
227 operational state required for the network interface to be considered online.
228 Defaults to <literal>yes</literal>.</para>
229
230 <para>The network will be brought up normally in all cases, but in
231 the event that there is no address being assigned by DHCP or the
232 cable is not plugged in, the link will simply remain offline and be
233 skipped automatically by <command>systemd-networkd-wait-online</command>
234 if <literal>RequiredForOnline=no</literal>.</para>
235 </listitem>
236 </varlistentry>
237 </variablelist>
238 </refsect1>
239
240 <refsect1>
241 <title>[Network] Section Options</title>
242
243 <para>The <literal>[Network]</literal> section accepts the following keys:</para>
244
245 <variablelist class='network-directives'>
246 <varlistentry>
247 <term><varname>Description=</varname></term>
248 <listitem>
249 <para>A description of the device. This is only used for
250 presentation purposes.</para>
251 </listitem>
252 </varlistentry>
253 <varlistentry>
254 <term><varname>DHCP=</varname></term>
255 <listitem>
256 <para>Enables DHCPv4 and/or DHCPv6 client support. Accepts
257 <literal>yes</literal>, <literal>no</literal>,
258 <literal>ipv4</literal>, or <literal>ipv6</literal>. Defaults
259 to <literal>no</literal>.</para>
260
261 <para>Note that DHCPv6 will by default be triggered by Router
262 Advertisement, if that is enabled, regardless of this parameter.
263 By enabling DHCPv6 support explicitly, the DHCPv6 client will
264 be started regardless of the presence of routers on the link,
265 or what flags the routers pass. See
266 <literal>IPv6AcceptRA=</literal>.</para>
267
268 <para>Furthermore, note that by default the domain name
269 specified through DHCP is not used for name resolution.
270 See option <option>UseDomains=</option> below.</para>
271
272 <para>See the <literal>[DHCPv4]</literal> or <literal>[DHCPv6]</literal> section below for
273 further configuration options for the DHCP client support.</para>
274 </listitem>
275 </varlistentry>
276 <varlistentry>
277 <term><varname>DHCPServer=</varname></term>
278 <listitem>
279 <para>Takes a boolean. If set to <literal>yes</literal>, DHCPv4 server will be started. Defaults
280 to <literal>no</literal>. Further settings for the DHCP
281 server may be set in the <literal>[DHCPServer]</literal>
282 section described below.</para>
283 </listitem>
284 </varlistentry>
285 <varlistentry>
286 <term><varname>LinkLocalAddressing=</varname></term>
287 <listitem>
288 <para>Enables link-local address autoconfiguration. Accepts <literal>yes</literal>,
289 <literal>no</literal>, <literal>ipv4</literal>, <literal>ipv6</literal>,
290 <literal>fallback</literal>, or <literal>ipv4-fallback</literal>. If
291 <literal>fallback</literal> or <literal>ipv4-fallback</literal> is specified, then an IPv4
292 link-local address is configured only when DHCPv4 fails. If <literal>fallback</literal>,
293 an IPv6 link-local address is always configured, and if <literal>ipv4-fallback</literal>,
294 the address is not configured. Note that, the fallback mechanism works only when DHCPv4
295 client is enabled, that is, it requires <literal>DHCP=yes</literal> or
296 <literal>DHCP=ipv4</literal>. If <varname>Bridge=</varname> is set, defaults to
297 <literal>no</literal>, and if not, defaults to <literal>ipv6</literal>.
298 </para>
299 </listitem>
300 </varlistentry>
301 <varlistentry>
302 <term><varname>IPv4LLRoute=</varname></term>
303 <listitem>
304 <para>Takes a boolean. If set to true, sets up the route needed for
305 non-IPv4LL hosts to communicate with IPv4LL-only hosts. Defaults
306 to false.
307 </para>
308 </listitem>
309 </varlistentry>
310 <varlistentry>
311 <term><varname>DefaultRouteOnDevice=</varname></term>
312 <listitem>
313 <para>Takes a boolean. If set to true, sets up the default route bound to the interface.
314 Defaults to false. This is useful when creating routes on point-to-point interfaces.
315 This is equivalent to e.g. the following.
316 <programlisting>ip route add default dev veth99</programlisting></para>
317 </listitem>
318 </varlistentry>
319 <varlistentry>
320 <term><varname>IPv6Token=</varname></term>
321 <listitem>
322 <para>Specifies an optional address generation mode and a required IPv6 address. If
323 the mode is present, the two parts must be separated with a colon
324 <literal><replaceable>mode</replaceable>:<replaceable>address</replaceable></literal>. The
325 address generation mode may be either <constant>prefixstable</constant> or
326 <constant>static</constant>. If not specified, <constant>static</constant> is assumed.
327 </para>
328 <para>When the mode is set to <constant>static</constant>, or unspecified, the lower bits of
329 the supplied address are combined with the upper bits of a prefix received in a Router Advertisement
330 message to form a complete address. Note that if multiple prefixes are received in an RA message, or in
331 multiple RA messages, addresses will be formed from each of them using the supplied address. This
332 mode implements SLAAC but uses a static interface identifier instead of an identifier generated
333 using the EUI-64 algorithm. Because the interface identifier is static, if Duplicate Address Detection
334 detects that the computed address is a duplicate (in use by another node on the link), then this
335 mode will fail to provide an address for that prefix.
336 </para>
337 <para>When the mode is set to <literal>prefixstable</literal> the RFC 7217 algorithm for generating
338 interface identifiers will be used, but only when a prefix received in an RA message matches the supplied address.
339 See <ulink url="https://tools.ietf.org/html/rfc7217">RFC 7217</ulink>. Prefix matching will be attempted
340 against each <constant>prefixstable</constant> IPv6Token variable provided in the configuration; if a received
341 prefix does not match any of the provided addresses, then the EUI-64 algorithm will be used to form
342 an interface identifier for that prefix. This mode is also SLAAC, but with a potentially stable interface
343 identifier which does not directly map to the interface's hardware address.
344
345 Note that the <constant>prefixstable</constant> algorithm includes both the interface's name and
346 MAC address in the hash used to compute the interface identifier, so if either of those are changed the resulting
347 interface identifier (and address) will change, even if the prefix received in the RA message has not changed.
348
349 Note that if multiple <constant>prefixstable</constant> IPv6Token variables are supplied with addresses that
350 match a prefix received in an RA message, only the first one will be used to generate addresses.
351 </para>
352 </listitem>
353 </varlistentry>
354 <varlistentry>
355 <term><varname>LLMNR=</varname></term>
356 <listitem>
357 <para>Takes a boolean or <literal>resolve</literal>. When true,
358 enables <ulink
359 url="https://tools.ietf.org/html/rfc4795">Link-Local
360 Multicast Name Resolution</ulink> on the link. When set to
361 <literal>resolve</literal>, only resolution is enabled,
362 but not host registration and announcement. Defaults to
363 true. This setting is read by
364 <citerefentry><refentrytitle>systemd-resolved.service</refentrytitle><manvolnum>8</manvolnum></citerefentry>.</para>
365 </listitem>
366 </varlistentry>
367 <varlistentry>
368 <term><varname>MulticastDNS=</varname></term>
369 <listitem>
370 <para>Takes a boolean or <literal>resolve</literal>. When true,
371 enables <ulink
372 url="https://tools.ietf.org/html/rfc6762">Multicast
373 DNS</ulink> support on the link. When set to
374 <literal>resolve</literal>, only resolution is enabled,
375 but not host or service registration and
376 announcement. Defaults to false. This setting is read by
377 <citerefentry><refentrytitle>systemd-resolved.service</refentrytitle><manvolnum>8</manvolnum></citerefentry>.</para>
378 </listitem>
379 </varlistentry>
380 <varlistentry>
381 <term><varname>DNSOverTLS=</varname></term>
382 <listitem>
383 <para>Takes a boolean or <literal>opportunistic</literal>.
384 When true, enables
385 <ulink
386 url="https://tools.ietf.org/html/rfc7858">DNS-over-TLS</ulink>
387 support on the link.
388 When set to <literal>opportunistic</literal>, compatibility with
389 non-DNS-over-TLS servers is increased, by automatically
390 turning off DNS-over-TLS servers in this case.
391 This option defines a per-interface setting for
392 <citerefentry><refentrytitle>resolved.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>'s
393 global <varname>DNSOverTLS=</varname> option. Defaults to
394 false. This setting is read by
395 <citerefentry><refentrytitle>systemd-resolved.service</refentrytitle><manvolnum>8</manvolnum></citerefentry>.</para>
396 </listitem>
397 </varlistentry>
398 <varlistentry>
399 <term><varname>DNSSEC=</varname></term>
400 <listitem>
401 <para>Takes a boolean. or
402 <literal>allow-downgrade</literal>. When true, enables
403 <ulink
404 url="https://tools.ietf.org/html/rfc4033">DNSSEC</ulink>
405 DNS validation support on the link. When set to
406 <literal>allow-downgrade</literal>, compatibility with
407 non-DNSSEC capable networks is increased, by automatically
408 turning off DNSSEC in this case. This option defines a
409 per-interface setting for
410 <citerefentry><refentrytitle>resolved.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>'s
411 global <varname>DNSSEC=</varname> option. Defaults to
412 false. This setting is read by
413 <citerefentry><refentrytitle>systemd-resolved.service</refentrytitle><manvolnum>8</manvolnum></citerefentry>.</para>
414 </listitem>
415 </varlistentry>
416 <varlistentry>
417 <term><varname>DNSSECNegativeTrustAnchors=</varname></term>
418 <listitem><para>A space-separated list of DNSSEC negative
419 trust anchor domains. If specified and DNSSEC is enabled,
420 look-ups done via the interface's DNS server will be subject
421 to the list of negative trust anchors, and not require
422 authentication for the specified domains, or anything below
423 it. Use this to disable DNSSEC authentication for specific
424 private domains, that cannot be proven valid using the
425 Internet DNS hierarchy. Defaults to the empty list. This
426 setting is read by
427 <citerefentry><refentrytitle>systemd-resolved.service</refentrytitle><manvolnum>8</manvolnum></citerefentry>.</para>
428 </listitem>
429 </varlistentry>
430 <varlistentry>
431 <term><varname>LLDP=</varname></term>
432 <listitem>
433 <para>Controls support for Ethernet LLDP packet reception. LLDP is a link-layer protocol commonly
434 implemented on professional routers and bridges which announces which physical port a system is connected
435 to, as well as other related data. Accepts a boolean or the special value
436 <literal>routers-only</literal>. When true, incoming LLDP packets are accepted and a database of all LLDP
437 neighbors maintained. If <literal>routers-only</literal> is set only LLDP data of various types of routers
438 is collected and LLDP data about other types of devices ignored (such as stations, telephones and
439 others). If false, LLDP reception is disabled. Defaults to <literal>routers-only</literal>. Use
440 <citerefentry><refentrytitle>networkctl</refentrytitle><manvolnum>1</manvolnum></citerefentry> to query the
441 collected neighbor data. LLDP is only available on Ethernet links. See <varname>EmitLLDP=</varname> below
442 for enabling LLDP packet emission from the local system.
443 </para>
444 </listitem>
445 </varlistentry>
446 <varlistentry>
447 <term><varname>EmitLLDP=</varname></term>
448 <listitem>
449 <para>Controls support for Ethernet LLDP packet emission. Accepts a boolean parameter or the special values
450 <literal>nearest-bridge</literal>, <literal>non-tpmr-bridge</literal> and
451 <literal>customer-bridge</literal>. Defaults to false, which turns off LLDP packet emission. If not false,
452 a short LLDP packet with information about the local system is sent out in regular intervals on the
453 link. The LLDP packet will contain information about the local hostname, the local machine ID (as stored
454 in <citerefentry><refentrytitle>machine-id</refentrytitle><manvolnum>5</manvolnum></citerefentry>) and the
455 local interface name, as well as the pretty hostname of the system (as set in
456 <citerefentry><refentrytitle>machine-info</refentrytitle><manvolnum>5</manvolnum></citerefentry>). LLDP
457 emission is only available on Ethernet links. Note that this setting passes data suitable for
458 identification of host to the network and should thus not be enabled on untrusted networks, where such
459 identification data should not be made available. Use this option to permit other systems to identify on
460 which interfaces they are connected to this system. The three special values control propagation of the
461 LLDP packets. The <literal>nearest-bridge</literal> setting permits propagation only to the nearest
462 connected bridge, <literal>non-tpmr-bridge</literal> permits propagation across Two-Port MAC Relays, but
463 not any other bridges, and <literal>customer-bridge</literal> permits propagation until a customer bridge
464 is reached. For details about these concepts, see <ulink
465 url="https://standards.ieee.org/findstds/standard/802.1AB-2016.html">IEEE 802.1AB-2016</ulink>. Note that
466 configuring this setting to true is equivalent to <literal>nearest-bridge</literal>, the recommended and
467 most restricted level of propagation. See <varname>LLDP=</varname> above for an option to enable LLDP
468 reception.</para>
469 </listitem>
470 </varlistentry>
471
472 <varlistentry>
473 <term><varname>BindCarrier=</varname></term>
474 <listitem>
475 <para>A link name or a list of link names. When set, controls the behavior of the current
476 link. When all links in the list are in an operational down state, the current link is brought
477 down. When at least one link has carrier, the current interface is brought up.
478 </para>
479 </listitem>
480 </varlistentry>
481 <varlistentry>
482 <term><varname>Address=</varname></term>
483 <listitem>
484 <para>A static IPv4 or IPv6 address and its prefix length,
485 separated by a <literal>/</literal> character. Specify
486 this key more than once to configure several addresses.
487 The format of the address must be as described in
488 <citerefentry project='man-pages'><refentrytitle>inet_pton</refentrytitle><manvolnum>3</manvolnum></citerefentry>.
489 This is a short-hand for an [Address] section only
490 containing an Address key (see below). This option may be
491 specified more than once.
492 </para>
493
494 <para>If the specified address is <literal>0.0.0.0</literal> (for IPv4) or <literal>::</literal>
495 (for IPv6), a new address range of the requested size is automatically allocated from a
496 system-wide pool of unused ranges. Note that the prefix length must be equal or larger than 8 for
497 IPv4, and 64 for IPv6. The allocated range is checked against all current network interfaces and
498 all known network configuration files to avoid address range conflicts. The default system-wide
499 pool consists of 192.168.0.0/16, 172.16.0.0/12 and 10.0.0.0/8 for IPv4, and fd00::/8 for IPv6.
500 This functionality is useful to manage a large number of dynamically created network interfaces
501 with the same network configuration and automatic address range assignment.</para>
502
503 </listitem>
504 </varlistentry>
505 <varlistentry>
506 <term><varname>Gateway=</varname></term>
507 <listitem>
508 <para>The gateway address, which must be in the format
509 described in
510 <citerefentry project='man-pages'><refentrytitle>inet_pton</refentrytitle><manvolnum>3</manvolnum></citerefentry>.
511 This is a short-hand for a [Route] section only containing
512 a Gateway key. This option may be specified more than
513 once.</para>
514 </listitem>
515 </varlistentry>
516 <varlistentry>
517 <term><varname>DNS=</varname></term>
518 <listitem>
519 <para>A DNS server address, which must be in the format
520 described in
521 <citerefentry project='man-pages'><refentrytitle>inet_pton</refentrytitle><manvolnum>3</manvolnum></citerefentry>.
522 This option may be specified more than once. This setting is read by
523 <citerefentry><refentrytitle>systemd-resolved.service</refentrytitle><manvolnum>8</manvolnum></citerefentry>.</para>
524 </listitem>
525 </varlistentry>
526 <varlistentry>
527 <term><varname>Domains=</varname></term>
528 <listitem>
529 <para>A whitespace-separated list of domains which should be resolved using the DNS servers on
530 this link. Each item in the list should be a domain name, optionally prefixed with a tilde
531 (<literal>~</literal>). The domains with the prefix are called "routing-only domains". The
532 domains without the prefix are called "search domains" and are first used as search suffixes for
533 extending single-label hostnames (hostnames containing no dots) to become fully qualified
534 domain names (FQDNs). If a single-label hostname is resolved on this interface, each of the
535 specified search domains are appended to it in turn, converting it into a fully qualified domain
536 name, until one of them may be successfully resolved.</para>
537
538 <para>Both "search" and "routing-only" domains are used for routing of DNS queries: look-ups for hostnames
539 ending in those domains (hence also single label names, if any "search domains" are listed), are routed to
540 the DNS servers configured for this interface. The domain routing logic is particularly useful on
541 multi-homed hosts with DNS servers serving particular private DNS zones on each interface.</para>
542
543 <para>The "routing-only" domain <literal>~.</literal> (the tilde indicating definition of a routing domain,
544 the dot referring to the DNS root domain which is the implied suffix of all valid DNS names) has special
545 effect. It causes all DNS traffic which does not match another configured domain routing entry to be routed
546 to DNS servers specified for this interface. This setting is useful to prefer a certain set of DNS servers
547 if a link on which they are connected is available.</para>
548
549 <para>This setting is read by
550 <citerefentry><refentrytitle>systemd-resolved.service</refentrytitle><manvolnum>8</manvolnum></citerefentry>.
551 "Search domains" correspond to the <varname>domain</varname> and <varname>search</varname> entries in
552 <citerefentry project='man-pages'><refentrytitle>resolv.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
553 Domain name routing has no equivalent in the traditional glibc API, which has no concept of domain
554 name servers limited to a specific link.</para>
555 </listitem>
556 </varlistentry>
557 <varlistentry>
558 <term><varname>DNSDefaultRoute=</varname></term>
559 <listitem>
560 <para>Takes a boolean argument. If true, this link's configured DNS servers are used for resolving domain
561 names that do not match any link's configured <varname>Domains=</varname> setting. If false, this link's
562 configured DNS servers are never used for such domains, and are exclusively used for resolving names that
563 match at least one of the domains configured on this link. If not specified defaults to an automatic mode:
564 queries not matching any link's configured domains will be routed to this link if it has no routing-only
565 domains configured.</para>
566 </listitem>
567 </varlistentry>
568 <varlistentry>
569 <term><varname>NTP=</varname></term>
570 <listitem>
571 <para>An NTP server address. This option may be specified more than once. This setting is read by
572 <citerefentry><refentrytitle>systemd-timesyncd.service</refentrytitle><manvolnum>8</manvolnum></citerefentry>.</para>
573 </listitem>
574 </varlistentry>
575 <varlistentry>
576 <term><varname>IPForward=</varname></term>
577 <listitem><para>Configures IP packet forwarding for the
578 system. If enabled, incoming packets on any network
579 interface will be forwarded to any other interfaces
580 according to the routing table. Takes a boolean,
581 or the values <literal>ipv4</literal> or
582 <literal>ipv6</literal>, which only enable IP packet
583 forwarding for the specified address family. This controls
584 the <filename>net.ipv4.ip_forward</filename> and
585 <filename>net.ipv6.conf.all.forwarding</filename> sysctl
586 options of the network interface (see <ulink
587 url="https://www.kernel.org/doc/Documentation/networking/ip-sysctl.txt">ip-sysctl.txt</ulink>
588 for details about sysctl options). Defaults to
589 <literal>no</literal>.</para>
590
591 <para>Note: this setting controls a global kernel option,
592 and does so one way only: if a network that has this setting
593 enabled is set up the global setting is turned on. However,
594 it is never turned off again, even after all networks with
595 this setting enabled are shut down again.</para>
596
597 <para>To allow IP packet forwarding only between specific
598 network interfaces use a firewall.</para>
599 </listitem>
600 </varlistentry>
601 <varlistentry>
602 <term><varname>IPMasquerade=</varname></term>
603 <listitem><para>Configures IP masquerading for the network
604 interface. If enabled, packets forwarded from the network
605 interface will be appear as coming from the local host.
606 Takes a boolean argument. Implies
607 <varname>IPForward=ipv4</varname>. Defaults to
608 <literal>no</literal>.</para></listitem>
609 </varlistentry>
610 <varlistentry>
611 <term><varname>IPv6PrivacyExtensions=</varname></term>
612 <listitem><para>Configures use of stateless temporary
613 addresses that change over time (see <ulink
614 url="https://tools.ietf.org/html/rfc4941">RFC 4941</ulink>,
615 Privacy Extensions for Stateless Address Autoconfiguration
616 in IPv6). Takes a boolean or the special values
617 <literal>prefer-public</literal> and
618 <literal>kernel</literal>. When true, enables the privacy
619 extensions and prefers temporary addresses over public
620 addresses. When <literal>prefer-public</literal>, enables the
621 privacy extensions, but prefers public addresses over
622 temporary addresses. When false, the privacy extensions
623 remain disabled. When <literal>kernel</literal>, the kernel's
624 default setting will be left in place. Defaults to
625 <literal>no</literal>.</para></listitem>
626 </varlistentry>
627 <varlistentry>
628 <term><varname>IPv6AcceptRA=</varname></term>
629 <listitem><para>Takes a boolean. Controls IPv6 Router Advertisement (RA) reception support for the
630 interface. If true, RAs are accepted; if false, RAs are ignored. When RAs are accepted, they may
631 trigger the start of the DHCPv6 client if the relevant flags are set in the RA data, or if no
632 routers are found on the link. The default is to disable RA reception for bridge devices or when IP
633 forwarding is enabled, and to enable it otherwise. Cannot be enabled on bond devices and when link
634 local addressing is disabled.</para>
635
636 <para>Further settings for the IPv6 RA support may be configured in the
637 <literal>[IPv6AcceptRA]</literal> section, see below.</para>
638
639 <para>Also see <ulink
640 url="https://www.kernel.org/doc/Documentation/networking/ip-sysctl.txt">ip-sysctl.txt</ulink> in the kernel
641 documentation regarding <literal>accept_ra</literal>, but note that systemd's setting of
642 <constant>1</constant> (i.e. true) corresponds to kernel's setting of <constant>2</constant>.</para>
643
644 <para>Note that kernel's implementation of the IPv6 RA protocol is always disabled,
645 regardless of this setting. If this option is enabled, a userspace implementation of the IPv6
646 RA protocol is used, and the kernel's own implementation remains disabled, since
647 <command>systemd-networkd</command> needs to know all details supplied in the advertisements,
648 and these are not available from the kernel if the kernel's own implementation is used.</para>
649 </listitem>
650 </varlistentry>
651 <varlistentry>
652 <term><varname>IPv6DuplicateAddressDetection=</varname></term>
653 <listitem><para>Configures the amount of IPv6 Duplicate
654 Address Detection (DAD) probes to send. When unset, the kernel's default will be used.
655 </para></listitem>
656 </varlistentry>
657 <varlistentry>
658 <term><varname>IPv6HopLimit=</varname></term>
659 <listitem><para>Configures IPv6 Hop Limit. For each router that
660 forwards the packet, the hop limit is decremented by 1. When the
661 hop limit field reaches zero, the packet is discarded.
662 When unset, the kernel's default will be used.
663 </para></listitem>
664 </varlistentry>
665 <varlistentry>
666 <term><varname>IPv4ProxyARP=</varname></term>
667 <listitem><para>Takes a boolean. Configures proxy ARP for IPv4. Proxy ARP is the technique in which one host,
668 usually a router, answers ARP requests intended for another machine. By "faking" its identity,
669 the router accepts responsibility for routing packets to the "real" destination. (see <ulink
670 url="https://tools.ietf.org/html/rfc1027">RFC 1027</ulink>.
671 When unset, the kernel's default will be used.
672 </para></listitem>
673 </varlistentry>
674 <varlistentry>
675 <term><varname>IPv6ProxyNDP=</varname></term>
676 <listitem><para>Takes a boolean. Configures proxy NDP for IPv6. Proxy NDP (Neighbor Discovery
677 Protocol) is a technique for IPv6 to allow routing of addresses to a different
678 destination when peers expect them to be present on a certain physical link.
679 In this case a router answers Neighbour Advertisement messages intended for
680 another machine by offering its own MAC address as destination.
681 Unlike proxy ARP for IPv4, it is not enabled globally, but will only send Neighbour
682 Advertisement messages for addresses in the IPv6 neighbor proxy table,
683 which can also be shown by <command>ip -6 neighbour show proxy</command>.
684 systemd-networkd will control the per-interface `proxy_ndp` switch for each configured
685 interface depending on this option.
686 When unset, the kernel's default will be used.
687 </para></listitem>
688 </varlistentry>
689 <varlistentry>
690 <term><varname>IPv6ProxyNDPAddress=</varname></term>
691 <listitem><para>An IPv6 address, for which Neighbour Advertisement messages will be
692 proxied. This option may be specified more than once. systemd-networkd will add the
693 <option>IPv6ProxyNDPAddress=</option> entries to the kernel's IPv6 neighbor proxy table.
694 This option implies <option>IPv6ProxyNDP=yes</option> but has no effect if
695 <option>IPv6ProxyNDP</option> has been set to false. When unset, the kernel's default will be used.
696 </para></listitem>
697 </varlistentry>
698 <varlistentry>
699 <term><varname>IPv6PrefixDelegation=</varname></term>
700 <listitem><para>Whether to enable or disable Router Advertisement sending on a link.
701 Allowed values are <literal>static</literal> which distributes prefixes as defined in
702 the <literal>[IPv6PrefixDelegation]</literal> and any <literal>[IPv6Prefix]</literal>
703 sections, <literal>dhcpv6</literal> which requests prefixes using a DHCPv6 client
704 configured for another link and any values configured in the
705 <literal>[IPv6PrefixDelegation]</literal> section while ignoring all static prefix
706 configuration sections, <literal>yes</literal> which uses both static configuration
707 and DHCPv6, and <literal>false</literal> which turns off IPv6 prefix delegation
708 altogether. Defaults to <literal>false</literal>. See the
709 <literal>[IPv6PrefixDelegation]</literal> and the <literal>[IPv6Prefix]</literal>
710 sections for more configuration options.
711 </para></listitem>
712 </varlistentry>
713 <varlistentry>
714 <term><varname>IPv6MTUBytes=</varname></term>
715 <listitem><para>Configures IPv6 maximum transmission unit (MTU).
716 An integer greater than or equal to 1280 bytes. When unset, the kernel's default will be used.
717 </para></listitem>
718 </varlistentry>
719 <varlistentry>
720 <term><varname>Bridge=</varname></term>
721 <listitem>
722 <para>The name of the bridge to add the link to. See
723 <citerefentry><refentrytitle>systemd.netdev</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
724 </para>
725 </listitem>
726 </varlistentry>
727 <varlistentry>
728 <term><varname>Bond=</varname></term>
729 <listitem>
730 <para>The name of the bond to add the link to. See
731 <citerefentry><refentrytitle>systemd.netdev</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
732 </para>
733 </listitem>
734 </varlistentry>
735 <varlistentry>
736 <term><varname>VRF=</varname></term>
737 <listitem>
738 <para>The name of the VRF to add the link to. See
739 <citerefentry><refentrytitle>systemd.netdev</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
740 </para>
741 </listitem>
742 </varlistentry>
743 <varlistentry>
744 <term><varname>VLAN=</varname></term>
745 <listitem>
746 <para>The name of a VLAN to create on the link. See
747 <citerefentry><refentrytitle>systemd.netdev</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
748 This option may be specified more than once.</para>
749 </listitem>
750 </varlistentry>
751 <varlistentry>
752 <term><varname>IPVLAN=</varname></term>
753 <listitem>
754 <para>The name of a IPVLAN to create on the link. See
755 <citerefentry><refentrytitle>systemd.netdev</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
756 This option may be specified more than once.</para>
757 </listitem>
758 </varlistentry>
759 <varlistentry>
760 <term><varname>MACVLAN=</varname></term>
761 <listitem>
762 <para>The name of a MACVLAN to create on the link. See
763 <citerefentry><refentrytitle>systemd.netdev</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
764 This option may be specified more than once.</para>
765 </listitem>
766 </varlistentry>
767 <varlistentry>
768 <term><varname>VXLAN=</varname></term>
769 <listitem>
770 <para>The name of a VXLAN to create on the link. See
771 <citerefentry><refentrytitle>systemd.netdev</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
772 This option may be specified more than once.</para>
773 </listitem>
774 </varlistentry>
775 <varlistentry>
776 <term><varname>Tunnel=</varname></term>
777 <listitem>
778 <para>The name of a Tunnel to create on the link. See
779 <citerefentry><refentrytitle>systemd.netdev</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
780 This option may be specified more than once.</para>
781 </listitem>
782 </varlistentry>
783 <varlistentry>
784 <term><varname>MACsec=</varname></term>
785 <listitem>
786 <para>The name of a MACsec device to create on the link. See
787 <citerefentry><refentrytitle>systemd.netdev</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
788 This option may be specified more than once.</para>
789 </listitem>
790 </varlistentry>
791 <varlistentry>
792 <term><varname>ActiveSlave=</varname></term>
793 <listitem>
794 <para>Takes a boolean. Specifies the new active slave. The <literal>ActiveSlave=</literal>
795 option is only valid for following modes:
796 <literal>active-backup</literal>,
797 <literal>balance-alb</literal> and
798 <literal>balance-tlb</literal>. Defaults to false.
799 </para>
800 </listitem>
801 </varlistentry>
802 <varlistentry>
803 <term><varname>PrimarySlave=</varname></term>
804 <listitem>
805 <para>Takes a boolean. Specifies which slave is the primary device. The specified
806 device will always be the active slave while it is available. Only when the
807 primary is off-line will alternate devices be used. This is useful when
808 one slave is preferred over another, e.g. when one slave has higher throughput
809 than another. The <literal>PrimarySlave=</literal> option is only valid for
810 following modes:
811 <literal>active-backup</literal>,
812 <literal>balance-alb</literal> and
813 <literal>balance-tlb</literal>. Defaults to false.
814 </para>
815 </listitem>
816 </varlistentry>
817 <varlistentry>
818 <term><varname>ConfigureWithoutCarrier=</varname></term>
819 <listitem>
820 <para>Takes a boolean. Allows networkd to configure a specific link even if it has no carrier.
821 Defaults to false.
822 </para>
823 </listitem>
824 </varlistentry>
825 <varlistentry>
826 <term><varname>IgnoreCarrierLoss=</varname></term>
827 <listitem>
828 <para>A boolean. Allows networkd to retain both the static and dynamic configuration of the
829 interface even if its carrier is lost. Defaults to false.
830 </para>
831 </listitem>
832 </varlistentry>
833 <varlistentry>
834 <term><varname>Xfrm=</varname></term>
835 <listitem>
836 <para>The name of the xfrm to create on the link. See
837 <citerefentry><refentrytitle>systemd.netdev</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
838 This option may be specified more than once.</para>
839 </listitem>
840 </varlistentry>
841 <varlistentry>
842 <term><varname>KeepConfiguration=</varname></term>
843 <listitem>
844 <para>Takes a boolean or one of <literal>static</literal>, <literal>dhcp-on-stop</literal>,
845 <literal>dhcp</literal>. When <literal>static</literal>, <command>systemd-networkd</command>
846 will not drop static addresses and routes on starting up process. When set to
847 <literal>dhcp-on-stop</literal>, <command>systemd-networkd</command> will not drop addresses
848 and routes on stopping the daemon. When <literal>dhcp</literal>,
849 the addresses and routes provided by a DHCP server will never be dropped even if the DHCP
850 lease expires. This is contrary to the DHCP specification, but may be the best choice if,
851 e.g., the root filesystem relies on this connection. The setting <literal>dhcp</literal>
852 implies <literal>dhcp-on-stop</literal>, and <literal>yes</literal> implies
853 <literal>dhcp</literal> and <literal>static</literal>. Defaults to <literal>no</literal>.
854 </para>
855 </listitem>
856 </varlistentry>
857
858 </variablelist>
859
860 </refsect1>
861
862 <refsect1>
863 <title>[Address] Section Options</title>
864
865 <para>An <literal>[Address]</literal> section accepts the
866 following keys. Specify several <literal>[Address]</literal>
867 sections to configure several addresses.</para>
868
869 <variablelist class='network-directives'>
870 <varlistentry>
871 <term><varname>Address=</varname></term>
872 <listitem>
873 <para>As in the <literal>[Network]</literal> section. This key is mandatory. Each
874 <literal>[Address]</literal> section can contain one <varname>Address=</varname> setting.</para>
875 </listitem>
876 </varlistentry>
877 <varlistentry>
878 <term><varname>Peer=</varname></term>
879 <listitem>
880 <para>The peer address in a point-to-point connection.
881 Accepts the same format as the <varname>Address=</varname>
882 key.</para>
883 </listitem>
884 </varlistentry>
885 <varlistentry>
886 <term><varname>Broadcast=</varname></term>
887 <listitem>
888 <para>The broadcast address, which must be in the format
889 described in
890 <citerefentry project='man-pages'><refentrytitle>inet_pton</refentrytitle><manvolnum>3</manvolnum></citerefentry>.
891 This key only applies to IPv4 addresses. If it is not
892 given, it is derived from the <varname>Address=</varname>
893 key.</para>
894 </listitem>
895 </varlistentry>
896 <varlistentry>
897 <term><varname>Label=</varname></term>
898 <listitem>
899 <para>An address label.</para>
900 </listitem>
901 </varlistentry>
902 <varlistentry>
903 <term><varname>PreferredLifetime=</varname></term>
904 <listitem>
905 <para>Allows the default "preferred lifetime" of the address to be overridden.
906 Only three settings are accepted: <literal>forever</literal> or <literal>infinity</literal>
907 which is the default and means that the address never expires, and <literal>0</literal> which means
908 that the address is considered immediately "expired" and will not be used,
909 unless explicitly requested. A setting of PreferredLifetime=0 is useful for
910 addresses which are added to be used only by a specific application,
911 which is then configured to use them explicitly.</para>
912 </listitem>
913 </varlistentry>
914 <varlistentry>
915 <term><varname>Scope=</varname></term>
916 <listitem>
917 <para>The scope of the address, which can be <literal>global</literal>,
918 <literal>link</literal> or <literal>host</literal> or an unsigned integer ranges 0 to 255.
919 Defaults to <literal>global</literal>.</para>
920 </listitem>
921 </varlistentry>
922 <varlistentry>
923 <term><varname>HomeAddress=</varname></term>
924 <listitem>
925 <para>Takes a boolean. Designates this address the "home address" as defined in
926 <ulink url="https://tools.ietf.org/html/rfc6275">RFC 6275</ulink>.
927 Supported only on IPv6. Defaults to false.</para>
928 </listitem>
929 </varlistentry>
930 <varlistentry>
931 <term><varname>DuplicateAddressDetection=</varname></term>
932 <listitem>
933 <para>Takes one of <literal>ipv4</literal>, <literal>ipv6</literal>,
934 <literal>both</literal>, <literal>none</literal>. When <literal>ipv4</literal>,
935 performs IPv4 Duplicate Address Detection. See
936 <ulink url="https://tools.ietf.org/html/rfc5227">RFC 5224</ulink>.
937 When <literal>ipv6</literal>, performs IPv6 Duplicate Address Detection. See
938 <ulink url="https://tools.ietf.org/html/rfc4862">RFC 4862</ulink>.
939 Defaults to <literal>ipv6</literal>.</para>
940 </listitem>
941 </varlistentry>
942 <varlistentry>
943 <term><varname>ManageTemporaryAddress=</varname></term>
944 <listitem>
945 <para>Takes a boolean. If true the kernel manage temporary addresses created
946 from this one as template on behalf of Privacy Extensions
947 <ulink url="https://tools.ietf.org/html/rfc3041">RFC 3041</ulink>. For this to become
948 active, the use_tempaddr sysctl setting has to be set to a value greater than zero.
949 The given address needs to have a prefix length of 64. This flag allows using privacy
950 extensions in a manually configured network, just like if stateless auto-configuration
951 was active. Defaults to false. </para>
952 </listitem>
953 </varlistentry>
954 <varlistentry>
955 <term><varname>AddPrefixRoute=</varname></term>
956 <listitem>
957 <para>Takes a boolean. When true, the prefix route for the address is automatically added.
958 Defaults to true.</para>
959 </listitem>
960 </varlistentry>
961 <varlistentry>
962 <term><varname>AutoJoin=</varname></term>
963 <listitem>
964 <para>Takes a boolean. Joining multicast group on ethernet level via
965 <command>ip maddr</command> command would not work if we have an Ethernet switch that does
966 IGMP snooping since the switch would not replicate multicast packets on ports that did not
967 have IGMP reports for the multicast addresses. Linux vxlan interfaces created via
968 <command>ip link add vxlan</command> or networkd's netdev kind vxlan have the group option
969 that enables then to do the required join. By extending ip address command with option
970 <literal>autojoin</literal> we can get similar functionality for openvswitch (OVS) vxlan
971 interfaces as well as other tunneling mechanisms that need to receive multicast traffic.
972 Defaults to <literal>no</literal>.</para>
973 </listitem>
974 </varlistentry>
975 </variablelist>
976 </refsect1>
977
978 <refsect1>
979 <title>[Neighbor] Section Options</title>
980 <para>A <literal>[Neighbor]</literal> section accepts the
981 following keys. The neighbor section adds a permanent, static
982 entry to the neighbor table (IPv6) or ARP table (IPv4) for
983 the given hardware address on the links matched for the network.
984 Specify several <literal>[Neighbor]</literal> sections to configure
985 several static neighbors.</para>
986
987 <variablelist class='network-directives'>
988 <varlistentry>
989 <term><varname>Address=</varname></term>
990 <listitem>
991 <para>The IP address of the neighbor.</para>
992 </listitem>
993 </varlistentry>
994 <varlistentry>
995 <term><varname>LinkLayerAddress=</varname></term>
996 <listitem>
997 <para>The link layer address (MAC address or IP address) of the neighbor.</para>
998 </listitem>
999 </varlistentry>
1000 </variablelist>
1001 </refsect1>
1002
1003 <refsect1>
1004 <title>[IPv6AddressLabel] Section Options</title>
1005
1006 <para>An <literal>[IPv6AddressLabel]</literal> section accepts the
1007 following keys. Specify several <literal>[IPv6AddressLabel]</literal>
1008 sections to configure several address labels. IPv6 address labels are
1009 used for address selection. See <ulink url="https://tools.ietf.org/html/rfc3484">RFC 3484</ulink>.
1010 Precedence is managed by userspace, and only the label itself is stored in the kernel</para>
1011
1012 <variablelist class='network-directives'>
1013 <varlistentry>
1014 <term><varname>Label=</varname></term>
1015 <listitem>
1016 <para> The label for the prefix (an unsigned integer) ranges 0 to 4294967294.
1017 0xffffffff is reserved. This key is mandatory.</para>
1018 </listitem>
1019 </varlistentry>
1020 <varlistentry>
1021 <term><varname>Prefix=</varname></term>
1022 <listitem>
1023 <para>IPv6 prefix is an address with a prefix length, separated by a slash <literal>/</literal> character.
1024 This key is mandatory. </para>
1025 </listitem>
1026 </varlistentry>
1027 </variablelist>
1028 </refsect1>
1029
1030 <refsect1>
1031 <title>[RoutingPolicyRule] Section Options</title>
1032
1033 <para>An <literal>[RoutingPolicyRule]</literal> section accepts the
1034 following keys. Specify several <literal>[RoutingPolicyRule]</literal>
1035 sections to configure several rules.</para>
1036
1037 <variablelist class='network-directives'>
1038 <varlistentry>
1039 <term><varname>TypeOfService=</varname></term>
1040 <listitem>
1041 <para>Specifies the type of service to match a number between 0 to 255.</para>
1042 </listitem>
1043 </varlistentry>
1044 <varlistentry>
1045 <term><varname>From=</varname></term>
1046 <listitem>
1047 <para>Specifies the source address prefix to match. Possibly followed by a slash and the prefix length.</para>
1048 </listitem>
1049 </varlistentry>
1050 <varlistentry>
1051 <term><varname>To=</varname></term>
1052 <listitem>
1053 <para>Specifies the destination address prefix to match. Possibly followed by a slash and the prefix length.</para>
1054 </listitem>
1055 </varlistentry>
1056 <varlistentry>
1057 <term><varname>FirewallMark=</varname></term>
1058 <listitem>
1059 <para>Specifies the iptables firewall mark value to match (a number between 1 and 4294967295).</para>
1060 </listitem>
1061 </varlistentry>
1062 <varlistentry>
1063 <term><varname>Table=</varname></term>
1064 <listitem>
1065 <para>Specifies the routing table identifier to lookup if the rule selector matches. Takes
1066 one of <literal>default</literal>, <literal>main</literal>, and <literal>local</literal>,
1067 or a number between 1 and 4294967295. Defaults to <literal>main</literal>.</para>
1068 </listitem>
1069 </varlistentry>
1070 <varlistentry>
1071 <term><varname>Priority=</varname></term>
1072 <listitem>
1073 <para>Specifies the priority of this rule. <varname>Priority=</varname> is an unsigned
1074 integer. Higher number means lower priority, and rules get processed in order of increasing number.</para>
1075 </listitem>
1076 </varlistentry>
1077 <varlistentry>
1078 <term><varname>IncomingInterface=</varname></term>
1079 <listitem>
1080 <para>Specifies incoming device to match. If the interface is loopback, the rule only matches packets originating from this host.</para>
1081 </listitem>
1082 </varlistentry>
1083 <varlistentry>
1084 <term><varname>OutgoingInterface=</varname></term>
1085 <listitem>
1086 <para>Specifies the outgoing device to match. The outgoing interface is only available for packets originating from local sockets that are bound to a device.</para>
1087 </listitem>
1088 </varlistentry>
1089 <varlistentry>
1090 <term><varname>SourcePort=</varname></term>
1091 <listitem>
1092 <para>Specifies the source IP port or IP port range match in forwarding information base (FIB) rules.
1093 A port range is specified by the lower and upper port separated by a dash. Defaults to unset.</para>
1094 </listitem>
1095 </varlistentry>
1096 <varlistentry>
1097 <term><varname>DestinationPort=</varname></term>
1098 <listitem>
1099 <para>Specifies the destination IP port or IP port range match in forwarding information base (FIB) rules.
1100 A port range is specified by the lower and upper port separated by a dash. Defaults to unset.</para>
1101 </listitem>
1102 </varlistentry>
1103 <varlistentry>
1104 <term><varname>IPProtocol=</varname></term>
1105 <listitem>
1106 <para>Specifies the IP protocol to match in forwarding information base (FIB) rules. Takes IP protocol name such as <literal>tcp</literal>,
1107 <literal>udp</literal> or <literal>sctp</literal>, or IP protocol number such as <literal>6</literal> for <literal>tcp</literal> or
1108 <literal>17</literal> for <literal>udp</literal>.
1109 Defaults to unset.</para>
1110 </listitem>
1111 </varlistentry>
1112 <varlistentry>
1113 <term><varname>InvertRule=</varname></term>
1114 <listitem>
1115 <para>A boolean. Specifies whether the rule is to be inverted. Defaults to false.</para>
1116 </listitem>
1117 </varlistentry>
1118 <varlistentry>
1119 <term><varname>Family=</varname></term>
1120 <listitem>
1121 <para>Takes a special value <literal>ipv4</literal>, <literal>ipv6</literal>, or
1122 <literal>both</literal>. By default, the address family is determined by the address
1123 specified in <varname>To=</varname> or <varname>From=</varname>. If neither
1124 <varname>To=</varname> nor <varname>From=</varname> are specified, then defaults to
1125 <literal>ipv4</literal>.</para>
1126 </listitem>
1127 </varlistentry>
1128 <varlistentry>
1129 <term><varname>User=</varname></term>
1130 <listitem>
1131 <para>Takes a username, a user ID, or a range of user IDs separated by a dash. Defaults to
1132 unset.</para>
1133 </listitem>
1134 </varlistentry>
1135 <varlistentry>
1136 <term><varname>SuppressPrefixLength=</varname></term>
1137 <listitem>
1138 <para>Takes a number <replaceable>N</replaceable> in the range 0-128 and rejects routing
1139 decisions that have a prefix length of <replaceable>N</replaceable> or less. Defaults to
1140 unset.</para>
1141 </listitem>
1142 </varlistentry>
1143 </variablelist>
1144 </refsect1>
1145
1146 <refsect1>
1147 <title>[NextHop] Section Options</title>
1148 <para>The <literal>[NextHop]</literal> section accepts the
1149 following keys. Specify several <literal>[NextHop]</literal>
1150 sections to configure several nexthop. Nexthop is used to manipulate entries in the kernel's nexthop
1151 tables.</para>
1152
1153 <variablelist class='network-directives'>
1154 <varlistentry>
1155 <term><varname>Gateway=</varname></term>
1156 <listitem>
1157 <para>As in the <literal>[Network]</literal> section. This is mandatory.</para>
1158 </listitem>
1159 </varlistentry>
1160 <varlistentry>
1161 <term><varname>Id=</varname></term>
1162 <listitem>
1163 <para>The id of the nexthop (an unsigned integer). If unspecified or '0' then automatically chosen by kernel.</para>
1164 </listitem>
1165 </varlistentry>
1166 </variablelist>
1167 </refsect1>
1168
1169 <refsect1>
1170 <title>[Route] Section Options</title>
1171 <para>The <literal>[Route]</literal> section accepts the
1172 following keys. Specify several <literal>[Route]</literal>
1173 sections to configure several routes.</para>
1174
1175 <variablelist class='network-directives'>
1176 <varlistentry>
1177 <term><varname>Gateway=</varname></term>
1178 <listitem>
1179 <para>Takes the gateway address or special value <literal>_dhcp</literal>. If
1180 <literal>_dhcp</literal>, then the gateway address provided by DHCP (or in the IPv6 case,
1181 provided by IPv6 RA) is used.</para>
1182 </listitem>
1183 </varlistentry>
1184 <varlistentry>
1185 <term><varname>GatewayOnLink=</varname></term>
1186 <listitem>
1187 <para>Takes a boolean. If set to true, the kernel does not have
1188 to check if the gateway is reachable directly by the current machine (i.e., the kernel does
1189 not need to check if the gateway is attached to the local network), so that we can insert the
1190 route in the kernel table without it being complained about. Defaults to <literal>no</literal>.
1191 </para>
1192 </listitem>
1193 </varlistentry>
1194 <varlistentry>
1195 <term><varname>Destination=</varname></term>
1196 <listitem>
1197 <para>The destination prefix of the route. Possibly
1198 followed by a slash and the prefix length. If omitted, a
1199 full-length host route is assumed.</para>
1200 </listitem>
1201 </varlistentry>
1202 <varlistentry>
1203 <term><varname>Source=</varname></term>
1204 <listitem>
1205 <para>The source prefix of the route. Possibly followed by
1206 a slash and the prefix length. If omitted, a full-length
1207 host route is assumed.</para>
1208 </listitem>
1209 </varlistentry>
1210 <varlistentry>
1211 <term><varname>Metric=</varname></term>
1212 <listitem>
1213 <para>The metric of the route (an unsigned integer).</para>
1214 </listitem>
1215 </varlistentry>
1216 <varlistentry>
1217 <term><varname>IPv6Preference=</varname></term>
1218 <listitem>
1219 <para>Specifies the route preference as defined in <ulink
1220 url="https://tools.ietf.org/html/rfc4191">RFC4191</ulink> for Router Discovery messages.
1221 Which can be one of <literal>low</literal> the route has a lowest priority,
1222 <literal>medium</literal> the route has a default priority or
1223 <literal>high</literal> the route has a highest priority.</para>
1224 </listitem>
1225 </varlistentry>
1226 <varlistentry>
1227 <term><varname>Scope=</varname></term>
1228 <listitem>
1229 <para>The scope of the route, which can be <literal>global</literal>, <literal>site</literal>,
1230 <literal>link</literal>, <literal>host</literal>, or <literal>nowhere</literal>. For IPv4 route,
1231 defaults to <literal>host</literal> if <varname>Type=</varname> is <literal>local</literal>
1232 or <literal>nat</literal>, and <literal>link</literal> if <varname>Type=</varname> is
1233 <literal>broadcast</literal>, <literal>multicast</literal>, or <literal>anycast</literal>.
1234 In other cases, defaults to <literal>global</literal>.</para>
1235 </listitem>
1236 </varlistentry>
1237 <varlistentry>
1238 <term><varname>PreferredSource=</varname></term>
1239 <listitem>
1240 <para>The preferred source address of the route. The address
1241 must be in the format described in
1242 <citerefentry project='man-pages'><refentrytitle>inet_pton</refentrytitle><manvolnum>3</manvolnum></citerefentry>.</para>
1243 </listitem>
1244 </varlistentry>
1245 <varlistentry>
1246 <term><varname>Table=</varname></term>
1247 <listitem>
1248 <para>The table identifier for the route. Takes <literal>default</literal>,
1249 <literal>main</literal>, <literal>local</literal> or a number between 1 and 4294967295.
1250 The table can be retrieved using <command>ip route show table <replaceable>num</replaceable></command>.
1251 If unset and <varname>Type=</varname> is <literal>local</literal>, <literal>broadcast</literal>,
1252 <literal>anycast</literal>, or <literal>nat</literal>, then <literal>local</literal> is used.
1253 In other cases, defaults to <literal>main</literal>.
1254 </para>
1255 </listitem>
1256 </varlistentry>
1257 <varlistentry>
1258 <term><varname>Protocol=</varname></term>
1259 <listitem>
1260 <para>The protocol identifier for the route. Takes a number between 0 and 255 or the special values
1261 <literal>kernel</literal>, <literal>boot</literal>, <literal>static</literal>,
1262 <literal>ra</literal> and <literal>dhcp</literal>. Defaults to <literal>static</literal>.
1263 </para>
1264 </listitem>
1265 </varlistentry>
1266 <varlistentry>
1267 <term><varname>Type=</varname></term>
1268 <listitem>
1269 <para>Specifies the type for the route. Takes one of <literal>unicast</literal>,
1270 <literal>local</literal>, <literal>broadcast</literal>, <literal>anycast</literal>,
1271 <literal>multicast</literal>, <literal>blackhole</literal>, <literal>unreachable</literal>,
1272 <literal>prohibit</literal>, <literal>throw</literal>, <literal>nat</literal>, and
1273 <literal>xresolve</literal>. If <literal>unicast</literal>, a regular route is defined, i.e. a
1274 route indicating the path to take to a destination network address. If <literal>blackhole</literal>, packets
1275 to the defined route are discarded silently. If <literal>unreachable</literal>, packets to the defined route
1276 are discarded and the ICMP message "Host Unreachable" is generated. If <literal>prohibit</literal>, packets
1277 to the defined route are discarded and the ICMP message "Communication Administratively Prohibited" is
1278 generated. If <literal>throw</literal>, route lookup in the current routing table will fail and the route
1279 selection process will return to Routing Policy Database (RPDB). Defaults to <literal>unicast</literal>.
1280 </para>
1281 </listitem>
1282 </varlistentry>
1283 <varlistentry>
1284 <term><varname>InitialCongestionWindow=</varname></term>
1285 <listitem>
1286 <para>The TCP initial congestion window is used during the start of a TCP connection. During the start of a TCP
1287 session, when a client requests a resource, the server's initial congestion window determines how many data bytes
1288 will be sent during the initial burst of data. Takes a size in bytes between 1 and 4294967295 (2^32 - 1). The usual
1289 suffixes K, M, G are supported and are understood to the base of 1024. When unset, the kernel's default will be used.
1290 </para>
1291 </listitem>
1292 </varlistentry>
1293 <varlistentry>
1294 <term><varname>InitialAdvertisedReceiveWindow=</varname></term>
1295 <listitem>
1296 <para>The TCP initial advertised receive window is the amount of receive data (in bytes) that can initially be buffered at one time
1297 on a connection. The sending host can send only that amount of data before waiting for an acknowledgment and window update
1298 from the receiving host. Takes a size in bytes between 1 and 4294967295 (2^32 - 1). The usual suffixes K, M, G are supported
1299 and are understood to the base of 1024. When unset, the kernel's default will be used.
1300 </para>
1301 </listitem>
1302 </varlistentry>
1303 <varlistentry>
1304 <term><varname>QuickAck=</varname></term>
1305 <listitem>
1306 <para>Takes a boolean. When true enables TCP quick ack mode for the route. When unset, the kernel's default will be used.
1307 </para>
1308 </listitem>
1309 </varlistentry>
1310 <varlistentry>
1311 <term><varname>FastOpenNoCookie=</varname></term>
1312 <listitem>
1313 <para>Takes a boolean. When true enables TCP fastopen without a cookie on a per-route basis.
1314 When unset, the kernel's default will be used.
1315 </para>
1316 </listitem>
1317 </varlistentry>
1318 <varlistentry>
1319 <term><varname>TTLPropagate=</varname></term>
1320 <listitem>
1321 <para>Takes a boolean. When true enables TTL propagation at Label Switched Path (LSP) egress.
1322 When unset, the kernel's default will be used.
1323 </para>
1324 </listitem>
1325 </varlistentry>
1326 <varlistentry>
1327 <term><varname>MTUBytes=</varname></term>
1328 <listitem>
1329 <para>The maximum transmission unit in bytes to set for the
1330 route. The usual suffixes K, M, G, are supported and are
1331 understood to the base of 1024.</para>
1332 <para>Note that if IPv6 is enabled on the interface, and the MTU is chosen
1333 below 1280 (the minimum MTU for IPv6) it will automatically be increased to this value.</para>
1334 </listitem>
1335 </varlistentry>
1336 <varlistentry>
1337 <term><varname>IPServiceType=</varname></term>
1338 <listitem>
1339 <para>Takes string; <literal>CS6</literal> or <literal>CS4</literal>. Used to set IP
1340 service type to CS6 (network control) or CS4 (Realtime). Defaults to CS6.</para>
1341 </listitem>
1342 </varlistentry>
1343 <varlistentry>
1344 <term><varname>MultiPathRoute=<replaceable>address</replaceable>[@<replaceable>name</replaceable>] [<replaceable>weight</replaceable>]</varname></term>
1345 <listitem>
1346 <para>Configures multipath route. Multipath routing is the technique of using multiple
1347 alternative paths through a network. Takes gateway address. Optionally, takes a network
1348 interface name or index separated with <literal>@</literal>, and a weight in 1..256 for
1349 this multipath route separated with whitespace. This setting can be specified multiple
1350 times. If an empty string is assigned, then the all previous assignments are cleared.</para>
1351 </listitem>
1352 </varlistentry>
1353 </variablelist>
1354 </refsect1>
1355
1356 <refsect1>
1357 <title>[DHCPv4] Section Options</title>
1358 <para>The <literal>[DHCPv4]</literal> section configures the
1359 DHCPv4 client, if it is enabled with the
1360 <varname>DHCP=</varname> setting described above:</para>
1361
1362 <variablelist class='network-directives'>
1363 <varlistentry>
1364 <term><varname>UseDNS=</varname></term>
1365 <listitem>
1366 <para>When true (the default), the DNS servers received
1367 from the DHCP server will be used and take precedence over
1368 any statically configured ones.</para>
1369
1370 <para>This corresponds to the <option>nameserver</option>
1371 option in <citerefentry
1372 project='man-pages'><refentrytitle>resolv.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>.</para>
1373 </listitem>
1374 </varlistentry>
1375 <varlistentry>
1376 <term><varname>RoutesToDNS=</varname></term>
1377 <listitem>
1378 <para>When true, the routes to the DNS servers received from the DHCP server will be
1379 configured. When <varname>UseDNS=</varname> is disabled, this setting is ignored.
1380 Defaults to false.</para>
1381 </listitem>
1382 </varlistentry>
1383 <varlistentry>
1384 <term><varname>UseNTP=</varname></term>
1385 <listitem>
1386 <para>When true (the default), the NTP servers received
1387 from the DHCP server will be used by systemd-timesyncd
1388 and take precedence over any statically configured ones.</para>
1389 </listitem>
1390 </varlistentry>
1391 <varlistentry>
1392 <term><varname>UseSIP=</varname></term>
1393 <listitem>
1394 <para>When true (the default), the SIP servers received
1395 from the DHCP server will be saved at the state files and can be
1396 read via <function>sd_network_link_get_sip_servers()</function> function.</para>
1397 </listitem>
1398 </varlistentry>
1399
1400 <varlistentry>
1401 <term><varname>UseMTU=</varname></term>
1402 <listitem>
1403 <para>When true, the interface maximum transmission unit
1404 from the DHCP server will be used on the current link.
1405 If <varname>MTUBytes=</varname> is set, then this setting is ignored.
1406 Defaults to false.</para>
1407 </listitem>
1408 </varlistentry>
1409 <varlistentry>
1410 <term><varname>Anonymize=</varname></term>
1411 <listitem>
1412 <para>Takes a boolean. When true, the options sent to the DHCP server will
1413 follow the <ulink url="https://tools.ietf.org/html/rfc7844">RFC 7844</ulink>
1414 (Anonymity Profiles for DHCP Clients) to minimize disclosure of identifying information.
1415 Defaults to false.</para>
1416
1417 <para>This option should only be set to true when
1418 <varname>MACAddressPolicy=</varname> is set to <literal>random</literal>
1419 (see <citerefentry
1420 project='man-pages'><refentrytitle>systemd.link</refentrytitle><manvolnum>5</manvolnum></citerefentry>).</para>
1421
1422 <para>Note that this configuration will overwrite others.
1423 In concrete, the following variables will be ignored:
1424 <varname>SendHostname=</varname>, <varname>ClientIdentifier=</varname>,
1425 <varname>UseRoutes=</varname>, <varname>UseMTU=</varname>,
1426 <varname>VendorClassIdentifier=</varname>, <varname>UseTimezone=</varname>.</para>
1427
1428 <para>With this option enabled DHCP requests will mimic those generated by Microsoft Windows, in
1429 order to reduce the ability to fingerprint and recognize installations. This means DHCP request
1430 sizes will grow and lease data will be more comprehensive than normally, though most of the
1431 requested data is not actually used.</para>
1432 </listitem>
1433 </varlistentry>
1434 <varlistentry>
1435 <term><varname>SendHostname=</varname></term>
1436 <listitem>
1437 <para>When true (the default), the machine's hostname will be sent to the DHCP server.
1438 Note that the machine's hostname must consist only of 7-bit ASCII lower-case characters and
1439 no spaces or dots, and be formatted as a valid DNS domain name. Otherwise, the hostname is not
1440 sent even if this is set to true.</para>
1441 </listitem>
1442 </varlistentry>
1443
1444 <varlistentry>
1445 <term><varname>MUDURL=</varname></term>
1446 <listitem>
1447 <para>When configured, the Manufacturer Usage Descriptions (MUD) URL will be sent to the
1448 DHCPv4 server. Takes an URL of length up to 255 characters. A superficial verification that
1449 the string is a valid URL will be performed. DHCPv4 clients are intended to have at most one
1450 MUD URL associated with them. See
1451 <ulink url="https://tools.ietf.org/html/rfc8520">RFC 8520</ulink>.</para>
1452 </listitem>
1453 </varlistentry>
1454
1455 <varlistentry>
1456 <term><varname>UseHostname=</varname></term>
1457 <listitem>
1458 <para>When true (the default), the hostname received from
1459 the DHCP server will be set as the transient hostname of the system.
1460 </para>
1461 </listitem>
1462 </varlistentry>
1463 <varlistentry>
1464 <term><varname>Hostname=</varname></term>
1465 <listitem>
1466 <para>Use this value for the hostname which is sent to the DHCP server, instead of machine's hostname.
1467 Note that the specified hostname must consist only of 7-bit ASCII lower-case characters and
1468 no spaces or dots, and be formatted as a valid DNS domain name.</para>
1469 </listitem>
1470 </varlistentry>
1471 <varlistentry>
1472 <term><varname>UseDomains=</varname></term>
1473 <listitem>
1474 <para>Takes a boolean, or the special value <literal>route</literal>. When true, the domain name
1475 received from the DHCP server will be used as DNS search domain over this link, similar to the effect of
1476 the <option>Domains=</option> setting. If set to <literal>route</literal>, the domain name received from
1477 the DHCP server will be used for routing DNS queries only, but not for searching, similar to the effect of
1478 the <option>Domains=</option> setting when the argument is prefixed with <literal>~</literal>. Defaults to
1479 false.</para>
1480
1481 <para>It is recommended to enable this option only on trusted networks, as setting this affects resolution
1482 of all hostnames, in particular of single-label names. It is generally safer to use the supplied domain
1483 only as routing domain, rather than as search domain, in order to not have it affect local resolution of
1484 single-label names.</para>
1485
1486 <para>When set to true, this setting corresponds to the <option>domain</option> option in <citerefentry
1487 project='man-pages'><refentrytitle>resolv.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>.</para>
1488 </listitem>
1489 </varlistentry>
1490 <varlistentry>
1491 <term><varname>UseRoutes=</varname></term>
1492 <listitem>
1493 <para>When true (the default), the static routes will be requested from the DHCP server and added to the
1494 routing table with a metric of 1024, and a scope of "global", "link" or "host", depending on the route's
1495 destination and gateway. If the destination is on the local host, e.g., 127.x.x.x, or the same as the
1496 link's own address, the scope will be set to "host". Otherwise if the gateway is null (a direct route), a
1497 "link" scope will be used. For anything else, scope defaults to "global".</para>
1498 </listitem>
1499 </varlistentry>
1500 <varlistentry>
1501 <term><varname>UseGateway=</varname></term>
1502 <listitem>
1503 <para>When true, the gateway will be requested from the DHCP server and added to the routing table with a
1504 metric of 1024, and a scope of "link". When unset, the value specified with <option>UseRoutes=</option>
1505 is used.</para>
1506 </listitem>
1507 </varlistentry>
1508 <varlistentry>
1509 <term><varname>UseTimezone=</varname></term>
1510
1511 <listitem><para>When true, the timezone received from the
1512 DHCP server will be set as timezone of the local
1513 system. Defaults to <literal>no</literal>.</para></listitem>
1514 </varlistentry>
1515
1516 <varlistentry>
1517 <term><varname>ClientIdentifier=</varname></term>
1518 <listitem>
1519 <para>The DHCPv4 client identifier to use. Takes one of <literal>mac</literal>, <literal>duid</literal> or <literal>duid-only</literal>.
1520 If set to <literal>mac</literal>, the MAC address of the link is used.
1521 If set to <literal>duid</literal>, an RFC4361-compliant Client ID, which is the combination of IAID and DUID (see below), is used.
1522 If set to <literal>duid-only</literal>, only DUID is used, this may not be RFC compliant, but some setups may require to use this.
1523 Defaults to <literal>duid</literal>.</para>
1524 </listitem>
1525 </varlistentry>
1526
1527 <varlistentry>
1528 <term><varname>VendorClassIdentifier=</varname></term>
1529 <listitem>
1530 <para>The vendor class identifier used to identify vendor
1531 type and configuration.</para>
1532 </listitem>
1533 </varlistentry>
1534
1535 <varlistentry>
1536 <term><varname>UserClass=</varname></term>
1537 <listitem>
1538 <para>A DHCPv4 client can use UserClass option to identify the type or category of user or applications
1539 it represents. The information contained in this option is a string that represents the user class of which
1540 the client is a member. Each class sets an identifying string of information to be used by the DHCP
1541 service to classify clients. Takes a whitespace-separated list of strings.</para>
1542 </listitem>
1543 </varlistentry>
1544
1545 <varlistentry>
1546 <term><varname>MaxAttempts=</varname></term>
1547 <listitem>
1548 <para>Specifies how many times the DHCPv4 client configuration should be attempted. Takes a
1549 number or <literal>infinity</literal>. Defaults to <literal>infinity</literal>.
1550 Note that the time between retries is increased exponentially, so the network will not be
1551 overloaded even if this number is high.</para>
1552 </listitem>
1553 </varlistentry>
1554
1555 <varlistentry>
1556 <term><varname>DUIDType=</varname></term>
1557 <listitem>
1558 <para>Override the global <varname>DUIDType</varname> setting for this network. See
1559 <citerefentry><refentrytitle>networkd.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>
1560 for a description of possible values.</para>
1561 </listitem>
1562 </varlistentry>
1563
1564 <varlistentry>
1565 <term><varname>DUIDRawData=</varname></term>
1566 <listitem>
1567 <para>Override the global <varname>DUIDRawData</varname> setting for this network. See
1568 <citerefentry><refentrytitle>networkd.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>
1569 for a description of possible values.</para>
1570 </listitem>
1571 </varlistentry>
1572
1573 <varlistentry>
1574 <term><varname>IAID=</varname></term>
1575 <listitem>
1576 <para>The DHCP Identity Association Identifier (IAID) for the interface, a 32-bit unsigned integer.</para>
1577 </listitem>
1578 </varlistentry>
1579
1580 <varlistentry>
1581 <term><varname>RequestBroadcast=</varname></term>
1582 <listitem>
1583 <para>Request the server to use broadcast messages before
1584 the IP address has been configured. This is necessary for
1585 devices that cannot receive RAW packets, or that cannot
1586 receive packets at all before an IP address has been
1587 configured. On the other hand, this must not be enabled on
1588 networks where broadcasts are filtered out.</para>
1589 </listitem>
1590 </varlistentry>
1591
1592 <varlistentry>
1593 <term><varname>RouteMetric=</varname></term>
1594 <listitem>
1595 <para>Set the routing metric for routes specified by the
1596 DHCP server.</para>
1597 </listitem>
1598 </varlistentry>
1599
1600 <varlistentry>
1601 <term><varname>RouteTable=<replaceable>num</replaceable></varname></term>
1602 <listitem>
1603 <para>The table identifier for DHCP routes (a number between 1 and 4294967295, or 0 to unset).
1604 The table can be retrieved using <command>ip route show table <replaceable>num</replaceable></command>.
1605 </para>
1606 <para>When used in combination with <varname>VRF=</varname> the
1607 VRF's routing table is used unless this parameter is specified.
1608 </para>
1609 </listitem>
1610 </varlistentry>
1611
1612 <varlistentry>
1613 <term><varname>RouteMTUBytes=</varname></term>
1614 <listitem>
1615 <para>Specifies the MTU for the DHCP routes. Please see the [Route] section for further details.</para>
1616 </listitem>
1617 </varlistentry>
1618
1619 <varlistentry>
1620 <term><varname>ListenPort=</varname></term>
1621 <listitem>
1622 <para>Allow setting custom port for the DHCP client to listen on.</para>
1623 </listitem>
1624 </varlistentry>
1625
1626 <varlistentry>
1627 <term><varname>SendRelease=</varname></term>
1628 <listitem>
1629 <para>When true, the DHCPv4 client sends a DHCP release packet when it stops.
1630 Defaults to true.</para>
1631 </listitem>
1632 </varlistentry>
1633
1634 <varlistentry>
1635 <term><varname>SendDecline=</varname></term>
1636 <listitem>
1637 <para>A boolean. When <literal>true</literal>, DHCPv4 clients receives IP address from DHCP server.
1638 After new IP is received, DHCPv4 performs IPv4 Duplicate Address Detection. If duplicate use of IP is detected
1639 the DHCPv4 client rejects the IP by sending a DHCPDECLINE packet DHCP clients try to obtain an IP address again.
1640 See <ulink url="https://tools.ietf.org/html/rfc5227">RFC 5224</ulink>.
1641 Defaults to <literal>unset</literal>.</para>
1642 </listitem>
1643 </varlistentry>
1644
1645 <varlistentry>
1646 <term><varname>BlackList=</varname></term>
1647 <listitem>
1648 <para>A whitespace-separated list of IPv4 addresses. DHCP offers from servers in the list are rejected.</para>
1649 </listitem>
1650 </varlistentry>
1651
1652 <varlistentry>
1653 <term><varname>RequestOptions=</varname></term>
1654 <listitem>
1655 <para>When configured, allows to set arbitrary request options in the DHCPv4 request options list and will be
1656 sent to the DHCPV4 server. A whitespace-separated list of integers in the range 1..254. Defaults to unset.</para>
1657 </listitem>
1658 </varlistentry>
1659
1660 <varlistentry>
1661 <term><varname>SendOption=</varname></term>
1662 <listitem>
1663 <para>Send an arbitrary raw option in the DHCPv4 request. Takes a DHCP option number, data type
1664 and data separated with a colon
1665 (<literal><replaceable>option</replaceable>:<replaceable>type</replaceable>:<replaceable>value</replaceable></literal>).
1666 The option number must be an integer in the range 1..254. The type takes one of <literal>uint8</literal>,
1667 <literal>uint16</literal>, <literal>uint32</literal>, <literal>ipv4address</literal>, or
1668 <literal>string</literal>. Special characters in the data string may be escaped using
1669 <ulink url="https://en.wikipedia.org/wiki/Escape_sequences_in_C#Table_of_escape_sequences">C-style
1670 escapes</ulink>. This setting can be specified multiple times. If an empty string is specified,
1671 then all options specified earlier are cleared. Defaults to unset.</para>
1672 </listitem>
1673 </varlistentry>
1674
1675 <varlistentry>
1676 <term><varname>SendVendorOption=</varname></term>
1677 <listitem>
1678 <para>Send an arbitrary vendor option in the DHCPv4 request. Takes a DHCP option number, data type
1679 and data separated with a colon
1680 (<literal><replaceable>option</replaceable>:<replaceable>type</replaceable>:<replaceable>value</replaceable></literal>).
1681 The option number must be an integer in the range 1..254. The type takes one of <literal>uint8</literal>,
1682 <literal>uint16</literal>, <literal>uint32</literal>, <literal>ipv4address</literal>, or
1683 <literal>string</literal>. Special characters in the data string may be escaped using
1684 <ulink url="https://en.wikipedia.org/wiki/Escape_sequences_in_C#Table_of_escape_sequences">C-style
1685 escapes</ulink>. This setting can be specified multiple times. If an empty string is specified,
1686 then all options specified earlier are cleared. Defaults to unset.</para>
1687 </listitem>
1688 </varlistentry>
1689 </variablelist>
1690 </refsect1>
1691
1692 <refsect1>
1693 <title>[DHCPv6] Section Options</title>
1694 <para>The <literal>[DHCPv6]</literal> section configures the DHCPv6 client, if it is enabled with the
1695 <varname>DHCP=</varname> setting described above, or invoked by the IPv6 Router Advertisement:</para>
1696
1697 <variablelist class='network-directives'>
1698 <varlistentry>
1699 <term><varname>UseDNS=</varname></term>
1700 <term><varname>UseNTP=</varname></term>
1701 <listitem>
1702 <para>As in the <literal>[DHCPv4]</literal> section.</para>
1703 </listitem>
1704 </varlistentry>
1705
1706 <varlistentry>
1707 <term><varname>RapidCommit=</varname></term>
1708 <listitem>
1709 <para>Takes a boolean. The DHCPv6 client can obtain configuration parameters from a DHCPv6 server through
1710 a rapid two-message exchange (solicit and reply). When the rapid commit option is enabled by both
1711 the DHCPv6 client and the DHCPv6 server, the two-message exchange is used, rather than the default
1712 four-method exchange (solicit, advertise, request, and reply). The two-message exchange provides
1713 faster client configuration and is beneficial in environments in which networks are under a heavy load.
1714 See <ulink url="https://tools.ietf.org/html/rfc3315#section-17.2.1">RFC 3315</ulink> for details.
1715 Defaults to true.</para>
1716 </listitem>
1717 </varlistentry>
1718
1719 <varlistentry>
1720 <term><varname>MUDURL=</varname></term>
1721 <listitem>
1722 <para>When configured, the Manufacturer Usage Descriptions (MUD) URL will be sent to the DHCPV6 server.
1723 Takes an URL of length up to 255 characters. A superficial verification that the string is a valid URL
1724 will be performed. DHCPv6 clients are intended to have at most one MUD URL associated with them. See
1725 <ulink url="https://tools.ietf.org/html/rfc8520">RFC 8520</ulink>.</para>
1726 </listitem>
1727 </varlistentry>
1728
1729 <varlistentry>
1730 <term><varname>RequestOptions=</varname></term>
1731 <listitem>
1732 <para>When configured, allows to set arbitrary request options in the DHCPv6 request options list and will
1733 sent to the DHCPV6 server. A whitespace-separated list of integers in the range 1..254. Defaults to unset.</para>
1734 </listitem>
1735 </varlistentry>
1736
1737 <varlistentry>
1738 <term><varname>ForceDHCPv6PDOtherInformation=</varname></term>
1739 <listitem>
1740 <para>Takes a boolean that enforces DHCPv6 stateful mode when the 'Other information' bit is set in
1741 Router Advertisement messages. By default setting only the 'O' bit in Router Advertisements
1742 makes DHCPv6 request network information in a stateless manner using a two-message Information
1743 Request and Information Reply message exchange.
1744 <ulink url="https://tools.ietf.org/html/rfc7084">RFC 7084</ulink>, requirement WPD-4, updates
1745 this behavior for a Customer Edge router so that stateful DHCPv6 Prefix Delegation is also
1746 requested when only the 'O' bit is set in Router Advertisements. This option enables such a CE
1747 behavior as it is impossible to automatically distinguish the intention of the 'O' bit otherwise.
1748 By default this option is set to 'false', enable it if no prefixes are delegated when the device
1749 should be acting as a CE router.</para>
1750 </listitem>
1751 </varlistentry>
1752
1753 <varlistentry>
1754 <term><varname>PrefixDelegationHint=</varname></term>
1755 <listitem>
1756 <para>Takes an IPv6 address with prefix length as <varname>Address=</varname> in
1757 the "[Network]" section. Specifies the DHCPv6 client for the requesting router to include
1758 a prefix-hint in the DHCPv6 solicitation. Prefix ranges 1..128. Defaults to unset.</para>
1759 </listitem>
1760 </varlistentry>
1761
1762 <varlistentry>
1763 <term><varname>WithoutRA=</varname></term>
1764 <listitem>
1765 <para>When true, DHCPv6 client starts without router advertisements's managed or other address configuration flag.
1766 Defaults to false.</para>
1767 </listitem>
1768 </varlistentry>
1769
1770 <varlistentry>
1771 <term><varname>SendOption=</varname></term>
1772 <listitem>
1773 <para>As in the <literal>[DHCPv4]</literal> section, however because DHCPv6 uses 16-bit fields to store
1774 option numbers, the option number is an integer in the range 1..65536.</para>
1775 </listitem>
1776 </varlistentry>
1777
1778 <varlistentry>
1779 <term><varname>UserClass=</varname></term>
1780 <listitem>
1781 <para>A DHCPv6 client can use User Class option to identify the type or category of user or applications
1782 it represents. The information contained in this option is a string that represents the user class of which
1783 the client is a member. Each class sets an identifying string of information to be used by the DHCP
1784 service to classify clients. Special characters in the data string may be escaped using
1785 <ulink url="https://en.wikipedia.org/wiki/Escape_sequences_in_C#Table_of_escape_sequences">C-style
1786 escapes</ulink>. This setting can be specified multiple times. If an empty string is specified,
1787 then all options specified earlier are cleared. Takes a whitespace-separated list of strings. Note that
1788 currently NUL bytes are not allowed.</para>
1789 </listitem>
1790 </varlistentry>
1791 </variablelist>
1792 </refsect1>
1793
1794 <refsect1>
1795 <title>[IPv6AcceptRA] Section Options</title>
1796 <para>The <literal>[IPv6AcceptRA]</literal> section configures the IPv6 Router Advertisement
1797 (RA) client, if it is enabled with the <varname>IPv6AcceptRA=</varname> setting described
1798 above:</para>
1799
1800 <variablelist class='network-directives'>
1801 <varlistentry>
1802 <term><varname>UseDNS=</varname></term>
1803 <listitem>
1804 <para>When true (the default), the DNS servers received in the Router Advertisement will be used and take
1805 precedence over any statically configured ones.</para>
1806
1807 <para>This corresponds to the <option>nameserver</option> option in <citerefentry
1808 project='man-pages'><refentrytitle>resolv.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>.</para>
1809 </listitem>
1810 </varlistentry>
1811
1812 <varlistentry>
1813 <term><varname>UseDomains=</varname></term>
1814 <listitem>
1815 <para>Takes a boolean, or the special value <literal>route</literal>. When true, the domain name
1816 received via IPv6 Router Advertisement (RA) will be used as DNS search domain over this link, similar to
1817 the effect of the <option>Domains=</option> setting. If set to <literal>route</literal>, the domain name
1818 received via IPv6 RA will be used for routing DNS queries only, but not for searching, similar to the
1819 effect of the <option>Domains=</option> setting when the argument is prefixed with
1820 <literal>~</literal>. Defaults to false.</para>
1821
1822 <para>It is recommended to enable this option only on trusted networks, as setting this affects resolution
1823 of all hostnames, in particular of single-label names. It is generally safer to use the supplied domain
1824 only as routing domain, rather than as search domain, in order to not have it affect local resolution of
1825 single-label names.</para>
1826
1827 <para>When set to true, this setting corresponds to the <option>domain</option> option in <citerefentry
1828 project='man-pages'><refentrytitle>resolv.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>.</para>
1829 </listitem>
1830 </varlistentry>
1831
1832 <varlistentry>
1833 <term><varname>RouteTable=<replaceable>num</replaceable></varname></term>
1834 <listitem>
1835 <para>The table identifier for the routes received in the Router Advertisement
1836 (a number between 1 and 4294967295, or 0 to unset).
1837 The table can be retrieved using <command>ip route show table <replaceable>num</replaceable></command>.
1838 </para>
1839 </listitem>
1840 </varlistentry>
1841
1842 <varlistentry>
1843 <term><varname>UseAutonomousPrefix=</varname></term>
1844 <listitem>
1845 <para>When true (the default), the autonomous prefix received in the Router Advertisement will be used and take
1846 precedence over any statically configured ones.</para>
1847 </listitem>
1848 </varlistentry>
1849
1850 <varlistentry>
1851 <term><varname>UseOnLinkPrefix=</varname></term>
1852 <listitem>
1853 <para>When true (the default), the onlink prefix received in the Router Advertisement will be used and take
1854 precedence over any statically configured ones.</para>
1855 </listitem>
1856 </varlistentry>
1857
1858 <varlistentry>
1859 <term><varname>BlackList=</varname></term>
1860 <listitem>
1861 <para>A whitespace-separated list of IPv6 prefixes. IPv6 prefixes supplied via router advertisements in the list are ignored.</para>
1862 </listitem>
1863 </varlistentry>
1864
1865 <varlistentry>
1866 <term><varname>DHCPv6Client=</varname></term>
1867 <listitem>
1868 <para>Takes a boolean, or the special value <literal>always</literal>. When true (the default), the DHCPv6 client will be started when the
1869 RA has the managed or other information flag. If set to <literal>always</literal>, the DHCPv6 client will be started even if there is no
1870 managed or other information flag in the RA.</para>
1871 </listitem>
1872 </varlistentry>
1873 </variablelist>
1874 </refsect1>
1875
1876 <refsect1>
1877 <title>[DHCPServer] Section Options</title>
1878 <para>The <literal>[DHCPServer]</literal> section contains
1879 settings for the DHCP server, if enabled via the
1880 <varname>DHCPServer=</varname> option described above:</para>
1881
1882 <variablelist class='network-directives'>
1883
1884 <varlistentry>
1885 <term><varname>PoolOffset=</varname></term>
1886 <term><varname>PoolSize=</varname></term>
1887
1888 <listitem><para>Configures the pool of addresses to hand out. The pool
1889 is a contiguous sequence of IP addresses in the subnet configured for
1890 the server address, which does not include the subnet nor the broadcast
1891 address. <varname>PoolOffset=</varname> takes the offset of the pool
1892 from the start of subnet, or zero to use the default value.
1893 <varname>PoolSize=</varname> takes the number of IP addresses in the
1894 pool or zero to use the default value. By default, the pool starts at
1895 the first address after the subnet address and takes up the rest of
1896 the subnet, excluding the broadcast address. If the pool includes
1897 the server address (the default), this is reserved and not handed
1898 out to clients.</para></listitem>
1899 </varlistentry>
1900
1901 <varlistentry>
1902 <term><varname>DefaultLeaseTimeSec=</varname></term>
1903 <term><varname>MaxLeaseTimeSec=</varname></term>
1904
1905 <listitem><para>Control the default and maximum DHCP lease
1906 time to pass to clients. These settings take time values in seconds or
1907 another common time unit, depending on the suffix. The default
1908 lease time is used for clients that did not ask for a specific
1909 lease time. If a client asks for a lease time longer than the
1910 maximum lease time, it is automatically shortened to the
1911 specified time. The default lease time defaults to 1h, the
1912 maximum lease time to 12h. Shorter lease times are beneficial
1913 if the configuration data in DHCP leases changes frequently
1914 and clients shall learn the new settings with shorter
1915 latencies. Longer lease times reduce the generated DHCP
1916 network traffic.</para></listitem>
1917 </varlistentry>
1918
1919 <varlistentry>
1920 <term><varname>EmitDNS=</varname></term>
1921 <term><varname>DNS=</varname></term>
1922
1923 <listitem><para>Takes a boolean. Configures whether the DHCP leases handed out
1924 to clients shall contain DNS server information. Defaults to <literal>yes</literal>.
1925 The DNS servers to pass to clients may be configured with the
1926 <varname>DNS=</varname> option, which takes a list of IPv4
1927 addresses. If the <varname>EmitDNS=</varname> option is
1928 enabled but no servers configured, the servers are
1929 automatically propagated from an "uplink" interface that has
1930 appropriate servers set. The "uplink" interface is determined
1931 by the default route of the system with the highest
1932 priority. Note that this information is acquired at the time
1933 the lease is handed out, and does not take uplink interfaces
1934 into account that acquire DNS or NTP server information at a
1935 later point. DNS server propagation does not take
1936 <filename>/etc/resolv.conf</filename> into account. Also, note
1937 that the leases are not refreshed if the uplink network
1938 configuration changes. To ensure clients regularly acquire the
1939 most current uplink DNS server information, it is thus
1940 advisable to shorten the DHCP lease time via
1941 <varname>MaxLeaseTimeSec=</varname> described
1942 above.</para></listitem>
1943 </varlistentry>
1944
1945 <varlistentry>
1946 <term><varname>EmitNTP=</varname></term>
1947 <term><varname>NTP=</varname></term>
1948
1949 <listitem><para>Similar to the <varname>EmitDNS=</varname> and
1950 <varname>DNS=</varname> settings described above, these
1951 settings configure whether and what NTP server information
1952 shall be emitted as part of the DHCP lease. The same syntax,
1953 propagation semantics and defaults apply as for
1954 <varname>EmitDNS=</varname> and
1955 <varname>DNS=</varname>.</para></listitem>
1956 </varlistentry>
1957
1958 <varlistentry>
1959 <term><varname>EmitSIP=</varname></term>
1960 <term><varname>SIP=</varname></term>
1961
1962 <listitem><para>Similar to the <varname>EmitDNS=</varname> and
1963 <varname>DNS=</varname> settings described above, these
1964 settings configure whether and what SIP server information
1965 shall be emitted as part of the DHCP lease. The same syntax,
1966 propagation semantics and defaults apply as for
1967 <varname>EmitDNS=</varname> and
1968 <varname>DNS=</varname>.</para></listitem>
1969 </varlistentry>
1970
1971 <varlistentry>
1972 <term><varname>POP3Servers=</varname></term>
1973
1974 <listitem><para>Similar to the <varname>DNS=</varname> setting described above, this setting
1975 configures whether and what POP3 server information shall be emitted as part of the DHCP lease. The
1976 same syntax, propagation semantics and defaults apply as for
1977 <varname>DNS=</varname>.</para></listitem>
1978 </varlistentry>
1979
1980 <varlistentry>
1981 <term><varname>SMTPServers=</varname></term>
1982
1983 <listitem><para>Similar to the <varname>DNS=</varname> setting described above, this
1984 setting configures whether and what SMTP server information shall be emitted as part of
1985 the DHCP lease. The same syntax, propagation semantics and defaults apply as for
1986 <varname>DNS=</varname>.</para></listitem>
1987 </varlistentry>
1988
1989 <varlistentry>
1990 <term><varname>LPRServers=</varname></term>
1991
1992 <listitem><para>Similar to the <varname>DNS=</varname> setting described above, this
1993 setting configures whether and what LPR (line printer) server information shall be emitted
1994 as part of the DHCP lease. The same syntax, propagation semantics and defaults apply as for
1995 <varname>DNS=</varname>.</para></listitem>
1996 </varlistentry>
1997
1998 <varlistentry>
1999 <term><varname>EmitRouter=</varname></term>
2000
2001 <listitem><para>Similar to the <varname>EmitDNS=</varname>
2002 setting described above, this setting configures whether the
2003 DHCP lease should contain the router option. The same syntax,
2004 propagation semantics and defaults apply as for
2005 <varname>EmitDNS=</varname>.</para></listitem>
2006 </varlistentry>
2007
2008 <varlistentry>
2009 <term><varname>EmitTimezone=</varname></term>
2010 <term><varname>Timezone=</varname></term>
2011
2012 <listitem><para>Takes a boolean. Configures whether the DHCP leases handed out
2013 to clients shall contain timezone information. Defaults to <literal>yes</literal>. The
2014 <varname>Timezone=</varname> setting takes a timezone string
2015 (such as <literal>Europe/Berlin</literal> or
2016 <literal>UTC</literal>) to pass to clients. If no explicit
2017 timezone is set, the system timezone of the local host is
2018 propagated, as determined by the
2019 <filename>/etc/localtime</filename> symlink.</para></listitem>
2020 </varlistentry>
2021
2022 <varlistentry>
2023 <term><varname>SendOption=</varname></term>
2024 <listitem>
2025 <para>Send a raw option with value via DHCPv4 server. Takes a DHCP option number, data type
2026 and data (<literal><replaceable>option</replaceable>:<replaceable>type</replaceable>:<replaceable>value</replaceable></literal>).
2027 The option number is an integer in the range 1..254. The type takes one of <literal>uint8</literal>,
2028 <literal>uint16</literal>, <literal>uint32</literal>, <literal>ipv4address</literal>, <literal>ipv6address</literal>, or
2029 <literal>string</literal>. Special characters in the data string may be escaped using
2030 <ulink url="https://en.wikipedia.org/wiki/Escape_sequences_in_C#Table_of_escape_sequences">C-style
2031 escapes</ulink>. This setting can be specified multiple times. If an empty string is specified,
2032 then all options specified earlier are cleared. Defaults to unset.</para>
2033 </listitem>
2034 </varlistentry>
2035
2036 <varlistentry>
2037 <term><varname>SendVendorOption=</varname></term>
2038 <listitem>
2039 <para>Send a vendor option with value via DHCPv4 server. Takes a DHCP option number, data type
2040 and data (<literal><replaceable>option</replaceable>:<replaceable>type</replaceable>:<replaceable>value</replaceable></literal>).
2041 The option number is an integer in the range 1..254. The type takes one of <literal>uint8</literal>,
2042 <literal>uint16</literal>, <literal>uint32</literal>, <literal>ipv4address</literal>, or
2043 <literal>string</literal>. Special characters in the data string may be escaped using
2044 <ulink url="https://en.wikipedia.org/wiki/Escape_sequences_in_C#Table_of_escape_sequences">C-style
2045 escapes</ulink>. This setting can be specified multiple times. If an empty string is specified,
2046 then all options specified earlier are cleared. Defaults to unset.</para>
2047 </listitem>
2048 </varlistentry>
2049
2050 </variablelist>
2051 </refsect1>
2052
2053 <refsect1>
2054 <title>[IPv6PrefixDelegation] Section Options</title>
2055 <para>The <literal>[IPv6PrefixDelegation]</literal> section contains
2056 settings for sending IPv6 Router Advertisements and whether to act as
2057 a router, if enabled via the <varname>IPv6PrefixDelegation=</varname>
2058 option described above. IPv6 network prefixes are defined with one or
2059 more <literal>[IPv6Prefix]</literal> sections.</para>
2060
2061 <variablelist class='network-directives'>
2062
2063 <varlistentry>
2064 <term><varname>Managed=</varname></term>
2065 <term><varname>OtherInformation=</varname></term>
2066
2067 <listitem><para>Takes a boolean. Controls whether a DHCPv6 server is used to acquire IPv6
2068 addresses on the network link when <varname>Managed=</varname>
2069 is set to <literal>true</literal> or if only additional network
2070 information can be obtained via DHCPv6 for the network link when
2071 <varname>OtherInformation=</varname> is set to
2072 <literal>true</literal>. Both settings default to
2073 <literal>false</literal>, which means that a DHCPv6 server is not being
2074 used.</para></listitem>
2075 </varlistentry>
2076
2077 <varlistentry>
2078 <term><varname>RouterLifetimeSec=</varname></term>
2079
2080 <listitem><para>Takes a timespan. Configures the IPv6 router lifetime in seconds. If set,
2081 this host also announces itself in Router Advertisements as an IPv6
2082 router for the network link. When unset, the host is not acting as a router.</para>
2083 </listitem>
2084 </varlistentry>
2085
2086 <varlistentry>
2087 <term><varname>RouterPreference=</varname></term>
2088
2089 <listitem><para>Configures IPv6 router preference if
2090 <varname>RouterLifetimeSec=</varname> is non-zero. Valid values are
2091 <literal>high</literal>, <literal>medium</literal> and
2092 <literal>low</literal>, with <literal>normal</literal> and
2093 <literal>default</literal> added as synonyms for
2094 <literal>medium</literal> just to make configuration easier. See
2095 <ulink url="https://tools.ietf.org/html/rfc4191">RFC 4191</ulink>
2096 for details. Defaults to <literal>medium</literal>.</para></listitem>
2097 </varlistentry>
2098
2099 <varlistentry>
2100 <term><varname>EmitDNS=</varname></term>
2101 <term><varname>DNS=</varname></term>
2102
2103 <listitem><para><varname>DNS=</varname> specifies a list of recursive DNS server IPv6 addresses
2104 that are distributed via Router Advertisement messages when <varname>EmitDNS=</varname> is
2105 true. <varname>DNS=</varname> also takes special value <literal>_link_local</literal>; in that
2106 case the IPv6 link local address is distributed. If <varname>DNS=</varname> is empty, DNS
2107 servers are read from the <literal>[Network]</literal> section. If the
2108 <literal>[Network]</literal> section does not contain any DNS servers either, DNS servers from
2109 the uplink with the highest priority default route are used. When <varname>EmitDNS=</varname>
2110 is false, no DNS server information is sent in Router Advertisement messages.
2111 <varname>EmitDNS=</varname> defaults to true.
2112 </para></listitem>
2113 </varlistentry>
2114
2115 <varlistentry>
2116 <term><varname>EmitDomains=</varname></term>
2117 <term><varname>Domains=</varname></term>
2118
2119 <listitem><para>A list of DNS search domains distributed via Router
2120 Advertisement messages when <varname>EmitDomains=</varname> is true. If
2121 <varname>Domains=</varname> is empty, DNS search domains are read from the
2122 <literal>[Network]</literal> section. If the <literal>[Network]</literal>
2123 section does not contain any DNS search domains either, DNS search
2124 domains from the uplink with the highest priority default route are
2125 used. When <varname>EmitDomains=</varname> is false, no DNS search domain
2126 information is sent in Router Advertisement messages.
2127 <varname>EmitDomains=</varname> defaults to true.
2128 </para></listitem>
2129 </varlistentry>
2130
2131 <varlistentry>
2132 <term><varname>DNSLifetimeSec=</varname></term>
2133
2134 <listitem><para>Lifetime in seconds for the DNS server addresses listed
2135 in <varname>DNS=</varname> and search domains listed in
2136 <varname>Domains=</varname>.</para></listitem>
2137 </varlistentry>
2138
2139 </variablelist>
2140 </refsect1>
2141
2142 <refsect1>
2143 <title>[IPv6Prefix] Section Options</title>
2144 <para>One or more <literal>[IPv6Prefix]</literal> sections contain the IPv6
2145 prefixes that are announced via Router Advertisements. See
2146 <ulink url="https://tools.ietf.org/html/rfc4861">RFC 4861</ulink>
2147 for further details.</para>
2148
2149 <variablelist class='network-directives'>
2150
2151 <varlistentry>
2152 <term><varname>AddressAutoconfiguration=</varname></term>
2153 <term><varname>OnLink=</varname></term>
2154
2155 <listitem><para>Takes a boolean to specify whether IPv6 addresses can be
2156 autoconfigured with this prefix and whether the prefix can be used for
2157 onlink determination. Both settings default to <literal>true</literal>
2158 in order to ease configuration.
2159 </para></listitem>
2160 </varlistentry>
2161
2162 <varlistentry>
2163 <term><varname>Prefix=</varname></term>
2164
2165 <listitem><para>The IPv6 prefix that is to be distributed to hosts.
2166 Similarly to configuring static IPv6 addresses, the setting is
2167 configured as an IPv6 prefix and its prefix length, separated by a
2168 <literal>/</literal> character. Use multiple
2169 <literal>[IPv6Prefix]</literal> sections to configure multiple IPv6
2170 prefixes since prefix lifetimes, address autoconfiguration and onlink
2171 status may differ from one prefix to another.</para></listitem>
2172 </varlistentry>
2173
2174 <varlistentry>
2175 <term><varname>PreferredLifetimeSec=</varname></term>
2176 <term><varname>ValidLifetimeSec=</varname></term>
2177
2178 <listitem><para>Preferred and valid lifetimes for the prefix measured in
2179 seconds. <varname>PreferredLifetimeSec=</varname> defaults to 604800
2180 seconds (one week) and <varname>ValidLifetimeSec=</varname> defaults
2181 to 2592000 seconds (30 days).</para></listitem>
2182 </varlistentry>
2183
2184 <varlistentry>
2185 <term><varname>Assign=</varname></term>
2186 <listitem><para>Takes a boolean. When true, adds an address from the prefix. Default to false.
2187 </para></listitem>
2188 </varlistentry>
2189 </variablelist>
2190 </refsect1>
2191
2192 <refsect1>
2193 <title>[IPv6RoutePrefix] Section Options</title>
2194 <para>One or more <literal>[IPv6RoutePrefix]</literal> sections contain the IPv6
2195 prefix routes that are announced via Router Advertisements. See
2196 <ulink url="https://tools.ietf.org/html/rfc4191">RFC 4191</ulink>
2197 for further details.</para>
2198
2199 <variablelist class='network-directives'>
2200
2201 <varlistentry>
2202 <term><varname>Route=</varname></term>
2203
2204 <listitem><para>The IPv6 route that is to be distributed to hosts.
2205 Similarly to configuring static IPv6 routes, the setting is
2206 configured as an IPv6 prefix routes and its prefix route length,
2207 separated by a<literal>/</literal> character. Use multiple
2208 <literal>[IPv6PrefixRoutes]</literal> sections to configure multiple IPv6
2209 prefix routes.</para></listitem>
2210 </varlistentry>
2211
2212 <varlistentry>
2213 <term><varname>LifetimeSec=</varname></term>
2214
2215 <listitem><para>Lifetime for the route prefix measured in
2216 seconds. <varname>LifetimeSec=</varname> defaults to 604800 seconds (one week).
2217 </para></listitem>
2218 </varlistentry>
2219
2220 </variablelist>
2221 </refsect1>
2222
2223 <refsect1>
2224 <title>[Bridge] Section Options</title>
2225 <para>The <literal>[Bridge]</literal> section accepts the
2226 following keys.</para>
2227 <variablelist class='network-directives'>
2228 <varlistentry>
2229 <term><varname>UnicastFlood=</varname></term>
2230 <listitem>
2231 <para>Takes a boolean. Controls whether the bridge should flood
2232 traffic for which an FDB entry is missing and the destination
2233 is unknown through this port. When unset, the kernel's default will be used.
2234 </para>
2235 </listitem>
2236 </varlistentry>
2237 <varlistentry>
2238 <term><varname>MulticastFlood=</varname></term>
2239 <listitem>
2240 <para>Takes a boolean. Controls whether the bridge should flood
2241 traffic for which an MDB entry is missing and the destination
2242 is unknown through this port. When unset, the kernel's default will be used.
2243 </para>
2244 </listitem>
2245 </varlistentry>
2246 <varlistentry>
2247 <term><varname>MulticastToUnicast=</varname></term>
2248 <listitem>
2249 <para>Takes a boolean. Multicast to unicast works on top of the multicast snooping feature of
2250 the bridge. Which means unicast copies are only delivered to hosts which are interested in it.
2251 When unset, the kernel's default will be used.
2252 </para>
2253 </listitem>
2254 </varlistentry>
2255 <varlistentry>
2256 <term><varname>NeighborSuppression=</varname></term>
2257 <listitem>
2258 <para>Takes a boolean. Configures whether ARP and ND neighbor suppression is enabled for
2259 this port. When unset, the kernel's default will be used.
2260 </para>
2261 </listitem>
2262 </varlistentry>
2263 <varlistentry>
2264 <term><varname>Learning=</varname></term>
2265 <listitem>
2266 <para>Takes a boolean. Configures whether MAC address learning is enabled for
2267 this port. When unset, the kernel's default will be used.
2268 </para>
2269 </listitem>
2270 </varlistentry>
2271 <varlistentry>
2272 <term><varname>HairPin=</varname></term>
2273 <listitem>
2274 <para>Takes a boolean. Configures whether traffic may be sent back
2275 out of the port on which it was received. When this flag is false, and the bridge
2276 will not forward traffic back out of the receiving port.
2277 When unset, the kernel's default will be used.</para>
2278 </listitem>
2279 </varlistentry>
2280 <varlistentry>
2281 <term><varname>UseBPDU=</varname></term>
2282 <listitem>
2283 <para>Takes a boolean. Configures whether STP Bridge Protocol Data Units will be
2284 processed by the bridge port. When unset, the kernel's default will be used.</para>
2285 </listitem>
2286 </varlistentry>
2287 <varlistentry>
2288 <term><varname>FastLeave=</varname></term>
2289 <listitem>
2290 <para>Takes a boolean. This flag allows the bridge to immediately stop multicast
2291 traffic on a port that receives an IGMP Leave message. It is only used with
2292 IGMP snooping if enabled on the bridge. When unset, the kernel's default will be used.</para>
2293 </listitem>
2294 </varlistentry>
2295 <varlistentry>
2296 <term><varname>AllowPortToBeRoot=</varname></term>
2297 <listitem>
2298 <para>Takes a boolean. Configures whether a given port is allowed to
2299 become a root port. Only used when STP is enabled on the bridge.
2300 When unset, the kernel's default will be used.</para>
2301 </listitem>
2302 </varlistentry>
2303 <varlistentry>
2304 <term><varname>ProxyARP=</varname></term>
2305 <listitem>
2306 <para>Takes a boolean. Configures whether proxy ARP to be enabled on this port.
2307 When unset, the kernel's default will be used.</para>
2308 </listitem>
2309 </varlistentry>
2310 <varlistentry>
2311 <term><varname>ProxyARPWiFi=</varname></term>
2312 <listitem>
2313 <para>Takes a boolean. Configures whether proxy ARP to be enabled on this port
2314 which meets extended requirements by IEEE 802.11 and Hotspot 2.0 specifications.
2315 When unset, the kernel's default will be used.</para>
2316 </listitem>
2317 </varlistentry>
2318 <varlistentry>
2319 <term><varname>MulticastRouter=</varname></term>
2320 <listitem>
2321 <para>Configures this port for having multicast routers attached. A port with a multicast
2322 router will receive all multicast traffic. Takes one of <literal>no</literal>
2323 to disable multicast routers on this port, <literal>query</literal> to let the system detect
2324 the presence of routers, <literal>permanent</literal> to permanently enable multicast traffic
2325 forwarding on this port, or <literal>temporary</literal> to enable multicast routers temporarily
2326 on this port, not depending on incoming queries. When unset, the kernel's default will be used.</para>
2327 </listitem>
2328 </varlistentry>
2329 <varlistentry>
2330 <term><varname>Cost=</varname></term>
2331 <listitem>
2332 <para>Sets the "cost" of sending packets of this interface.
2333 Each port in a bridge may have a different speed and the cost
2334 is used to decide which link to use. Faster interfaces
2335 should have lower costs. It is an integer value between 1 and
2336 65535.</para>
2337 </listitem>
2338 </varlistentry>
2339 <varlistentry>
2340 <term><varname>Priority=</varname></term>
2341 <listitem>
2342 <para>Sets the "priority" of sending packets on this interface.
2343 Each port in a bridge may have a different priority which is used
2344 to decide which link to use. Lower value means higher priority.
2345 It is an integer value between 0 to 63. Networkd does not set any
2346 default, meaning the kernel default value of 32 is used.</para>
2347 </listitem>
2348 </varlistentry>
2349 </variablelist>
2350 </refsect1>
2351 <refsect1>
2352 <title>[BridgeFDB] Section Options</title>
2353 <para>The <literal>[BridgeFDB]</literal> section manages the
2354 forwarding database table of a port and accepts the following
2355 keys. Specify several <literal>[BridgeFDB]</literal> sections to
2356 configure several static MAC table entries.</para>
2357
2358 <variablelist class='network-directives'>
2359 <varlistentry>
2360 <term><varname>MACAddress=</varname></term>
2361 <listitem>
2362 <para>As in the <literal>[Network]</literal> section. This
2363 key is mandatory.</para>
2364 </listitem>
2365 </varlistentry>
2366 <varlistentry>
2367 <term><varname>Destination=</varname></term>
2368 <listitem>
2369 <para>Takes an IP address of the destination VXLAN tunnel endpoint.</para>
2370 </listitem>
2371 </varlistentry>
2372 <varlistentry>
2373 <term><varname>VLANId=</varname></term>
2374 <listitem>
2375 <para>The VLAN ID for the new static MAC table entry. If
2376 omitted, no VLAN ID information is appended to the new static MAC
2377 table entry.</para>
2378 </listitem>
2379 </varlistentry>
2380 <varlistentry>
2381 <term><varname>VNI=</varname></term>
2382 <listitem>
2383 <para>The VXLAN Network Identifier (or VXLAN Segment ID) to use to connect to
2384 the remote VXLAN tunnel endpoint. Takes a number in the range 1-16777215.
2385 Defaults to unset.</para>
2386 </listitem>
2387 </varlistentry>
2388 <varlistentry>
2389 <term><varname>AssociatedWith=</varname></term>
2390 <listitem>
2391 <para>Specifies where the address is associated with. Takes one of <literal>use</literal>,
2392 <literal>self</literal>, <literal>master</literal> or <literal>router</literal>.
2393 <literal>use</literal> means the address is in use. User space can use this option to
2394 indicate to the kernel that the fdb entry is in use. <literal>self</literal> means
2395 the address is associated with the port drivers fdb. Usually hardware. <literal>master</literal>
2396 means the address is associated with master devices fdb. <literal>router</literal> means
2397 the destination address is associated with a router. Note that it's valid if the referenced
2398 device is a VXLAN type device and has route shortcircuit enabled. Defaults to <literal>self</literal>.</para>
2399 </listitem>
2400 </varlistentry>
2401 </variablelist>
2402 </refsect1>
2403
2404 <refsect1>
2405 <title>[LLDP] Section Options</title>
2406 <para>The <literal>[LLDP]</literal> section manages the Link Layer Discovery Protocol (LLDP) and accepts the
2407 following keys.</para>
2408 <variablelist class='network-directives'>
2409 <varlistentry>
2410 <term><varname>MUDURL=</varname></term>
2411 <listitem>
2412 <para>Controls support for Ethernet LLDP packet's Manufacturer Usage Description (MUD). MUD is an embedded software
2413 standard defined by the IETF that allows IoT Device makers to advertise device specifications, including the intended
2414 communication patterns for their device when it connects to the network. The network can then use this intent to author
2415 a context-specific access policy, so the device functions only within those parameters. Takes an URL of length up to 255
2416 characters. A superficial verification that the string is a valid URL
2417 will be performed. See
2418 <ulink url="https://tools.ietf.org/html/rfc8520">RFC 8520</ulink> for details. The MUD URL received
2419 from the LLDP packets will be saved at the state files and can be read via
2420 <function>sd_lldp_neighbor_get_mud_url()</function> function.</para>
2421 </listitem>
2422 </varlistentry>
2423 </variablelist>
2424 </refsect1>
2425
2426 <refsect1>
2427 <title>[CAN] Section Options</title>
2428 <para>The <literal>[CAN]</literal> section manages the Controller Area Network (CAN bus) and accepts the
2429 following keys.</para>
2430 <variablelist class='network-directives'>
2431 <varlistentry>
2432 <term><varname>BitRate=</varname></term>
2433 <listitem>
2434 <para>The bitrate of CAN device in bits per second. The usual SI prefixes (K, M) with the base of 1000 can
2435 be used here. Takes a number in the range 1..4294967295.</para>
2436 </listitem>
2437 </varlistentry>
2438 <varlistentry>
2439 <term><varname>SamplePoint=</varname></term>
2440 <listitem>
2441 <para>Optional sample point in percent with one decimal (e.g. <literal>75%</literal>,
2442 <literal>87.5%</literal>) or permille (e.g. <literal>875‰</literal>).</para>
2443 </listitem>
2444 </varlistentry>
2445 <varlistentry>
2446 <term><varname>DataBitRate=</varname></term>
2447 <term><varname>DataSamplePoint=</varname></term>
2448 <listitem>
2449 <para>The bitrate and sample point for the data phase, if CAN-FD is used. These settings are
2450 analogous to the <varname>BitRate=</varname> and <varname>SamplePoint=</varname> keys.</para>
2451 </listitem>
2452 </varlistentry>
2453 <varlistentry>
2454 <term><varname>FDMode=</varname></term>
2455 <listitem>
2456 <para>Takes a boolean. When <literal>yes</literal>, CAN-FD mode is enabled for the interface.
2457 Note, that a bitrate and optional sample point should also be set for the CAN-FD data phase using
2458 the <varname>DataBitRate=</varname> and <varname>DataSamplePoint=</varname> keys.</para>
2459 </listitem>
2460 </varlistentry>
2461 <varlistentry>
2462 <term><varname>FDNonISO=</varname></term>
2463 <listitem>
2464 <para>Takes a boolean. When <literal>yes</literal>, non-ISO CAN-FD mode is enabled for the
2465 interface. When unset, the kernel's default will be used.</para>
2466 </listitem>
2467 </varlistentry>
2468 <varlistentry>
2469 <term><varname>RestartSec=</varname></term>
2470 <listitem>
2471 <para>Automatic restart delay time. If set to a non-zero value, a restart of the CAN controller will be
2472 triggered automatically in case of a bus-off condition after the specified delay time. Subsecond delays can
2473 be specified using decimals (e.g. <literal>0.1s</literal>) or a <literal>ms</literal> or
2474 <literal>us</literal> postfix. Using <literal>infinity</literal> or <literal>0</literal> will turn the
2475 automatic restart off. By default automatic restart is disabled.</para>
2476 </listitem>
2477 </varlistentry>
2478 <varlistentry>
2479 <term><varname>Termination=</varname></term>
2480 <listitem>
2481 <para>Takes a boolean. When <literal>yes</literal>, the termination resistor will be selected for
2482 the bias network. When unset, the kernel's default will be used.</para>
2483 </listitem>
2484 </varlistentry>
2485 <varlistentry>
2486 <term><varname>TripleSampling=</varname></term>
2487 <listitem>
2488 <para>Takes a boolean. When <literal>yes</literal>, three samples (instead of one) are used to determine
2489 the value of a received bit by majority rule. When unset, the kernel's default will be used.</para>
2490 </listitem>
2491 </varlistentry>
2492 <varlistentry>
2493 <term><varname>ListenOnly=</varname></term>
2494 <listitem>
2495 <para>Takes a boolean. When <literal>yes</literal>, listen-only mode is enabled. When the
2496 interface is in listen-only mode, the interface neither transmit CAN frames nor send ACK
2497 bit. Listen-only mode is important to debug CAN networks without interfering with the
2498 communication or acknowledge the CAN frame. When unset, the kernel's default will be used.
2499 </para>
2500 </listitem>
2501 </varlistentry>
2502 </variablelist>
2503 </refsect1>
2504
2505 <refsect1>
2506 <title>[QDisc] Section Options</title>
2507 <para>The <literal>[QDisc]</literal> section manages the traffic control queueing discipline (qdisc).</para>
2508
2509 <variablelist class='network-directives'>
2510 <varlistentry>
2511 <term><varname>Parent=</varname></term>
2512 <listitem>
2513 <para>Specifies the parent Queueing Discipline (qdisc). Takes one of <literal>clsact</literal>
2514 or <literal>ingress</literal>. This is mandatory.</para>
2515 </listitem>
2516 </varlistentry>
2517
2518 <xi:include href="tc.xml" xpointer="qdisc-handle" />
2519 </variablelist>
2520 </refsect1>
2521
2522 <refsect1>
2523 <title>[NetworkEmulator] Section Options</title>
2524 <para>The <literal>[NetworkEmulator]</literal> section manages the queueing discipline (qdisc) of
2525 the network emulator. It can be used to configure the kernel packet scheduler and simulate packet
2526 delay and loss for UDP or TCP applications, or limit the bandwidth usage of a particular service to
2527 simulate internet connections.</para>
2528
2529 <variablelist class='network-directives'>
2530 <xi:include href="tc.xml" xpointer="qdisc-parent" />
2531 <xi:include href="tc.xml" xpointer="qdisc-handle" />
2532
2533 <varlistentry>
2534 <term><varname>DelaySec=</varname></term>
2535 <listitem>
2536 <para>Specifies the fixed amount of delay to be added to all packets going out of the
2537 interface. Defaults to unset.</para>
2538 </listitem>
2539 </varlistentry>
2540
2541 <varlistentry>
2542 <term><varname>DelayJitterSec=</varname></term>
2543 <listitem>
2544 <para>Specifies the chosen delay to be added to the packets outgoing to the network
2545 interface. Defaults to unset.</para>
2546 </listitem>
2547 </varlistentry>
2548
2549 <varlistentry>
2550 <term><varname>PacketLimit=</varname></term>
2551 <listitem>
2552 <para>Specifies the maximum number of packets the qdisc may hold queued at a time.
2553 An unsigned integer ranges 0 to 4294967294. Defaults to 1000.</para>
2554 </listitem>
2555 </varlistentry>
2556
2557 <varlistentry>
2558 <term><varname>LossRate=</varname></term>
2559 <listitem>
2560 <para>Specifies an independent loss probability to be added to the packets outgoing from the
2561 network interface. Takes a percentage value, suffixed with "%". Defaults to unset.</para>
2562 </listitem>
2563 </varlistentry>
2564
2565 <varlistentry>
2566 <term><varname>DuplicateRate=</varname></term>
2567 <listitem>
2568 <para>Specifies that the chosen percent of packets is duplicated before queuing them.
2569 Takes a percentage value, suffixed with "%". Defaults to unset.</para>
2570 </listitem>
2571 </varlistentry>
2572 </variablelist>
2573 </refsect1>
2574
2575 <refsect1>
2576 <title>[TokenBucketFilter] Section Options</title>
2577 <para>The <literal>[TokenBucketFilter]</literal> section manages the queueing discipline (qdisc) of
2578 token bucket filter (tbf).</para>
2579
2580 <variablelist class='network-directives'>
2581 <xi:include href="tc.xml" xpointer="qdisc-parent" />
2582 <xi:include href="tc.xml" xpointer="qdisc-handle" />
2583
2584 <varlistentry>
2585 <term><varname>LatencySec=</varname></term>
2586 <listitem>
2587 <para>Specifies the latency parameter, which specifies the maximum amount of time a
2588 packet can sit in the Token Bucket Filter (TBF). Defaults to unset.</para>
2589 </listitem>
2590 </varlistentry>
2591
2592 <varlistentry>
2593 <term><varname>LimitSize=</varname></term>
2594 <listitem>
2595 <para>Takes the number of bytes that can be queued waiting for tokens to become available.
2596 When the size is suffixed with K, M, or G, it is parsed as Kilobytes, Megabytes, or Gigabytes,
2597 respectively, to the base of 1000. Defaults to unset.</para>
2598 </listitem>
2599 </varlistentry>
2600
2601 <varlistentry>
2602 <term><varname>Burst=</varname></term>
2603 <listitem>
2604 <para>Specifies the size of the bucket. This is the maximum amount of bytes that tokens
2605 can be available for instantaneous transfer. When the size is suffixed with K, M, or G, it is
2606 parsed as Kilobytes, Megabytes, or Gigabytes, respectively, to the base of 1000. Defaults to
2607 unset.</para>
2608 </listitem>
2609 </varlistentry>
2610
2611 <varlistentry>
2612 <term><varname>Rate=</varname></term>
2613 <listitem>
2614 <para>Specifies the device specific bandwidth. When suffixed with K, M, or G, the specified
2615 bandwidth is parsed as Kilobits, Megabits, or Gigabits, respectively, to the base of 1000.
2616 Defaults to unset.</para>
2617 </listitem>
2618 </varlistentry>
2619
2620 <varlistentry>
2621 <term><varname>MPUBytes=</varname></term>
2622 <listitem>
2623 <para>The Minimum Packet Unit (MPU) determines the minimal token usage (specified in bytes)
2624 for a packet. When suffixed with K, M, or G, the specified size is parsed as Kilobytes,
2625 Megabytes, or Gigabytes, respectively, to the base of 1000. Defaults to zero.</para>
2626 </listitem>
2627 </varlistentry>
2628
2629 <varlistentry>
2630 <term><varname>PeakRate=</varname></term>
2631 <listitem>
2632 <para>Takes the maximum depletion rate of the bucket. When suffixed with K, M, or G, the
2633 specified size is parsed as Kilobits, Megabits, or Gigabits, respectively, to the base of
2634 1000. Defaults to unset.</para>
2635 </listitem>
2636 </varlistentry>
2637
2638 <varlistentry>
2639 <term><varname>MTUBytes=</varname></term>
2640 <listitem>
2641 <para>Specifies the size of the peakrate bucket. When suffixed with K, M, or G, the specified
2642 size is parsed as Kilobytes, Megabytes, or Gigabytes, respectively, to the base of 1000.
2643 Defaults to unset.</para>
2644 </listitem>
2645 </varlistentry>
2646 </variablelist>
2647 </refsect1>
2648
2649 <refsect1>
2650 <title>[PIE] Section Options</title>
2651 <para>The <literal>[PIE]</literal> section manages the queueing discipline
2652 (qdisc) of Proportional Integral controller-Enhanced (PIE).</para>
2653
2654 <variablelist class='network-directives'>
2655 <xi:include href="tc.xml" xpointer="qdisc-parent" />
2656 <xi:include href="tc.xml" xpointer="qdisc-handle" />
2657
2658 <varlistentry>
2659 <term><varname>PacketLimit=</varname></term>
2660 <listitem>
2661 <para>Specifies the hard limit on the queue size in number of packets. When this limit is reached, incoming packets are
2662 dropped. An unsigned integer ranges 1 to 4294967294. Defaults to unset and kernel's default is used.</para>
2663 </listitem>
2664 </varlistentry>
2665 </variablelist>
2666 </refsect1>
2667
2668 <refsect1>
2669 <title>[StochasticFairBlue] Section Options</title>
2670 <para>The <literal>[StochasticFairBlue]</literal> section manages the queueing discipline
2671 (qdisc) of stochastic fair blue (sfb).</para>
2672
2673 <variablelist class='network-directives'>
2674 <xi:include href="tc.xml" xpointer="qdisc-parent" />
2675 <xi:include href="tc.xml" xpointer="qdisc-handle" />
2676
2677 <varlistentry>
2678 <term><varname>PacketLimit=</varname></term>
2679 <listitem>
2680 <para>Specifies the hard limit on the queue size in number of packets. When this limit is reached, incoming packets are
2681 dropped. An unsigned integer ranges 0 to 4294967294. Defaults to unset and kernel's default is used.</para>
2682 </listitem>
2683 </varlistentry>
2684 </variablelist>
2685 </refsect1>
2686
2687 <refsect1>
2688 <title>[StochasticFairnessQueueing] Section Options</title>
2689 <para>The <literal>[StochasticFairnessQueueing]</literal> section manages the queueing discipline
2690 (qdisc) of stochastic fairness queueing (sfq).</para>
2691
2692 <variablelist class='network-directives'>
2693 <xi:include href="tc.xml" xpointer="qdisc-parent" />
2694 <xi:include href="tc.xml" xpointer="qdisc-handle" />
2695
2696 <varlistentry>
2697 <term><varname>PerturbPeriodSec=</varname></term>
2698 <listitem>
2699 <para>Specifies the interval in seconds for queue algorithm perturbation. Defaults to unset.</para>
2700 </listitem>
2701 </varlistentry>
2702 </variablelist>
2703 </refsect1>
2704
2705 <refsect1>
2706 <title>[BFIFO] Section Options</title>
2707 <para>The <literal>[BFIFO]</literal> section manages the queueing discipline (qdisc) of
2708 Byte limited Packet First In First Out (bfifo).</para>
2709
2710 <variablelist class='network-directives'>
2711 <xi:include href="tc.xml" xpointer="qdisc-parent" />
2712 <xi:include href="tc.xml" xpointer="qdisc-handle" />
2713
2714 <varlistentry>
2715 <term><varname>LimitSize=</varname></term>
2716 <listitem>
2717 <para>Specifies the hard limit on the FIFO size in bytes. The size limit (a buffer size) to prevent it
2718 from overflowing in case it is unable to dequeue packets as quickly as it receives them. When this limit
2719 is reached, incoming packets are dropped. When suffixed with K, M, or G, the specified size is parsed as
2720 Kilobytes, Megabytes, or Gigabytes, respectively, to the base of 1024. Defaults to unset and kernel's default is used.</para>
2721 </listitem>
2722 </varlistentry>
2723 </variablelist>
2724 </refsect1>
2725
2726 <refsect1>
2727 <title>[PFIFO] Section Options</title>
2728 <para>The <literal>[PFIFO]</literal> section manages the queueing discipline (qdisc) of
2729 Packet First In First Out (pfifo).</para>
2730
2731 <variablelist class='network-directives'>
2732 <xi:include href="tc.xml" xpointer="qdisc-parent" />
2733 <xi:include href="tc.xml" xpointer="qdisc-handle" />
2734
2735 <varlistentry>
2736 <term><varname>PacketLimit=</varname></term>
2737 <listitem>
2738 <para>Specifies the hard limit on the FIFO size in number of packets. The size limit (a buffer size) to prevent it
2739 from overflowing in case it is unable to dequeue packets as quickly as it receives them. When this limit is reached,
2740 incoming packets are dropped. An unsigned integer ranges 0 to 4294967294. Defaults to unset and kernel's default is used.</para>
2741 </listitem>
2742 </varlistentry>
2743 </variablelist>
2744 </refsect1>
2745
2746 <refsect1>
2747 <title>[PFIFOHeadDrop] Section Options</title>
2748 <para>The <literal>[PFIFOHeadDrop]</literal> section manages the queueing discipline (qdisc) of
2749 Packet First In First Out Head Drop (pfifo_head_drop).</para>
2750
2751 <variablelist class='network-directives'>
2752 <xi:include href="tc.xml" xpointer="qdisc-parent" />
2753 <xi:include href="tc.xml" xpointer="qdisc-handle" />
2754
2755 <varlistentry>
2756 <term><varname>PacketLimit=</varname></term>
2757 <listitem>
2758 <para>As in <literal>[PFIFO]</literal> section.</para></listitem>
2759 </varlistentry>
2760 </variablelist>
2761 </refsect1>
2762
2763 <refsect1>
2764 <title>[PFIFOFast] Section Options</title>
2765 <para>The <literal>[PFIFOFast]</literal> section manages the queueing discipline (qdisc) of
2766 Packet First In First Out Fast (pfifo_fast).</para>
2767
2768 <variablelist class='network-directives'>
2769 <xi:include href="tc.xml" xpointer="qdisc-parent" />
2770 <xi:include href="tc.xml" xpointer="qdisc-handle" />
2771 </variablelist>
2772 </refsect1>
2773
2774 <refsect1>
2775 <title>[CAKE] Section Options</title>
2776 <para>The <literal>[CAKE]</literal> section manages the queueing discipline (qdisc) of
2777 Common Applications Kept Enhanced (CAKE).</para>
2778
2779 <variablelist class='network-directives'>
2780 <xi:include href="tc.xml" xpointer="qdisc-parent" />
2781 <xi:include href="tc.xml" xpointer="qdisc-handle" />
2782
2783 <varlistentry>
2784 <term><varname>Overhead=</varname></term>
2785 <listitem>
2786 <para>Specifies that bytes to be addeded to the size of each packet. Bytes may be negative.
2787 Takes an integer ranges -64 to 256. Defaults to unset and kernel's default is used.</para>
2788 </listitem>
2789 </varlistentry>
2790
2791 <varlistentry>
2792 <term><varname>Bandwidth=</varname></term>
2793 <listitem>
2794 <para>Specifies the shaper bandwidth. When suffixed with K, M, or G, the specified size is
2795 parsed as Kilobits, Megabits, or Gigabits, respectively, to the base of 1000. Defaults to
2796 unset and kernel's default is used.</para>
2797 </listitem>
2798 </varlistentry>
2799 </variablelist>
2800 </refsect1>
2801
2802 <refsect1>
2803 <title>[ControlledDelay] Section Options</title>
2804 <para>The <literal>[ControlledDelay]</literal> section manages the queueing discipline (qdisc) of
2805 controlled delay (CoDel).</para>
2806
2807 <variablelist class='network-directives'>
2808 <xi:include href="tc.xml" xpointer="qdisc-parent" />
2809 <xi:include href="tc.xml" xpointer="qdisc-handle" />
2810
2811 <varlistentry>
2812 <term><varname>PacketLimit=</varname></term>
2813 <listitem>
2814 <para>Specifies the hard limit on the queue size in number of packets. When this limit is reached, incoming packets are
2815 dropped. An unsigned integer ranges 0 to 4294967294. Defaults to unset and kernel's default is used.</para>
2816 </listitem>
2817 </varlistentry>
2818
2819 <varlistentry>
2820 <term><varname>TargetSec=</varname></term>
2821 <listitem>
2822 <para>Takes a timespan. Specifies the acceptable minimum standing/persistent queue delay.
2823 Defaults to unset and kernel's default is used.</para>
2824 </listitem>
2825 </varlistentry>
2826
2827 <varlistentry>
2828 <term><varname>IntervalSec=</varname></term>
2829 <listitem>
2830 <para>Takes a timespan. This is used to ensure that the measured minimum delay does not
2831 become too stale. Defaults to unset and kernel's default is used.</para>
2832 </listitem>
2833 </varlistentry>
2834
2835 <varlistentry>
2836 <term><varname>ECN=</varname></term>
2837 <listitem>
2838 <para>Takes a boolean. This can be used to mark packets instead of dropping them. Defaults to
2839 unset and kernel's default is used.</para>
2840 </listitem>
2841 </varlistentry>
2842
2843 <varlistentry>
2844 <term><varname>CEThresholdSec=</varname></term>
2845 <listitem>
2846 <para>Takes a timespan. This sets a threshold above which all packets are marked with ECN
2847 Congestion Experienced (CE). Defaults to unset and kernel's default is used.</para>
2848 </listitem>
2849 </varlistentry>
2850 </variablelist>
2851 </refsect1>
2852
2853 <refsect1>
2854 <title>[DeficitRoundRobinScheduler] Section Options</title>
2855 <para>The <literal>[DeficitRoundRobinScheduler]</literal> section manages the queueing discipline (qdisc) of
2856 Deficit Round Robin Scheduler (DRR).</para>
2857
2858 <variablelist class='network-directives'>
2859 <xi:include href="tc.xml" xpointer="qdisc-parent" />
2860 <xi:include href="tc.xml" xpointer="qdisc-handle" />
2861 </variablelist>
2862 </refsect1>
2863
2864 <refsect1>
2865 <title>[DeficitRoundRobinSchedulerClass] Section Options</title>
2866 <para>The <literal>[DeficitRoundRobinSchedulerClass]</literal> section manages the traffic control class of
2867 Deficit Round Robin Scheduler (DRR).</para>
2868
2869 <variablelist class='network-directives'>
2870 <xi:include href="tc.xml" xpointer="tclass-parent" />
2871 <xi:include href="tc.xml" xpointer="tclass-classid" />
2872
2873 <varlistentry>
2874 <term><varname>Quantum=</varname></term>
2875 <listitem>
2876 <para>Specifies the amount of bytes a flow is allowed to dequeue before the
2877 scheduler moves to the next class. An unsigned integer ranges 1 to 4294967294.
2878 Defaults to the MTU of the interface.</para>
2879 </listitem>
2880 </varlistentry>
2881
2882 </variablelist>
2883 </refsect1>
2884
2885 <refsect1>
2886 <title>[GenericRandomEarlyDetection] Section Options</title>
2887 <para>The <literal>[GenericRandomEarlyDetection]</literal> section manages the queueing discipline
2888 (qdisc) of Generic Random Early Detection (GRED).</para>
2889
2890 <variablelist class='network-directives'>
2891 <xi:include href="tc.xml" xpointer="qdisc-parent" />
2892 <xi:include href="tc.xml" xpointer="qdisc-handle" />
2893
2894 <varlistentry>
2895 <term><varname>VirtualQueues=</varname></term>
2896 <listitem>
2897 <para>Specifies the number of virtual queues. Takes a integer in the range 1-16. Defaults to unset and kernel's default is used.</para>
2898 </listitem>
2899 </varlistentry>
2900
2901 <varlistentry>
2902 <term><varname>DefaultVirtualQueue=</varname></term>
2903 <listitem>
2904 <para>Specifies the number of default virtual queue. This must be less than <varname>VirtualQueue=</varname>.
2905 Defaults to unset and kernel's default is used.</para>
2906 </listitem>
2907 </varlistentry>
2908
2909 <varlistentry>
2910 <term><varname>GenericRIO=</varname></term>
2911 <listitem>
2912 <para>Takes a boolean. It turns on the RIO-like buffering scheme. Defaults to
2913 unset and kernel's default is used.</para>
2914 </listitem>
2915 </varlistentry>
2916 </variablelist>
2917 </refsect1>
2918
2919 <refsect1>
2920 <title>[FairQueueingControlledDelay] Section Options</title>
2921 <para>The <literal>[FairQueueingControlledDelay]</literal> section manages the queueing discipline
2922 (qdisc) of fair queuing controlled delay (FQ-CoDel).</para>
2923
2924 <variablelist class='network-directives'>
2925 <xi:include href="tc.xml" xpointer="qdisc-parent" />
2926 <xi:include href="tc.xml" xpointer="qdisc-handle" />
2927
2928 <varlistentry>
2929 <term><varname>PacketLimit=</varname></term>
2930 <listitem>
2931 <para>Specifies the hard limit on the real queue size. When this limit is reached, incoming packets are
2932 dropped. Defaults to unset and kernel's default is used.</para>
2933 </listitem>
2934 </varlistentry>
2935
2936 <varlistentry>
2937 <term><varname>MemoryLimit=</varname></term>
2938 <listitem>
2939 <para>Specifies the limit on the total number of bytes that can be queued in this FQ-CoDel instance.
2940 When suffixed with K, M, or G, the specified size is parsed as Kilobytes, Megabytes, or Gigabytes,
2941 respectively, to the base of 1024. Defaults to unset and kernel's default is used.</para>
2942 </listitem>
2943 </varlistentry>
2944
2945 <varlistentry>
2946 <term><varname>Flows=</varname></term>
2947 <listitem>
2948 <para>Specifies the number of flows into which the incoming packets are classified.
2949 Defaults to unset and kernel's default is used.</para>
2950 </listitem>
2951 </varlistentry>
2952
2953 <varlistentry>
2954 <term><varname>TargetSec=</varname></term>
2955 <listitem>
2956 <para>Takes a timespan. Specifies the acceptable minimum standing/persistent queue delay.
2957 Defaults to unset and kernel's default is used.</para>
2958 </listitem>
2959 </varlistentry>
2960
2961 <varlistentry>
2962 <term><varname>IntervalSec=</varname></term>
2963 <listitem>
2964 <para>Takes a timespan. This is used to ensure that the measured minimum delay does not
2965 become too stale. Defaults to unset and kernel's default is used.</para>
2966 </listitem>
2967 </varlistentry>
2968
2969 <varlistentry>
2970 <term><varname>Quantum=</varname></term>
2971 <listitem>
2972 <para>Specifies the number of bytes used as 'deficit' in the fair queuing algorithmtimespan.
2973 When suffixed with K, M, or G, the specified size is parsed as Kilobytes, Megabytes, or Gigabytes,
2974 respectively, to the base of 1024. Defaults to unset and kernel's default is used.</para>
2975 </listitem>
2976 </varlistentry>
2977
2978 <varlistentry>
2979 <term><varname>ECN=</varname></term>
2980 <listitem>
2981 <para>Takes a boolean. This can be used to mark packets instead of dropping them. Defaults to
2982 unset and kernel's default is used.</para>
2983 </listitem>
2984 </varlistentry>
2985
2986 <varlistentry>
2987 <term><varname>CEThresholdSec=</varname></term>
2988 <listitem>
2989 <para>Takes a timespan. This sets a threshold above which all packets are marked with ECN
2990 Congestion Experienced (CE). Defaults to unset and kernel's default is used.</para>
2991 </listitem>
2992 </varlistentry>
2993 </variablelist>
2994 </refsect1>
2995
2996 <refsect1>
2997 <title>[FairQueueing] Section Options</title>
2998 <para>The <literal>[FairQueueing]</literal> section manages the queueing discipline
2999 (qdisc) of fair queue traffic policing (FQ).</para>
3000
3001 <variablelist class='network-directives'>
3002 <xi:include href="tc.xml" xpointer="qdisc-parent" />
3003 <xi:include href="tc.xml" xpointer="qdisc-handle" />
3004
3005 <varlistentry>
3006 <term><varname>PacketLimit=</varname></term>
3007 <listitem>
3008 <para>Specifies the hard limit on the real queue size. When this limit is reached, incoming packets are
3009 dropped. Defaults to unset and kernel's default is used.</para>
3010 </listitem>
3011 </varlistentry>
3012
3013 <varlistentry>
3014 <term><varname>FlowLimit=</varname></term>
3015 <listitem>
3016 <para>Specifies the hard limit on the maximum number of packets queued per flow. Defaults to
3017 unset and kernel's default is used.</para>
3018 </listitem>
3019 </varlistentry>
3020
3021 <varlistentry>
3022 <term><varname>Quantum=</varname></term>
3023 <listitem>
3024 <para>Specifies the credit per dequeue RR round, i.e. the amount of bytes a flow is allowed
3025 to dequeue at once. When suffixed with K, M, or G, the specified size is parsed as Kilobytes,
3026 Megabytes, or Gigabytes, respectively, to the base of 1024. Defaults to unset and kernel's
3027 default is used.</para>
3028 </listitem>
3029 </varlistentry>
3030
3031 <varlistentry>
3032 <term><varname>InitialQuantum=</varname></term>
3033 <listitem>
3034 <para>Specifies the initial sending rate credit, i.e. the amount of bytes a new flow is
3035 allowed to dequeue initially. When suffixed with K, M, or G, the specified size is parsed as
3036 Kilobytes, Megabytes, or Gigabytes, respectively, to the base of 1024. Defaults to unset and
3037 kernel's default is used.</para>
3038 </listitem>
3039 </varlistentry>
3040
3041 <varlistentry>
3042 <term><varname>MaximumRate=</varname></term>
3043 <listitem>
3044 <para>Specifies the maximum sending rate of a flow. When suffixed with K, M, or G, the
3045 specified size is parsed as Kilobits, Megabits, or Gigabits, respectively, to the base of
3046 1000. Defaults to unset and kernel's default is used.</para>
3047 </listitem>
3048 </varlistentry>
3049
3050 <varlistentry>
3051 <term><varname>Buckets=</varname></term>
3052 <listitem>
3053 <para>Specifies the size of the hash table used for flow lookups. Defaults to unset and
3054 kernel's default is used.</para>
3055 </listitem>
3056 </varlistentry>
3057
3058 <varlistentry>
3059 <term><varname>OrphanMask=</varname></term>
3060 <listitem>
3061 <para>Takes an unsigned integer. For packets not owned by a socket, fq is able to mask a part
3062 of hash and reduce number of buckets associated with the traffic. Defaults to unset and
3063 kernel's default is used.</para>
3064 </listitem>
3065 </varlistentry>
3066
3067 <varlistentry>
3068 <term><varname>Pacing=</varname></term>
3069 <listitem>
3070 <para>Takes a boolean, and enables or disables flow pacing. Defaults to unset and kernel's
3071 default is used.</para>
3072 </listitem>
3073 </varlistentry>
3074
3075 <varlistentry>
3076 <term><varname>CEThresholdSec=</varname></term>
3077 <listitem>
3078 <para>Takes a timespan. This sets a threshold above which all packets are marked with ECN
3079 Congestion Experienced (CE). Defaults to unset and kernel's default is used.</para>
3080 </listitem>
3081 </varlistentry>
3082 </variablelist>
3083 </refsect1>
3084
3085 <refsect1>
3086 <title>[TrivialLinkEqualizer] Section Options</title>
3087 <para>The <literal>[TrivialLinkEqualizer]</literal> section manages the queueing discipline (qdisc) of
3088 trivial link equalizer (teql).</para>
3089
3090 <variablelist class='network-directives'>
3091 <xi:include href="tc.xml" xpointer="qdisc-parent" />
3092 <xi:include href="tc.xml" xpointer="qdisc-handle" />
3093
3094 <varlistentry>
3095 <term><varname>Id=</varname></term>
3096 <listitem>
3097 <para>Specifies the interface ID <literal>N</literal> of teql. Defaults to <literal>0</literal>.
3098 Note that when teql is used, currently, the module <constant>sch_teql</constant> with
3099 <constant>max_equalizers=N+1</constant> option must be loaded before
3100 <command>systemd-networkd</command> is started.</para>
3101 </listitem>
3102 </varlistentry>
3103 </variablelist>
3104 </refsect1>
3105
3106 <refsect1>
3107 <title>[HierarchyTokenBucket] Section Options</title>
3108 <para>The <literal>[HierarchyTokenBucket]</literal> section manages the queueing discipline (qdisc) of
3109 hierarchy token bucket (htb).</para>
3110
3111 <variablelist class='network-directives'>
3112 <xi:include href="tc.xml" xpointer="qdisc-parent" />
3113 <xi:include href="tc.xml" xpointer="qdisc-handle" />
3114
3115 <varlistentry>
3116 <term><varname>DefaultClass=</varname></term>
3117 <listitem>
3118 <para>Takes the minor id in hexadecimal of the default class. Unclassified traffic gets sent
3119 to the class. Defaults to unset.</para>
3120 </listitem>
3121 </varlistentry>
3122 </variablelist>
3123 </refsect1>
3124
3125 <refsect1>
3126 <title>[HierarchyTokenBucketClass] Section Options</title>
3127 <para>The <literal>[HierarchyTokenBucketClass]</literal> section manages the traffic control class of
3128 hierarchy token bucket (htb).</para>
3129
3130 <variablelist class='network-directives'>
3131 <xi:include href="tc.xml" xpointer="tclass-parent" />
3132 <xi:include href="tc.xml" xpointer="tclass-classid" />
3133
3134 <varlistentry>
3135 <term><varname>Priority=</varname></term>
3136 <listitem>
3137 <para>Specifies the priority of the class. In the round-robin process, classes with the lowest
3138 priority field are tried for packets first. This setting is mandatory.</para>
3139 </listitem>
3140 </varlistentry>
3141
3142 <varlistentry>
3143 <term><varname>Rate=</varname></term>
3144 <listitem>
3145 <para>Specifies the maximum rate this class and all its children are guaranteed. When suffixed
3146 with K, M, or G, the specified size is parsed as Kilobits, Megabits, or Gigabits, respectively,
3147 to the base of 1000. This setting is mandatory.</para>
3148 </listitem>
3149 </varlistentry>
3150
3151 <varlistentry>
3152 <term><varname>CeilRate=</varname></term>
3153 <listitem>
3154 <para>Specifies the maximum rate at which a class can send, if its parent has bandwidth to spare.
3155 When suffixed with K, M, or G, the specified size is parsed as Kilobits, Megabits, or Gigabits,
3156 respectively, to the base of 1000. When unset, the value specified with <varname>Rate=</varname>
3157 is used.</para>
3158 </listitem>
3159 </varlistentry>
3160 </variablelist>
3161 </refsect1>
3162
3163 <refsect1>
3164 <title>[HeavyHitterFilter] Section Options</title>
3165 <para>The <literal>[HeavyHitterFilter]</literal> section manages the queueing discipline
3166 (qdisc) of Heavy Hitter Filter (hhf).</para>
3167
3168 <variablelist class='network-directives'>
3169 <xi:include href="tc.xml" xpointer="qdisc-parent" />
3170 <xi:include href="tc.xml" xpointer="qdisc-handle" />
3171
3172 <varlistentry>
3173 <term><varname>PacketLimit=</varname></term>
3174 <listitem>
3175 <para>Specifies the hard limit on the queue size in number of packets. When this limit is reached, incoming packets are
3176 dropped. An unsigned integer ranges 0 to 4294967294. Defaults to unset and kernel's default is used.</para>
3177 </listitem>
3178 </varlistentry>
3179 </variablelist>
3180 </refsect1>
3181
3182 <refsect1>
3183 <title>[BridgeVLAN] Section Options</title>
3184 <para>The <literal>[BridgeVLAN]</literal> section manages the VLAN ID configuration of a bridge port and accepts
3185 the following keys. Specify several <literal>[BridgeVLAN]</literal> sections to configure several VLAN entries.
3186 The <varname>VLANFiltering=</varname> option has to be enabled, see <literal>[Bridge]</literal> section in
3187 <citerefentry><refentrytitle>systemd.netdev</refentrytitle><manvolnum>5</manvolnum></citerefentry>.</para>
3188
3189 <variablelist class='network-directives'>
3190 <varlistentry>
3191 <term><varname>VLAN=</varname></term>
3192 <listitem>
3193 <para>The VLAN ID allowed on the port. This can be either a single ID or a range M-N. VLAN IDs are valid
3194 from 1 to 4094.</para>
3195 </listitem>
3196 </varlistentry>
3197 <varlistentry>
3198 <term><varname>EgressUntagged=</varname></term>
3199 <listitem>
3200 <para>The VLAN ID specified here will be used to untag frames on egress. Configuring
3201 <varname>EgressUntagged=</varname> implicates the use of <varname>VLAN=</varname> above and will enable the
3202 VLAN ID for ingress as well. This can be either a single ID or a range M-N.</para>
3203 </listitem>
3204 </varlistentry>
3205 <varlistentry>
3206 <term><varname>PVID=</varname></term>
3207 <listitem>
3208 <para>The Port VLAN ID specified here is assigned to all untagged frames at ingress.
3209 <varname>PVID=</varname> can be used only once. Configuring <varname>PVID=</varname> implicates the use of
3210 <varname>VLAN=</varname> above and will enable the VLAN ID for ingress as well.</para>
3211 </listitem>
3212 </varlistentry>
3213 </variablelist>
3214 </refsect1>
3215
3216 <refsect1>
3217 <title>Examples</title>
3218 <example>
3219 <title>Static network configuration</title>
3220
3221 <programlisting># /etc/systemd/network/50-static.network
3222 [Match]
3223 Name=enp2s0
3224
3225 [Network]
3226 Address=192.168.0.15/24
3227 Gateway=192.168.0.1</programlisting>
3228
3229 <para>This brings interface <literal>enp2s0</literal> up with a static address. The
3230 specified gateway will be used for a default route.</para>
3231 </example>
3232
3233 <example>
3234 <title>DHCP on ethernet links</title>
3235
3236 <programlisting># /etc/systemd/network/80-dhcp.network
3237 [Match]
3238 Name=en*
3239
3240 [Network]
3241 DHCP=yes</programlisting>
3242
3243 <para>This will enable DHCPv4 and DHCPv6 on all interfaces with names starting with
3244 <literal>en</literal> (i.e. ethernet interfaces).</para>
3245 </example>
3246
3247 <example>
3248 <title>IPv6 Prefix Delegation</title>
3249
3250 <programlisting># /etc/systemd/network/55-ipv6-pd-upstream.network
3251 [Match]
3252 Name=enp1s0
3253
3254 [Network]
3255 DHCP=ipv6</programlisting>
3256
3257 <programlisting># /etc/systemd/network/56-ipv6-pd-downstream.network
3258 [Match]
3259 Name=enp2s0
3260
3261 [Network]
3262 IPv6PrefixDelegation=dhcpv6</programlisting>
3263
3264 <para>This will enable IPv6 PD on the interface enp1s0 as an upstream interface where the
3265 DHCPv6 client is running and enp2s0 as a downstream interface where the prefix is delegated to.</para>
3266 </example>
3267
3268 <example>
3269 <title>A bridge with two enslaved links</title>
3270
3271 <programlisting># /etc/systemd/network/25-bridge-static.network
3272 [Match]
3273 Name=bridge0
3274
3275 [Network]
3276 Address=192.168.0.15/24
3277 Gateway=192.168.0.1
3278 DNS=192.168.0.1</programlisting>
3279
3280 <programlisting># /etc/systemd/network/25-bridge-slave-interface-1.network
3281 [Match]
3282 Name=enp2s0
3283
3284 [Network]
3285 Bridge=bridge0</programlisting>
3286
3287 <programlisting># /etc/systemd/network/25-bridge-slave-interface-2.network
3288 [Match]
3289 Name=wlp3s0
3290
3291 [Network]
3292 Bridge=bridge0</programlisting>
3293
3294 <para>This creates a bridge and attaches devices <literal>enp2s0</literal> and
3295 <literal>wlp3s0</literal> to it. The bridge will have the specified static address
3296 and network assigned, and a default route via the specified gateway will be
3297 added. The specified DNS server will be added to the global list of DNS resolvers.
3298 </para>
3299 </example>
3300
3301 <example>
3302 <title></title>
3303
3304 <programlisting>
3305 # /etc/systemd/network/20-bridge-slave-interface-vlan.network
3306 [Match]
3307 Name=enp2s0
3308
3309 [Network]
3310 Bridge=bridge0
3311
3312 [BridgeVLAN]
3313 VLAN=1-32
3314 PVID=42
3315 EgressUntagged=42
3316
3317 [BridgeVLAN]
3318 VLAN=100-200
3319
3320 [BridgeVLAN]
3321 EgressUntagged=300-400</programlisting>
3322
3323 <para>This overrides the configuration specified in the previous example for the
3324 interface <literal>enp2s0</literal>, and enables VLAN on that bridge port. VLAN IDs
3325 1-32, 42, 100-400 will be allowed. Packets tagged with VLAN IDs 42, 300-400 will be
3326 untagged when they leave on this interface. Untagged packets which arrive on this
3327 interface will be assigned VLAN ID 42.</para>
3328 </example>
3329
3330 <example>
3331 <title>Various tunnels</title>
3332
3333 <programlisting>/etc/systemd/network/25-tunnels.network
3334 [Match]
3335 Name=ens1
3336
3337 [Network]
3338 Tunnel=ipip-tun
3339 Tunnel=sit-tun
3340 Tunnel=gre-tun
3341 Tunnel=vti-tun
3342 </programlisting>
3343
3344 <programlisting>/etc/systemd/network/25-tunnel-ipip.netdev
3345 [NetDev]
3346 Name=ipip-tun
3347 Kind=ipip
3348 </programlisting>
3349
3350 <programlisting>/etc/systemd/network/25-tunnel-sit.netdev
3351 [NetDev]
3352 Name=sit-tun
3353 Kind=sit
3354 </programlisting>
3355
3356 <programlisting>/etc/systemd/network/25-tunnel-gre.netdev
3357 [NetDev]
3358 Name=gre-tun
3359 Kind=gre
3360 </programlisting>
3361
3362 <programlisting>/etc/systemd/network/25-tunnel-vti.netdev
3363 [NetDev]
3364 Name=vti-tun
3365 Kind=vti
3366 </programlisting>
3367
3368 <para>This will bring interface <literal>ens1</literal> up and create an IPIP tunnel,
3369 a SIT tunnel, a GRE tunnel, and a VTI tunnel using it.</para>
3370 </example>
3371
3372 <example>
3373 <title>A bond device</title>
3374
3375 <programlisting># /etc/systemd/network/30-bond1.network
3376 [Match]
3377 Name=bond1
3378
3379 [Network]
3380 DHCP=ipv6
3381 </programlisting>
3382
3383 <programlisting># /etc/systemd/network/30-bond1.netdev
3384 [NetDev]
3385 Name=bond1
3386 Kind=bond
3387 </programlisting>
3388
3389 <programlisting># /etc/systemd/network/30-bond1-dev1.network
3390 [Match]
3391 MACAddress=52:54:00:e9:64:41
3392
3393 [Network]
3394 Bond=bond1
3395 </programlisting>
3396
3397 <programlisting># /etc/systemd/network/30-bond1-dev2.network
3398 [Match]
3399 MACAddress=52:54:00:e9:64:42
3400
3401 [Network]
3402 Bond=bond1
3403 </programlisting>
3404
3405 <para>This will create a bond device <literal>bond1</literal> and enslave the two
3406 devices with MAC addresses 52:54:00:e9:64:41 and 52:54:00:e9:64:42 to it. IPv6 DHCP
3407 will be used to acquire an address.</para>
3408 </example>
3409
3410 <example>
3411 <title>Virtual Routing and Forwarding (VRF)</title>
3412 <para>Add the <literal>bond1</literal> interface to the VRF master interface
3413 <literal>vrf1</literal>. This will redirect routes generated on this interface to be
3414 within the routing table defined during VRF creation. For kernels before 4.8 traffic
3415 won't be redirected towards the VRFs routing table unless specific ip-rules are added.
3416 </para>
3417 <programlisting># /etc/systemd/network/25-vrf.network
3418 [Match]
3419 Name=bond1
3420
3421 [Network]
3422 VRF=vrf1
3423 </programlisting>
3424 </example>
3425
3426 <example>
3427 <title>MacVTap</title>
3428 <para>This brings up a network interface <literal>macvtap-test</literal>
3429 and attaches it to <literal>enp0s25</literal>.</para>
3430 <programlisting># /usr/lib/systemd/network/25-macvtap.network
3431 [Match]
3432 Name=enp0s25
3433
3434 [Network]
3435 MACVTAP=macvtap-test
3436 </programlisting>
3437 </example>
3438
3439 <example>
3440 <title>A Xfrm interface with physical underlying device.</title>
3441
3442 <programlisting># /etc/systemd/network/27-xfrm.netdev
3443 [NetDev]
3444 Name=xfrm0
3445
3446 [Xfrm]
3447 InterfaceId=7</programlisting>
3448
3449 <programlisting># /etc/systemd/network/27-eth0.network
3450 [Match]
3451 Name=eth0
3452
3453 [Network]
3454 Xfrm=xfrm0</programlisting>
3455
3456 <para>This creates a <literal>xfrm0</literal> interface and binds it to the <literal>eth0</literal> device.
3457 This allows hardware based ipsec offloading to the <literal>eth0</literal> nic.
3458 If offloading is not needed, xfrm interfaces can be assigned to the <literal>lo</literal> device.
3459 </para>
3460 </example>
3461 </refsect1>
3462
3463 <refsect1>
3464 <title>See Also</title>
3465 <para>
3466 <citerefentry><refentrytitle>systemd</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
3467 <citerefentry><refentrytitle>systemd-networkd.service</refentrytitle><manvolnum>8</manvolnum></citerefentry>,
3468 <citerefentry><refentrytitle>systemd.link</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
3469 <citerefentry><refentrytitle>systemd.netdev</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
3470 <citerefentry><refentrytitle>systemd-resolved.service</refentrytitle><manvolnum>8</manvolnum></citerefentry>
3471 </para>
3472 </refsect1>
3473
3474 </refentry>