]> git.ipfire.org Git - thirdparty/systemd.git/blame - man/networkd.conf.xml
ci: build with -Werror on Fedora
[thirdparty/systemd.git] / man / networkd.conf.xml
CommitLineData
514094f9 1<?xml version='1.0'?>
3a54a157 2<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
413708d1
VK
3 "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
4
5<!--
db9ecf05 6 SPDX-License-Identifier: LGPL-2.1-or-later
572eb058 7
96b2fb93 8 Copyright © 2014 Vinay Kulkarni
413708d1
VK
9-->
10
11<refentry id="networkd.conf" conditional='ENABLE_NETWORKD'
12 xmlns:xi="http://www.w3.org/2001/XInclude">
13 <refentryinfo>
14 <title>networkd.conf</title>
15 <productname>systemd</productname>
413708d1
VK
16 </refentryinfo>
17
18 <refmeta>
19 <refentrytitle>networkd.conf</refentrytitle>
20 <manvolnum>5</manvolnum>
21 </refmeta>
22
23 <refnamediv>
24 <refname>networkd.conf</refname>
25 <refname>networkd.conf.d</refname>
26 <refpurpose>Global Network configuration files</refpurpose>
27 </refnamediv>
28
29 <refsynopsisdiv>
30 <para><filename>/etc/systemd/networkd.conf</filename></para>
31 <para><filename>/etc/systemd/networkd.conf.d/*.conf</filename></para>
32 <para><filename>/usr/lib/systemd/networkd.conf.d/*.conf</filename></para>
33 </refsynopsisdiv>
34
35 <refsect1>
36 <title>Description</title>
37
38 <para>These configuration files control global network parameters.
e2e08e77 39 Currently the DHCP Unique Identifier (DUID).</para>
413708d1
VK
40
41 </refsect1>
42
43 <xi:include href="standard-conf.xml" xpointer="main-conf" />
44
c9fdaed0
YW
45 <refsect1>
46 <title>[Network] Section Options</title>
47
bdac5608 48 <para>The following options are available in the [Network] section:</para>
c9fdaed0
YW
49
50 <variablelist class='network-directives'>
51 <varlistentry>
52 <term><varname>SpeedMeter=</varname></term>
53 <listitem><para>Takes a boolean. If set to yes, then <command>systemd-networkd</command>
54 measures the traffic of each interface, and
d91b9bbc
YW
55 <command>networkctl status <replaceable>INTERFACE</replaceable></command> shows the measured speed.
56 Defaults to no.</para></listitem>
c9fdaed0
YW
57 </varlistentry>
58
59 <varlistentry>
60 <term><varname>SpeedMeterIntervalSec=</varname></term>
61 <listitem><para>Specifies the time interval to calculate the traffic speed of each interface.
62 If <varname>SpeedMeter=no</varname>, the value is ignored. Defaults to 10sec.</para></listitem>
63 </varlistentry>
5d3b8017
SS
64
65 <varlistentry>
66 <term><varname>ManageForeignRoutes=</varname></term>
67 <listitem><para>A boolean. When true, <command>systemd-networkd</command> will store any routes
68 configured by other tools in its memory. When false, <command>systemd-networkd</command> will
69 not manage the foreign routes, thus they are kept even if <varname>KeepConfiguration=</varname>
70 is false. Defaults to yes.</para></listitem>
71 </varlistentry>
72
c038ce46
SS
73 <varlistentry>
74 <term><varname>RouteTable=</varname></term>
1d3a473b
ZJS
75 <listitem><para>Specifies the route table name. Takes a route name and table number separated with a
76 colon. (<literal><replaceable>name</replaceable>:<replaceable>integer</replaceable></literal>. The
77 route table number must be an integer in the range 1…4294967295. This setting can be specified
78 multiple times. If an empty string is specified, then all options specified earlier are cleared.
79 Defaults to unset.</para></listitem>
c038ce46
SS
80 </varlistentry>
81
c9fdaed0
YW
82 </variablelist>
83 </refsect1>
84
413708d1 85 <refsect1>
e2e08e77 86 <title>[DHCP] Section Options</title>
413708d1 87
95f4c7f5 88 <para>This section configures the DHCP Unique Identifier (DUID) value used by DHCP
413708d1
VK
89 protocol. DHCPv6 client protocol sends the DHCP Unique Identifier and the interface
90 Identity Association Identifier (IAID) to a DHCP server when acquiring a dynamic IPv6
91 address. DHCPv4 client protocol sends IAID and DUID to the DHCP server when acquiring
92 a dynamic IPv4 address if <option>ClientIdentifier=duid</option>. IAID and DUID allows
93 a DHCP server to uniquely identify the machine and the interface requesting a DHCP IP.
e2e08e77
ZJS
94 To configure IAID and ClientIdentifier, see
95 <citerefentry><refentrytitle>systemd.network</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
96 </para>
413708d1 97
e2e08e77 98 <para>The following options are understood:</para>
413708d1
VK
99
100 <variablelist class='network-directives'>
e2e08e77
ZJS
101 <varlistentry>
102 <term><varname>DUIDType=</varname></term>
103 <listitem><para>Specifies how the DUID should be generated. See
104 <ulink url="https://tools.ietf.org/html/rfc3315#section-9">RFC 3315</ulink>
105 for a description of all the options.</para>
106
107 <para>The following values are understood:
108 <variablelist>
109 <varlistentry>
319b94bc 110 <term><option>vendor</option></term>
e2e08e77
ZJS
111 <listitem><para>If <literal>DUIDType=vendor</literal>, then the DUID value will be generated using
112 <literal>43793</literal> as the vendor identifier (systemd) and hashed contents of
113 <citerefentry><refentrytitle>machine-id</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
114 This is the default if <varname>DUIDType=</varname> is not specified.
115 </para></listitem>
116 </varlistentry>
117
118 <varlistentry>
319b94bc
YW
119 <term><option>uuid</option></term>
120 <listitem><para>If <literal>DUIDType=uuid</literal>, and <varname>DUIDRawData=</varname> is not set,
121 then the product UUID is used as a DUID value. If a system does not have valid product UUID, then
122 an application-specific
123 <citerefentry><refentrytitle>machine-id</refentrytitle><manvolnum>5</manvolnum></citerefentry>
124 is used as a DUID value. About the application-specific machine ID, see
125 <citerefentry><refentrytitle>sd_id128_get_machine_app_specific</refentrytitle><manvolnum>3</manvolnum></citerefentry>.
126 </para></listitem>
127 </varlistentry>
128
129 <varlistentry>
8fa266c2 130 <term><option>link-layer-time[:<replaceable>TIME</replaceable>]</option></term>
319b94bc 131 <term><option>link-layer</option></term>
8fa266c2
YW
132 <listitem><para>If <literal>link-layer-time</literal> or <literal>link-layer</literal> is specified,
133 then the MAC address of the interface is used as a DUID value. The value <literal>link-layer-time</literal>
134 can take additional time value after a colon, e.g. <literal>link-layer-time:2018-01-23 12:34:56 UTC</literal>.
135 The default time value is <literal>2000-01-01 00:00:00 UTC</literal>.
e2e08e77
ZJS
136 </para></listitem>
137 </varlistentry>
138 </variablelist>
139 </para>
140
141 <para>In all cases, <varname>DUIDRawData=</varname> can be used to override the
142 actual DUID value that is used.</para></listitem>
143 </varlistentry>
413708d1 144
413708d1 145 <varlistentry>
e2e08e77
ZJS
146 <term><varname>DUIDRawData=</varname></term>
147 <listitem><para>Specifies the DHCP DUID value as a single newline-terminated, hexadecimal string, with each
148 byte separated by <literal>:</literal>. The DUID that is sent is composed of the DUID type specified by
149 <varname>DUIDType=</varname> and the value configured here.</para>
150
319b94bc
YW
151 <para>The DUID value specified here overrides the DUID that
152 <citerefentry><refentrytitle>systemd-networkd.service</refentrytitle><manvolnum>8</manvolnum></citerefentry>
153 generates from the machine ID. To configure DUID per-network, see
2ac5fe95 154 <citerefentry><refentrytitle>systemd.network</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
e2e08e77
ZJS
155 The configured DHCP DUID should conform to the specification in
156 <ulink url="http://tools.ietf.org/html/rfc3315#section-9">RFC 3315</ulink>,
157 <ulink url="http://tools.ietf.org/html/rfc6355">RFC 6355</ulink>. To configure IAID, see
158 <citerefentry><refentrytitle>systemd.network</refentrytitle><manvolnum>5</manvolnum>
159 </citerefentry>.</para>
160
161 <example>
162 <title>A <option>DUIDType=vendor</option> with a custom value</title>
163
164 <programlisting>DUIDType=vendor
165DUIDRawData=00:00:ab:11:f9:2a:c2:77:29:f9:5c:00</programlisting>
166
167 <para>This specifies a 14 byte DUID, with the type DUID-EN (<literal>00:02</literal>), enterprise number
168 43793 (<literal>00:00:ab:11</literal>), and identifier value <literal>f9:2a:c2:77:29:f9:5c:00</literal>.
169 </para>
170 </example>
171 </listitem>
413708d1
VK
172 </varlistentry>
173 </variablelist>
174 </refsect1>
175
413708d1
VK
176 <refsect1>
177 <title>See Also</title>
178 <para>
179 <citerefentry><refentrytitle>systemd</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
180 <citerefentry><refentrytitle>systemd.network</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
319b94bc
YW
181 <citerefentry><refentrytitle>systemd-networkd.service</refentrytitle><manvolnum>8</manvolnum></citerefentry>,
182 <citerefentry><refentrytitle>machine-id</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
183 <citerefentry><refentrytitle>sd_id128_get_machine_app_specific</refentrytitle><manvolnum>3</manvolnum></citerefentry>
413708d1
VK
184 </para>
185 </refsect1>
186
187</refentry>