]> git.ipfire.org Git - thirdparty/systemd.git/blob - man/systemd.netdev.xml
network: xfrm: refuse zero interface ID
[thirdparty/systemd.git] / man / systemd.netdev.xml
1 <?xml version='1.0'?> <!--*-nxml-*-->
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-or-later -->
5
6 <refentry id="systemd.netdev" 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.netdev</refentrytitle>
16 <manvolnum>5</manvolnum>
17 </refmeta>
18
19 <refnamediv>
20 <refname>systemd.netdev</refname>
21 <refpurpose>Virtual Network Device configuration</refpurpose>
22 </refnamediv>
23
24 <refsynopsisdiv>
25 <para><filename><replaceable>netdev</replaceable>.netdev</filename></para>
26 </refsynopsisdiv>
27
28 <refsect1>
29 <title>Description</title>
30
31 <para>A plain ini-style text file that encodes configuration about a virtual network device, used by
32 <citerefentry><refentrytitle>systemd-networkd</refentrytitle><manvolnum>8</manvolnum></citerefentry>.
33 See <citerefentry><refentrytitle>systemd.syntax</refentrytitle><manvolnum>7</manvolnum></citerefentry>
34 for a general description of the syntax.</para>
35
36 <para>The main Virtual Network Device file must have the extension <filename>.netdev</filename>;
37 other extensions are ignored. Virtual network devices are created as soon as networkd is
38 started. If a netdev with the specified name already exists, networkd will use that as-is rather
39 than create its own. Note that the settings of the pre-existing netdev will not be changed by
40 networkd.</para>
41
42 <para>The <filename>.netdev</filename> files are read from the files located in the system
43 network directory <filename>/usr/lib/systemd/network</filename>, the volatile runtime network
44 directory <filename>/run/systemd/network</filename> and the local administration network
45 directory <filename>/etc/systemd/network</filename>. All configuration files are collectively
46 sorted and processed in lexical order, regardless of the directories in which they live.
47 However, files with identical filenames replace each other. Files in <filename>/etc/</filename>
48 have the highest priority, files in <filename>/run/</filename> take precedence over files with
49 the same name in <filename>/usr/lib/</filename>. This can be used to override a system-supplied
50 configuration file with a local file if needed. As a special case, an empty file (file size 0)
51 or symlink with the same name pointing to <filename>/dev/null</filename> disables the
52 configuration file entirely (it is "masked").</para>
53
54 <para>Along with the netdev file <filename>foo.netdev</filename>, a "drop-in" directory
55 <filename>foo.netdev.d/</filename> may exist. All files with the suffix <literal>.conf</literal>
56 from this directory will be merged in the alphanumeric order and parsed after the main file itself
57 has been parsed. This is useful to alter or add configuration settings, without having to modify
58 the main configuration file. Each drop-in file must have appropriate section headers.</para>
59
60 <para>In addition to <filename>/etc/systemd/network</filename>, drop-in <literal>.d</literal>
61 directories can be placed in <filename>/usr/lib/systemd/network</filename> or
62 <filename>/run/systemd/network</filename> directories. Drop-in files in
63 <filename>/etc/</filename> take precedence over those in <filename>/run/</filename> which in turn
64 take precedence over those in <filename>/usr/lib/</filename>. Drop-in files under any of these
65 directories take precedence over the main netdev file wherever located. (Of course, since
66 <filename>/run/</filename> is temporary and <filename>/usr/lib/</filename> is for vendors, it is
67 unlikely drop-ins should be used in either of those places.)</para>
68 </refsect1>
69
70 <refsect1>
71 <title>Supported netdev kinds</title>
72
73 <para>The following kinds of virtual network devices may be
74 configured in <filename>.netdev</filename> files:</para>
75
76 <table>
77 <title>Supported kinds of virtual network devices</title>
78
79 <tgroup cols='2'>
80 <colspec colname='kind' />
81 <colspec colname='explanation' />
82 <thead><row>
83 <entry>Kind</entry>
84 <entry>Description</entry>
85 </row></thead>
86 <tbody>
87 <row><entry><varname>bond</varname></entry>
88 <entry>A bond device is an aggregation of all its slave devices. See <ulink url="https://www.kernel.org/doc/Documentation/networking/bonding.txt">Linux Ethernet Bonding Driver HOWTO</ulink> for details.</entry></row>
89
90 <row><entry><varname>bridge</varname></entry>
91 <entry>A bridge device is a software switch, and each of its slave devices and the bridge itself are ports of the switch.</entry></row>
92
93 <row><entry><varname>dummy</varname></entry>
94 <entry>A dummy device drops all packets sent to it.</entry></row>
95
96 <row><entry><varname>gre</varname></entry>
97 <entry>A Level 3 GRE tunnel over IPv4. See <ulink url="https://tools.ietf.org/html/rfc2784">RFC 2784</ulink> for details. Name <literal>gre0</literal> should not be used, as the kernel creates a device with this name when the corresponding kernel module is loaded.</entry></row>
98
99 <row><entry><varname>gretap</varname></entry>
100 <entry>A Level 2 GRE tunnel over IPv4. Name <literal>gretap0</literal> should not be used, as the kernel creates a device with this name when the corresponding kernel module is loaded.</entry></row>
101
102 <row><entry><varname>erspan</varname></entry>
103 <entry>ERSPAN mirrors traffic on one or more source ports and delivers the mirrored traffic to one or more destination ports on another switch. The traffic is encapsulated in generic routing encapsulation (GRE) and is therefore routable across a layer 3 network between the source switch and the destination switch. Name <literal>erspan0</literal> should not be used, as the kernel creates a device with this name when the corresponding kernel module is loaded.</entry></row>
104
105 <row><entry><varname>ip6gre</varname></entry>
106 <entry>A Level 3 GRE tunnel over IPv6.</entry></row>
107
108 <row><entry><varname>ip6tnl</varname></entry>
109 <entry>An IPv4 or IPv6 tunnel over IPv6</entry></row>
110
111 <row><entry><varname>ip6gretap</varname></entry>
112 <entry>A Level 2 GRE tunnel over IPv6.</entry></row>
113
114 <row><entry><varname>ipip</varname></entry>
115 <entry>An IPv4 over IPv4 tunnel.</entry></row>
116
117 <row><entry><varname>ipvlan</varname></entry>
118 <entry>An IPVLAN device is a stacked device which receives packets from its underlying device based on IP address filtering.</entry></row>
119
120 <row><entry><varname>ipvtap</varname></entry>
121 <entry>An IPVTAP device is a stacked device which receives packets from its underlying device based on IP address filtering and can be accessed using the tap user space interface.</entry></row>
122
123 <row><entry><varname>macvlan</varname></entry>
124 <entry>A macvlan device is a stacked device which receives packets from its underlying device based on MAC address filtering.</entry></row>
125
126 <row><entry><varname>macvtap</varname></entry>
127 <entry>A macvtap device is a stacked device which receives packets from its underlying device based on MAC address filtering.</entry></row>
128
129 <row><entry><varname>sit</varname></entry>
130 <entry>An IPv6 over IPv4 tunnel.</entry></row>
131
132 <row><entry><varname>tap</varname></entry>
133 <entry>A persistent Level 2 tunnel between a network device and a device node.</entry></row>
134
135 <row><entry><varname>tun</varname></entry>
136 <entry>A persistent Level 3 tunnel between a network device and a device node.</entry></row>
137
138 <row><entry><varname>veth</varname></entry>
139 <entry>An Ethernet tunnel between a pair of network devices.</entry></row>
140
141 <row><entry><varname>vlan</varname></entry>
142 <entry>A VLAN is a stacked device which receives packets from its underlying device based on VLAN tagging. See <ulink url="http://www.ieee802.org/1/pages/802.1Q.html">IEEE 802.1Q</ulink> for details.</entry></row>
143
144 <row><entry><varname>vti</varname></entry>
145 <entry>An IPv4 over IPSec tunnel.</entry></row>
146
147 <row><entry><varname>vti6</varname></entry>
148 <entry>An IPv6 over IPSec tunnel.</entry></row>
149
150 <row><entry><varname>vxlan</varname></entry>
151 <entry>A virtual extensible LAN (vxlan), for connecting Cloud computing deployments.</entry></row>
152
153 <row><entry><varname>geneve</varname></entry>
154 <entry>A GEneric NEtwork Virtualization Encapsulation (GENEVE) netdev driver.</entry></row>
155
156 <row><entry><varname>l2tp</varname></entry>
157 <entry>A Layer 2 Tunneling Protocol (L2TP) is a tunneling protocol used to support virtual private networks (VPNs) or as part of the delivery of services by ISPs. It does not provide any encryption or confidentiality by itself</entry></row>
158
159 <row><entry><varname>macsec</varname></entry>
160 <entry>Media Access Control Security (MACsec) is an 802.1AE IEEE industry-standard security technology that provides secure communication for all traffic on Ethernet links. MACsec provides point-to-point security on Ethernet links between directly connected nodes and is capable of identifying and preventing most security threats.</entry></row>
161
162 <row><entry><varname>vrf</varname></entry>
163 <entry>A Virtual Routing and Forwarding (<ulink url="https://www.kernel.org/doc/Documentation/networking/vrf.txt">VRF</ulink>) interface to create separate routing and forwarding domains.</entry></row>
164
165 <row><entry><varname>vcan</varname></entry>
166 <entry>The virtual CAN driver (vcan). Similar to the network loopback devices, vcan offers a virtual local CAN interface.</entry></row>
167
168 <row><entry><varname>vxcan</varname></entry>
169 <entry>The virtual CAN tunnel driver (vxcan). Similar to the virtual ethernet driver veth, vxcan implements a local CAN traffic tunnel between two virtual CAN network devices. When creating a vxcan, two vxcan devices are created as pair. When one end receives the packet it appears on its pair and vice versa. The vxcan can be used for cross namespace communication.
170 </entry></row>
171
172 <row><entry><varname>wireguard</varname></entry>
173 <entry>WireGuard Secure Network Tunnel.</entry></row>
174
175 <row><entry><varname>nlmon</varname></entry>
176 <entry>A Netlink monitor device. Use an nlmon device when you want to monitor system Netlink messages.</entry></row>
177
178 <row><entry><varname>fou</varname></entry>
179 <entry>Foo-over-UDP tunneling.</entry></row>
180
181 <row><entry><varname>xfrm</varname></entry>
182 <entry>A virtual tunnel interface like vti/vti6 but with several advantages.</entry></row>
183
184 <row><entry><varname>ifb</varname></entry>
185 <entry>The Intermediate Functional Block (ifb) pseudo network interface acts as a QoS concentrator for multiple different sources of traffic.</entry></row>
186
187 <row><entry><varname>bareudp</varname></entry>
188 <entry>Bare UDP tunnels provide a generic L3 encapsulation support for tunnelling different L3 protocols like MPLS, IP etc. inside of an UDP tunnel.</entry></row>
189
190 <row><entry><varname>batadv</varname></entry>
191 <entry><ulink url="https://www.open-mesh.org/projects/open-mesh/wiki">B.A.T.M.A.N. Advanced</ulink> is a routing protocol for multi-hop mobile ad-hoc networks which operates on layer 2.</entry></row>
192
193 <row><entry><varname>ipoib</varname></entry>
194 <entry>An IP over Infiniband subinterface.</entry></row>
195 </tbody>
196 </tgroup>
197 </table>
198
199 </refsect1>
200
201 <refsect1>
202 <title>[Match] Section Options</title>
203
204 <para>A virtual network device is only created if the [Match] section matches the current
205 environment, or if the section is empty. The following keys are accepted:</para>
206
207 <variablelist class='network-directives'>
208 <xi:include href="systemd.link.xml" xpointer="host" />
209 <xi:include href="systemd.link.xml" xpointer="virtualization" />
210 <xi:include href="systemd.link.xml" xpointer="kernel-command-line" />
211 <xi:include href="systemd.link.xml" xpointer="kernel-version" />
212 <xi:include href="systemd.link.xml" xpointer="architecture" />
213 <xi:include href="systemd.link.xml" xpointer="firmware" />
214 </variablelist>
215 </refsect1>
216
217 <refsect1>
218 <title>[NetDev] Section Options</title>
219
220 <para>The [NetDev] section accepts the
221 following keys:</para>
222
223 <variablelist class='network-directives'>
224 <varlistentry>
225 <term><varname>Description=</varname></term>
226 <listitem>
227 <para>A free-form description of the netdev.</para>
228 </listitem>
229 </varlistentry>
230 <varlistentry>
231 <term><varname>Name=</varname></term>
232 <listitem>
233 <para>The interface name used when creating the netdev.
234 This setting is compulsory.</para>
235 </listitem>
236 </varlistentry>
237 <varlistentry>
238 <term><varname>Kind=</varname></term>
239 <listitem>
240 <para>The netdev kind. This setting is compulsory. See the
241 <literal>Supported netdev kinds</literal> section for the
242 valid keys.</para>
243 </listitem>
244 </varlistentry>
245 <varlistentry>
246 <term><varname>MTUBytes=</varname></term>
247 <listitem>
248 <para>The maximum transmission unit in bytes to set for the device. The usual suffixes K, M, G
249 are supported and are understood to the base of 1024. For <literal>tun</literal> or
250 <literal>tap</literal> devices, <varname>MTUBytes=</varname> setting is not currently supported in
251 [NetDev] section. Please specify it in [Link] section of
252 corresponding
253 <citerefentry><refentrytitle>systemd.network</refentrytitle><manvolnum>5</manvolnum></citerefentry>
254 files.</para>
255 </listitem>
256 </varlistentry>
257 <varlistentry>
258 <term><varname>MACAddress=</varname></term>
259 <listitem>
260 <para>Specifies the MAC address to use for the device, or takes the special value
261 <literal>none</literal>. When <literal>none</literal>, <command>systemd-networkd</command>
262 does not request the MAC address for the device, and the kernel will assign a random MAC
263 address. For <literal>tun</literal>, <literal>tap</literal>, or <literal>l2tp</literal>
264 devices, the <varname>MACAddress=</varname> setting in the [NetDev] section is not
265 supported and will be ignored. Please specify it in the [Link] section of the corresponding
266 <citerefentry><refentrytitle>systemd.network</refentrytitle><manvolnum>5</manvolnum></citerefentry>
267 file. If this option is not set, <literal>vlan</literal> device inherits the MAC address of
268 the master interface. For other kind of netdevs, if this option is not set, then the MAC
269 address is generated based on the interface name and the
270 <citerefentry><refentrytitle>machine-id</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
271 </para>
272 <para>Note, even if <literal>none</literal> is specified, <command>systemd-udevd</command>
273 will assign the persistent MAC address for the device, as <filename>99-default.link</filename>
274 has <varname>MACAddressPolicy=persistent</varname>. So, it is also necessary to create a
275 custom .link file for the device, if the MAC address assignment is not desired.</para>
276 </listitem>
277 </varlistentry>
278 </variablelist>
279 </refsect1>
280
281 <refsect1>
282 <title>[Bridge] Section Options</title>
283
284 <para>The [Bridge] section only applies for
285 netdevs of kind <literal>bridge</literal>, and accepts the
286 following keys:</para>
287
288 <variablelist class='network-directives'>
289 <varlistentry>
290 <term><varname>HelloTimeSec=</varname></term>
291 <listitem>
292 <para>HelloTimeSec specifies the number of seconds between two hello packets
293 sent out by the root bridge and the designated bridges. Hello packets are
294 used to communicate information about the topology throughout the entire
295 bridged local area network.</para>
296 </listitem>
297 </varlistentry>
298 <varlistentry>
299 <term><varname>MaxAgeSec=</varname></term>
300 <listitem>
301 <para>MaxAgeSec specifies the number of seconds of maximum message age.
302 If the last seen (received) hello packet is more than this number of
303 seconds old, the bridge in question will start the takeover procedure
304 in attempt to become the Root Bridge itself.</para>
305 </listitem>
306 </varlistentry>
307 <varlistentry>
308 <term><varname>ForwardDelaySec=</varname></term>
309 <listitem>
310 <para>ForwardDelaySec specifies the number of seconds spent in each
311 of the Listening and Learning states before the Forwarding state is entered.</para>
312 </listitem>
313 </varlistentry>
314 <varlistentry>
315 <term><varname>AgeingTimeSec=</varname></term>
316 <listitem>
317 <para>This specifies the number of seconds a MAC Address will be kept in
318 the forwarding database after having a packet received from this MAC Address.</para>
319 </listitem>
320 </varlistentry>
321 <varlistentry>
322 <term><varname>Priority=</varname></term>
323 <listitem>
324 <para>The priority of the bridge. An integer between 0 and 65535. A lower value
325 means higher priority. The bridge having the lowest priority will be elected as root bridge.</para>
326 </listitem>
327 </varlistentry>
328 <varlistentry>
329 <term><varname>GroupForwardMask=</varname></term>
330 <listitem>
331 <para>A 16-bit bitmask represented as an integer which allows forwarding of link
332 local frames with 802.1D reserved addresses (01:80:C2:00:00:0X). A logical AND
333 is performed between the specified bitmask and the exponentiation of 2^X, the
334 lower nibble of the last octet of the MAC address. For example, a value of 8
335 would allow forwarding of frames addressed to 01:80:C2:00:00:03 (802.1X PAE).</para>
336 </listitem>
337 </varlistentry>
338 <varlistentry>
339 <term><varname>DefaultPVID=</varname></term>
340 <listitem>
341 <para>This specifies the default port VLAN ID of a newly attached bridge port.
342 Set this to an integer in the range 14094 or <literal>none</literal> to disable the PVID.</para>
343 </listitem>
344 </varlistentry>
345 <varlistentry>
346 <term><varname>MulticastQuerier=</varname></term>
347 <listitem>
348 <para>Takes a boolean. This setting controls the IFLA_BR_MCAST_QUERIER option in the kernel.
349 If enabled, the kernel will send general ICMP queries from a zero source address.
350 This feature should allow faster convergence on startup, but it causes some
351 multicast-aware switches to misbehave and disrupt forwarding of multicast packets.
352 When unset, the kernel's default will be used.
353 </para>
354 </listitem>
355 </varlistentry>
356 <varlistentry>
357 <term><varname>MulticastSnooping=</varname></term>
358 <listitem>
359 <para>Takes a boolean. This setting controls the IFLA_BR_MCAST_SNOOPING option in the kernel.
360 If enabled, IGMP snooping monitors the Internet Group Management Protocol (IGMP) traffic
361 between hosts and multicast routers. When unset, the kernel's default will be used.
362 </para>
363 </listitem>
364 </varlistentry>
365 <varlistentry>
366 <term><varname>VLANFiltering=</varname></term>
367 <listitem>
368 <para>Takes a boolean. This setting controls the IFLA_BR_VLAN_FILTERING option in the kernel.
369 If enabled, the bridge will be started in VLAN-filtering mode. When unset, the kernel's default will be used.
370 </para>
371 </listitem>
372 </varlistentry>
373 <varlistentry>
374 <term><varname>VLANProtocol=</varname></term>
375 <listitem>
376 <para>Allows setting the protocol used for VLAN filtering. Takes
377 <option>802.1q</option> or,
378 <option>802.1ad</option>, and defaults to unset and kernel's default is used.
379 </para>
380 </listitem>
381 </varlistentry>
382 <varlistentry>
383 <term><varname>STP=</varname></term>
384 <listitem>
385 <para>Takes a boolean. This enables the bridge's Spanning Tree Protocol (STP).
386 When unset, the kernel's default will be used.
387 </para>
388 </listitem>
389 </varlistentry>
390 <varlistentry>
391 <term><varname>MulticastIGMPVersion=</varname></term>
392 <listitem>
393 <para>Allows changing bridge's multicast Internet Group Management Protocol (IGMP) version.
394 Takes an integer 2 or 3. When unset, the kernel's default will be used.
395 </para>
396 </listitem>
397 </varlistentry>
398 </variablelist>
399 </refsect1>
400
401 <refsect1>
402 <title>[VLAN] Section Options</title>
403
404 <para>The [VLAN] section only applies for
405 netdevs of kind <literal>vlan</literal>, and accepts the
406 following key:</para>
407
408 <variablelist class='network-directives'>
409 <varlistentry>
410 <term><varname>Id=</varname></term>
411 <listitem>
412 <para>The VLAN ID to use. An integer in the range 04094.
413 This setting is compulsory.</para>
414 </listitem>
415 </varlistentry>
416 <varlistentry>
417 <term><varname>Protocol=</varname></term>
418 <listitem>
419 <para>Allows setting the protocol used for the VLAN interface. Takes <literal>802.1q</literal> or,
420 <literal>802.1ad</literal>, and defaults to unset and kernel's default is used.</para>
421 </listitem>
422 </varlistentry>
423 <varlistentry>
424 <term><varname>GVRP=</varname></term>
425 <listitem>
426 <para>Takes a boolean. The Generic VLAN Registration Protocol (GVRP) is a protocol that
427 allows automatic learning of VLANs on a network.
428 When unset, the kernel's default will be used.
429 </para>
430 </listitem>
431 </varlistentry>
432 <varlistentry>
433 <term><varname>MVRP=</varname></term>
434 <listitem>
435 <para>Takes a boolean. Multiple VLAN Registration Protocol (MVRP) formerly known as GARP VLAN
436 Registration Protocol (GVRP) is a standards-based Layer 2 network protocol,
437 for automatic configuration of VLAN information on switches. It was defined
438 in the 802.1ak amendment to 802.1Q-2005. When unset, the kernel's default will be used.
439 </para>
440 </listitem>
441 </varlistentry>
442 <varlistentry>
443 <term><varname>LooseBinding=</varname></term>
444 <listitem>
445 <para>Takes a boolean. The VLAN loose binding mode, in which only the operational state is passed
446 from the parent to the associated VLANs, but the VLAN device state is not changed.
447 When unset, the kernel's default will be used.</para>
448 </listitem>
449 </varlistentry>
450 <varlistentry>
451 <term><varname>ReorderHeader=</varname></term>
452 <listitem>
453 <para>Takes a boolean. When enabled, the VLAN reorder header is used and VLAN interfaces behave
454 like physical interfaces. When unset, the kernel's default will be used.</para>
455 </listitem>
456 </varlistentry>
457 <varlistentry>
458 <term><varname>EgressQOSMaps=</varname></term>
459 <term><varname>IngressQOSMaps=</varname></term>
460 <listitem>
461 <para>Defines a mapping of Linux internal packet priority (<constant>SO_PRIORITY</constant>)
462 to VLAN header PCP field for outgoing and incoming frames, respectively. Takes a
463 whitespace-separated list of integer pairs, where each integer must be in the range
464 14294967294, in the format <literal>from</literal>-<literal>to</literal>, e.g.,
465 <literal>21-7 45-5</literal>. Note that <literal>from</literal> must be greater than or equal
466 to <literal>to</literal>. When unset, the kernel's default will be used.</para>
467 </listitem>
468 </varlistentry>
469 </variablelist>
470 </refsect1>
471
472 <refsect1>
473 <title>[MACVLAN] Section Options</title>
474
475 <para>The [MACVLAN] section only applies for
476 netdevs of kind <literal>macvlan</literal>, and accepts the
477 following key:</para>
478
479 <variablelist class='network-directives'>
480 <varlistentry>
481 <term><varname>Mode=</varname></term>
482 <listitem>
483 <para>The MACVLAN mode to use. The supported options are
484 <literal>private</literal>,
485 <literal>vepa</literal>,
486 <literal>bridge</literal>,
487 <literal>passthru</literal>, and
488 <literal>source</literal>.
489 </para>
490 </listitem>
491 </varlistentry>
492 <varlistentry>
493 <term><varname>SourceMACAddress=</varname></term>
494 <listitem>
495 <para>A whitespace-separated list of remote hardware addresses allowed on the MACVLAN. This
496 option only has an effect in source mode. Use full colon-, hyphen- or dot-delimited
497 hexadecimal. This option may appear more than once, in which case the lists are merged. If
498 the empty string is assigned to this option, the list of hardware addresses defined prior
499 to this is reset. Defaults to unset.</para>
500 </listitem>
501 </varlistentry>
502 <varlistentry>
503 <term><varname>BroadcastMulticastQueueLength=</varname></term>
504 <listitem>
505 <para>Specifies the length of the receive queue for broadcast/multicast packets. An unsigned
506 integer in the range 04294967294. Defaults to unset.</para>
507 </listitem>
508 </varlistentry>
509 </variablelist>
510 </refsect1>
511
512 <refsect1>
513 <title>[MACVTAP] Section Options</title>
514
515 <para>The [MACVTAP] section applies for netdevs of kind <literal>macvtap</literal> and accepts the same
516 keys as [MACVLAN].</para>
517 </refsect1>
518
519 <refsect1>
520 <title>[IPVLAN] Section Options</title>
521
522 <para>The [IPVLAN] section only applies for
523 netdevs of kind <literal>ipvlan</literal>, and accepts the
524 following key:</para>
525
526 <variablelist class='network-directives'>
527 <varlistentry>
528 <term><varname>Mode=</varname></term>
529 <listitem>
530 <para>The IPVLAN mode to use. The supported options are
531 <literal>L2</literal>,<literal>L3</literal> and <literal>L3S</literal>.
532 </para>
533 </listitem>
534 </varlistentry>
535 <varlistentry>
536 <term><varname>Flags=</varname></term>
537 <listitem>
538 <para>The IPVLAN flags to use. The supported options are
539 <literal>bridge</literal>,<literal>private</literal> and <literal>vepa</literal>.
540 </para>
541 </listitem>
542 </varlistentry>
543 </variablelist>
544 </refsect1>
545
546 <refsect1>
547 <title>[IPVTAP] Section Options</title>
548
549 <para>The [IPVTAP] section only applies for netdevs of kind <literal>ipvtap</literal> and accepts the
550 same keys as [IPVLAN].</para>
551 </refsect1>
552
553 <refsect1>
554 <title>[VXLAN] Section Options</title>
555
556 <para>The [VXLAN] section only applies for
557 netdevs of kind <literal>vxlan</literal>, and accepts the
558 following keys:</para>
559
560 <variablelist class='network-directives'>
561 <varlistentry>
562 <term><varname>VNI=</varname></term>
563 <listitem>
564 <para>The VXLAN Network Identifier (or VXLAN Segment ID). Takes a number in the range 116777215.</para>
565 </listitem>
566 </varlistentry>
567 <varlistentry>
568 <term><varname>Remote=</varname></term>
569 <listitem>
570 <para>Configures destination IP address.</para>
571 </listitem>
572 </varlistentry>
573 <varlistentry>
574 <term><varname>Local=</varname></term>
575 <listitem>
576 <para>Configures local IP address. It must be an address on the underlying interface of the
577 VXLAN interface, or one of the special values <literal>ipv4_link_local</literal>,
578 <literal>ipv6_link_local</literal>, <literal>dhcp4</literal>, <literal>dhcp6</literal>, and
579 <literal>slaac</literal>. If one of the special values is specified, an address which matches
580 the corresponding type on the underlying interface will be used. Defaults to unset.</para>
581 </listitem>
582 </varlistentry>
583 <varlistentry>
584 <term><varname>Group=</varname></term>
585 <listitem>
586 <para>Configures VXLAN multicast group IP address. All members of a VXLAN must use the same
587 multicast group address.</para>
588 </listitem>
589 </varlistentry>
590 <varlistentry>
591 <term><varname>TOS=</varname></term>
592 <listitem>
593 <para>The Type Of Service byte value for a vxlan interface.</para>
594 </listitem>
595 </varlistentry>
596 <varlistentry>
597 <term><varname>TTL=</varname></term>
598 <listitem>
599 <para>A fixed Time To Live N on Virtual eXtensible Local Area Network packets.
600 Takes <literal>inherit</literal> or a number in the range 0255. 0 is a special
601 value meaning inherit the inner protocol's TTL value. <literal>inherit</literal>
602 means that it will inherit the outer protocol's TTL value.</para>
603 </listitem>
604 </varlistentry>
605 <varlistentry>
606 <term><varname>MacLearning=</varname></term>
607 <listitem>
608 <para>Takes a boolean. When true, enables dynamic MAC learning
609 to discover remote MAC addresses.</para>
610 </listitem>
611 </varlistentry>
612 <varlistentry>
613 <term><varname>FDBAgeingSec=</varname></term>
614 <listitem>
615 <para>The lifetime of Forwarding Database entry learnt by
616 the kernel, in seconds.</para>
617 </listitem>
618 </varlistentry>
619 <varlistentry>
620 <term><varname>MaximumFDBEntries=</varname></term>
621 <listitem>
622 <para>Configures maximum number of FDB entries.</para>
623 </listitem>
624 </varlistentry>
625 <varlistentry>
626 <term><varname>ReduceARPProxy=</varname></term>
627 <listitem>
628 <para>Takes a boolean. When true, bridge-connected VXLAN tunnel
629 endpoint answers ARP requests from the local bridge on behalf
630 of remote Distributed Overlay Virtual Ethernet
631 <ulink url="https://en.wikipedia.org/wiki/Distributed_Overlay_Virtual_Ethernet">
632 (DVOE)</ulink> clients. Defaults to false.</para>
633 </listitem>
634 </varlistentry>
635 <varlistentry>
636 <term><varname>L2MissNotification=</varname></term>
637 <listitem>
638 <para>Takes a boolean. When true, enables netlink LLADDR miss
639 notifications.</para>
640 </listitem>
641 </varlistentry>
642 <varlistentry>
643 <term><varname>L3MissNotification=</varname></term>
644 <listitem>
645 <para>Takes a boolean. When true, enables netlink IP address miss notifications.</para>
646 </listitem>
647 </varlistentry>
648 <varlistentry>
649 <term><varname>RouteShortCircuit=</varname></term>
650 <listitem>
651 <para>Takes a boolean. When true, route short circuiting is turned
652 on.</para>
653 </listitem>
654 </varlistentry>
655 <varlistentry>
656 <term><varname>UDPChecksum=</varname></term>
657 <listitem>
658 <para>Takes a boolean. When true, transmitting UDP checksums when doing VXLAN/IPv4 is turned on.</para>
659 </listitem>
660 </varlistentry>
661 <varlistentry>
662 <term><varname>UDP6ZeroChecksumTx=</varname></term>
663 <listitem>
664 <para>Takes a boolean. When true, sending zero checksums in VXLAN/IPv6 is turned on.</para>
665 </listitem>
666 </varlistentry>
667 <varlistentry>
668 <term><varname>UDP6ZeroChecksumRx=</varname></term>
669 <listitem>
670 <para>Takes a boolean. When true, receiving zero checksums in VXLAN/IPv6 is turned on.</para>
671 </listitem>
672 </varlistentry>
673 <varlistentry>
674 <term><varname>RemoteChecksumTx=</varname></term>
675 <listitem>
676 <para>Takes a boolean. When true, remote transmit checksum offload of VXLAN is turned on.</para>
677 </listitem>
678 </varlistentry>
679 <varlistentry>
680 <term><varname>RemoteChecksumRx=</varname></term>
681 <listitem>
682 <para>Takes a boolean. When true, remote receive checksum offload in VXLAN is turned on.</para>
683 </listitem>
684 </varlistentry>
685 <varlistentry>
686 <term><varname>GroupPolicyExtension=</varname></term>
687 <listitem>
688 <para>Takes a boolean. When true, it enables Group Policy VXLAN extension security label mechanism
689 across network peers based on VXLAN. For details about the Group Policy VXLAN, see the
690 <ulink url="https://tools.ietf.org/html/draft-smith-vxlan-group-policy">
691 VXLAN Group Policy </ulink> document. Defaults to false.</para>
692 </listitem>
693 </varlistentry>
694 <varlistentry>
695 <term><varname>GenericProtocolExtension=</varname></term>
696 <listitem>
697 <para>Takes a boolean. When true, Generic Protocol Extension extends the existing VXLAN protocol
698 to provide protocol typing, OAM, and versioning capabilities. For details about the VXLAN GPE
699 Header, see the <ulink url="https://tools.ietf.org/html/draft-ietf-nvo3-vxlan-gpe-07">
700 Generic Protocol Extension for VXLAN </ulink> document. If destination port is not specified and
701 Generic Protocol Extension is set then default port of 4790 is used. Defaults to false.</para>
702 </listitem>
703 </varlistentry>
704 <varlistentry>
705 <term><varname>DestinationPort=</varname></term>
706 <listitem>
707 <para>Configures the default destination UDP port. If the destination port is not specified then
708 Linux kernel default will be used. Set to 4789 to get the IANA assigned value.</para>
709 </listitem>
710 </varlistentry>
711 <varlistentry>
712 <term><varname>PortRange=</varname></term>
713 <listitem>
714 <para>Configures the source port range for the VXLAN. The kernel assigns the source UDP port based
715 on the flow to help the receiver to do load balancing. When this option is not set, the normal
716 range of local UDP ports is used.</para>
717 </listitem>
718 </varlistentry>
719 <varlistentry>
720 <term><varname>FlowLabel=</varname></term>
721 <listitem>
722 <para>Specifies the flow label to use in outgoing packets.
723 The valid range is 0-1048575.
724 </para>
725 </listitem>
726 </varlistentry>
727 <varlistentry>
728 <term><varname>IPDoNotFragment=</varname></term>
729 <listitem>
730 <para>Allows setting the IPv4 Do not Fragment (DF) bit in outgoing packets, or to inherit its
731 value from the IPv4 inner header. Takes a boolean value, or <literal>inherit</literal>. Set
732 to <literal>inherit</literal> if the encapsulated protocol is IPv6. When unset, the kernel's
733 default will be used.</para>
734 </listitem>
735 </varlistentry>
736 <varlistentry>
737 <term><varname>Independent=</varname></term>
738 <listitem>
739 <para>Takes a boolean. When true, the vxlan interface is created without any underlying network
740 interface. Defaults to false, which means that a .network file that requests this VXLAN interface
741 using <varname>VXLAN=</varname> is required for the VXLAN to be created.</para>
742 </listitem>
743 </varlistentry>
744 </variablelist>
745 </refsect1>
746
747 <refsect1>
748 <title>[GENEVE] Section Options</title>
749
750 <para>The [GENEVE] section only applies for
751 netdevs of kind <literal>geneve</literal>, and accepts the
752 following keys:</para>
753
754 <variablelist class='network-directives'>
755 <varlistentry>
756 <term><varname>Id=</varname></term>
757 <listitem>
758 <para>Specifies the Virtual Network Identifier (VNI) to use, a number between 0 and 16777215. This
759 field is mandatory.</para>
760 </listitem>
761 </varlistentry>
762 <varlistentry>
763 <term><varname>Remote=</varname></term>
764 <listitem>
765 <para>Specifies the unicast destination IP address to use in outgoing packets.</para>
766 </listitem>
767 </varlistentry>
768 <varlistentry>
769 <term><varname>TOS=</varname></term>
770 <listitem>
771 <para>Specifies the TOS value to use in outgoing packets. Takes a number between 1 and 255.</para>
772 </listitem>
773 </varlistentry>
774 <varlistentry>
775 <term><varname>TTL=</varname></term>
776 <listitem>
777 <para>Accepts the same values as in the [VXLAN] section, except that when unset
778 or set to 0, the kernel's default will be used, meaning that packet TTL will be set from
779 <filename>/proc/sys/net/ipv4/ip_default_ttl</filename>.</para>
780 </listitem>
781 </varlistentry>
782 <varlistentry>
783 <term><varname>UDPChecksum=</varname></term>
784 <listitem>
785 <para>Takes a boolean. When true, specifies that UDP checksum is calculated for transmitted packets
786 over IPv4.</para>
787 </listitem>
788 </varlistentry>
789 <varlistentry>
790 <term><varname>UDP6ZeroChecksumTx=</varname></term>
791 <listitem>
792 <para>Takes a boolean. When true, skip UDP checksum calculation for transmitted packets over IPv6.</para>
793 </listitem>
794 </varlistentry>
795 <varlistentry>
796 <term><varname>UDP6ZeroChecksumRx=</varname></term>
797 <listitem>
798 <para>Takes a boolean. When true, allows incoming UDP packets over IPv6 with zero checksum field.</para>
799 </listitem>
800 </varlistentry>
801 <varlistentry>
802 <term><varname>DestinationPort=</varname></term>
803 <listitem>
804 <para>Specifies destination port. Defaults to 6081. If not set or assigned the empty string, the default
805 port of 6081 is used.</para>
806 </listitem>
807 </varlistentry>
808 <varlistentry>
809 <term><varname>FlowLabel=</varname></term>
810 <listitem>
811 <para>Specifies the flow label to use in outgoing packets.</para>
812 </listitem>
813 </varlistentry>
814 <varlistentry>
815 <term><varname>IPDoNotFragment=</varname></term>
816 <listitem>
817 <para>Accepts the same key as in [VXLAN] section.</para>
818 </listitem>
819 </varlistentry>
820 </variablelist>
821 </refsect1>
822
823 <refsect1>
824 <title>[BareUDP] Section Options</title>
825
826 <para>The [BareUDP] section only applies for
827 netdevs of kind <literal>bareudp</literal>, and accepts the
828 following keys:</para>
829
830 <variablelist class='network-directives'>
831 <varlistentry>
832 <term><varname>DestinationPort=</varname></term>
833 <listitem>
834 <para>Specifies the destination UDP port (in range 165535). This is mandatory.</para>
835 </listitem>
836 </varlistentry>
837
838 <varlistentry>
839 <term><varname>EtherType=</varname></term>
840 <listitem>
841 <para>Specifies the L3 protocol. Takes one of <literal>ipv4</literal>, <literal>ipv6</literal>, <literal>mpls-uc</literal>
842 or <literal>mpls-mc</literal>. This is mandatory.</para>
843 </listitem>
844 </varlistentry>
845 </variablelist>
846 </refsect1>
847
848 <refsect1>
849 <title>[L2TP] Section Options</title>
850
851 <para>The [L2TP] section only applies for
852 netdevs of kind <literal>l2tp</literal>, and accepts the
853 following keys:</para>
854
855 <variablelist class='network-directives'>
856 <varlistentry>
857 <term><varname>TunnelId=</varname></term>
858 <listitem>
859 <para>Specifies the tunnel identifier. Takes an number in the range 14294967295. The value used
860 must match the <literal>PeerTunnelId=</literal> value being used at the peer. This setting is
861 compulsory.</para>
862 </listitem>
863 </varlistentry>
864 <varlistentry>
865 <term><varname>PeerTunnelId=</varname></term>
866 <listitem>
867 <para>Specifies the peer tunnel id. Takes a number in the range 14294967295. The value used must
868 match the <literal>TunnelId=</literal> value being used at the peer. This setting is compulsory.
869 </para>
870 </listitem>
871 </varlistentry>
872 <varlistentry>
873 <term><varname>Remote=</varname></term>
874 <listitem>
875 <para>Specifies the IP address of the remote peer. This setting is compulsory.</para>
876 </listitem>
877 </varlistentry>
878 <varlistentry>
879 <term><varname>Local=</varname></term>
880 <listitem>
881 <para>Specifies the IP address of the local interface. Takes an IP address, or the special values
882 <literal>auto</literal>, <literal>static</literal>, or <literal>dynamic</literal>. When an address
883 is set, then the local interface must have the address. If <literal>auto</literal>, then one of the
884 addresses on the local interface is used. Similarly, if <literal>static</literal> or
885 <literal>dynamic</literal> is set, then one of the static or dynamic addresses on the local
886 interface is used. Defaults to <literal>auto</literal>.</para>
887 </listitem>
888 </varlistentry>
889 <varlistentry>
890 <term><varname>EncapsulationType=</varname></term>
891 <listitem>
892 <para>Specifies the encapsulation type of the tunnel. Takes one of <literal>udp</literal> or
893 <literal>ip</literal>.</para>
894 </listitem>
895 </varlistentry>
896 <varlistentry>
897 <term><varname>UDPSourcePort=</varname></term>
898 <listitem>
899 <para>Specifies the UDP source port to be used for the tunnel. When UDP encapsulation is selected
900 it's mandatory. Ignored when IP encapsulation is selected.</para>
901 </listitem>
902 </varlistentry>
903 <varlistentry>
904 <term><varname>UDPDestinationPort=</varname></term>
905 <listitem>
906 <para>Specifies destination port. When UDP encapsulation is selected it's mandatory. Ignored when IP
907 encapsulation is selected.</para>
908 </listitem>
909 </varlistentry>
910 <varlistentry>
911 <term><varname>UDPChecksum=</varname></term>
912 <listitem>
913 <para>Takes a boolean. When true, specifies that UDP checksum is calculated for transmitted packets
914 over IPv4.</para>
915 </listitem>
916 </varlistentry>
917 <varlistentry>
918 <term><varname>UDP6ZeroChecksumTx=</varname></term>
919 <listitem>
920 <para>Takes a boolean. When true, skip UDP checksum calculation for transmitted packets over IPv6.</para>
921 </listitem>
922 </varlistentry>
923 <varlistentry>
924 <term><varname>UDP6ZeroChecksumRx=</varname></term>
925 <listitem>
926 <para>Takes a boolean. When true, allows incoming UDP packets over IPv6 with zero checksum field.</para>
927 </listitem>
928 </varlistentry>
929 </variablelist>
930 </refsect1>
931
932 <refsect1>
933 <title>[L2TPSession] Section Options</title>
934
935 <para>The [L2TPSession] section only applies for
936 netdevs of kind <literal>l2tp</literal>, and accepts the
937 following keys:</para>
938 <variablelist class='network-directives'>
939 <varlistentry>
940 <term><varname>Name=</varname></term>
941 <listitem>
942 <para>Specifies the name of the session. This setting is compulsory.</para>
943 </listitem>
944 </varlistentry>
945 <varlistentry>
946 <term><varname>SessionId=</varname></term>
947 <listitem>
948 <para>Specifies the session identifier. Takes an number in the range 14294967295. The value used
949 must match the <literal>SessionId=</literal> value being used at the peer. This setting is
950 compulsory.</para>
951 </listitem>
952 </varlistentry>
953 <varlistentry>
954 <term><varname>PeerSessionId=</varname></term>
955 <listitem>
956 <para>Specifies the peer session identifier. Takes an number in the range 14294967295.
957 The value used must match the <literal>PeerSessionId=</literal> value being used at the peer.
958 This setting is compulsory.</para>
959 </listitem>
960 </varlistentry>
961 <varlistentry>
962 <term><varname>Layer2SpecificHeader=</varname></term>
963 <listitem>
964 <para>Specifies layer2specific header type of the session. One of <literal>none</literal> or <literal>default</literal>. Defaults to <literal>default</literal>.</para>
965 </listitem>
966 </varlistentry>
967 </variablelist>
968 </refsect1>
969
970 <refsect1>
971 <title>[MACsec] Section Options</title>
972
973 <para>The [MACsec] section only applies for network devices of kind
974 <literal>macsec</literal>, and accepts the following keys:</para>
975
976 <variablelist class='network-directives'>
977 <varlistentry>
978 <term><varname>Port=</varname></term>
979 <listitem>
980 <para>Specifies the port to be used for the MACsec transmit channel. The port is used to make
981 secure channel identifier (SCI). Takes a value between 1 and 65535. Defaults to unset.
982 </para>
983 </listitem>
984 </varlistentry>
985 <varlistentry>
986 <term><varname>Encrypt=</varname></term>
987 <listitem>
988 <para>Takes a boolean. When true, enable encryption. Defaults to unset.</para>
989 </listitem>
990 </varlistentry>
991 </variablelist>
992 </refsect1>
993
994 <refsect1>
995 <title>[MACsecReceiveChannel] Section Options</title>
996 <para>The [MACsecReceiveChannel] section only applies for network devices of
997 kind <literal>macsec</literal>, and accepts the following keys:</para>
998
999 <variablelist class='network-directives'>
1000 <varlistentry>
1001 <term><varname>Port=</varname></term>
1002 <listitem>
1003 <para>Specifies the port to be used for the MACsec receive channel. The port is used to make
1004 secure channel identifier (SCI). Takes a value between 1 and 65535. This option is
1005 compulsory, and is not set by default.</para>
1006 </listitem>
1007 </varlistentry>
1008 <varlistentry>
1009 <term><varname>MACAddress=</varname></term>
1010 <listitem>
1011 <para>Specifies the MAC address to be used for the MACsec receive channel. The MAC address
1012 used to make secure channel identifier (SCI). This setting is compulsory, and is not set by
1013 default.</para>
1014 </listitem>
1015 </varlistentry>
1016 </variablelist>
1017 </refsect1>
1018
1019 <refsect1>
1020 <title>[MACsecTransmitAssociation] Section Options</title>
1021
1022 <para>The [MACsecTransmitAssociation] section only applies for network devices
1023 of kind <literal>macsec</literal>, and accepts the following keys:</para>
1024
1025 <variablelist class='network-directives'>
1026 <varlistentry>
1027 <term><varname>PacketNumber=</varname></term>
1028 <listitem>
1029 <para>Specifies the packet number to be used for replay protection and the construction of
1030 the initialization vector (along with the secure channel identifier [SCI]). Takes a value
1031 between 1-4,294,967,295. Defaults to unset.
1032 </para>
1033 </listitem>
1034 </varlistentry>
1035 <varlistentry>
1036 <term><varname>KeyId=</varname></term>
1037 <listitem>
1038 <para>Specifies the identification for the key. Takes a number between 0-255. This option
1039 is compulsory, and is not set by default.</para>
1040 </listitem>
1041 </varlistentry>
1042 <varlistentry>
1043 <term><varname>Key=</varname></term>
1044 <listitem>
1045 <para>Specifies the encryption key used in the transmission channel. The same key must be
1046 configured on the peer’s matching receive channel. This setting is compulsory, and is not set
1047 by default. Takes a 128-bit key encoded in a hexadecimal string, for example
1048 <literal>dffafc8d7b9a43d5b9a3dfbbf6a30c16</literal>.</para>
1049 </listitem>
1050 </varlistentry>
1051 <varlistentry>
1052 <term><varname>KeyFile=</varname></term>
1053 <listitem>
1054 <para>Takes an absolute path to a file which contains a 128-bit key encoded in a hexadecimal string,
1055 which will be used in the transmission channel. When this option is specified,
1056 <varname>Key=</varname> is ignored. Note that the file must be readable by the user
1057 <literal>systemd-network</literal>, so it should be, e.g., owned by
1058 <literal>root:systemd-network</literal> with a <literal>0640</literal> file mode. If the path
1059 refers to an <constant>AF_UNIX</constant> stream socket in the file system a connection is made to
1060 it and the key read from it.</para>
1061 </listitem>
1062 </varlistentry>
1063 <varlistentry>
1064 <term><varname>Activate=</varname></term>
1065 <listitem>
1066 <para>Takes a boolean. If enabled, then the security association is activated. Defaults to
1067 unset.</para>
1068 </listitem>
1069 </varlistentry>
1070 <varlistentry>
1071 <term><varname>UseForEncoding=</varname></term>
1072 <listitem>
1073 <para>Takes a boolean. If enabled, then the security association is used for encoding. Only
1074 one [MACsecTransmitAssociation] section can enable this option. When enabled,
1075 <varname>Activate=yes</varname> is implied. Defaults to unset.</para>
1076 </listitem>
1077 </varlistentry>
1078 </variablelist>
1079 </refsect1>
1080
1081 <refsect1>
1082 <title>[MACsecReceiveAssociation] Section Options</title>
1083
1084 <para>The [MACsecReceiveAssociation] section only applies for
1085 network devices of kind <literal>macsec</literal>, and accepts the
1086 following keys:</para>
1087
1088 <variablelist class='network-directives'>
1089 <varlistentry>
1090 <term><varname>Port=</varname></term>
1091 <listitem>
1092 <para>Accepts the same key as in [MACsecReceiveChannel] section.</para>
1093 </listitem>
1094 </varlistentry>
1095 <varlistentry>
1096 <term><varname>MACAddress=</varname></term>
1097 <listitem>
1098 <para>Accepts the same key as in [MACsecReceiveChannel] section.</para>
1099 </listitem>
1100 </varlistentry>
1101 <varlistentry>
1102 <term><varname>PacketNumber=</varname></term>
1103 <listitem>
1104 <para>Accepts the same key as in [MACsecTransmitAssociation] section.</para>
1105 </listitem>
1106 </varlistentry>
1107 <varlistentry>
1108 <term><varname>KeyId=</varname></term>
1109 <listitem>
1110 <para>Accepts the same key as in [MACsecTransmitAssociation] section.</para>
1111 </listitem>
1112 </varlistentry>
1113 <varlistentry>
1114 <term><varname>Key=</varname></term>
1115 <listitem>
1116 <para>Accepts the same key as in [MACsecTransmitAssociation] section.</para>
1117 </listitem>
1118 </varlistentry>
1119 <varlistentry>
1120 <term><varname>KeyFile=</varname></term>
1121 <listitem>
1122 <para>Accepts the same key as in [MACsecTransmitAssociation] section.</para>
1123 </listitem>
1124 </varlistentry>
1125 <varlistentry>
1126 <term><varname>Activate=</varname></term>
1127 <listitem>
1128 <para>Accepts the same key as in [MACsecTransmitAssociation] section.</para>
1129 </listitem>
1130 </varlistentry>
1131 </variablelist>
1132 </refsect1>
1133
1134 <refsect1>
1135 <title>[Tunnel] Section Options</title>
1136
1137 <para>The [Tunnel] section only applies for
1138 netdevs of kind
1139 <literal>ipip</literal>,
1140 <literal>sit</literal>,
1141 <literal>gre</literal>,
1142 <literal>gretap</literal>,
1143 <literal>ip6gre</literal>,
1144 <literal>ip6gretap</literal>,
1145 <literal>vti</literal>,
1146 <literal>vti6</literal>,
1147 <literal>ip6tnl</literal>, and
1148 <literal>erspan</literal> and accepts
1149 the following keys:</para>
1150
1151 <variablelist class='network-directives'>
1152 <varlistentry>
1153 <term><varname>Local=</varname></term>
1154 <listitem>
1155 <para>A static local address for tunneled packets. It must be an address on another interface
1156 of this host, or one of the special values <literal>any</literal>,
1157 <literal>ipv4_link_local</literal>, <literal>ipv6_link_local</literal>,
1158 <literal>dhcp4</literal>, <literal>dhcp6</literal>, and <literal>slaac</literal>. If one
1159 of the special values except for <literal>any</literal> is specified, an address which
1160 matches the corresponding type on the underlying interface will be used. Defaults to
1161 <literal>any</literal>.</para>
1162 </listitem>
1163 </varlistentry>
1164 <varlistentry>
1165 <term><varname>Remote=</varname></term>
1166 <listitem>
1167 <para>The remote endpoint of the tunnel. Takes an IP address or the special value
1168 <literal>any</literal>.</para>
1169 </listitem>
1170 </varlistentry>
1171 <varlistentry>
1172 <term><varname>TOS=</varname></term>
1173 <listitem>
1174 <para>The Type Of Service byte value for a tunnel interface.
1175 For details about the TOS, see the
1176 <ulink url="http://tools.ietf.org/html/rfc1349"> Type of
1177 Service in the Internet Protocol Suite </ulink> document.
1178 </para>
1179 </listitem>
1180 </varlistentry>
1181 <varlistentry>
1182 <term><varname>TTL=</varname></term>
1183 <listitem>
1184 <para>A fixed Time To Live N on tunneled packets. N is a
1185 number in the range 1255. 0 is a special value meaning that
1186 packets inherit the TTL value. The default value for IPv4
1187 tunnels is 0 (inherit). The default value for IPv6 tunnels is
1188 64.</para>
1189 </listitem>
1190 </varlistentry>
1191 <varlistentry>
1192 <term><varname>DiscoverPathMTU=</varname></term>
1193 <listitem>
1194 <para>Takes a boolean. When true, enables Path MTU Discovery on
1195 the tunnel.</para>
1196 </listitem>
1197 </varlistentry>
1198 <varlistentry>
1199 <term><varname>IPv6FlowLabel=</varname></term>
1200 <listitem>
1201 <para>Configures the 20-bit flow label (see <ulink url="https://tools.ietf.org/html/rfc6437">
1202 RFC 6437</ulink>) field in the IPv6 header (see <ulink url="https://tools.ietf.org/html/rfc2460">
1203 RFC 2460</ulink>), which is used by a node to label packets of a flow.
1204 It is only used for IPv6 tunnels.
1205 A flow label of zero is used to indicate packets that have
1206 not been labeled.
1207 It can be configured to a value in the range 00xFFFFF, or be
1208 set to <literal>inherit</literal>, in which case the original flowlabel is used.</para>
1209 </listitem>
1210 </varlistentry>
1211 <varlistentry>
1212 <term><varname>CopyDSCP=</varname></term>
1213 <listitem>
1214 <para>Takes a boolean. When true, the Differentiated Service Code
1215 Point (DSCP) field will be copied to the inner header from
1216 outer header during the decapsulation of an IPv6 tunnel
1217 packet. DSCP is a field in an IP packet that enables different
1218 levels of service to be assigned to network traffic.
1219 Defaults to <literal>no</literal>.
1220 </para>
1221 </listitem>
1222 </varlistentry>
1223 <varlistentry>
1224 <term><varname>EncapsulationLimit=</varname></term>
1225 <listitem>
1226 <para>The Tunnel Encapsulation Limit option specifies how many additional
1227 levels of encapsulation are permitted to be prepended to the packet.
1228 For example, a Tunnel Encapsulation Limit option containing a limit
1229 value of zero means that a packet carrying that option may not enter
1230 another tunnel before exiting the current tunnel.
1231 (see <ulink url="https://tools.ietf.org/html/rfc2473#section-4.1.1"> RFC 2473</ulink>).
1232 The valid range is 0255 and <literal>none</literal>. Defaults to 4.
1233 </para>
1234 </listitem>
1235 </varlistentry>
1236 <varlistentry>
1237 <term><varname>Key=</varname></term>
1238 <listitem>
1239 <para>The <varname>Key=</varname> parameter specifies the same key to use in
1240 both directions (<varname>InputKey=</varname> and <varname>OutputKey=</varname>).
1241 The <varname>Key=</varname> is either a number or an IPv4 address-like dotted quad.
1242 It is used as mark-configured SAD/SPD entry as part of the lookup key (both in data
1243 and control path) in IP XFRM (framework used to implement IPsec protocol).
1244 See <ulink url="http://man7.org/linux/man-pages/man8/ip-xfrm.8.html">
1245 ip-xfrm — transform configuration</ulink> for details. It is only used for VTI/VTI6,
1246 GRE, GRETAP, and ERSPAN tunnels.</para>
1247 </listitem>
1248 </varlistentry>
1249 <varlistentry>
1250 <term><varname>InputKey=</varname></term>
1251 <listitem>
1252 <para>The <varname>InputKey=</varname> parameter specifies the key to use for input.
1253 The format is same as <varname>Key=</varname>. It is only used for VTI/VTI6, GRE, GRETAP,
1254 and ERSPAN tunnels.</para>
1255 </listitem>
1256 </varlistentry>
1257 <varlistentry>
1258 <term><varname>OutputKey=</varname></term>
1259 <listitem>
1260 <para>The <varname>OutputKey=</varname> parameter specifies the key to use for output.
1261 The format is same as <varname>Key=</varname>. It is only used for VTI/VTI6, GRE, GRETAP,
1262 and ERSPAN tunnels.</para>
1263 </listitem>
1264 </varlistentry>
1265 <varlistentry>
1266 <term><varname>Mode=</varname></term>
1267 <listitem>
1268 <para>An <literal>ip6tnl</literal> tunnel can be in one of three
1269 modes
1270 <literal>ip6ip6</literal> for IPv6 over IPv6,
1271 <literal>ipip6</literal> for IPv4 over IPv6 or
1272 <literal>any</literal> for either.
1273 </para>
1274 </listitem>
1275 </varlistentry>
1276 <varlistentry>
1277 <term><varname>Independent=</varname></term>
1278 <listitem>
1279 <para>Takes a boolean. When false (the default), the tunnel is always created over some network
1280 device, and a .network file that requests this tunnel using <varname>Tunnel=</varname> is required
1281 for the tunnel to be created. When true, the tunnel is created independently of any network as
1282 "tunnel@NONE".</para>
1283 </listitem>
1284 </varlistentry>
1285 <varlistentry>
1286 <term><varname>AssignToLoopback=</varname></term>
1287 <listitem>
1288 <para>Takes a boolean. If set to <literal>yes</literal>, the loopback interface <literal>lo</literal>
1289 is used as the underlying device of the tunnel interface. Defaults to <literal>no</literal>.</para>
1290 </listitem>
1291 </varlistentry>
1292 <varlistentry>
1293 <term><varname>AllowLocalRemote=</varname></term>
1294 <listitem>
1295 <para>Takes a boolean. When true allows tunnel traffic on <varname>ip6tnl</varname> devices where the remote endpoint is a local host address.
1296 When unset, the kernel's default will be used.
1297 </para>
1298 </listitem>
1299 </varlistentry>
1300 <varlistentry>
1301 <term><varname>FooOverUDP=</varname></term>
1302 <listitem>
1303 <para>Takes a boolean. Specifies whether <varname>FooOverUDP=</varname> tunnel is to be configured.
1304 Defaults to false. This takes effects only for IPIP, SIT, GRE, and GRETAP tunnels.
1305 For more detail information see
1306 <ulink url="https://lwn.net/Articles/614348">Foo over UDP</ulink></para>
1307 </listitem>
1308 </varlistentry>
1309 <varlistentry>
1310 <term><varname>FOUDestinationPort=</varname></term>
1311 <listitem>
1312 <para>This setting specifies the UDP destination port for encapsulation.
1313 This field is mandatory when <varname>FooOverUDP=yes</varname>, and is not set by default.</para>
1314 </listitem>
1315 </varlistentry>
1316 <varlistentry>
1317 <term><varname>FOUSourcePort=</varname></term>
1318 <listitem>
1319 <para>This setting specifies the UDP source port for encapsulation. Defaults to <constant>0</constant>
1320 — that is, the source port for packets is left to the network stack to decide.</para>
1321 </listitem>
1322 </varlistentry>
1323 <varlistentry>
1324 <term><varname>Encapsulation=</varname></term>
1325 <listitem>
1326 <para>Accepts the same key as in the [FooOverUDP] section.</para>
1327 </listitem>
1328 </varlistentry>
1329 <varlistentry>
1330 <term><varname>IPv6RapidDeploymentPrefix=</varname></term>
1331 <listitem>
1332 <para>Reconfigure the tunnel for <ulink url="https://tools.ietf.org/html/rfc5569">IPv6 Rapid
1333 Deployment</ulink>, also known as 6rd. The value is an ISP-specific IPv6 prefix with a non-zero length. Only
1334 applicable to SIT tunnels.</para>
1335 </listitem>
1336 </varlistentry>
1337 <varlistentry>
1338 <term><varname>ISATAP=</varname></term>
1339 <listitem>
1340 <para>Takes a boolean. If set, configures the tunnel as Intra-Site Automatic Tunnel Addressing Protocol (ISATAP) tunnel.
1341 Only applicable to SIT tunnels. When unset, the kernel's default will be used.</para>
1342 </listitem>
1343 </varlistentry>
1344 <varlistentry>
1345 <term><varname>SerializeTunneledPackets=</varname></term>
1346 <listitem>
1347 <para>Takes a boolean. If set to yes, then packets are serialized. Only applies for GRE,
1348 GRETAP, and ERSPAN tunnels. When unset, the kernel's default will be used.
1349 </para>
1350 </listitem>
1351 </varlistentry>
1352 <varlistentry>
1353 <term><varname>ERSPANIndex=</varname></term>
1354 <listitem>
1355 <para>Specifies the ERSPAN index field for the interface, an integer in the range 11048575 associated with
1356 the ERSPAN traffic's source port and direction. This field is mandatory.
1357 </para>
1358 </listitem>
1359 </varlistentry>
1360 </variablelist>
1361 </refsect1>
1362
1363 <refsect1>
1364 <title>[FooOverUDP] Section Options</title>
1365
1366 <para>The [FooOverUDP] section only applies for
1367 netdevs of kind <literal>fou</literal> and accepts the
1368 following keys:</para>
1369
1370 <variablelist class='network-directives'>
1371 <varlistentry>
1372 <term><varname>Encapsulation=</varname></term>
1373 <listitem>
1374 <para>Specifies the encapsulation mechanism used to store networking packets of various protocols
1375 inside the UDP packets. Supports the following values:
1376
1377 <literal>FooOverUDP</literal> provides the simplest no-frills model of UDP encapsulation, it simply
1378 encapsulates packets directly in the UDP payload. <literal>GenericUDPEncapsulation</literal> is a
1379 generic and extensible encapsulation, it allows encapsulation of packets for any IP protocol and
1380 optional data as part of the encapsulation. For more detailed information see <ulink
1381 url="https://lwn.net/Articles/615044">Generic UDP Encapsulation</ulink>. Defaults to
1382 <literal>FooOverUDP</literal>.
1383 </para>
1384 </listitem>
1385 </varlistentry>
1386 <varlistentry>
1387 <term><varname>Port=</varname></term>
1388 <listitem>
1389 <para>Specifies the port number where the encapsulated packets will arrive. Those packets will be
1390 removed and manually fed back into the network stack with the encapsulation removed to be sent to
1391 the real destination. This option is mandatory.</para>
1392 </listitem>
1393 </varlistentry>
1394 <varlistentry>
1395 <term><varname>PeerPort=</varname></term>
1396 <listitem>
1397 <para>Specifies the peer port number. Defaults to unset. Note that when peer port is set
1398 <literal>Peer=</literal> address is mandatory.</para>
1399 </listitem>
1400 </varlistentry>
1401 <varlistentry>
1402 <term><varname>Protocol=</varname></term>
1403 <listitem>
1404 <para>The <varname>Protocol=</varname> specifies the protocol number of the packets arriving
1405 at the UDP port. When <varname>Encapsulation=FooOverUDP</varname>, this field is mandatory
1406 and is not set by default. Takes an IP protocol name such as <literal>gre</literal> or
1407 <literal>ipip</literal>, or an integer within the range 1255. When
1408 <varname>Encapsulation=GenericUDPEncapsulation</varname>, this must not be specified.</para>
1409 </listitem>
1410 </varlistentry>
1411 <varlistentry>
1412 <term><varname>Peer=</varname></term>
1413 <listitem>
1414 <para>Configures peer IP address. Note that when peer address is set <literal>PeerPort=</literal>
1415 is mandatory.</para>
1416 </listitem>
1417 </varlistentry>
1418 <varlistentry>
1419 <term><varname>Local=</varname></term>
1420 <listitem>
1421 <para>Configures local IP address.</para>
1422 </listitem>
1423 </varlistentry>
1424 </variablelist>
1425 </refsect1>
1426
1427 <refsect1>
1428 <title>[Peer] Section Options</title>
1429
1430 <para>The [Peer] section only applies for
1431 netdevs of kind <literal>veth</literal> and accepts the
1432 following keys:</para>
1433
1434 <variablelist class='network-directives'>
1435 <varlistentry>
1436 <term><varname>Name=</varname></term>
1437 <listitem>
1438 <para>The interface name used when creating the netdev.
1439 This setting is compulsory.</para>
1440 </listitem>
1441 </varlistentry>
1442 <varlistentry>
1443 <term><varname>MACAddress=</varname></term>
1444 <listitem>
1445 <para>The peer MACAddress, if not set, it is generated in
1446 the same way as the MAC address of the main
1447 interface.</para>
1448 </listitem>
1449 </varlistentry>
1450 </variablelist>
1451 </refsect1>
1452
1453 <refsect1>
1454 <title>[VXCAN] Section Options</title>
1455
1456 <para>The [VXCAN] section only applies for
1457 netdevs of kind <literal>vxcan</literal> and accepts the
1458 following key:</para>
1459
1460 <variablelist class='network-directives'>
1461 <varlistentry>
1462 <term><varname>Peer=</varname></term>
1463 <listitem>
1464 <para>The peer interface name used when creating the netdev.
1465 This setting is compulsory.</para>
1466 </listitem>
1467 </varlistentry>
1468 </variablelist>
1469 </refsect1>
1470
1471 <refsect1>
1472 <title>[Tun] Section Options</title>
1473
1474 <para>The [Tun] section only applies for
1475 netdevs of kind <literal>tun</literal>, and accepts the following
1476 keys:</para>
1477
1478 <variablelist class='network-directives'>
1479 <varlistentry>
1480 <term><varname>MultiQueue=</varname></term>
1481 <listitem><para>Takes a boolean. Configures whether
1482 to use multiple file descriptors (queues) to parallelize
1483 packets sending and receiving. Defaults to
1484 <literal>no</literal>.</para>
1485 </listitem>
1486 </varlistentry>
1487 <varlistentry>
1488 <term><varname>PacketInfo=</varname></term>
1489 <listitem><para>Takes a boolean. Configures whether
1490 packets should be prepended with four extra bytes (two flag
1491 bytes and two protocol bytes). If disabled, it indicates that
1492 the packets will be pure IP packets. Defaults to
1493 <literal>no</literal>.</para>
1494 </listitem>
1495 </varlistentry>
1496 <varlistentry>
1497 <term><varname>VNetHeader=</varname></term>
1498 <listitem><para>Takes a boolean. Configures
1499 IFF_VNET_HDR flag for a tun or tap device. It allows sending
1500 and receiving larger Generic Segmentation Offload (GSO)
1501 packets. This may increase throughput significantly.
1502 Defaults to
1503 <literal>no</literal>.</para>
1504 </listitem>
1505 </varlistentry>
1506 <varlistentry>
1507 <term><varname>User=</varname></term>
1508 <listitem><para>User to grant access to the
1509 <filename>/dev/net/tun</filename> device.</para>
1510 </listitem>
1511 </varlistentry>
1512 <varlistentry>
1513 <term><varname>Group=</varname></term>
1514 <listitem><para>Group to grant access to the
1515 <filename>/dev/net/tun</filename> device.</para>
1516 </listitem>
1517 </varlistentry>
1518 </variablelist>
1519 </refsect1>
1520
1521 <refsect1>
1522 <title>[Tap] Section Options</title>
1523
1524 <para>The [Tap] section only applies for
1525 netdevs of kind <literal>tap</literal>, and accepts the same keys
1526 as the [Tun] section.</para>
1527 </refsect1>
1528
1529 <refsect1>
1530 <title>[WireGuard] Section Options</title>
1531
1532 <para>The [WireGuard] section accepts the following
1533 keys:</para>
1534
1535 <variablelist class='network-directives'>
1536 <varlistentry>
1537 <term><varname>PrivateKey=</varname></term>
1538 <listitem>
1539 <para>The Base64 encoded private key for the interface. It can be
1540 generated using the <command>wg genkey</command> command
1541 (see <citerefentry project="wireguard"><refentrytitle>wg</refentrytitle><manvolnum>8</manvolnum></citerefentry>).
1542 This option or <varname>PrivateKeyFile=</varname> is mandatory to use WireGuard.
1543 Note that because this information is secret, you may want to set
1544 the permissions of the .netdev file to be owned by <literal>root:systemd-network</literal>
1545 with a <literal>0640</literal> file mode.</para>
1546 </listitem>
1547 </varlistentry>
1548 <varlistentry>
1549 <term><varname>PrivateKeyFile=</varname></term>
1550 <listitem>
1551 <para>Takes an absolute path to a file which contains the Base64 encoded private key for the
1552 interface. When this option is specified, then <varname>PrivateKey=</varname> is ignored. Note
1553 that the file must be readable by the user <literal>systemd-network</literal>, so it should be,
1554 e.g., owned by <literal>root:systemd-network</literal> with a <literal>0640</literal> file mode. If
1555 the path refers to an <constant>AF_UNIX</constant> stream socket in the file system a connection is
1556 made to it and the key read from it.</para>
1557 </listitem>
1558 </varlistentry>
1559 <varlistentry>
1560 <term><varname>ListenPort=</varname></term>
1561 <listitem>
1562 <para>Sets UDP port for listening. Takes either value between 1 and 65535
1563 or <literal>auto</literal>. If <literal>auto</literal> is specified,
1564 the port is automatically generated based on interface name.
1565 Defaults to <literal>auto</literal>.</para>
1566 </listitem>
1567 </varlistentry>
1568 <varlistentry>
1569 <term><varname>FirewallMark=</varname></term>
1570 <listitem>
1571 <para>Sets a firewall mark on outgoing WireGuard packets from this interface. Takes a number between 1 and 4294967295.</para>
1572 </listitem>
1573 </varlistentry>
1574 <varlistentry>
1575 <term><varname>RouteTable=</varname></term>
1576 <listitem>
1577 <para>The table identifier for the routes to the addresses specified in the
1578 <varname>AllowedIPs=</varname>. Takes a negative boolean value, one of the predefined names
1579 <literal>default</literal>, <literal>main</literal>, and <literal>local</literal>, names
1580 defined in <varname>RouteTable=</varname> in
1581 <citerefentry><refentrytitle>networkd.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
1582 or a number in the range 14294967295. When <literal>off</literal> the routes to the
1583 addresses specified in the <varname>AllowedIPs=</varname> setting will not be configured.
1584 Defaults to false. This setting will be ignored when the same setting is specified in the
1585 [WireGuardPeer] section.</para>
1586 </listitem>
1587 </varlistentry>
1588 <varlistentry>
1589 <term><varname>RouteMetric=</varname></term>
1590 <listitem>
1591 <para>The priority of the routes to the addresses specified in the
1592 <varname>AllowedIPs=</varname>. Takes an integer in the range 04294967295. Defaults to 0
1593 for IPv4 addresses, and 1024 for IPv6 addresses. This setting will be ignored when the same
1594 setting is specified in the [WireGuardPeer] section.</para>
1595 </listitem>
1596 </varlistentry>
1597 </variablelist>
1598 </refsect1>
1599
1600 <refsect1>
1601 <title>[WireGuardPeer] Section Options</title>
1602
1603 <para>The [WireGuardPeer] section accepts the following
1604 keys:</para>
1605
1606 <variablelist class='network-directives'>
1607 <varlistentry>
1608 <term><varname>PublicKey=</varname></term>
1609 <listitem>
1610 <para>Sets a Base64 encoded public key calculated by <command>wg pubkey</command>
1611 (see <citerefentry project="wireguard"><refentrytitle>wg</refentrytitle><manvolnum>8</manvolnum></citerefentry>)
1612 from a private key, and usually transmitted out of band to the
1613 author of the configuration file. This option is mandatory for this
1614 section.</para>
1615 </listitem>
1616 </varlistentry>
1617 <varlistentry>
1618 <term><varname>PresharedKey=</varname></term>
1619 <listitem>
1620 <para>Optional preshared key for the interface. It can be generated
1621 by the <command>wg genpsk</command> command. This option adds an
1622 additional layer of symmetric-key cryptography to be mixed into the
1623 already existing public-key cryptography, for post-quantum
1624 resistance.
1625 Note that because this information is secret, you may want to set
1626 the permissions of the .netdev file to be owned by <literal>root:systemd-network</literal>
1627 with a <literal>0640</literal> file mode.</para>
1628 </listitem>
1629 </varlistentry>
1630 <varlistentry>
1631 <term><varname>PresharedKeyFile=</varname></term>
1632 <listitem>
1633 <para>Takes an absolute path to a file which contains the Base64 encoded preshared key for the
1634 peer. When this option is specified, then <varname>PresharedKey=</varname> is ignored. Note that
1635 the file must be readable by the user <literal>systemd-network</literal>, so it should be, e.g.,
1636 owned by <literal>root:systemd-network</literal> with a <literal>0640</literal> file mode. If the
1637 path refers to an <constant>AF_UNIX</constant> stream socket in the file system a connection is
1638 made to it and the key read from it.</para>
1639 </listitem>
1640 </varlistentry>
1641 <varlistentry>
1642 <term><varname>AllowedIPs=</varname></term>
1643 <listitem>
1644 <para>Sets a comma-separated list of IP (v4 or v6) addresses with CIDR masks
1645 from which this peer is allowed to send incoming traffic and to
1646 which outgoing traffic for this peer is directed.</para>
1647
1648 <para>The catch-all 0.0.0.0/0 may be specified for matching all IPv4 addresses,
1649 and ::/0 may be specified for matching all IPv6 addresses.</para>
1650
1651 <para>Note that this only affects <emphasis>routing inside the network interface itself</emphasis>,
1652 i.e. the packets that pass through the tunnel itself. To cause packets to be sent via the tunnel in
1653 the first place, an appropriate route needs to be added as well — either in the
1654 <literal>[Routes]</literal> section on the <literal>.network</literal> matching the wireguard
1655 interface, or externally to <filename>systemd-networkd</filename>.</para>
1656 </listitem>
1657 </varlistentry>
1658 <varlistentry>
1659 <term><varname>Endpoint=</varname></term>
1660 <listitem>
1661 <para>Sets an endpoint IP address or hostname, followed by a colon, and then
1662 a port number. This endpoint will be updated automatically once to
1663 the most recent source IP address and port of correctly
1664 authenticated packets from the peer at configuration time.</para>
1665 </listitem>
1666 </varlistentry>
1667 <varlistentry>
1668 <term><varname>PersistentKeepalive=</varname></term>
1669 <listitem>
1670 <para>Sets a seconds interval, between 1 and 65535 inclusive, of how often
1671 to send an authenticated empty packet to the peer for the purpose
1672 of keeping a stateful firewall or NAT mapping valid persistently.
1673 For example, if the interface very rarely sends traffic, but it
1674 might at anytime receive traffic from a peer, and it is behind NAT,
1675 the interface might benefit from having a persistent keepalive
1676 interval of 25 seconds. If set to 0 or "off", this option is
1677 disabled. By default or when unspecified, this option is off.
1678 Most users will not need this.</para>
1679 </listitem>
1680 </varlistentry>
1681 <varlistentry>
1682 <term><varname>RouteTable=</varname></term>
1683 <listitem>
1684 <para>The table identifier for the routes to the addresses specified in the
1685 <varname>AllowedIPs=</varname>. Takes a negative boolean value, one of the predefined names
1686 <literal>default</literal>, <literal>main</literal>, and <literal>local</literal>, names
1687 defined in <varname>RouteTable=</varname> in
1688 <citerefentry><refentrytitle>networkd.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
1689 or a number in the range 14294967295. Defaults to unset, and the value specified in the
1690 same setting in the [WireGuard] section will be used.</para>
1691 </listitem>
1692 </varlistentry>
1693 <varlistentry>
1694 <term><varname>RouteMetric=</varname></term>
1695 <listitem>
1696 <para>The priority of the routes to the addresses specified in the
1697 <varname>AllowedIPs=</varname>. Takes an integer in the range 04294967295. Defaults to
1698 unset, and the value specified in the same setting in the [WireGuard] section will be used.
1699 </para>
1700 </listitem>
1701 </varlistentry>
1702 </variablelist>
1703 </refsect1>
1704
1705 <refsect1>
1706 <title>[Bond] Section Options</title>
1707
1708 <para>The [Bond] section accepts the following
1709 key:</para>
1710
1711 <variablelist class='network-directives'>
1712 <varlistentry>
1713 <term><varname>Mode=</varname></term>
1714 <listitem>
1715 <para>Specifies one of the bonding policies. The default is
1716 <literal>balance-rr</literal> (round robin). Possible values are
1717 <literal>balance-rr</literal>,
1718 <literal>active-backup</literal>,
1719 <literal>balance-xor</literal>,
1720 <literal>broadcast</literal>,
1721 <literal>802.3ad</literal>,
1722 <literal>balance-tlb</literal>, and
1723 <literal>balance-alb</literal>.
1724 </para>
1725 </listitem>
1726 </varlistentry>
1727
1728 <varlistentry>
1729 <term><varname>TransmitHashPolicy=</varname></term>
1730 <listitem>
1731 <para>Selects the transmit hash policy to use for slave
1732 selection in balance-xor, 802.3ad, and tlb modes. Possible
1733 values are
1734 <literal>layer2</literal>,
1735 <literal>layer3+4</literal>,
1736 <literal>layer2+3</literal>,
1737 <literal>encap2+3</literal>, and
1738 <literal>encap3+4</literal>.
1739 </para>
1740 </listitem>
1741 </varlistentry>
1742
1743 <varlistentry>
1744 <term><varname>LACPTransmitRate=</varname></term>
1745 <listitem>
1746 <para>Specifies the rate with which link partner transmits
1747 Link Aggregation Control Protocol Data Unit packets in
1748 802.3ad mode. Possible values are <literal>slow</literal>,
1749 which requests partner to transmit LACPDUs every 30 seconds,
1750 and <literal>fast</literal>, which requests partner to
1751 transmit LACPDUs every second. The default value is
1752 <literal>slow</literal>.</para>
1753 </listitem>
1754 </varlistentry>
1755
1756 <varlistentry>
1757 <term><varname>MIIMonitorSec=</varname></term>
1758 <listitem>
1759 <para>Specifies the frequency that Media Independent
1760 Interface link monitoring will occur. A value of zero
1761 disables MII link monitoring. This value is rounded down to
1762 the nearest millisecond. The default value is 0.</para>
1763 </listitem>
1764 </varlistentry>
1765
1766 <varlistentry>
1767 <term><varname>UpDelaySec=</varname></term>
1768 <listitem>
1769 <para>Specifies the delay before a link is enabled after a
1770 link up status has been detected. This value is rounded down
1771 to a multiple of <varname>MIIMonitorSec=</varname>. The default value is
1772 0.</para>
1773 </listitem>
1774 </varlistentry>
1775
1776 <varlistentry>
1777 <term><varname>DownDelaySec=</varname></term>
1778 <listitem>
1779 <para>Specifies the delay before a link is disabled after a
1780 link down status has been detected. This value is rounded
1781 down to a multiple of <varname>MIIMonitorSec=</varname>. The default value is
1782 0.</para>
1783 </listitem>
1784 </varlistentry>
1785
1786 <varlistentry>
1787 <term><varname>LearnPacketIntervalSec=</varname></term>
1788 <listitem>
1789 <para>Specifies the number of seconds between instances where the bonding
1790 driver sends learning packets to each slave peer switch.
1791 The valid range is 10x7fffffff; the default value is 1. This option
1792 has an effect only for the balance-tlb and balance-alb modes.</para>
1793 </listitem>
1794 </varlistentry>
1795
1796 <varlistentry>
1797 <term><varname>AdSelect=</varname></term>
1798 <listitem>
1799 <para>Specifies the 802.3ad aggregation selection logic to use. Possible values are
1800 <literal>stable</literal>,
1801 <literal>bandwidth</literal> and
1802 <literal>count</literal>.
1803 </para>
1804 </listitem>
1805 </varlistentry>
1806
1807 <varlistentry>
1808 <term><varname>AdActorSystemPriority=</varname></term>
1809 <listitem>
1810 <para>Specifies the 802.3ad actor system priority. Takes a number in the range 165535.</para>
1811 </listitem>
1812 </varlistentry>
1813
1814 <varlistentry>
1815 <term><varname>AdUserPortKey=</varname></term>
1816 <listitem>
1817 <para>Specifies the 802.3ad user defined portion of the port key. Takes a number in the range
1818 01023.</para>
1819 </listitem>
1820 </varlistentry>
1821
1822 <varlistentry>
1823 <term><varname>AdActorSystem=</varname></term>
1824 <listitem>
1825 <para>Specifies the 802.3ad system MAC address. This cannot be a null or multicast address.
1826 </para>
1827 </listitem>
1828 </varlistentry>
1829
1830 <varlistentry>
1831 <term><varname>FailOverMACPolicy=</varname></term>
1832 <listitem>
1833 <para>Specifies whether the active-backup mode should set all slaves to
1834 the same MAC address at the time of enslavement or, when enabled, to perform special handling of the
1835 bond's MAC address in accordance with the selected policy. The default policy is none.
1836 Possible values are
1837 <literal>none</literal>,
1838 <literal>active</literal> and
1839 <literal>follow</literal>.
1840 </para>
1841 </listitem>
1842 </varlistentry>
1843
1844 <varlistentry>
1845 <term><varname>ARPValidate=</varname></term>
1846 <listitem>
1847 <para>Specifies whether or not ARP probes and replies should be
1848 validated in any mode that supports ARP monitoring, or whether
1849 non-ARP traffic should be filtered (disregarded) for link
1850 monitoring purposes. Possible values are
1851 <literal>none</literal>,
1852 <literal>active</literal>,
1853 <literal>backup</literal> and
1854 <literal>all</literal>.
1855 </para>
1856 </listitem>
1857 </varlistentry>
1858
1859 <varlistentry>
1860 <term><varname>ARPIntervalSec=</varname></term>
1861 <listitem>
1862 <para>Specifies the ARP link monitoring frequency. A value of 0 disables ARP monitoring. The
1863 default value is 0, and the default unit seconds.
1864 </para>
1865 </listitem>
1866 </varlistentry>
1867
1868 <varlistentry>
1869 <term><varname>ARPIPTargets=</varname></term>
1870 <listitem>
1871 <para>Specifies the IP addresses to use as ARP monitoring peers when
1872 <varname>ARPIntervalSec=</varname> is greater than 0. These are the targets of the ARP
1873 request sent to determine the health of the link to the targets.
1874 Specify these values in IPv4 dotted decimal format. At least one IP
1875 address must be given for ARP monitoring to function. The
1876 maximum number of targets that can be specified is 16. The
1877 default value is no IP addresses.
1878 </para>
1879 </listitem>
1880 </varlistentry>
1881
1882 <varlistentry>
1883 <term><varname>ARPAllTargets=</varname></term>
1884 <listitem>
1885 <para>Specifies the quantity of <varname>ARPIPTargets=</varname> that must be reachable
1886 in order for the ARP monitor to consider a slave as being up.
1887 This option affects only active-backup mode for slaves with
1888 ARPValidate enabled. Possible values are
1889 <literal>any</literal> and
1890 <literal>all</literal>.
1891 </para>
1892 </listitem>
1893 </varlistentry>
1894
1895 <varlistentry>
1896 <term><varname>PrimaryReselectPolicy=</varname></term>
1897 <listitem>
1898 <para>Specifies the reselection policy for the primary slave. This
1899 affects how the primary slave is chosen to become the active slave
1900 when failure of the active slave or recovery of the primary slave
1901 occurs. This option is designed to prevent flip-flopping between
1902 the primary slave and other slaves. Possible values are
1903 <literal>always</literal>,
1904 <literal>better</literal> and
1905 <literal>failure</literal>.
1906 </para>
1907 </listitem>
1908 </varlistentry>
1909
1910 <varlistentry>
1911 <term><varname>ResendIGMP=</varname></term>
1912 <listitem>
1913 <para>Specifies the number of IGMP membership reports to be issued after
1914 a failover event. One membership report is issued immediately after
1915 the failover, subsequent packets are sent in each 200ms interval.
1916 The valid range is 0255. Defaults to 1. A value of 0
1917 prevents the IGMP membership report from being issued in response
1918 to the failover event.
1919 </para>
1920 </listitem>
1921 </varlistentry>
1922
1923 <varlistentry>
1924 <term><varname>PacketsPerSlave=</varname></term>
1925 <listitem>
1926 <para>Specify the number of packets to transmit through a slave before
1927 moving to the next one. When set to 0, then a slave is chosen at
1928 random. The valid range is 065535. Defaults to 1. This option
1929 only has effect when in balance-rr mode.
1930 </para>
1931 </listitem>
1932 </varlistentry>
1933
1934 <varlistentry>
1935 <term><varname>GratuitousARP=</varname></term>
1936 <listitem>
1937 <para>Specify the number of peer notifications (gratuitous ARPs and
1938 unsolicited IPv6 Neighbor Advertisements) to be issued after a
1939 failover event. As soon as the link is up on the new slave,
1940 a peer notification is sent on the bonding device and each
1941 VLAN sub-device. This is repeated at each link monitor interval
1942 (ARPIntervalSec or MIIMonitorSec, whichever is active) if the number is
1943 greater than 1. The valid range is 0255. The default value is 1.
1944 These options affect only the active-backup mode.
1945 </para>
1946 </listitem>
1947 </varlistentry>
1948
1949 <varlistentry>
1950 <term><varname>AllSlavesActive=</varname></term>
1951 <listitem>
1952 <para>Takes a boolean. Specifies that duplicate frames (received on inactive ports)
1953 should be dropped when false, or delivered when true. Normally, bonding will drop
1954 duplicate frames (received on inactive ports), which is desirable for
1955 most users. But there are some times it is nice to allow duplicate
1956 frames to be delivered. The default value is false (drop duplicate frames
1957 received on inactive ports).
1958 </para>
1959 </listitem>
1960 </varlistentry>
1961
1962 <varlistentry>
1963 <term><varname>DynamicTransmitLoadBalancing=</varname></term>
1964 <listitem>
1965 <para>Takes a boolean. Specifies if dynamic shuffling of flows is enabled. Applies only
1966 for balance-tlb mode. Defaults to unset.
1967 </para>
1968 </listitem>
1969 </varlistentry>
1970
1971 <varlistentry>
1972 <term><varname>MinLinks=</varname></term>
1973 <listitem>
1974 <para>Specifies the minimum number of links that must be active before
1975 asserting carrier. The default value is 0.
1976 </para>
1977 </listitem>
1978 </varlistentry>
1979 </variablelist>
1980
1981 <para>For more detail information see
1982 <ulink url="https://www.kernel.org/doc/Documentation/networking/bonding.txt">
1983 Linux Ethernet Bonding Driver HOWTO</ulink></para>
1984 </refsect1>
1985
1986 <refsect1>
1987 <title>[Xfrm] Section Options</title>
1988
1989 <para>The [Xfrm] section accepts the following
1990 keys:</para>
1991
1992 <variablelist class='network-directives'>
1993 <varlistentry>
1994 <term><varname>InterfaceId=</varname></term>
1995 <listitem>
1996 <para>Sets the ID/key of the xfrm interface which needs to be associated with a SA/policy.
1997 Can be decimal or hexadecimal, valid range is 1-0xffffffff. This is mandatory.</para>
1998 </listitem>
1999 </varlistentry>
2000 <varlistentry>
2001 <term><varname>Independent=</varname></term>
2002 <listitem>
2003 <para>Takes a boolean. If false (the default), the xfrm interface must have an underlying device
2004 which can be used for hardware offloading.</para>
2005 </listitem>
2006 </varlistentry>
2007 </variablelist>
2008
2009 <para>For more detail information see
2010 <ulink url="https://lwn.net/Articles/757391">Virtual XFRM Interfaces</ulink>.</para>
2011 </refsect1>
2012
2013 <refsect1>
2014 <title>[VRF] Section Options</title>
2015 <para>The [VRF] section only applies for
2016 netdevs of kind <literal>vrf</literal> and accepts the
2017 following key:</para>
2018
2019 <variablelist class='network-directives'>
2020 <varlistentry>
2021 <term><varname>Table=</varname></term>
2022 <listitem>
2023 <para>The numeric routing table identifier. This setting is compulsory.</para>
2024 </listitem>
2025 </varlistentry>
2026 </variablelist>
2027 </refsect1>
2028
2029 <refsect1>
2030 <title>[BatmanAdvanced] Section Options</title>
2031
2032 <para>The [BatmanAdvanced] section only applies for netdevs of kind <literal>batadv</literal> and accepts
2033 the following keys:</para>
2034
2035 <variablelist class='network-directives'>
2036 <varlistentry>
2037 <term><varname>GatewayMode=</varname></term>
2038 <listitem>
2039 <para>Takes one of <literal>off</literal>, <literal>server</literal>, or <literal>client</literal>.
2040 A batman-adv node can either run in server mode (sharing its internet
2041 connection with the mesh) or in client mode (searching for the most suitable internet connection
2042 in the mesh) or having the gateway support turned off entirely (which is the default setting).
2043 </para>
2044 </listitem>
2045 </varlistentry>
2046 <varlistentry>
2047 <term><varname>Aggregation=</varname></term>
2048 <listitem>
2049 <para>Takes a boolean value. Enables or disables aggregation of originator messages. Defaults to
2050 true.
2051 </para>
2052 </listitem>
2053 </varlistentry>
2054 <varlistentry>
2055 <term><varname>BridgeLoopAvoidance=</varname></term>
2056 <listitem>
2057 <para>Takes a boolean value. Enables or disables avoidance of loops on bridges. Defaults to true.
2058 </para>
2059 </listitem>
2060 </varlistentry>
2061 <varlistentry>
2062 <term><varname>DistributedArpTable=</varname></term>
2063 <listitem>
2064 <para>Takes a boolean value. Enables or disables the distributed ARP table. Defaults to true.</para>
2065 </listitem>
2066 </varlistentry>
2067 <varlistentry>
2068 <term><varname>Fragmentation=</varname></term>
2069 <listitem>
2070 <para>Takes a boolean value. Enables or disables fragmentation. Defaults to true.</para>
2071 </listitem>
2072 </varlistentry>
2073 <varlistentry>
2074 <term><varname>HopPenalty=</varname></term>
2075 <listitem>
2076 <para>The hop penalty setting allows one to modify
2077 <citerefentry project='mankier'><refentrytitle>batctl</refentrytitle><manvolnum>8</manvolnum></citerefentry>
2078 preference for multihop routes vs. short routes. This integer value is applied to the
2079 TQ (Transmit Quality) of each forwarded OGM (Originator Message), thereby propagating the
2080 cost of an extra hop (the packet has to be received and retransmitted which costs airtime).
2081 A higher hop penalty will make it more unlikely that other nodes will choose this node as
2082 intermediate hop towards any given destination. The default hop penalty of '15' is a reasonable
2083 value for most setups and probably does not need to be changed. However, mobile nodes could
2084 choose a value of 255 (maximum value) to avoid being chosen as a router by other nodes.
2085 The minimum value is 0.
2086 </para>
2087 </listitem>
2088 </varlistentry>
2089 <varlistentry>
2090 <term><varname>OriginatorIntervalSec=</varname></term>
2091 <listitem>
2092 <para>The value specifies the interval in seconds, unless another time unit is specified in which
2093 batman-adv floods the network with its protocol information.
2094 See <citerefentry><refentrytitle>systemd.time</refentrytitle><manvolnum>7</manvolnum></citerefentry>
2095 for more information.</para>
2096 </listitem>
2097 </varlistentry>
2098 <varlistentry>
2099 <term><varname>GatewayBandwidthDown=</varname></term>
2100 <listitem>
2101 <para>If the node is a server, this
2102 parameter is used to inform other nodes in the network about
2103 this node's internet connection download bandwidth in bits per second. Just enter any number
2104 suffixed with K, M, G or T (base 1000) and the batman-adv
2105 module will propagate the entered value in the mesh.</para>
2106 </listitem>
2107 </varlistentry>
2108 <varlistentry>
2109 <term><varname>GatewayBandwidthUp=</varname></term>
2110 <listitem>
2111 <para>If the node is a server, this
2112 parameter is used to inform other nodes in the network about
2113 this node's internet connection upload bandwidth in bits per second. Just enter any number
2114 suffixed with K, M, G or T (base 1000) and the batman-adv
2115 module will propagate the entered value in the mesh.</para>
2116 </listitem>
2117 </varlistentry>
2118 <varlistentry>
2119 <term><varname>RoutingAlgorithm=</varname></term>
2120 <listitem>
2121 <para>This can be either <literal>batman-v</literal> or <literal>batman-iv</literal> and describes which routing_algo
2122 of <citerefentry><refentrytitle>batctl</refentrytitle><manvolnum>8</manvolnum></citerefentry> to use. The algorithm
2123 cannot be changed after interface creation. Defaults to <literal>batman-v</literal>.
2124 </para>
2125 </listitem>
2126 </varlistentry>
2127 </variablelist>
2128 </refsect1>
2129
2130 <refsect1>
2131 <title>[IPoIB] Section Options</title>
2132 <para>The [IPoIB] section only applies for netdevs of kind <literal>ipoib</literal> and accepts the
2133 following keys:</para>
2134
2135 <variablelist class='network-directives'>
2136 <varlistentry>
2137 <term><varname>PartitionKey=</varname></term>
2138 <listitem>
2139 <para>Takes an integer in the range 10xffff, except for 0x8000. Defaults to unset, and the
2140 kernel's default is used.</para>
2141 </listitem>
2142 </varlistentry>
2143
2144 <varlistentry id='ipoib_mode'>
2145 <term><varname>Mode=</varname></term>
2146 <listitem>
2147 <para>Takes one of the special values <literal>datagram</literal> or
2148 <literal>connected</literal>. Defaults to unset, and the kernel's default is used.</para>
2149
2150 <para>When <literal>datagram</literal>, the Infiniband unreliable datagram (UD) transport is
2151 used, and so the interface MTU is equal to the IB L2 MTU minus the IPoIB encapsulation
2152 header (4 bytes). For example, in a typical IB fabric with a 2K MTU, the IPoIB MTU will be
2153 2048 - 4 = 2044 bytes.</para>
2154
2155 <para>When <literal>connected</literal>, the Infiniband reliable connected (RC) transport is
2156 used. Connected mode takes advantage of the connected nature of the IB transport and allows
2157 an MTU up to the maximal IP packet size of 64K, which reduces the number of IP packets needed
2158 for handling large UDP datagrams, TCP segments, etc and increases the performance for large
2159 messages.</para>
2160 </listitem>
2161 </varlistentry>
2162
2163 <varlistentry id='ipoib_umcast'>
2164 <term><varname>IgnoreUserspaceMulticastGroup=</varname></term>
2165 <listitem>
2166 <para>Takes an boolean value. When true, the kernel ignores multicast groups handled by
2167 userspace. Defaults to unset, and the kernel's default is used.</para>
2168 </listitem>
2169 </varlistentry>
2170 </variablelist>
2171 </refsect1>
2172
2173 <refsect1>
2174 <title>Examples</title>
2175 <example>
2176 <title>/etc/systemd/network/25-bridge.netdev</title>
2177
2178 <programlisting>[NetDev]
2179 Name=bridge0
2180 Kind=bridge</programlisting>
2181 </example>
2182
2183 <example>
2184 <title>/etc/systemd/network/25-vlan1.netdev</title>
2185
2186 <programlisting>[Match]
2187 Virtualization=no
2188
2189 [NetDev]
2190 Name=vlan1
2191 Kind=vlan
2192
2193 [VLAN]
2194 Id=1</programlisting>
2195 </example>
2196 <example>
2197 <title>/etc/systemd/network/25-ipip.netdev</title>
2198 <programlisting>[NetDev]
2199 Name=ipip-tun
2200 Kind=ipip
2201 MTUBytes=1480
2202
2203 [Tunnel]
2204 Local=192.168.223.238
2205 Remote=192.169.224.239
2206 TTL=64</programlisting>
2207 </example>
2208 <example>
2209 <title>/etc/systemd/network/1-fou-tunnel.netdev</title>
2210 <programlisting>[NetDev]
2211 Name=fou-tun
2212 Kind=fou
2213
2214 [FooOverUDP]
2215 Port=5555
2216 Protocol=4
2217 </programlisting>
2218 </example>
2219 <example>
2220 <title>/etc/systemd/network/25-fou-ipip.netdev</title>
2221 <programlisting>[NetDev]
2222 Name=ipip-tun
2223 Kind=ipip
2224
2225 [Tunnel]
2226 Independent=yes
2227 Local=10.65.208.212
2228 Remote=10.65.208.211
2229 FooOverUDP=yes
2230 FOUDestinationPort=5555
2231 </programlisting>
2232 </example>
2233 <example>
2234 <title>/etc/systemd/network/25-tap.netdev</title>
2235 <programlisting>[NetDev]
2236 Name=tap-test
2237 Kind=tap
2238
2239 [Tap]
2240 MultiQueue=yes
2241 PacketInfo=yes</programlisting> </example>
2242
2243 <example>
2244 <title>/etc/systemd/network/25-sit.netdev</title>
2245 <programlisting>[NetDev]
2246 Name=sit-tun
2247 Kind=sit
2248 MTUBytes=1480
2249
2250 [Tunnel]
2251 Local=10.65.223.238
2252 Remote=10.65.223.239</programlisting>
2253 </example>
2254
2255 <example>
2256 <title>/etc/systemd/network/25-6rd.netdev</title>
2257 <programlisting>[NetDev]
2258 Name=6rd-tun
2259 Kind=sit
2260 MTUBytes=1480
2261
2262 [Tunnel]
2263 Local=10.65.223.238
2264 IPv6RapidDeploymentPrefix=2602::/24</programlisting>
2265 </example>
2266
2267 <example>
2268 <title>/etc/systemd/network/25-gre.netdev</title>
2269 <programlisting>[NetDev]
2270 Name=gre-tun
2271 Kind=gre
2272 MTUBytes=1480
2273
2274 [Tunnel]
2275 Local=10.65.223.238
2276 Remote=10.65.223.239</programlisting>
2277 </example>
2278
2279 <example>
2280 <title>/etc/systemd/network/25-ip6gre.netdev</title>
2281 <programlisting>[NetDev]
2282 Name=ip6gre-tun
2283 Kind=ip6gre
2284
2285 [Tunnel]
2286 Key=123</programlisting>
2287 </example>
2288
2289 <example>
2290 <title>/etc/systemd/network/25-vti.netdev</title>
2291
2292 <programlisting>[NetDev]
2293 Name=vti-tun
2294 Kind=vti
2295 MTUBytes=1480
2296
2297 [Tunnel]
2298 Local=10.65.223.238
2299 Remote=10.65.223.239</programlisting>
2300 </example>
2301
2302 <example>
2303 <title>/etc/systemd/network/25-veth.netdev</title>
2304 <programlisting>[NetDev]
2305 Name=veth-test
2306 Kind=veth
2307
2308 [Peer]
2309 Name=veth-peer</programlisting>
2310 </example>
2311
2312 <example>
2313 <title>/etc/systemd/network/25-bond.netdev</title>
2314 <programlisting>[NetDev]
2315 Name=bond1
2316 Kind=bond
2317
2318 [Bond]
2319 Mode=802.3ad
2320 TransmitHashPolicy=layer3+4
2321 MIIMonitorSec=1s
2322 LACPTransmitRate=fast
2323 </programlisting>
2324 </example>
2325
2326 <example>
2327 <title>/etc/systemd/network/25-dummy.netdev</title>
2328 <programlisting>[NetDev]
2329 Name=dummy-test
2330 Kind=dummy
2331 MACAddress=12:34:56:78:9a:bc</programlisting>
2332 </example>
2333 <example>
2334 <title>/etc/systemd/network/25-vrf.netdev</title>
2335 <para>Create a VRF interface with table 42.</para>
2336 <programlisting>[NetDev]
2337 Name=vrf-test
2338 Kind=vrf
2339
2340 [VRF]
2341 Table=42</programlisting>
2342 </example>
2343
2344 <example>
2345 <title>/etc/systemd/network/25-macvtap.netdev</title>
2346 <para>Create a MacVTap device.</para>
2347 <programlisting>[NetDev]
2348 Name=macvtap-test
2349 Kind=macvtap
2350 </programlisting>
2351 </example>
2352 <example>
2353 <title>/etc/systemd/network/25-wireguard.netdev</title>
2354 <programlisting>[NetDev]
2355 Name=wg0
2356 Kind=wireguard
2357
2358 [WireGuard]
2359 PrivateKey=EEGlnEPYJV//kbvvIqxKkQwOiS+UENyPncC4bF46ong=
2360 ListenPort=51820
2361
2362 [WireGuardPeer]
2363 PublicKey=RDf+LSpeEre7YEIKaxg+wbpsNV7du+ktR99uBEtIiCA=
2364 AllowedIPs=fd31:bf08:57cb::/48,192.168.26.0/24
2365 Endpoint=wireguard.example.com:51820</programlisting>
2366 </example>
2367
2368 <example>
2369 <title>/etc/systemd/network/27-xfrm.netdev</title>
2370 <programlisting>[NetDev]
2371 Name=xfrm0
2372 Kind=xfrm
2373
2374 [Xfrm]
2375 Independent=yes</programlisting>
2376 </example>
2377 </refsect1>
2378
2379 <refsect1>
2380 <title>See Also</title>
2381 <para>
2382 <citerefentry><refentrytitle>systemd</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
2383 <citerefentry><refentrytitle>systemd-networkd</refentrytitle><manvolnum>8</manvolnum></citerefentry>,
2384 <citerefentry><refentrytitle>systemd.link</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
2385 <citerefentry><refentrytitle>systemd.network</refentrytitle><manvolnum>5</manvolnum></citerefentry>
2386 </para>
2387 </refsect1>
2388
2389 </refentry>