1NM-SETTINGS-DBUS(5)              Configuration             NM-SETTINGS-DBUS(5)
2
3
4

NAME

6       nm-settings-dbus - Description of settings and properties of
7       NetworkManager connection profiles on the D-Bus API
8

DESCRIPTION

10       NetworkManager is based on a concept of connection profiles, sometimes
11       referred to as connections only. These connection profiles contain a
12       network configuration. When NetworkManager activates a connection
13       profile on a network device the configuration will be applied and an
14       active network connection will be established. Users are free to create
15       as many connection profiles as they see fit. Thus they are flexible in
16       having various network configurations for different networking needs.
17       The connection profiles are handled by NetworkManager via settings
18       service and are exported on D-Bus
19       (/org/freedesktop/NetworkManager/Settings/<num> objects). The
20       conceptual objects can be described as follows:
21
22       Connection (profile)
23           A specific, encapsulated, independent group of settings describing
24           all the configuration required to connect to a specific network. It
25           is referred to by a unique identifier called the UUID. A connection
26           is tied to a one specific device type, but not necessarily a
27           specific hardware device. It is composed of one or more Settings
28           objects.
29
30       Setting
31           A group of related key/value pairs describing a specific piece of a
32           Connection (profile). Settings keys and allowed values are
33           described in the tables below. Keys are also referred to as
34           properties. Developers can find the setting objects and their
35           properties in the libnm-core sources. Look for the *_class_init
36           functions near the bottom of each setting source file.
37
38       The settings and properties shown in tables below list all available
39       connection configuration options. However, note that not all settings
40       are applicable to all connection types. NetworkManager provides a
41       command-line tool nmcli that allows direct configuration of the
42       settings and properties according to a connection profile type.  nmcli
43       connection editor has also a built-in describe command that can display
44       description of particular settings and properties of this page.
45
46   connection setting
47       General Connection Profile Settings.
48
49       ┌──────────────────────┬──────────────────────────────────────┬───────────────┬────────────────────────────────────────┐
50Key Name              Value Type                           Default Value Value                                  
51       │                      │                                      │               │ Description                            
52       ├──────────────────────┼──────────────────────────────────────┼───────────────┼────────────────────────────────────────┤
53       │auth-retries          │ int32                                │ -1            │ The number of                          │
54       │                      │                                      │               │ retries for the                        │
55       │                      │                                      │               │ authentication.                        │
56       │                      │                                      │               │ Zero means to                          │
57       │                      │                                      │               │ try                                    │
58       │                      │                                      │               │ indefinitely; -1                       │
59       │                      │                                      │               │ means to use a                         │
60       │                      │                                      │               │ global default.                        │
61       │                      │                                      │               │ If the global                          │
62       │                      │                                      │               │ default is not                         │
63       │                      │                                      │               │ set, the                               │
64       │                      │                                      │               │ authentication                         │
65       │                      │                                      │               │ retries for 3                          │
66       │                      │                                      │               │ times before                           │
67       │                      │                                      │               │ failing the                            │
68       │                      │                                      │               │ connection.                            │
69       │                      │                                      │               │                                        │
70       │                      │                                      │               │  Currently, this                       │
71       │                      │                                      │               │ only applies to                        │
72       │                      │                                      │               │ 802-1x                                 │
73       │                      │                                      │               │ authentication.                        │
74       ├──────────────────────┼──────────────────────────────────────┼───────────────┼────────────────────────────────────────┤
75       │autoconnect           │ boolean                              │ TRUE          │ Whether or not                         │
76       │                      │                                      │               │ the connection                         │
77       │                      │                                      │               │ should be                              │
78       │                      │                                      │               │ automatically                          │
79       │                      │                                      │               │ connected by                           │
80       │                      │                                      │               │ NetworkManager                         │
81       │                      │                                      │               │ when the                               │
82       │                      │                                      │               │ resources for                          │
83       │                      │                                      │               │ the connection                         │
84       │                      │                                      │               │ are available.                         │
85       │                      │                                      │               │ TRUE to                                │
86       │                      │                                      │               │ automatically                          │
87       │                      │                                      │               │ activate the                           │
88       │                      │                                      │               │ connection,                            │
89       │                      │                                      │               │ FALSE to require                       │
90       │                      │                                      │               │ manual                                 │
91       │                      │                                      │               │ intervention to                        │
92       │                      │                                      │               │ activate the                           │
93       │                      │                                      │               │ connection.                            │
94       │                      │                                      │               │                                        │
95       │                      │                                      │               │  Autoconnect                           │
96       │                      │                                      │               │ happens when the                       │
97       │                      │                                      │               │ circumstances                          │
98       │                      │                                      │               │ are suitable.                          │
99       │                      │                                      │               │ That means for                         │
100       │                      │                                      │               │ example that the                       │
101       │                      │                                      │               │ device is                              │
102       │                      │                                      │               │ currently                              │
103       │                      │                                      │               │ managed and not                        │
104       │                      │                                      │               │ active.                                │
105       │                      │                                      │               │ Autoconnect thus                       │
106       │                      │                                      │               │ never replaces                         │
107       │                      │                                      │               │ or competes with                       │
108       │                      │                                      │               │ an already                             │
109       │                      │                                      │               │ active profile.                        │
110       │                      │                                      │               │                                        │
111       │                      │                                      │               │  Note that                             │
112       │                      │                                      │               │ autoconnect is                         │
113       │                      │                                      │               │ not implemented                        │
114       │                      │                                      │               │ for VPN                                │
115       │                      │                                      │               │ profiles. See                          │
116       │                      │                                      │               │ "secondaries" as                       │
117       │                      │                                      │               │ an alternative                         │
118       │                      │                                      │               │ to automatically                       │
119       │                      │                                      │               │ connect VPN                            │
120       │                      │                                      │               │ profiles.                              │
121       │                      │                                      │               │                                        │
122       │                      │                                      │               │  If multiple                           │
123       │                      │                                      │               │ profiles are                           │
124       │                      │                                      │               │ ready to                               │
125       │                      │                                      │               │ autoconnect on                         │
126       │                      │                                      │               │ the same device,                       │
127       │                      │                                      │               │ the one with the                       │
128       │                      │                                      │               │ better                                 │
129       │                      │                                      │               │ "connection.autoconnect-priority"      │
130       │                      │                                      │               │ is chosen. If                          │
131       │                      │                                      │               │ the priorities                         │
132       │                      │                                      │               │ are equal, then                        │
133       │                      │                                      │               │ the most                               │
134       │                      │                                      │               │ recently                               │
135       │                      │                                      │               │ connected                              │
136       │                      │                                      │               │ profile is                             │
137       │                      │                                      │               │ activated. If                          │
138       │                      │                                      │               │ the profiles                           │
139       │                      │                                      │               │ were not                               │
140       │                      │                                      │               │ connected                              │
141       │                      │                                      │               │ earlier or their                       │
142       │                      │                                      │               │ "connection.timestamp"                 │
143       │                      │                                      │               │ is identical,                          │
144       │                      │                                      │               │ the choice is                          │
145       │                      │                                      │               │ undefined.                             │
146       │                      │                                      │               │                                        │
147       │                      │                                      │               │  Depending on                          │
148       │                      │                                      │               │ "connection.multi-connect",            │
149       │                      │                                      │               │ a profile can                          │
150       │                      │                                      │               │ (auto)connect                          │
151       │                      │                                      │               │ only once at a                         │
152       │                      │                                      │               │ time or multiple                       │
153       │                      │                                      │               │ times.                                 │
154       ├──────────────────────┼──────────────────────────────────────┼───────────────┼────────────────────────────────────────┤
155       │autoconnect-priority  │ int32                                │ 0             │ The autoconnect priority in range      │
156       │                      │                                      │               │ -999 to 999. If the connection is      │
157       │                      │                                      │               │ set to autoconnect, connections        │
158       │                      │                                      │               │ with higher priority will be           │
159       │                      │                                      │               │ preferred. The higher number           │
160       │                      │                                      │               │ means higher priority. Defaults        │
161       │                      │                                      │               │ to 0. Note that this property          │
162       │                      │                                      │               │ only matters if there are more         │
163       │                      │                                      │               │ than one candidate profile to          │
164       │                      │                                      │               │ select for autoconnect. In case        │
165       │                      │                                      │               │ of equal priority, the profile         │
166       │                      │                                      │               │ used most recently is chosen.          │
167       ├──────────────────────┼──────────────────────────────────────┼───────────────┼────────────────────────────────────────┤
168       │autoconnect-retries   │ int32                                │ -1            │ The number of times a connection       │
169       │                      │                                      │               │ should be tried when                   │
170       │                      │                                      │               │ autoactivating before giving up.       │
171       │                      │                                      │               │ Zero means forever, -1 means the       │
172       │                      │                                      │               │ global default (4 times if not         │
173       │                      │                                      │               │ overridden). Setting this to 1         │
174       │                      │                                      │               │ means to try activation only once      │
175       │                      │                                      │               │ before blocking autoconnect. Note      │
176       │                      │                                      │               │ that after a timeout,                  │
177       │                      │                                      │               │ NetworkManager will try to             │
178       │                      │                                      │               │ autoconnect again.                     │
179       ├──────────────────────┼──────────────────────────────────────┼───────────────┼────────────────────────────────────────┤
180       │autoconnect-slaves    │ NMSettingConnectionAutoconnectSlaves │               │ Whether or not slaves of this          │
181       │                      │ (int32)                              │               │ connection should be                   │
182       │                      │                                      │               │ automatically brought up when          │
183       │                      │                                      │               │ NetworkManager activates this          │
184       │                      │                                      │               │ connection. This only has a real       │
185       │                      │                                      │               │ effect for master connections.         │
186       │                      │                                      │               │ The properties "autoconnect",          │
187       │                      │                                      │               │ "autoconnect-priority" and             │
188       │                      │                                      │               │ "autoconnect-retries" are              │
189       │                      │                                      │               │ unrelated to this setting. The         │
190       │                      │                                      │               │ permitted values are: 0: leave         │
191       │                      │                                      │               │ slave connections untouched, 1:        │
192       │                      │                                      │               │ activate all the slave                 │
193       │                      │                                      │               │ connections with this connection,      │
194       │                      │                                      │               │ -1: default. If -1 (default) is        │
195       │                      │                                      │               │ set, global                            │
196       │                      │                                      │               │ connection.autoconnect-slaves is       │
197       │                      │                                      │               │ read to determine the real value.      │
198       │                      │                                      │               │ If it is default as well, this         │
199       │                      │                                      │               │ fallbacks to 0.                        │
200       ├──────────────────────┼──────────────────────────────────────┼───────────────┼────────────────────────────────────────┤
201       │dns-over-tls          │ int32                                │ -1            │ Whether DNSOverTls (dns-over-tls)      │
202       │                      │                                      │               │ is enabled for the connection.         │
203       │                      │                                      │               │ DNSOverTls is a technology which       │
204       │                      │                                      │               │ uses TLS to encrypt dns traffic.       │
205       │                      │                                      │               │                                        │
206       │                      │                                      │               │  The permitted values are: "yes"       │
207       │                      │                                      │               │ (2) use DNSOverTls and disabled        │
208       │                      │                                      │               │ fallback, "opportunistic" (1) use      │
209       │                      │                                      │               │ DNSOverTls but allow fallback to       │
210       │                      │                                      │               │ unencrypted resolution, "no" (0)       │
211       │                      │                                      │               │ don't ever use DNSOverTls. If          │
212       │                      │                                      │               │ unspecified "default" depends on       │
213       │                      │                                      │               │ the plugin used. Systemd-resolved      │
214       │                      │                                      │               │ uses global setting.                   │
215       │                      │                                      │               │                                        │
216       │                      │                                      │               │  This feature requires a plugin        │
217       │                      │                                      │               │ which supports DNSOverTls.             │
218       │                      │                                      │               │ Otherwise, the setting has no          │
219       │                      │                                      │               │ effect. One such plugin is             │
220       │                      │                                      │               │ dns-systemd-resolved.                  │
221       ├──────────────────────┼──────────────────────────────────────┼───────────────┼────────────────────────────────────────┤
222       │gateway-ping-timeout  │ uint32                               │ 0             │ If greater than zero, delay            │
223       │                      │                                      │               │ success of IP addressing until         │
224       │                      │                                      │               │ either the timeout is reached, or      │
225       │                      │                                      │               │ an IP gateway replies to a ping.       │
226       ├──────────────────────┼──────────────────────────────────────┼───────────────┼────────────────────────────────────────┤
227       │id                    │ string                               │               │ A human readable unique                │
228       │                      │                                      │               │ identifier for the connection,         │
229       │                      │                                      │               │ like "Work Wi-Fi" or "T-Mobile         │
230       │                      │                                      │               │ 3G".                                   │
231       ├──────────────────────┼──────────────────────────────────────┼───────────────┼────────────────────────────────────────┤
232       │interface-name        │ string                               │               │ The name of the network interface      │
233       │                      │                                      │               │ this connection is bound to. If        │
234       │                      │                                      │               │ not set, then the connection can       │
235       │                      │                                      │               │ be attached to any interface of        │
236       │                      │                                      │               │ the appropriate type (subject to       │
237       │                      │                                      │               │ restrictions imposed by other          │
238       │                      │                                      │               │ settings).                             │
239       │                      │                                      │               │                                        │
240       │                      │                                      │               │  For software devices this             │
241       │                      │                                      │               │ specifies the name of the created      │
242       │                      │                                      │               │ device.                                │
243       │                      │                                      │               │                                        │
244       │                      │                                      │               │  For connection types where            │
245       │                      │                                      │               │ interface names cannot easily be       │
246       │                      │                                      │               │ made persistent (e.g. mobile           │
247       │                      │                                      │               │ broadband or USB Ethernet), this       │
248       │                      │                                      │               │ property should not be used.           │
249       │                      │                                      │               │ Setting this property restricts        │
250       │                      │                                      │               │ the interfaces a connection can        │
251       │                      │                                      │               │ be used with, and if interface         │
252       │                      │                                      │               │ names change or are reordered the      │
253       │                      │                                      │               │ connection may be applied to the       │
254       │                      │                                      │               │ wrong interface.                       │
255       ├──────────────────────┼──────────────────────────────────────┼───────────────┼────────────────────────────────────────┤
256       │lldp                  │ int32                                │ -1            │ Whether LLDP is enabled for the        │
257       │                      │                                      │               │ connection.                            │
258       ├──────────────────────┼──────────────────────────────────────┼───────────────┼────────────────────────────────────────┤
259       │llmnr                 │ int32                                │ -1            │ Whether Link-Local Multicast Name      │
260       │                      │                                      │               │ Resolution (LLMNR) is enabled for      │
261       │                      │                                      │               │ the connection. LLMNR is a             │
262       │                      │                                      │               │ protocol based on the Domain Name      │
263       │                      │                                      │               │ System (DNS) packet format that        │
264       │                      │                                      │               │ allows both IPv4 and IPv6 hosts        │
265       │                      │                                      │               │ to perform name resolution for         │
266       │                      │                                      │               │ hosts on the same local link.          │
267       │                      │                                      │               │                                        │
268       │                      │                                      │               │  The permitted values are: "yes"       │
269       │                      │                                      │               │ (2) register hostname and              │
270       │                      │                                      │               │ resolving for the connection,          │
271       │                      │                                      │               │ "no" (0) disable LLMNR for the         │
272       │                      │                                      │               │ interface, "resolve" (1) do not        │
273       │                      │                                      │               │ register hostname but allow            │
274       │                      │                                      │               │ resolving of LLMNR host names If       │
275       │                      │                                      │               │ unspecified, "default" ultimately      │
276       │                      │                                      │               │ depends on the DNS plugin (which       │
277       │                      │                                      │               │ for systemd-resolved currently         │
278       │                      │                                      │               │ means "yes").                          │
279       │                      │                                      │               │                                        │
280       │                      │                                      │               │  This feature requires a plugin        │
281       │                      │                                      │               │ which supports LLMNR. Otherwise,       │
282       │                      │                                      │               │ the setting has no effect. One         │
283       │                      │                                      │               │ such plugin is                         │
284       │                      │                                      │               │ dns-systemd-resolved.                  │
285       ├──────────────────────┼──────────────────────────────────────┼───────────────┼────────────────────────────────────────┤
286       │master                │ string                               │               │ Interface name of the master           │
287       │                      │                                      │               │ device or UUID of the master           │
288       │                      │                                      │               │ connection.                            │
289       ├──────────────────────┼──────────────────────────────────────┼───────────────┼────────────────────────────────────────┤
290       │mdns                  │ int32                                │ -1            │ Whether mDNS is enabled for the        │
291       │                      │                                      │               │ connection.                            │
292       │                      │                                      │               │                                        │
293       │                      │                                      │               │  The permitted values are: "yes"       │
294       │                      │                                      │               │ (2) register hostname and              │
295       │                      │                                      │               │ resolving for the connection,          │
296       │                      │                                      │               │ "no" (0) disable mDNS for the          │
297       │                      │                                      │               │ interface, "resolve" (1) do not        │
298       │                      │                                      │               │ register hostname but allow            │
299       │                      │                                      │               │ resolving of mDNS host names and       │
300       │                      │                                      │               │ "default" (-1) to allow lookup of      │
301       │                      │                                      │               │ a global default in                    │
302       │                      │                                      │               │ NetworkManager.conf. If                │
303       │                      │                                      │               │ unspecified, "default" ultimately      │
304       │                      │                                      │               │ depends on the DNS plugin (which       │
305       │                      │                                      │               │ for systemd-resolved currently         │
306       │                      │                                      │               │ means "no").                           │
307       │                      │                                      │               │                                        │
308       │                      │                                      │               │  This feature requires a plugin        │
309       │                      │                                      │               │ which supports mDNS. Otherwise,        │
310       │                      │                                      │               │ the setting has no effect. One         │
311       │                      │                                      │               │ such plugin is                         │
312       │                      │                                      │               │ dns-systemd-resolved.                  │
313       ├──────────────────────┼──────────────────────────────────────┼───────────────┼────────────────────────────────────────┤
314       │metered               │ NMMetered (int32)                    │               │ Whether the connection is              │
315       │                      │                                      │               │ metered.                               │
316       │                      │                                      │               │                                        │
317       │                      │                                      │               │  When updating this property on a      │
318       │                      │                                      │               │ currently activated connection,        │
319       │                      │                                      │               │ the change takes effect                │
320       │                      │                                      │               │ immediately.                           │
321       ├──────────────────────┼──────────────────────────────────────┼───────────────┼────────────────────────────────────────┤
322       │mptcp-flags           │ uint32                               │ 0             │ Whether to configure MPTCP             │
323       │                      │                                      │               │ endpoints and the address flags.       │
324       │                      │                                      │               │ If MPTCP is enabled in                 │
325       │                      │                                      │               │ NetworkManager, it will configure      │
326       │                      │                                      │               │ the addresses of the interface as      │
327       │                      │                                      │               │ MPTCP endpoints. Note that IPv4        │
328       │                      │                                      │               │ loopback addresses (127.0.0.0/8),      │
329       │                      │                                      │               │ IPv4 link local addresses              │
330       │                      │                                      │               │ (169.254.0.0/16), the IPv6             │
331       │                      │                                      │               │ loopback address (::1), IPv6 link      │
332       │                      │                                      │               │ local addresses (fe80::/10), IPv6      │
333       │                      │                                      │               │ unique local addresses (ULA,           │
334       │                      │                                      │               │ fc00::/7) and IPv6 privacy             │
335       │                      │                                      │               │ extension addresses (rfc3041,          │
336       │                      │                                      │               │ ipv6.ip6-privacy) will be              │
337       │                      │                                      │               │ excluded from being configured as      │
338       │                      │                                      │               │ endpoints.                             │
339       │                      │                                      │               │                                        │
340       │                      │                                      │               │  If "disabled" (0x1), MPTCP            │
341       │                      │                                      │               │ handling for the interface is          │
342       │                      │                                      │               │ disabled and no endpoints are          │
343       │                      │                                      │               │ registered.                            │
344       │                      │                                      │               │                                        │
345       │                      │                                      │               │  The "enabled" (0x2) flag means        │
346       │                      │                                      │               │ that MPTCP handling is enabled.        │
347       │                      │                                      │               │ This flag can also be implied          │
348       │                      │                                      │               │ from the presence of other flags.      │
349       │                      │                                      │               │                                        │
350       │                      │                                      │               │  Even when enabled, MPTCP              │
351       │                      │                                      │               │ handling will by default still be      │
352       │                      │                                      │               │ disabled unless                        │
353       │                      │                                      │               │ "/proc/sys/net/mptcp/enabled"          │
354       │                      │                                      │               │ sysctl is on. NetworkManager does      │
355       │                      │                                      │               │ not change the sysctl and this is      │
356       │                      │                                      │               │ up to the administrator or             │
357       │                      │                                      │               │ distribution. To configure             │
358       │                      │                                      │               │ endpoints even if the sysctl is        │
359       │                      │                                      │               │ disabled, "also-without-sysctl"        │
360       │                      │                                      │               │ (0x4) flag can be used. In that        │
361       │                      │                                      │               │ case, NetworkManager doesn't look      │
362       │                      │                                      │               │ at the sysctl and configures           │
363       │                      │                                      │               │ endpoints regardless.                  │
364       │                      │                                      │               │                                        │
365       │                      │                                      │               │  Even when enabled,                    │
366       │                      │                                      │               │ NetworkManager will only               │
367       │                      │                                      │               │ configure MPTCP endpoints for a        │
368       │                      │                                      │               │ certain address family, if there       │
369       │                      │                                      │               │ is a unicast default route             │
370       │                      │                                      │               │ (0.0.0.0/0 or ::/0) in the main        │
371       │                      │                                      │               │ routing table. The flag                │
372       │                      │                                      │               │ "also-without-default-route"           │
373       │                      │                                      │               │ (0x8) can override that.               │
374       │                      │                                      │               │                                        │
375       │                      │                                      │               │  When MPTCP handling is enabled        │
376       │                      │                                      │               │ then endpoints are configured          │
377       │                      │                                      │               │ with the specified address flags       │
378       │                      │                                      │               │ "signal" (0x10), "subflow"             │
379       │                      │                                      │               │ (0x20), "backup" (0x40),               │
380       │                      │                                      │               │ "fullmesh" (0x80). See                 │
381       │                      │                                      │               │ ip-mptcp(8) manual for additional      │
382       │                      │                                      │               │ information about the flags.           │
383       │                      │                                      │               │                                        │
384       │                      │                                      │               │  If the flags are zero (0x0), the      │
385       │                      │                                      │               │ global connection default from         │
386       │                      │                                      │               │ NetworkManager.conf is honored.        │
387       │                      │                                      │               │ If still unspecified, the              │
388       │                      │                                      │               │ fallback is "enabled,subflow".         │
389       │                      │                                      │               │ Note that this means that MPTCP        │
390       │                      │                                      │               │ is by default done depending on        │
391       │                      │                                      │               │ the "/proc/sys/net/mptcp/enabled"      │
392       │                      │                                      │               │ sysctl.                                │
393       │                      │                                      │               │                                        │
394       │                      │                                      │               │  NetworkManager does not change        │
395       │                      │                                      │               │ the MPTCP limits nor enable MPTCP      │
396       │                      │                                      │               │ via                                    │
397       │                      │                                      │               │ "/proc/sys/net/mptcp/enabled".         │
398       │                      │                                      │               │ That is a host configuration           │
399       │                      │                                      │               │ which the admin can change via         │
400       │                      │                                      │               │ sysctl and ip-mptcp.                   │
401       │                      │                                      │               │                                        │
402       │                      │                                      │               │  Strict reverse path filtering         │
403       │                      │                                      │               │ (rp_filter) breaks many MPTCP use      │
404       │                      │                                      │               │ cases, so when MPTCP handling for      │
405       │                      │                                      │               │ IPv4 addresses on the interface        │
406       │                      │                                      │               │ is enabled, NetworkManager would       │
407       │                      │                                      │               │ loosen the strict reverse path         │
408       │                      │                                      │               │ filtering (1) to the loose             │
409       │                      │                                      │               │ setting (2).                           │
410       ├──────────────────────┼──────────────────────────────────────┼───────────────┼────────────────────────────────────────┤
411       │mud-url               │ string                               │               │ If configured, set to a                │
412       │                      │                                      │               │ Manufacturer Usage Description         │
413       │                      │                                      │               │ (MUD) URL that points to               │
414       │                      │                                      │               │ manufacturer-recommended network       │
415       │                      │                                      │               │ policies for IoT devices. It is        │
416       │                      │                                      │               │ transmitted as a DHCPv4 or DHCPv6      │
417       │                      │                                      │               │ option. The value must be a valid      │
418       │                      │                                      │               │ URL starting with "https://".          │
419       │                      │                                      │               │                                        │
420       │                      │                                      │               │  The special value "none" is           │
421       │                      │                                      │               │ allowed to indicate that no MUD        │
422       │                      │                                      │               │ URL is used.                           │
423       │                      │                                      │               │                                        │
424       │                      │                                      │               │  If the per-profile value is           │
425       │                      │                                      │               │ unspecified (the default), a           │
426       │                      │                                      │               │ global connection default gets         │
427       │                      │                                      │               │ consulted. If still unspecified,       │
428       │                      │                                      │               │ the ultimate default is "none".        │
429       ├──────────────────────┼──────────────────────────────────────┼───────────────┼────────────────────────────────────────┤
430       │multi-connect         │ int32                                │ 0             │ Specifies whether the profile can      │
431       │                      │                                      │               │ be active multiple times at a          │
432       │                      │                                      │               │ particular moment. The value is        │
433       │                      │                                      │               │ of type NMConnectionMultiConnect.      │
434       ├──────────────────────┼──────────────────────────────────────┼───────────────┼────────────────────────────────────────┤
435       │permissions           │ array of string                      │               │ An array of strings defining what      │
436       │                      │                                      │               │ access a given user has to this        │
437       │                      │                                      │               │ connection.  If this is NULL or        │
438       │                      │                                      │               │ empty, all users are allowed to        │
439       │                      │                                      │               │ access this connection; otherwise      │
440       │                      │                                      │               │ users are allowed if and only if       │
441       │                      │                                      │               │ they are in this list.  When this      │
442       │                      │                                      │               │ is not empty, the connection can       │
443       │                      │                                      │               │ be active only when one of the         │
444       │                      │                                      │               │ specified users is logged into an      │
445       │                      │                                      │               │ active session.  Each entry is of      │
446       │                      │                                      │               │ the form                               │
447       │                      │                                      │               │ "[type]:[id]:[reserved]"; for          │
448       │                      │                                      │               │ example, "user:dcbw:blah".             │
449       │                      │                                      │               │                                        │
450       │                      │                                      │               │  At this time only the "user"          │
451       │                      │                                      │               │ [type] is allowed.  Any other          │
452       │                      │                                      │               │ values are ignored and reserved        │
453       │                      │                                      │               │ for future use.  [id] is the           │
454       │                      │                                      │               │ username that this permission          │
455       │                      │                                      │               │ refers to, which may not contain       │
456       │                      │                                      │               │ the ":" character. Any [reserved]      │
457       │                      │                                      │               │ information present must be            │
458       │                      │                                      │               │ ignored and is reserved for            │
459       │                      │                                      │               │ future use.  All of [type], [id],      │
460       │                      │                                      │               │ and [reserved] must be valid           │
461       │                      │                                      │               │ UTF-8.                                 │
462       ├──────────────────────┼──────────────────────────────────────┼───────────────┼────────────────────────────────────────┤
463       │read-only             │ boolean                              │ FALSE         │ FALSE if the connection can be         │
464       │                      │                                      │               │ modified using the provided            │
465       │                      │                                      │               │ settings service's D-Bus               │
466       │                      │                                      │               │ interface with the right               │
467       │                      │                                      │               │ privileges, or TRUE if the             │
468       │                      │                                      │               │ connection is read-only and            │
469       │                      │                                      │               │ cannot be modified.                    │
470       ├──────────────────────┼──────────────────────────────────────┼───────────────┼────────────────────────────────────────┤
471       │secondaries           │ array of string                      │               │ List of connection UUIDs that          │
472       │                      │                                      │               │ should be activated when the base      │
473       │                      │                                      │               │ connection itself is activated.        │
474       │                      │                                      │               │ Currently, only VPN connections        │
475       │                      │                                      │               │ are supported.                         │
476       ├──────────────────────┼──────────────────────────────────────┼───────────────┼────────────────────────────────────────┤
477       │slave-type            │ string                               │               │ Setting name of the device type        │
478       │                      │                                      │               │ of this slave's master connection      │
479       │                      │                                      │               │ (eg, "bond"), or NULL if this          │
480       │                      │                                      │               │ connection is not a slave.             │
481       ├──────────────────────┼──────────────────────────────────────┼───────────────┼────────────────────────────────────────┤
482       │stable-id             │ string                               │               │ This represents the identity of        │
483       │                      │                                      │               │ the connection used for various        │
484       │                      │                                      │               │ purposes. It allows to configure       │
485       │                      │                                      │               │ multiple profiles to share the         │
486       │                      │                                      │               │ identity. Also, the stable-id can      │
487       │                      │                                      │               │ contain placeholders that are          │
488       │                      │                                      │               │ substituted dynamically and            │
489       │                      │                                      │               │ deterministically depending on         │
490       │                      │                                      │               │ the context.                           │
491       │                      │                                      │               │                                        │
492       │                      │                                      │               │  The stable-id is used for             │
493       │                      │                                      │               │ generating IPv6 stable private         │
494       │                      │                                      │               │ addresses with                         │
495       │                      │                                      │               │ ipv6.addr-gen-mode=stable-privacy.     │
496       │                      │                                      │               │ It is also used to seed the            │
497       │                      │                                      │               │ generated cloned MAC address for       │
498       │                      │                                      │               │ ethernet.cloned-mac-address=stable     │
499       │                      │                                      │               │ and                                    │
500       │                      │                                      │               │ wifi.cloned-mac-address=stable.        │
501       │                      │                                      │               │ It is also used as DHCP client         │
502       │                      │                                      │               │ identifier with                        │
503       │                      │                                      │               │ ipv4.dhcp-client-id=stable and to      │
504       │                      │                                      │               │ derive the DHCP DUID with              │
505       │                      │                                      │               │ ipv6.dhcp-duid=stable-[llt,ll,uuid].   │
506       │                      │                                      │               │                                        │
507       │                      │                                      │               │  Note that depending on the            │
508       │                      │                                      │               │ context where it is used, other        │
509       │                      │                                      │               │ parameters are also seeded into        │
510       │                      │                                      │               │ the generation algorithm. For          │
511       │                      │                                      │               │ example, a per-host key is             │
512       │                      │                                      │               │ commonly also included, so that        │
513       │                      │                                      │               │ different systems end up               │
514       │                      │                                      │               │ generating different IDs. Or with      │
515       │                      │                                      │               │ ipv6.addr-gen-mode=stable-privacy,     │
516       │                      │                                      │               │ also the device's name is              │
517       │                      │                                      │               │ included, so that different            │
518       │                      │                                      │               │ interfaces yield different             │
519       │                      │                                      │               │ addresses. The per-host key is         │
520       │                      │                                      │               │ the identity of your machine and       │
521       │                      │                                      │               │ stored in                              │
522       │                      │                                      │               │ /var/lib/NetworkManager/secret_key.    │
523       │                      │                                      │               │ See NetworkManager(8) manual           │
524       │                      │                                      │               │ about the secret-key and the host      │
525       │                      │                                      │               │ identity.                              │
526       │                      │                                      │               │                                        │
527       │                      │                                      │               │  The '$' character is treated          │
528       │                      │                                      │               │ special to perform dynamic             │
529       │                      │                                      │               │ substitutions at runtime.              │
530       │                      │                                      │               │ Currently, supported are               │
531       │                      │                                      │               │ "${CONNECTION}", "${DEVICE}",          │
532       │                      │                                      │               │ "${MAC}", "${BOOT}", "${RANDOM}".      │
533       │                      │                                      │               │ These effectively create unique        │
534       │                      │                                      │               │ IDs per-connection, per-device,        │
535       │                      │                                      │               │ per-boot, or every time. Note          │
536       │                      │                                      │               │ that "${DEVICE}" corresponds to        │
537       │                      │                                      │               │ the interface name of the device       │
538       │                      │                                      │               │ and "${MAC}" is the permanent MAC      │
539       │                      │                                      │               │ address of the device. Any             │
540       │                      │                                      │               │ unrecognized patterns following        │
541       │                      │                                      │               │ '$' are treated verbatim, however      │
542       │                      │                                      │               │ are reserved for future use. You       │
543       │                      │                                      │               │ are thus advised to avoid '$' or       │
544       │                      │                                      │               │ escape it as "$$". For example,        │
545       │                      │                                      │               │ set it to                              │
546       │                      │                                      │               │ "${CONNECTION}-${BOOT}-${DEVICE}"      │
547       │                      │                                      │               │ to create a unique id for this         │
548       │                      │                                      │               │ connection that changes with           │
549       │                      │                                      │               │ every reboot and differs               │
550       │                      │                                      │               │ depending on the interface where       │
551       │                      │                                      │               │ the profile activates.                 │
552       │                      │                                      │               │                                        │
553       │                      │                                      │               │  If the value is unset, a global       │
554       │                      │                                      │               │ connection default is consulted.       │
555       │                      │                                      │               │ If the value is still unset, the       │
556       │                      │                                      │               │ default is similar to                  │
557       │                      │                                      │               │ "${CONNECTION}" and uses a             │
558       │                      │                                      │               │ unique, fixed ID for the               │
559       │                      │                                      │               │ connection.                            │
560       ├──────────────────────┼──────────────────────────────────────┼───────────────┼────────────────────────────────────────┤
561       │timestamp             │ uint64                               │ 0             │ The time, in seconds since the Unix    │
562       │                      │                                      │               │ Epoch, that the connection was last    │
563       │                      │                                      │               │ _successfully_ fully activated.        │
564       │                      │                                      │               │                                        │
565       │                      │                                      │               │  NetworkManager updates the            │
566       │                      │                                      │               │ connection timestamp periodically      │
567       │                      │                                      │               │ when the connection is active to       │
568       │                      │                                      │               │ ensure that an active connection has   │
569       │                      │                                      │               │ the latest timestamp. The property     │
570       │                      │                                      │               │ is only meant for reading (changes     │
571       │                      │                                      │               │ to this property will not be           │
572       │                      │                                      │               │ preserved).                            │
573       ├──────────────────────┼──────────────────────────────────────┼───────────────┼────────────────────────────────────────┤
574       │type                  │ string                               │               │ Base type of the connection. For       │
575       │                      │                                      │               │ hardware-dependent connections,        │
576       │                      │                                      │               │ should contain the setting name of     │
577       │                      │                                      │               │ the hardware-type specific setting     │
578       │                      │                                      │               │ (ie, "802-3-ethernet" or               │
579       │                      │                                      │               │ "802-11-wireless" or "bluetooth",      │
580       │                      │                                      │               │ etc), and for non-hardware dependent   │
581       │                      │                                      │               │ connections like VPN or otherwise,     │
582       │                      │                                      │               │ should contain the setting name of     │
583       │                      │                                      │               │ that setting type (ie, "vpn" or        │
584       │                      │                                      │               │ "bridge", etc).                        │
585       ├──────────────────────┼──────────────────────────────────────┼───────────────┼────────────────────────────────────────┤
586       │uuid                  │ string                               │               │ A universally unique identifier for    │
587       │                      │                                      │               │ the connection, for example            │
588       │                      │                                      │               │ generated with libuuid.  It should     │
589       │                      │                                      │               │ be assigned when the connection is     │
590       │                      │                                      │               │ created, and never changed as long     │
591       │                      │                                      │               │ as the connection still applies to     │
592       │                      │                                      │               │ the same network.  For example, it     │
593       │                      │                                      │               │ should not be changed when the "id"    │
594       │                      │                                      │               │ property or NMSettingIP4Config         │
595       │                      │                                      │               │ changes, but might need to be          │
596       │                      │                                      │               │ re-created when the Wi-Fi SSID,        │
597       │                      │                                      │               │ mobile broadband network provider,     │
598       │                      │                                      │               │ or "type" property changes.            │
599       │                      │                                      │               │                                        │
600       │                      │                                      │               │  The UUID must be in the format        │
601       │                      │                                      │               │ "2815492f-7e56-435e-b2e9-246bd7cdc664" │
602       │                      │                                      │               │ (ie, contains only hexadecimal         │
603       │                      │                                      │               │ characters and "-").                   │
604       ├──────────────────────┼──────────────────────────────────────┼───────────────┼────────────────────────────────────────┤
605       │wait-activation-delay │ int32                                │ -1            │ Time in milliseconds to wait for       │
606       │                      │                                      │               │ connection to be considered activated. │
607       │                      │                                      │               │ The wait will start after the pre-up   │
608       │                      │                                      │               │ dispatcher event.                      │
609       │                      │                                      │               │                                        │
610       │                      │                                      │               │  The value 0 means no wait time. The   │
611       │                      │                                      │               │ default value is -1, which currently   │
612       │                      │                                      │               │ has the same meaning as no wait time.  │
613       ├──────────────────────┼──────────────────────────────────────┼───────────────┼────────────────────────────────────────┤
614       │wait-device-timeout   │ int32                                │ -1            │ Timeout in milliseconds to wait for    │
615       │                      │                                      │               │ device at startup. During boot,        │
616       │                      │                                      │               │ devices may take a while to be         │
617       │                      │                                      │               │ detected by the driver. This property  │
618       │                      │                                      │               │ will cause to delay                    │
619       │                      │                                      │               │ NetworkManager-wait-online.service and │
620       │                      │                                      │               │ nm-online to give the device a chance  │
621       │                      │                                      │               │ to appear. This works by waiting for   │
622       │                      │                                      │               │ the given timeout until a compatible   │
623       │                      │                                      │               │ device for the profile is available    │
624       │                      │                                      │               │ and managed.                           │
625       │                      │                                      │               │                                        │
626       │                      │                                      │               │  The value 0 means no wait time. The   │
627       │                      │                                      │               │ default value is -1, which currently   │
628       │                      │                                      │               │ has the same meaning as no wait time.  │
629       ├──────────────────────┼──────────────────────────────────────┼───────────────┼────────────────────────────────────────┤
630       │zone                  │ string                               │               │ The trust level of a the connection.   │
631       │                      │                                      │               │ Free form case-insensitive string (for │
632       │                      │                                      │               │ example "Home", "Work", "Public").     │
633       │                      │                                      │               │ NULL or unspecified zone means the     │
634       │                      │                                      │               │ connection will be placed in the       │
635       │                      │                                      │               │ default zone as defined by the         │
636       │                      │                                      │               │ firewall.                              │
637       │                      │                                      │               │                                        │
638       │                      │                                      │               │  When updating this property on a      │
639       │                      │                                      │               │ currently activated connection, the    │
640       │                      │                                      │               │ change takes effect immediately.       │
641       └──────────────────────┴──────────────────────────────────────┴───────────────┴────────────────────────────────────────┘
642
643   6lowpan setting
644       6LoWPAN Settings.
645
646       ┌─────────┬────────────┬───────────────┬──────────────────┐
647Key Name Value Type Default Value Value            
648       │         │            │               │ Description      
649       ├─────────┼────────────┼───────────────┼──────────────────┤
650       │parent   │ string     │               │ If given,        │
651       │         │            │               │ specifies the    │
652       │         │            │               │ parent interface │
653       │         │            │               │ name or parent   │
654       │         │            │               │ connection UUID  │
655       │         │            │               │ from which this  │
656       │         │            │               │ 6LowPAN          │
657       │         │            │               │ interface should │
658       │         │            │               │ be created.      │
659       └─────────┴────────────┴───────────────┴──────────────────┘
660
661   802-1x setting
662       IEEE 802.1x Authentication Settings.
663
664       ┌──────────────────────────────────┬──────────────────────┬───────────────┬────────────────────────────────────────────┐
665Key Name                          Value Type           Default Value Value                                      
666       │                                  │                      │               │ Description                                
667       ├──────────────────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
668       │altsubject-matches                │ array of string      │               │ List of strings                            │
669       │                                  │                      │               │ to be matched                              │
670       │                                  │                      │               │ against the                                │
671       │                                  │                      │               │ altSubjectName                             │
672       │                                  │                      │               │ of the                                     │
673       │                                  │                      │               │ certificate                                │
674       │                                  │                      │               │ presented by the                           │
675       │                                  │                      │               │ authentication                             │
676       │                                  │                      │               │ server. If the                             │
677       │                                  │                      │               │ list is empty,                             │
678       │                                  │                      │               │ no verification                            │
679       │                                  │                      │               │ of the server                              │
680       │                                  │                      │               │ certificate's                              │
681       │                                  │                      │               │ altSubjectName                             │
682       │                                  │                      │               │ is performed.                              │
683       ├──────────────────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
684       │anonymous-identity                │ string               │               │ Anonymous                                  │
685       │                                  │                      │               │ identity string                            │
686       │                                  │                      │               │ for EAP                                    │
687       │                                  │                      │               │ authentication                             │
688       │                                  │                      │               │ methods.  Used                             │
689       │                                  │                      │               │ as the                                     │
690       │                                  │                      │               │ unencrypted                                │
691       │                                  │                      │               │ identity with                              │
692       │                                  │                      │               │ EAP types that                             │
693       │                                  │                      │               │ support                                    │
694       │                                  │                      │               │ different                                  │
695       │                                  │                      │               │ tunneled                                   │
696       │                                  │                      │               │ identity like                              │
697       │                                  │                      │               │ EAP-TTLS.                                  │
698       ├──────────────────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
699       │auth-timeout                      │ int32                │ 0             │ A timeout for                              │
700       │                                  │                      │               │ the                                        │
701       │                                  │                      │               │ authentication.                            │
702       │                                  │                      │               │ Zero means the                             │
703       │                                  │                      │               │ global default;                            │
704       │                                  │                      │               │ if the global                              │
705       │                                  │                      │               │ default is not                             │
706       │                                  │                      │               │ set, the                                   │
707       │                                  │                      │               │ authentication                             │
708       │                                  │                      │               │ timeout is 25                              │
709       │                                  │                      │               │ seconds.                                   │
710       ├──────────────────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
711       │ca-cert                           │ byte array           │               │ Contains the CA                            │
712       │                                  │                      │               │ certificate if                             │
713       │                                  │                      │               │ used by the EAP                            │
714       │                                  │                      │               │ method specified                           │
715       │                                  │                      │               │ in the "eap"                               │
716       │                                  │                      │               │ property.                                  │
717       │                                  │                      │               │                                            │
718       │                                  │                      │               │  Certificate                               │
719       │                                  │                      │               │ data is                                    │
720       │                                  │                      │               │ specified using                            │
721       │                                  │                      │               │ a "scheme";                                │
722       │                                  │                      │               │ three are                                  │
723       │                                  │                      │               │ currently                                  │
724       │                                  │                      │               │ supported: blob,                           │
725       │                                  │                      │               │ path and pkcs#11                           │
726       │                                  │                      │               │ URL. When using                            │
727       │                                  │                      │               │ the blob scheme                            │
728       │                                  │                      │               │ this property                              │
729       │                                  │                      │               │ should be set to                           │
730       │                                  │                      │               │ the                                        │
731       │                                  │                      │               │ certificate's                              │
732       │                                  │                      │               │ DER encoded                                │
733       │                                  │                      │               │ data. When using                           │
734       │                                  │                      │               │ the path scheme,                           │
735       │                                  │                      │               │ this property                              │
736       │                                  │                      │               │ should be set to                           │
737       │                                  │                      │               │ the full UTF-8                             │
738       │                                  │                      │               │ encoded path of                            │
739       │                                  │                      │               │ the certificate,                           │
740       │                                  │                      │               │ prefixed with                              │
741       │                                  │                      │               │ the string                                 │
742       │                                  │                      │               │ "file://" and                              │
743       │                                  │                      │               │ ending with a                              │
744       │                                  │                      │               │ terminating NUL                            │
745       │                                  │                      │               │ byte. This                                 │
746       │                                  │                      │               │ property can be                            │
747       │                                  │                      │               │ unset even if                              │
748       │                                  │                      │               │ the EAP method                             │
749       │                                  │                      │               │ supports CA                                │
750       │                                  │                      │               │ certificates,                              │
751       │                                  │                      │               │ but this allows                            │
752       │                                  │                      │               │ man-in-the-middle                          │
753       │                                  │                      │               │ attacks and is                             │
754       │                                  │                      │               │ NOT recommended.                           │
755       │                                  │                      │               │                                            │
756       │                                  │                      │               │  Note that                                 │
757       │                                  │                      │               │ enabling                                   │
758       │                                  │                      │               │ NMSetting8021x:system-ca-certs             │
759       │                                  │                      │               │ will override                              │
760       │                                  │                      │               │ this setting to                            │
761       │                                  │                      │               │ use the built-in                           │
762       │                                  │                      │               │ path, if the                               │
763       │                                  │                      │               │ built-in path is                           │
764       │                                  │                      │               │ not a directory.                           │
765       ├──────────────────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
766       │ca-cert-password                  │ string               │               │ The password used to access                │
767       │                                  │                      │               │ the CA certificate stored in               │
768       │                                  │                      │               │ "ca-cert" property. Only makes             │
769       │                                  │                      │               │ sense if the certificate is                │
770       │                                  │                      │               │ stored on a PKCS#11 token that             │
771       │                                  │                      │               │ requires a login.                          │
772       ├──────────────────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
773       │ca-cert-password-flags            │ NMSettingSecretFlags │               │ Flags indicating how to handle             │
774       │                                  │ (uint32)             │               │ the "ca-cert-password"                     │
775       │                                  │                      │               │ property.                                  │
776       ├──────────────────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
777       │ca-path                           │ string               │               │ UTF-8 encoded path to a                    │
778       │                                  │                      │               │ directory containing PEM or                │
779       │                                  │                      │               │ DER formatted certificates to              │
780       │                                  │                      │               │ be added to the verification               │
781       │                                  │                      │               │ chain in addition to the                   │
782       │                                  │                      │               │ certificate specified in the               │
783       │                                  │                      │               │ "ca-cert" property.                        │
784       │                                  │                      │               │                                            │
785       │                                  │                      │               │  If                                        │
786       │                                  │                      │               │ NMSetting8021x:system-ca-certs             │
787       │                                  │                      │               │ is enabled and the built-in CA             │
788       │                                  │                      │               │ path is an existing directory,             │
789       │                                  │                      │               │ then this setting is ignored.              │
790       ├──────────────────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
791       │client-cert                       │ byte array           │               │ Contains the client                        │
792       │                                  │                      │               │ certificate if used by the EAP             │
793       │                                  │                      │               │ method specified in the "eap"              │
794       │                                  │                      │               │ property.                                  │
795       │                                  │                      │               │                                            │
796       │                                  │                      │               │  Certificate data is specified             │
797       │                                  │                      │               │ using a "scheme"; two are                  │
798       │                                  │                      │               │ currently supported: blob and              │
799       │                                  │                      │               │ path. When using the blob                  │
800       │                                  │                      │               │ scheme (which is backwards                 │
801       │                                  │                      │               │ compatible with NM 0.7.x) this             │
802       │                                  │                      │               │ property should be set to the              │
803       │                                  │                      │               │ certificate's DER encoded                  │
804       │                                  │                      │               │ data. When using the path                  │
805       │                                  │                      │               │ scheme, this property should               │
806       │                                  │                      │               │ be set to the full UTF-8                   │
807       │                                  │                      │               │ encoded path of the                        │
808       │                                  │                      │               │ certificate, prefixed with the             │
809       │                                  │                      │               │ string "file://" and ending                │
810       │                                  │                      │               │ with a terminating NUL byte.               │
811       ├──────────────────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
812       │client-cert-password              │ string               │               │ The password used to access                │
813       │                                  │                      │               │ the client certificate stored              │
814       │                                  │                      │               │ in "client-cert" property.                 │
815       │                                  │                      │               │ Only makes sense if the                    │
816       │                                  │                      │               │ certificate is stored on a                 │
817       │                                  │                      │               │ PKCS#11 token that requires a              │
818       │                                  │                      │               │ login.                                     │
819       ├──────────────────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
820       │client-cert-password-flags        │ NMSettingSecretFlags │               │ Flags indicating how to handle             │
821       │                                  │ (uint32)             │               │ the "client-cert-password"                 │
822       │                                  │                      │               │ property.                                  │
823       ├──────────────────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
824       │domain-match                      │ string               │               │ Constraint for server domain               │
825       │                                  │                      │               │ name. If set, this list of                 │
826       │                                  │                      │               │ FQDNs is used as a match                   │
827       │                                  │                      │               │ requirement for dNSName                    │
828       │                                  │                      │               │ element(s) of the certificate              │
829       │                                  │                      │               │ presented by the                           │
830       │                                  │                      │               │ authentication server.  If a               │
831       │                                  │                      │               │ matching dNSName is found,                 │
832       │                                  │                      │               │ this constraint is met.  If no             │
833       │                                  │                      │               │ dNSName values are present,                │
834       │                                  │                      │               │ this constraint is matched                 │
835       │                                  │                      │               │ against SubjectName CN using               │
836       │                                  │                      │               │ the same comparison. Multiple              │
837       │                                  │                      │               │ valid FQDNs can be passed as a             │
838       │                                  │                      │               │ ";" delimited list.                        │
839       ├──────────────────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
840       │domain-suffix-match               │ string               │               │ Constraint for server domain               │
841       │                                  │                      │               │ name. If set, this FQDN is                 │
842       │                                  │                      │               │ used as a suffix match                     │
843       │                                  │                      │               │ requirement for dNSName                    │
844       │                                  │                      │               │ element(s) of the certificate              │
845       │                                  │                      │               │ presented by the                           │
846       │                                  │                      │               │ authentication server.  If a               │
847       │                                  │                      │               │ matching dNSName is found,                 │
848       │                                  │                      │               │ this constraint is met.  If no             │
849       │                                  │                      │               │ dNSName values are present,                │
850       │                                  │                      │               │ this constraint is matched                 │
851       │                                  │                      │               │ against SubjectName CN using               │
852       │                                  │                      │               │ same suffix match comparison.              │
853       │                                  │                      │               │ Since version 1.24, multiple               │
854       │                                  │                      │               │ valid FQDNs can be passed as a             │
855       │                                  │                      │               │ ";" delimited list.                        │
856       ├──────────────────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
857       │eap                               │ array of string      │               │ The allowed EAP method to be               │
858       │                                  │                      │               │ used when authenticating to                │
859       │                                  │                      │               │ the network with 802.1x.                   │
860       │                                  │                      │               │ Valid methods are: "leap",                 │
861       │                                  │                      │               │ "md5", "tls", "peap", "ttls",              │
862       │                                  │                      │               │ "pwd", and "fast".  Each                   │
863       │                                  │                      │               │ method requires different                  │
864       │                                  │                      │               │ configuration using the                    │
865       │                                  │                      │               │ properties of this setting;                │
866       │                                  │                      │               │ refer to wpa_supplicant                    │
867       │                                  │                      │               │ documentation for the allowed              │
868       │                                  │                      │               │ combinations.                              │
869       ├──────────────────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
870       │identity                          │ string               │               │ Identity string for EAP                    │
871       │                                  │                      │               │ authentication methods.  Often             │
872       │                                  │                      │               │ the user's user or login name.             │
873       ├──────────────────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
874       │optional                          │ boolean              │ FALSE         │ Whether the 802.1X                         │
875       │                                  │                      │               │ authentication is optional. If             │
876       │                                  │                      │               │ TRUE, the activation will                  │
877       │                                  │                      │               │ continue even after a timeout              │
878       │                                  │                      │               │ or an authentication failure.              │
879       │                                  │                      │               │ Setting the property to TRUE               │
880       │                                  │                      │               │ is currently allowed only for              │
881       │                                  │                      │               │ Ethernet connections. If set               │
882       │                                  │                      │               │ to FALSE, the activation can               │
883       │                                  │                      │               │ continue only after a                      │
884       │                                  │                      │               │ successful authentication.                 │
885       ├──────────────────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
886       │pac-file                          │ string               │               │ UTF-8 encoded file path                    │
887       │                                  │                      │               │ containing PAC for EAP-FAST.               │
888       ├──────────────────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
889       │password                          │ string               │               │ UTF-8 encoded password used                │
890       │                                  │                      │               │ for EAP authentication                     │
891       │                                  │                      │               │ methods. If both the                       │
892       │                                  │                      │               │ "password" property and the                │
893       │                                  │                      │               │ "password-raw" property are                │
894       │                                  │                      │               │ specified, "password" is                   │
895       │                                  │                      │               │ preferred.                                 │
896       ├──────────────────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
897       │password-flags                    │ NMSettingSecretFlags │               │ Flags indicating how to handle             │
898       │                                  │ (uint32)             │               │ the "password" property.                   │
899       ├──────────────────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
900       │password-raw                      │ byte array           │               │ Password used for EAP                      │
901       │                                  │                      │               │ authentication methods, given              │
902       │                                  │                      │               │ as a byte array to allow                   │
903       │                                  │                      │               │ passwords in other encodings               │
904       │                                  │                      │               │ than UTF-8 to be used. If both             │
905       │                                  │                      │               │ the "password" property and                │
906       │                                  │                      │               │ the "password-raw" property                │
907       │                                  │                      │               │ are specified, "password" is               │
908       │                                  │                      │               │ preferred.                                 │
909       ├──────────────────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
910       │password-raw-flags                │ NMSettingSecretFlags │               │ Flags indicating how to handle             │
911       │                                  │ (uint32)             │               │ the "password-raw" property.               │
912       ├──────────────────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
913       │phase1-auth-flags                 │ uint32               │ 0             │ Specifies authentication flags             │
914       │                                  │                      │               │ to use in "phase 1" outer                  │
915       │                                  │                      │               │ authentication using                       │
916       │                                  │                      │               │ NMSetting8021xAuthFlags                    │
917       │                                  │                      │               │ options. The individual TLS                │
918       │                                  │                      │               │ versions can be explicitly                 │
919       │                                  │                      │               │ disabled. If a certain TLS                 │
920       │                                  │                      │               │ disable flag is not set, it is             │
921       │                                  │                      │               │ up to the supplicant to allow              │
922       │                                  │                      │               │ or forbid it. The TLS options              │
923       │                                  │                      │               │ map to tls_disable_tlsv1_x                 │
924       │                                  │                      │               │ settings. See the                          │
925       │                                  │                      │               │ wpa_supplicant documentation               │
926       │                                  │                      │               │ for more details.                          │
927       ├──────────────────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
928       │phase1-fast-provisioning          │ string               │               │ Enables or disables in-line                │
929       │                                  │                      │               │ provisioning of EAP-FAST                   │
930       │                                  │                      │               │ credentials when FAST is                   │
931       │                                  │                      │               │ specified as the EAP method in             │
932       │                                  │                      │               │ the "eap" property. Recognized             │
933       │                                  │                      │               │ values are "0" (disabled), "1"             │
934       │                                  │                      │               │ (allow unauthenticated                     │
935       │                                  │                      │               │ provisioning), "2" (allow                  │
936       │                                  │                      │               │ authenticated provisioning),               │
937       │                                  │                      │               │ and "3" (allow both                        │
938       │                                  │                      │               │ authenticated and                          │
939       │                                  │                      │               │ unauthenticated provisioning).             │
940       │                                  │                      │               │ See the wpa_supplicant                     │
941       │                                  │                      │               │ documentation for more                     │
942       │                                  │                      │               │ details.                                   │
943       ├──────────────────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
944       │phase1-peaplabel                  │ string               │               │ Forces use of the new PEAP                 │
945       │                                  │                      │               │ label during key derivation.               │
946       │                                  │                      │               │ Some RADIUS servers may                    │
947       │                                  │                      │               │ require forcing the new PEAP               │
948       │                                  │                      │               │ label to interoperate with                 │
949       │                                  │                      │               │ PEAPv1.  Set to "1" to force               │
950       │                                  │                      │               │ use of the new PEAP label.                 │
951       │                                  │                      │               │ See the wpa_supplicant                     │
952       │                                  │                      │               │ documentation for more                     │
953       │                                  │                      │               │ details.                                   │
954       ├──────────────────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
955       │phase1-peapver                    │ string               │               │ Forces which PEAP version is               │
956       │                                  │                      │               │ used when PEAP is set as the               │
957       │                                  │                      │               │ EAP method in the "eap"                    │
958       │                                  │                      │               │ property.  When unset, the                 │
959       │                                  │                      │               │ version reported by the server             │
960       │                                  │                      │               │ will be used.  Sometimes when              │
961       │                                  │                      │               │ using older RADIUS servers, it             │
962       │                                  │                      │               │ is necessary to force the                  │
963       │                                  │                      │               │ client to use a particular                 │
964       │                                  │                      │               │ PEAP version.  To do so, this              │
965       │                                  │                      │               │ property may be set to "0" or              │
966       │                                  │                      │               │ "1" to force that specific                 │
967       │                                  │                      │               │ PEAP version.                              │
968       ├──────────────────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
969       │phase2-altsubject-matches         │ array of string      │               │ List of strings to be matched              │
970       │                                  │                      │               │ against the altSubjectName of              │
971       │                                  │                      │               │ the certificate presented by               │
972       │                                  │                      │               │ the authentication server                  │
973       │                                  │                      │               │ during the inner "phase 2"                 │
974       │                                  │                      │               │ authentication. If the list is             │
975       │                                  │                      │               │ empty, no verification of the              │
976       │                                  │                      │               │ server certificate's                       │
977       │                                  │                      │               │ altSubjectName is performed.               │
978       ├──────────────────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
979       │phase2-auth                       │ string               │               │ Specifies the allowed "phase               │
980       │                                  │                      │               │ 2" inner authentication method             │
981       │                                  │                      │               │ when an EAP method that uses               │
982       │                                  │                      │               │ an inner TLS tunnel is                     │
983       │                                  │                      │               │ specified in the "eap"                     │
984       │                                  │                      │               │ property.  For TTLS this                   │
985       │                                  │                      │               │ property selects one of the                │
986       │                                  │                      │               │ supported non-EAP inner                    │
987       │                                  │                      │               │ methods: "pap", "chap",                    │
988       │                                  │                      │               │ "mschap", "mschapv2" while                 │
989       │                                  │                      │               │ "phase2-autheap" selects an                │
990       │                                  │                      │               │ EAP inner method.  For PEAP                │
991       │                                  │                      │               │ this selects an inner EAP                  │
992       │                                  │                      │               │ method, one of: "gtc", "otp",              │
993       │                                  │                      │               │ "md5" and "tls". Each "phase               │
994       │                                  │                      │               │ 2" inner method requires                   │
995       │                                  │                      │               │ specific parameters for                    │
996       │                                  │                      │               │ successful authentication; see             │
997       │                                  │                      │               │ the wpa_supplicant                         │
998       │                                  │                      │               │ documentation for more                     │
999       │                                  │                      │               │ details. Both "phase2-auth"                │
1000       │                                  │                      │               │ and "phase2-autheap" cannot be             │
1001       │                                  │                      │               │ specified.                                 │
1002       ├──────────────────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
1003       │phase2-autheap                    │ string               │               │ Specifies the allowed "phase               │
1004       │                                  │                      │               │ 2" inner EAP-based                         │
1005       │                                  │                      │               │ authentication method when                 │
1006       │                                  │                      │               │ TTLS is specified in the "eap"             │
1007       │                                  │                      │               │ property.  Recognized                      │
1008       │                                  │                      │               │ EAP-based "phase 2" methods                │
1009       │                                  │                      │               │ are "md5", "mschapv2", "otp",              │
1010       │                                  │                      │               │ "gtc", and "tls". Each "phase              │
1011       │                                  │                      │               │ 2" inner method requires                   │
1012       │                                  │                      │               │ specific parameters for                    │
1013       │                                  │                      │               │ successful authentication; see             │
1014       │                                  │                      │               │ the wpa_supplicant                         │
1015       │                                  │                      │               │ documentation for more                     │
1016       │                                  │                      │               │ details.                                   │
1017       ├──────────────────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
1018       │phase2-ca-cert                    │ byte array           │               │ Contains the "phase 2" CA                  │
1019       │                                  │                      │               │ certificate if used by the EAP             │
1020       │                                  │                      │               │ method specified in the                    │
1021       │                                  │                      │               │ "phase2-auth" or                           │
1022       │                                  │                      │               │ "phase2-autheap" properties.               │
1023       │                                  │                      │               │                                            │
1024       │                                  │                      │               │  Certificate data is specified             │
1025       │                                  │                      │               │ using a "scheme"; three are                │
1026       │                                  │                      │               │ currently supported: blob,                 │
1027       │                                  │                      │               │ path and pkcs#11 URL. When                 │
1028       │                                  │                      │               │ using the blob scheme this                 │
1029       │                                  │                      │               │ property should be set to the              │
1030       │                                  │                      │               │ certificate's DER encoded                  │
1031       │                                  │                      │               │ data. When using the path                  │
1032       │                                  │                      │               │ scheme, this property should               │
1033       │                                  │                      │               │ be set to the full UTF-8                   │
1034       │                                  │                      │               │ encoded path of the                        │
1035       │                                  │                      │               │ certificate, prefixed with the             │
1036       │                                  │                      │               │ string "file://" and ending                │
1037       │                                  │                      │               │ with a terminating NUL byte.               │
1038       │                                  │                      │               │ This property can be unset                 │
1039       │                                  │                      │               │ even if the EAP method                     │
1040       │                                  │                      │               │ supports CA certificates, but              │
1041       │                                  │                      │               │ this allows man-in-the-middle              │
1042       │                                  │                      │               │ attacks and is NOT                         │
1043       │                                  │                      │               │ recommended.                               │
1044       │                                  │                      │               │                                            │
1045       │                                  │                      │               │  Note that enabling                        │
1046       │                                  │                      │               │ NMSetting8021x:system-ca-certs             │
1047       │                                  │                      │               │ will override this setting to              │
1048       │                                  │                      │               │ use the built-in path, if the              │
1049       │                                  │                      │               │ built-in path is not a                     │
1050       │                                  │                      │               │ directory.                                 │
1051       ├──────────────────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
1052       │phase2-ca-cert-password           │ string               │               │ The password used to access                │
1053       │                                  │                      │               │ the "phase2" CA certificate                │
1054       │                                  │                      │               │ stored in "phase2-ca-cert"                 │
1055       │                                  │                      │               │ property. Only makes sense if              │
1056       │                                  │                      │               │ the certificate is stored on a             │
1057       │                                  │                      │               │ PKCS#11 token that requires a              │
1058       │                                  │                      │               │ login.                                     │
1059       ├──────────────────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
1060       │phase2-ca-cert-password-flags     │ NMSettingSecretFlags │               │ Flags indicating how to handle             │
1061       │                                  │ (uint32)             │               │ the "phase2-ca-cert-password"              │
1062       │                                  │                      │               │ property.                                  │
1063       ├──────────────────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
1064       │phase2-ca-path                    │ string               │               │ UTF-8 encoded path to a                    │
1065       │                                  │                      │               │ directory containing PEM or                │
1066       │                                  │                      │               │ DER formatted certificates to              │
1067       │                                  │                      │               │ be added to the verification               │
1068       │                                  │                      │               │ chain in addition to the                   │
1069       │                                  │                      │               │ certificate specified in the               │
1070       │                                  │                      │               │ "phase2-ca-cert" property.                 │
1071       │                                  │                      │               │                                            │
1072       │                                  │                      │               │  If                                        │
1073       │                                  │                      │               │ NMSetting8021x:system-ca-certs             │
1074       │                                  │                      │               │ is enabled and the built-in CA             │
1075       │                                  │                      │               │ path is an existing directory,             │
1076       │                                  │                      │               │ then this setting is ignored.              │
1077       ├──────────────────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
1078       │phase2-client-cert                │ byte array           │               │ Contains the "phase 2" client              │
1079       │                                  │                      │               │ certificate if used by the EAP             │
1080       │                                  │                      │               │ method specified in the                    │
1081       │                                  │                      │               │ "phase2-auth" or                           │
1082       │                                  │                      │               │ "phase2-autheap" properties.               │
1083       │                                  │                      │               │                                            │
1084       │                                  │                      │               │  Certificate data is specified             │
1085       │                                  │                      │               │ using a "scheme"; two are                  │
1086       │                                  │                      │               │ currently supported: blob and              │
1087       │                                  │                      │               │ path. When using the blob                  │
1088       │                                  │                      │               │ scheme (which is backwards                 │
1089       │                                  │                      │               │ compatible with NM 0.7.x) this             │
1090       │                                  │                      │               │ property should be set to the              │
1091       │                                  │                      │               │ certificate's DER encoded                  │
1092       │                                  │                      │               │ data. When using the path                  │
1093       │                                  │                      │               │ scheme, this property should               │
1094       │                                  │                      │               │ be set to the full UTF-8                   │
1095       │                                  │                      │               │ encoded path of the                        │
1096       │                                  │                      │               │ certificate, prefixed with the             │
1097       │                                  │                      │               │ string "file://" and ending                │
1098       │                                  │                      │               │ with a terminating NUL byte.               │
1099       │                                  │                      │               │ This property can be unset                 │
1100       │                                  │                      │               │ even if the EAP method                     │
1101       │                                  │                      │               │ supports CA certificates, but              │
1102       │                                  │                      │               │ this allows man-in-the-middle              │
1103       │                                  │                      │               │ attacks and is NOT                         │
1104       │                                  │                      │               │ recommended.                               │
1105       ├──────────────────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
1106       │phase2-client-cert-password       │ string               │               │ The password used to access                │
1107       │                                  │                      │               │ the "phase2" client                        │
1108       │                                  │                      │               │ certificate stored in                      │
1109       │                                  │                      │               │ "phase2-client-cert" property.             │
1110       │                                  │                      │               │ Only makes sense if the                    │
1111       │                                  │                      │               │ certificate is stored on a                 │
1112       │                                  │                      │               │ PKCS#11 token that requires a              │
1113       │                                  │                      │               │ login.                                     │
1114       ├──────────────────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
1115       │phase2-client-cert-password-flags │ NMSettingSecretFlags │               │ Flags indicating how to handle             │
1116       │                                  │ (uint32)             │               │ the                                        │
1117       │                                  │                      │               │ "phase2-client-cert-password"              │
1118       │                                  │                      │               │ property.                                  │
1119       ├──────────────────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
1120       │phase2-domain-match               │ string               │               │ Constraint for server domain               │
1121       │                                  │                      │               │ name. If set, this list of                 │
1122       │                                  │                      │               │ FQDNs is used as a match                   │
1123       │                                  │                      │               │ requirement for dNSName                    │
1124       │                                  │                      │               │ element(s) of the certificate              │
1125       │                                  │                      │               │ presented by the                           │
1126       │                                  │                      │               │ authentication server during               │
1127       │                                  │                      │               │ the inner "phase 2"                        │
1128       │                                  │                      │               │ authentication. If a matching              │
1129       │                                  │                      │               │ dNSName is found, this                     │
1130       │                                  │                      │               │ constraint is met.  If no                  │
1131       │                                  │                      │               │ dNSName values are present,                │
1132       │                                  │                      │               │ this constraint is matched                 │
1133       │                                  │                      │               │ against SubjectName CN using               │
1134       │                                  │                      │               │ the same comparison. Multiple              │
1135       │                                  │                      │               │ valid FQDNs can be passed as a             │
1136       │                                  │                      │               │ ";" delimited list.                        │
1137       ├──────────────────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
1138       │phase2-domain-suffix-match        │ string               │               │ Constraint for server domain               │
1139       │                                  │                      │               │ name. If set, this FQDN is                 │
1140       │                                  │                      │               │ used as a suffix match                     │
1141       │                                  │                      │               │ requirement for dNSName                    │
1142       │                                  │                      │               │ element(s) of the certificate              │
1143       │                                  │                      │               │ presented by the                           │
1144       │                                  │                      │               │ authentication server during               │
1145       │                                  │                      │               │ the inner "phase 2"                        │
1146       │                                  │                      │               │ authentication.  If a matching             │
1147       │                                  │                      │               │ dNSName is found, this                     │
1148       │                                  │                      │               │ constraint is met.  If no                  │
1149       │                                  │                      │               │ dNSName values are present,                │
1150       │                                  │                      │               │ this constraint is matched                 │
1151       │                                  │                      │               │ against SubjectName CN using               │
1152       │                                  │                      │               │ same suffix match comparison.              │
1153       │                                  │                      │               │ Since version 1.24, multiple               │
1154       │                                  │                      │               │ valid FQDNs can be passed as a             │
1155       │                                  │                      │               │ ";" delimited list.                        │
1156       ├──────────────────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
1157       │phase2-private-key                │ byte array           │               │ Contains the "phase 2" inner               │
1158       │                                  │                      │               │ private key when the                       │
1159       │                                  │                      │               │ "phase2-auth" or                           │
1160       │                                  │                      │               │ "phase2-autheap" property is               │
1161       │                                  │                      │               │ set to "tls".                              │
1162       │                                  │                      │               │                                            │
1163       │                                  │                      │               │  Key data is specified using a             │
1164       │                                  │                      │               │ "scheme"; two are currently                │
1165       │                                  │                      │               │ supported: blob and path. When             │
1166       │                                  │                      │               │ using the blob scheme and                  │
1167       │                                  │                      │               │ private keys, this property                │
1168       │                                  │                      │               │ should be set to the key's                 │
1169       │                                  │                      │               │ encrypted PEM encoded data.                │
1170       │                                  │                      │               │ When using private keys with               │
1171       │                                  │                      │               │ the path scheme, this property             │
1172       │                                  │                      │               │ should be set to the full                  │
1173       │                                  │                      │               │ UTF-8 encoded path of the key,             │
1174       │                                  │                      │               │ prefixed with the string                   │
1175       │                                  │                      │               │ "file://" and ending with a                │
1176       │                                  │                      │               │ terminating NUL byte. When                 │
1177       │                                  │                      │               │ using PKCS#12 format private               │
1178       │                                  │                      │               │ keys and the blob scheme, this             │
1179       │                                  │                      │               │ property should be set to the              │
1180       │                                  │                      │               │ PKCS#12 data and the                       │
1181       │                                  │                      │               │ "phase2-private-key-password"              │
1182       │                                  │                      │               │ property must be set to                    │
1183       │                                  │                      │               │ password used to decrypt the               │
1184       │                                  │                      │               │ PKCS#12 certificate and key.               │
1185       │                                  │                      │               │ When using PKCS#12 files and               │
1186       │                                  │                      │               │ the path scheme, this property             │
1187       │                                  │                      │               │ should be set to the full                  │
1188       │                                  │                      │               │ UTF-8 encoded path of the key,             │
1189       │                                  │                      │               │ prefixed with the string                   │
1190       │                                  │                      │               │ "file://" and ending with a                │
1191       │                                  │                      │               │ terminating NUL byte, and as               │
1192       │                                  │                      │               │ with the blob scheme the                   │
1193       │                                  │                      │               │ "phase2-private-key-password"              │
1194       │                                  │                      │               │ property must be set to the                │
1195       │                                  │                      │               │ password used to decode the                │
1196       │                                  │                      │               │ PKCS#12 private key and                    │
1197       │                                  │                      │               │ certificate.                               │
1198       ├──────────────────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
1199       │phase2-private-key-password       │ string               │               │ The password used to decrypt               │
1200       │                                  │                      │               │ the "phase 2" private key                  │
1201       │                                  │                      │               │ specified in the                           │
1202       │                                  │                      │               │ "phase2-private-key" property              │
1203       │                                  │                      │               │ when the private key either                │
1204       │                                  │                      │               │ uses the path scheme, or is a              │
1205       │                                  │                      │               │ PKCS#12 format key.                        │
1206       ├──────────────────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
1207       │phase2-private-key-password-flags │ NMSettingSecretFlags │               │ Flags indicating how to handle             │
1208       │                                  │ (uint32)             │               │ the                                        │
1209       │                                  │                      │               │ "phase2-private-key-password"              │
1210       │                                  │                      │               │ property.                                  │
1211       ├──────────────────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
1212       │phase2-subject-match              │ string               │               │ Substring to be matched                    │
1213       │                                  │                      │               │ against the subject of the                 │
1214       │                                  │                      │               │ certificate presented by the               │
1215       │                                  │                      │               │ authentication server during               │
1216       │                                  │                      │               │ the inner "phase 2"                        │
1217       │                                  │                      │               │ authentication. When unset, no             │
1218       │                                  │                      │               │ verification of the                        │
1219       │                                  │                      │               │ authentication server                      │
1220       │                                  │                      │               │ certificate's subject is                   │
1221       │                                  │                      │               │ performed.  This property                  │
1222       │                                  │                      │               │ provides little security, if               │
1223       │                                  │                      │               │ any, and its use is deprecated             │
1224       │                                  │                      │               │ in favor of                                │
1225       │                                  │                      │               │ NMSetting8021x:phase2-domain-suffix-match. │
1226       ├──────────────────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
1227       │pin                               │ string               │               │ PIN used for EAP authentication methods.   │
1228       ├──────────────────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
1229       │pin-flags                         │ NMSettingSecretFlags │               │ Flags indicating how to handle the "pin"   │
1230       │                                  │ (uint32)             │               │ property.                                  │
1231       ├──────────────────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
1232       │private-key                       │ byte array           │               │ Contains the private key when the "eap"    │
1233       │                                  │                      │               │ property is set to "tls".                  │
1234       │                                  │                      │               │                                            │
1235       │                                  │                      │               │  Key data is specified using a "scheme";   │
1236       │                                  │                      │               │ two are currently supported: blob and      │
1237       │                                  │                      │               │ path. When using the blob scheme and       │
1238       │                                  │                      │               │ private keys, this property should be set  │
1239       │                                  │                      │               │ to the key's encrypted PEM encoded data.   │
1240       │                                  │                      │               │ When using private keys with the path      │
1241       │                                  │                      │               │ scheme, this property should be set to the │
1242       │                                  │                      │               │ full UTF-8 encoded path of the key,        │
1243       │                                  │                      │               │ prefixed with the string "file://" and     │
1244       │                                  │                      │               │ ending with a terminating NUL byte. When   │
1245       │                                  │                      │               │ using PKCS#12 format private keys and the  │
1246       │                                  │                      │               │ blob scheme, this property should be set   │
1247       │                                  │                      │               │ to the PKCS#12 data and the                │
1248       │                                  │                      │               │ "private-key-password" property must be    │
1249       │                                  │                      │               │ set to password used to decrypt the        │
1250       │                                  │                      │               │ PKCS#12 certificate and key. When using    │
1251       │                                  │                      │               │ PKCS#12 files and the path scheme, this    │
1252       │                                  │                      │               │ property should be set to the full UTF-8   │
1253       │                                  │                      │               │ encoded path of the key, prefixed with the │
1254       │                                  │                      │               │ string "file://" and ending with a         │
1255       │                                  │                      │               │ terminating NUL byte, and as with the blob │
1256       │                                  │                      │               │ scheme the "private-key-password" property │
1257       │                                  │                      │               │ must be set to the password used to decode │
1258       │                                  │                      │               │ the PKCS#12 private key and certificate.   │
1259       │                                  │                      │               │                                            │
1260       │                                  │                      │               │  WARNING: "private-key" is not a "secret"  │
1261       │                                  │                      │               │ property, and thus unencrypted private key │
1262       │                                  │                      │               │ data using the BLOB scheme may be readable │
1263       │                                  │                      │               │ by unprivileged users.  Private keys       │
1264       │                                  │                      │               │ should always be encrypted with a private  │
1265       │                                  │                      │               │ key password to prevent unauthorized       │
1266       │                                  │                      │               │ access to unencrypted private key data.    │
1267       ├──────────────────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
1268       │private-key-password              │ string               │               │ The password used to decrypt the private   │
1269       │                                  │                      │               │ key specified in the "private-key"         │
1270       │                                  │                      │               │ property when the private key either uses  │
1271       │                                  │                      │               │ the path scheme, or if the private key is  │
1272       │                                  │                      │               │ a PKCS#12 format key.                      │
1273       ├──────────────────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
1274       │private-key-password-flags        │ NMSettingSecretFlags │               │ Flags indicating how to handle the         │
1275       │                                  │ (uint32)             │               │ "private-key-password" property.           │
1276       ├──────────────────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
1277       │subject-match                     │ string               │               │ Substring to be matched against the        │
1278       │                                  │                      │               │ subject of the certificate presented by    │
1279       │                                  │                      │               │ the authentication server. When unset, no  │
1280       │                                  │                      │               │ verification of the authentication server  │
1281       │                                  │                      │               │ certificate's subject is performed.  This  │
1282       │                                  │                      │               │ property provides little security, if any, │
1283       │                                  │                      │               │ and its use is deprecated in favor of      │
1284       │                                  │                      │               │ NMSetting8021x:domain-suffix-match.        │
1285       ├──────────────────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
1286       │system-ca-certs                   │ boolean              │ FALSE         │ When TRUE, overrides the "ca-path" and     │
1287       │                                  │                      │               │ "phase2-ca-path" properties using the      │
1288       │                                  │                      │               │ system CA directory specified at configure │
1289       │                                  │                      │               │ time with the --system-ca-path switch.     │
1290       │                                  │                      │               │ The certificates in this directory are     │
1291       │                                  │                      │               │ added to the verification chain in         │
1292       │                                  │                      │               │ addition to any certificates specified by  │
1293       │                                  │                      │               │ the "ca-cert" and "phase2-ca-cert"         │
1294       │                                  │                      │               │ properties. If the path provided with      │
1295       │                                  │                      │               │ --system-ca-path is rather a file name     │
1296       │                                  │                      │               │ (bundle of trusted CA certificates), it    │
1297       │                                  │                      │               │ overrides "ca-cert" and "phase2-ca-cert"   │
1298       │                                  │                      │               │ properties instead (sets ca_cert/ca_cert2  │
1299       │                                  │                      │               │ options for wpa_supplicant).               │
1300       └──────────────────────────────────┴──────────────────────┴───────────────┴────────────────────────────────────────────┘
1301
1302   adsl setting
1303       ADSL Settings.
1304
1305       ┌───────────────┬──────────────────────┬───────────────┬──────────────────┐
1306Key Name       Value Type           Default Value Value            
1307       │               │                      │               │ Description      
1308       ├───────────────┼──────────────────────┼───────────────┼──────────────────┤
1309       │encapsulation  │ string               │               │ Encapsulation of │
1310       │               │                      │               │ ADSL connection. │
1311       │               │                      │               │ Can be "vcmux"   │
1312       │               │                      │               │ or "llc".        │
1313       ├───────────────┼──────────────────────┼───────────────┼──────────────────┤
1314       │password       │ string               │               │ Password used to │
1315       │               │                      │               │ authenticate     │
1316       │               │                      │               │ with the ADSL    │
1317       │               │                      │               │ service.         │
1318       ├───────────────┼──────────────────────┼───────────────┼──────────────────┤
1319       │password-flags │ NMSettingSecretFlags │               │ Flags indicating │
1320       │               │ (uint32)             │               │ how to handle    │
1321       │               │                      │               │ the "password"   │
1322       │               │                      │               │ property.        │
1323       ├───────────────┼──────────────────────┼───────────────┼──────────────────┤
1324       │protocol       │ string               │               │ ADSL connection  │
1325       │               │                      │               │ protocol.  Can   │
1326       │               │                      │               │ be "pppoa",      │
1327       │               │                      │               │ "pppoe" or       │
1328       │               │                      │               │ "ipoatm".        │
1329       ├───────────────┼──────────────────────┼───────────────┼──────────────────┤
1330       │username       │ string               │               │ Username used to │
1331       │               │                      │               │ authenticate     │
1332       │               │                      │               │ with the ADSL    │
1333       │               │                      │               │ service.         │
1334       ├───────────────┼──────────────────────┼───────────────┼──────────────────┤
1335       │vci            │ uint32               │ 0             │ VCI of ADSL      │
1336       │               │                      │               │ connection       │
1337       ├───────────────┼──────────────────────┼───────────────┼──────────────────┤
1338       │vpi            │ uint32               │ 0             │ VPI of ADSL      │
1339       │               │                      │               │ connection       │
1340       └───────────────┴──────────────────────┴───────────────┴──────────────────┘
1341
1342   bluetooth setting
1343       Bluetooth Settings.
1344
1345       ┌─────────┬────────────┬───────────────┬──────────────────┐
1346Key Name Value Type Default Value Value            
1347       │         │            │               │ Description      
1348       ├─────────┼────────────┼───────────────┼──────────────────┤
1349       │bdaddr   │ byte array │               │ The Bluetooth    │
1350       │         │            │               │ address of the   │
1351       │         │            │               │ device.          │
1352       ├─────────┼────────────┼───────────────┼──────────────────┤
1353       │type     │ string     │               │ Either "dun" for │
1354       │         │            │               │ Dial-Up          │
1355       │         │            │               │ Networking       │
1356       │         │            │               │ connections or   │
1357       │         │            │               │ "panu" for       │
1358       │         │            │               │ Personal Area    │
1359       │         │            │               │ Networking       │
1360       │         │            │               │ connections to   │
1361       │         │            │               │ devices          │
1362       │         │            │               │ supporting the   │
1363       │         │            │               │ NAP profile.     │
1364       └─────────┴────────────┴───────────────┴──────────────────┘
1365
1366   bond setting
1367       Bonding Settings.
1368
1369       ┌───────────────┬────────────────┬───────────────┬────────────────────────────┐
1370Key Name       Value Type     Default Value Value                      
1371       │               │                │               │ Description                
1372       ├───────────────┼────────────────┼───────────────┼────────────────────────────┤
1373       │interface-name │ string         │               │ Deprecated in              │
1374       │               │                │               │ favor of                   │
1375       │               │                │               │ connection.interface-name, │
1376       │               │                │               │ but can be used            │
1377       │               │                │               │ for                        │
1378       │               │                │               │ backward-compatibility     │
1379       │               │                │               │ with older                 │
1380       │               │                │               │ daemons, to set            │
1381       │               │                │               │ the bond's                 │
1382       │               │                │               │ interface name.            │
1383       ├───────────────┼────────────────┼───────────────┼────────────────────────────┤
1384       │options        │ dict of string │ {'mode':      │ Dictionary of key/value    │
1385       │               │ to string      │ 'balance-rr'} │ pairs of bonding options.  │
1386       │               │                │               │ Both keys and values must  │
1387       │               │                │               │ be strings. Option names   │
1388       │               │                │               │ must contain only          │
1389       │               │                │               │ alphanumeric characters    │
1390       │               │                │               │ (ie, [a-zA-Z0-9]).         │
1391       └───────────────┴────────────────┴───────────────┴────────────────────────────┘
1392
1393   bridge setting
1394       Bridging Settings.
1395
1396       ┌──────────────────────────────────┬──────────────────┬───────────────┬───────────────────────────────┐
1397Key Name                          Value Type       Default Value Value                         
1398       │                                  │                  │               │ Description                   
1399       ├──────────────────────────────────┼──────────────────┼───────────────┼───────────────────────────────┤
1400       │ageing-time                       │ uint32           │ 300           │ The Ethernet MAC              │
1401       │                                  │                  │               │ address aging                 │
1402       │                                  │                  │               │ time, in                      │
1403       │                                  │                  │               │ seconds.                      │
1404       ├──────────────────────────────────┼──────────────────┼───────────────┼───────────────────────────────┤
1405       │forward-delay                     │ uint32           │ 15            │ The Spanning                  │
1406       │                                  │                  │               │ Tree Protocol                 │
1407       │                                  │                  │               │ (STP) forwarding              │
1408       │                                  │                  │               │ delay, in                     │
1409       │                                  │                  │               │ seconds.                      │
1410       ├──────────────────────────────────┼──────────────────┼───────────────┼───────────────────────────────┤
1411       │group-address                     │ byte array       │               │ If specified,                 │
1412       │                                  │                  │               │ The MAC address               │
1413       │                                  │                  │               │ of the multicast              │
1414       │                                  │                  │               │ group this                    │
1415       │                                  │                  │               │ bridge uses for               │
1416       │                                  │                  │               │ STP.                          │
1417       │                                  │                  │               │                               │
1418       │                                  │                  │               │  The address                  │
1419       │                                  │                  │               │ must be a                     │
1420       │                                  │                  │               │ link-local                    │
1421       │                                  │                  │               │ address in                    │
1422       │                                  │                  │               │ standard                      │
1423       │                                  │                  │               │ Ethernet MAC                  │
1424       │                                  │                  │               │ address format,               │
1425       │                                  │                  │               │ ie an address of              │
1426       │                                  │                  │               │ the form                      │
1427       │                                  │                  │               │ 01:80:C2:00:00:0X,            │
1428       │                                  │                  │               │ with X in [0,                 │
1429       │                                  │                  │               │ 4..F]. If not                 │
1430       │                                  │                  │               │ specified the                 │
1431       │                                  │                  │               │ default value is              │
1432       │                                  │                  │               │ 01:80:C2:00:00:00.            │
1433       ├──────────────────────────────────┼──────────────────┼───────────────┼───────────────────────────────┤
1434       │group-forward-mask                │ uint32           │ 0             │ A mask of group               │
1435       │                                  │                  │               │ addresses to                  │
1436       │                                  │                  │               │ forward. Usually,             │
1437       │                                  │                  │               │ group addresses in            │
1438       │                                  │                  │               │ the range from                │
1439       │                                  │                  │               │ 01:80:C2:00:00:00             │
1440       │                                  │                  │               │ to                            │
1441       │                                  │                  │               │ 01:80:C2:00:00:0F             │
1442       │                                  │                  │               │ are not forwarded             │
1443       │                                  │                  │               │ according to                  │
1444       │                                  │                  │               │ standards. This               │
1445       │                                  │                  │               │ property is a mask            │
1446       │                                  │                  │               │ of 16 bits, each              │
1447       │                                  │                  │               │ corresponding to a            │
1448       │                                  │                  │               │ group address in              │
1449       │                                  │                  │               │ that range that               │
1450       │                                  │                  │               │ must be forwarded.            │
1451       │                                  │                  │               │ The mask can't                │
1452       │                                  │                  │               │ have bits 0, 1 or             │
1453       │                                  │                  │               │ 2 set because they            │
1454       │                                  │                  │               │ are used for STP,             │
1455       │                                  │                  │               │ MAC pause frames              │
1456       │                                  │                  │               │ and LACP.                     │
1457       ├──────────────────────────────────┼──────────────────┼───────────────┼───────────────────────────────┤
1458       │hello-time                        │ uint32           │ 2             │ The Spanning Tree             │
1459       │                                  │                  │               │ Protocol (STP)                │
1460       │                                  │                  │               │ hello time, in                │
1461       │                                  │                  │               │ seconds.                      │
1462       ├──────────────────────────────────┼──────────────────┼───────────────┼───────────────────────────────┤
1463       │interface-name                    │ string           │               │ Deprecated in                 │
1464       │                                  │                  │               │ favor of                      │
1465       │                                  │                  │               │ connection.interface-name,    │
1466       │                                  │                  │               │ but can be used               │
1467       │                                  │                  │               │ for                           │
1468       │                                  │                  │               │ backward-compatibility        │
1469       │                                  │                  │               │ with older                    │
1470       │                                  │                  │               │ daemons, to set               │
1471       │                                  │                  │               │ the bridge's                  │
1472       │                                  │                  │               │ interface name.               │
1473       ├──────────────────────────────────┼──────────────────┼───────────────┼───────────────────────────────┤
1474       │mac-address                       │ byte array       │               │ If specified, the MAC         │
1475       │                                  │                  │               │ address of bridge. When       │
1476       │                                  │                  │               │ creating a new bridge,        │
1477       │                                  │                  │               │ this MAC address will be      │
1478       │                                  │                  │               │ set.                          │
1479       │                                  │                  │               │                               │
1480       │                                  │                  │               │  If this field is left        │
1481       │                                  │                  │               │ unspecified, the              │
1482       │                                  │                  │               │ "ethernet.cloned-mac-address" │
1483       │                                  │                  │               │ is referred instead to        │
1484       │                                  │                  │               │ generate the initial MAC      │
1485       │                                  │                  │               │ address. Note that setting    │
1486       │                                  │                  │               │ "ethernet.cloned-mac-address" │
1487       │                                  │                  │               │ anyway overwrites the MAC     │
1488       │                                  │                  │               │ address of the bridge         │
1489       │                                  │                  │               │ later while activating the    │
1490       │                                  │                  │               │ bridge. Hence, this           │
1491       │                                  │                  │               │ property is deprecated.       │
1492       │                                  │                  │               │ Deprecated: 1                 │
1493       ├──────────────────────────────────┼──────────────────┼───────────────┼───────────────────────────────┤
1494       │max-age                           │ uint32           │ 20            │ The Spanning Tree Protocol    │
1495       │                                  │                  │               │ (STP) maximum message age, in │
1496       │                                  │                  │               │ seconds.                      │
1497       ├──────────────────────────────────┼──────────────────┼───────────────┼───────────────────────────────┤
1498       │multicast-hash-max                │ uint32           │ 4096          │ Set maximum size of multicast │
1499       │                                  │                  │               │ hash table (value must be a   │
1500       │                                  │                  │               │ power of 2).                  │
1501       ├──────────────────────────────────┼──────────────────┼───────────────┼───────────────────────────────┤
1502       │multicast-last-member-count       │ uint32           │ 2             │ Set the number of queries the │
1503       │                                  │                  │               │ bridge will send before       │
1504       │                                  │                  │               │ stopping forwarding a         │
1505       │                                  │                  │               │ multicast group after a       │
1506       │                                  │                  │               │ "leave" message has been      │
1507       │                                  │                  │               │ received.                     │
1508       ├──────────────────────────────────┼──────────────────┼───────────────┼───────────────────────────────┤
1509       │multicast-last-member-interval    │ uint64           │ 100           │ Set interval (in deciseconds) │
1510       │                                  │                  │               │ between queries to find       │
1511       │                                  │                  │               │ remaining members of a group, │
1512       │                                  │                  │               │ after a "leave" message is    │
1513       │                                  │                  │               │ received.                     │
1514       ├──────────────────────────────────┼──────────────────┼───────────────┼───────────────────────────────┤
1515       │multicast-membership-interval     │ uint64           │ 26000         │ Set delay (in deciseconds)    │
1516       │                                  │                  │               │ after which the bridge will   │
1517       │                                  │                  │               │ leave a group, if no          │
1518       │                                  │                  │               │ membership reports for this   │
1519       │                                  │                  │               │ group are received.           │
1520       ├──────────────────────────────────┼──────────────────┼───────────────┼───────────────────────────────┤
1521       │multicast-querier                 │ boolean          │ FALSE         │ Enable or disable sending of  │
1522       │                                  │                  │               │ multicast queries by the      │
1523       │                                  │                  │               │ bridge. If not specified the  │
1524       │                                  │                  │               │ option is disabled.           │
1525       ├──────────────────────────────────┼──────────────────┼───────────────┼───────────────────────────────┤
1526       │multicast-querier-interval        │ uint64           │ 25500         │ If no queries are seen after  │
1527       │                                  │                  │               │ this delay (in deciseconds)   │
1528       │                                  │                  │               │ has passed, the bridge will   │
1529       │                                  │                  │               │ start to send its own         │
1530       │                                  │                  │               │ queries.                      │
1531       ├──────────────────────────────────┼──────────────────┼───────────────┼───────────────────────────────┤
1532       │multicast-query-interval          │ uint64           │ 12500         │ Interval (in deciseconds)     │
1533       │                                  │                  │               │ between queries sent by the   │
1534       │                                  │                  │               │ bridge after the end of the   │
1535       │                                  │                  │               │ startup phase.                │
1536       ├──────────────────────────────────┼──────────────────┼───────────────┼───────────────────────────────┤
1537       │multicast-query-response-interval │ uint64           │ 1000          │ Set the Max Response Time/Max │
1538       │                                  │                  │               │ Response Delay (in            │
1539       │                                  │                  │               │ deciseconds) for IGMP/MLD     │
1540       │                                  │                  │               │ queries sent by the bridge.   │
1541       ├──────────────────────────────────┼──────────────────┼───────────────┼───────────────────────────────┤
1542       │multicast-query-use-ifaddr        │ boolean          │ FALSE         │ If enabled the bridge's own   │
1543       │                                  │                  │               │ IP address is used as the     │
1544       │                                  │                  │               │ source address for IGMP       │
1545       │                                  │                  │               │ queries otherwise the default │
1546       │                                  │                  │               │ of 0.0.0.0 is used.           │
1547       ├──────────────────────────────────┼──────────────────┼───────────────┼───────────────────────────────┤
1548       │multicast-router                  │ string           │               │ Sets bridge's multicast       │
1549       │                                  │                  │               │ router. Multicast-snooping    │
1550       │                                  │                  │               │ must be enabled for this      │
1551       │                                  │                  │               │ option to work.               │
1552       │                                  │                  │               │                               │
1553       │                                  │                  │               │  Supported values are:        │
1554       │                                  │                  │               │ 'auto', 'disabled', 'enabled' │
1555       │                                  │                  │               │ to which kernel assigns the   │
1556       │                                  │                  │               │ numbers 1, 0, and 2,          │
1557       │                                  │                  │               │ respectively. If not          │
1558       │                                  │                  │               │ specified the default value   │
1559       │                                  │                  │               │ is 'auto' (1).                │
1560       ├──────────────────────────────────┼──────────────────┼───────────────┼───────────────────────────────┤
1561       │multicast-snooping                │ boolean          │ TRUE          │ Controls whether IGMP         │
1562       │                                  │                  │               │ snooping is enabled for this  │
1563       │                                  │                  │               │ bridge. Note that if snooping │
1564       │                                  │                  │               │ was automatically disabled    │
1565       │                                  │                  │               │ due to hash collisions, the   │
1566       │                                  │                  │               │ system may refuse to enable   │
1567       │                                  │                  │               │ the feature until the         │
1568       │                                  │                  │               │ collisions are resolved.      │
1569       ├──────────────────────────────────┼──────────────────┼───────────────┼───────────────────────────────┤
1570       │multicast-startup-query-count     │ uint32           │ 2             │ Set the number of IGMP        │
1571       │                                  │                  │               │ queries to send during        │
1572       │                                  │                  │               │ startup phase.                │
1573       ├──────────────────────────────────┼──────────────────┼───────────────┼───────────────────────────────┤
1574       │multicast-startup-query-interval  │ uint64           │ 3125          │ Sets the time (in             │
1575       │                                  │                  │               │ deciseconds) between queries  │
1576       │                                  │                  │               │ sent out at startup to        │
1577       │                                  │                  │               │ determine membership          │
1578       │                                  │                  │               │ information.                  │
1579       ├──────────────────────────────────┼──────────────────┼───────────────┼───────────────────────────────┤
1580       │priority                          │ uint32           │ 32768         │ Sets the Spanning Tree        │
1581       │                                  │                  │               │ Protocol (STP) priority for   │
1582       │                                  │                  │               │ this bridge.  Lower values    │
1583       │                                  │                  │               │ are "better"; the lowest      │
1584       │                                  │                  │               │ priority bridge will be       │
1585       │                                  │                  │               │ elected the root bridge.      │
1586       ├──────────────────────────────────┼──────────────────┼───────────────┼───────────────────────────────┤
1587       │stp                               │ boolean          │ TRUE          │ Controls whether Spanning     │
1588       │                                  │                  │               │ Tree Protocol (STP) is        │
1589       │                                  │                  │               │ enabled for this bridge.      │
1590       ├──────────────────────────────────┼──────────────────┼───────────────┼───────────────────────────────┤
1591       │vlan-default-pvid                 │ uint32           │ 1             │ The default PVID for the      │
1592       │                                  │                  │               │ ports of the bridge, that is  │
1593       │                                  │                  │               │ the VLAN id assigned to       │
1594       │                                  │                  │               │ incoming untagged frames.     │
1595       ├──────────────────────────────────┼──────────────────┼───────────────┼───────────────────────────────┤
1596       │vlan-filtering                    │ boolean          │ FALSE         │ Control whether VLAN          │
1597       │                                  │                  │               │ filtering is enabled on the   │
1598       │                                  │                  │               │ bridge.                       │
1599       ├──────────────────────────────────┼──────────────────┼───────────────┼───────────────────────────────┤
1600       │vlan-protocol                     │ string           │               │ If specified, the protocol    │
1601       │                                  │                  │               │ used for VLAN filtering.      │
1602       │                                  │                  │               │                               │
1603       │                                  │                  │               │  Supported values are:        │
1604       │                                  │                  │               │ '802.1Q', '802.1ad'. If not   │
1605       │                                  │                  │               │ specified the default value   │
1606       │                                  │                  │               │ is '802.1Q'.                  │
1607       ├──────────────────────────────────┼──────────────────┼───────────────┼───────────────────────────────┤
1608       │vlan-stats-enabled                │ boolean          │ FALSE         │ Controls whether per-VLAN     │
1609       │                                  │                  │               │ stats accounting is enabled.  │
1610       ├──────────────────────────────────┼──────────────────┼───────────────┼───────────────────────────────┤
1611       │vlans                             │ array of vardict │               │ Array of bridge VLAN objects. │
1612       │                                  │                  │               │ In addition to the VLANs      │
1613       │                                  │                  │               │ specified here, the bridge    │
1614       │                                  │                  │               │ will also have the            │
1615       │                                  │                  │               │ default-pvid VLAN configured  │
1616       │                                  │                  │               │ by the                        │
1617       │                                  │                  │               │ bridge.vlan-default-pvid      │
1618       │                                  │                  │               │ property.                     │
1619       │                                  │                  │               │                               │
1620       │                                  │                  │               │  In nmcli the VLAN list can   │
1621       │                                  │                  │               │ be specified with the         │
1622       │                                  │                  │               │ following syntax:             │
1623       │                                  │                  │               │                               │
1624       │                                  │                  │               │  $vid [pvid] [untagged] [,    │
1625       │                                  │                  │               │ $vid [pvid] [untagged]]...    │
1626       │                                  │                  │               │                               │
1627       │                                  │                  │               │  where $vid is either a       │
1628       │                                  │                  │               │ single id between 1 and 4094  │
1629       │                                  │                  │               │ or a range, represented as a  │
1630       │                                  │                  │               │ couple of ids separated by a  │
1631       │                                  │                  │               │ dash.                         │
1632       └──────────────────────────────────┴──────────────────┴───────────────┴───────────────────────────────┘
1633
1634   bridge-port setting
1635       Bridge Port Settings.
1636
1637       ┌─────────────┬──────────────────┬───────────────┬──────────────────────────┐
1638Key Name     Value Type       Default Value Value                    
1639       │             │                  │               │ Description              
1640       ├─────────────┼──────────────────┼───────────────┼──────────────────────────┤
1641       │hairpin-mode │ boolean          │ FALSE         │ Enables or               │
1642       │             │                  │               │ disables                 │
1643       │             │                  │               │ "hairpin mode"           │
1644       │             │                  │               │ for the port,            │
1645       │             │                  │               │ which allows             │
1646       │             │                  │               │ frames to be             │
1647       │             │                  │               │ sent back out            │
1648       │             │                  │               │ through the port         │
1649       │             │                  │               │ the frame was            │
1650       │             │                  │               │ received on.             │
1651       ├─────────────┼──────────────────┼───────────────┼──────────────────────────┤
1652       │path-cost    │ uint32           │ 100           │ The Spanning             │
1653       │             │                  │               │ Tree Protocol            │
1654       │             │                  │               │ (STP) port cost          │
1655       │             │                  │               │ for destinations         │
1656       │             │                  │               │ via this port.           │
1657       ├─────────────┼──────────────────┼───────────────┼──────────────────────────┤
1658       │priority     │ uint32           │ 32            │ The Spanning             │
1659       │             │                  │               │ Tree Protocol            │
1660       │             │                  │               │ (STP) priority           │
1661       │             │                  │               │ of this bridge           │
1662       │             │                  │               │ port.                    │
1663       ├─────────────┼──────────────────┼───────────────┼──────────────────────────┤
1664       │vlans        │ array of vardict │               │ Array of bridge          │
1665       │             │                  │               │ VLAN objects. In         │
1666       │             │                  │               │ addition to the          │
1667       │             │                  │               │ VLANs specified          │
1668       │             │                  │               │ here, the port           │
1669       │             │                  │               │ will also have           │
1670       │             │                  │               │ the default-pvid         │
1671       │             │                  │               │ VLAN configured          │
1672       │             │                  │               │ on the bridge by         │
1673       │             │                  │               │ the                      │
1674       │             │                  │               │ bridge.vlan-default-pvid │
1675       │             │                  │               │ property.                │
1676       │             │                  │               │                          │
1677       │             │                  │               │  In nmcli the            │
1678       │             │                  │               │ VLAN list can be         │
1679       │             │                  │               │ specified with           │
1680       │             │                  │               │ the following            │
1681       │             │                  │               │ syntax:                  │
1682       │             │                  │               │                          │
1683       │             │                  │               │  $vid [pvid]             │
1684       │             │                  │               │ [untagged] [,            │
1685       │             │                  │               │ $vid [pvid]              │
1686       │             │                  │               │ [untagged]]...           │
1687       │             │                  │               │                          │
1688       │             │                  │               │  where $vid is           │
1689       │             │                  │               │ either a single          │
1690       │             │                  │               │ id between 1 and         │
1691       │             │                  │               │ 4094 or a range,         │
1692       │             │                  │               │ represented as a         │
1693       │             │                  │               │ couple of ids            │
1694       │             │                  │               │ separated by a           │
1695       │             │                  │               │ dash.                    │
1696       └─────────────┴──────────────────┴───────────────┴──────────────────────────┘
1697
1698   cdma setting
1699       CDMA-based Mobile Broadband Settings.
1700
1701       ┌───────────────┬──────────────────────┬───────────────┬──────────────────┐
1702Key Name       Value Type           Default Value Value            
1703       │               │                      │               │ Description      
1704       ├───────────────┼──────────────────────┼───────────────┼──────────────────┤
1705       │mtu            │ uint32               │ 0             │ If non-zero,     │
1706       │               │                      │               │ only transmit    │
1707       │               │                      │               │ packets of the   │
1708       │               │                      │               │ specified size   │
1709       │               │                      │               │ or smaller,      │
1710       │               │                      │               │ breaking larger  │
1711       │               │                      │               │ packets up into  │
1712       │               │                      │               │ multiple frames. │
1713       ├───────────────┼──────────────────────┼───────────────┼──────────────────┤
1714       │number         │ string               │               │ The number to    │
1715       │               │                      │               │ dial to          │
1716       │               │                      │               │ establish the    │
1717       │               │                      │               │ connection to    │
1718       │               │                      │               │ the CDMA-based   │
1719       │               │                      │               │ mobile broadband │
1720       │               │                      │               │ network, if any. │
1721       │               │                      │               │ If not           │
1722       │               │                      │               │ specified, the   │
1723       │               │                      │               │ default number   │
1724       │               │                      │               │ (#777) is used   │
1725       │               │                      │               │ when required.   │
1726       ├───────────────┼──────────────────────┼───────────────┼──────────────────┤
1727       │password       │ string               │               │ The password     │
1728       │               │                      │               │ used to          │
1729       │               │                      │               │ authenticate     │
1730       │               │                      │               │ with the         │
1731       │               │                      │               │ network, if      │
1732       │               │                      │               │ required.  Many  │
1733       │               │                      │               │ providers do not │
1734       │               │                      │               │ require a        │
1735       │               │                      │               │ password, or     │
1736       │               │                      │               │ accept any       │
1737       │               │                      │               │ password.  But   │
1738       │               │                      │               │ if a password is │
1739       │               │                      │               │ required, it is  │
1740       │               │                      │               │ specified here.  │
1741       ├───────────────┼──────────────────────┼───────────────┼──────────────────┤
1742       │password-flags │ NMSettingSecretFlags │               │ Flags indicating │
1743       │               │ (uint32)             │               │ how to handle    │
1744       │               │                      │               │ the "password"   │
1745       │               │                      │               │ property.        │
1746       ├───────────────┼──────────────────────┼───────────────┼──────────────────┤
1747       │username       │ string               │               │ The username     │
1748       │               │                      │               │ used to          │
1749       │               │                      │               │ authenticate     │
1750       │               │                      │               │ with the         │
1751       │               │                      │               │ network, if      │
1752       │               │                      │               │ required.  Many  │
1753       │               │                      │               │ providers do not │
1754       │               │                      │               │ require a        │
1755       │               │                      │               │ username, or     │
1756       │               │                      │               │ accept any       │
1757       │               │                      │               │ username.  But   │
1758       │               │                      │               │ if a username is │
1759       │               │                      │               │ required, it is  │
1760       │               │                      │               │ specified here.  │
1761       └───────────────┴──────────────────────┴───────────────┴──────────────────┘
1762
1763   dcb setting
1764       Data Center Bridging Settings.
1765
1766       ┌────────────────────────────┬───────────────────┬───────────────┬───────────────────────────────┐
1767Key Name                    Value Type        Default Value Value                         
1768       │                            │                   │               │ Description                   
1769       ├────────────────────────────┼───────────────────┼───────────────┼───────────────────────────────┤
1770       │app-fcoe-flags              │ NMSettingDcbFlags │               │ Specifies the                 │
1771       │                            │ (uint32)          │               │ NMSettingDcbFlags             │
1772       │                            │                   │               │ for the DCB FCoE              │
1773       │                            │                   │               │ application.                  │
1774       │                            │                   │               │ Flags may be any              │
1775       │                            │                   │               │ combination of                │
1776       │                            │                   │               │ NM_SETTING_DCB_FLAG_ENABLE    │
1777       │                            │                   │               │ (0x1),                        │
1778       │                            │                   │               │ NM_SETTING_DCB_FLAG_ADVERTISE │
1779       │                            │                   │               │ (0x2), and                    │
1780       │                            │                   │               │ NM_SETTING_DCB_FLAG_WILLING   │
1781       │                            │                   │               │ (0x4).                        │
1782       ├────────────────────────────┼───────────────────┼───────────────┼───────────────────────────────┤
1783       │app-fcoe-mode               │ string            │               │ The FCoE controller mode;     │
1784       │                            │                   │               │ either "fabric" or "vn2vn".   │
1785       │                            │                   │               │                               │
1786       │                            │                   │               │  Since 1.34, NULL is the      │
1787       │                            │                   │               │ default and means "fabric".   │
1788       │                            │                   │               │ Before 1.34, NULL was         │
1789       │                            │                   │               │ rejected as invalid and the   │
1790       │                            │                   │               │ default was "fabric".         │
1791       ├────────────────────────────┼───────────────────┼───────────────┼───────────────────────────────┤
1792       │app-fcoe-priority           │ int32             │ -1            │ The highest User Priority (0  │
1793       │                            │                   │               │ - 7) which FCoE frames should │
1794       │                            │                   │               │ use, or -1 for default        │
1795       │                            │                   │               │ priority.  Only used when the │
1796       │                            │                   │               │ "app-fcoe-flags" property     │
1797       │                            │                   │               │ includes the                  │
1798       │                            │                   │               │ NM_SETTING_DCB_FLAG_ENABLE    │
1799       │                            │                   │               │ (0x1) flag.                   │
1800       ├────────────────────────────┼───────────────────┼───────────────┼───────────────────────────────┤
1801       │app-fip-flags               │ NMSettingDcbFlags │               │ Specifies the                 │
1802       │                            │ (uint32)          │               │ NMSettingDcbFlags for the DCB │
1803       │                            │                   │               │ FIP application.  Flags may   │
1804       │                            │                   │               │ be any combination of         │
1805       │                            │                   │               │ NM_SETTING_DCB_FLAG_ENABLE    │
1806       │                            │                   │               │ (0x1),                        │
1807       │                            │                   │               │ NM_SETTING_DCB_FLAG_ADVERTISE │
1808       │                            │                   │               │ (0x2), and                    │
1809       │                            │                   │               │ NM_SETTING_DCB_FLAG_WILLING   │
1810       │                            │                   │               │ (0x4).                        │
1811       ├────────────────────────────┼───────────────────┼───────────────┼───────────────────────────────┤
1812       │app-fip-priority            │ int32             │ -1            │ The highest User Priority (0  │
1813       │                            │                   │               │ - 7) which FIP frames should  │
1814       │                            │                   │               │ use, or -1 for default        │
1815       │                            │                   │               │ priority.  Only used when the │
1816       │                            │                   │               │ "app-fip-flags" property      │
1817       │                            │                   │               │ includes the                  │
1818       │                            │                   │               │ NM_SETTING_DCB_FLAG_ENABLE    │
1819       │                            │                   │               │ (0x1) flag.                   │
1820       ├────────────────────────────┼───────────────────┼───────────────┼───────────────────────────────┤
1821       │app-iscsi-flags             │ NMSettingDcbFlags │               │ Specifies the                 │
1822       │                            │ (uint32)          │               │ NMSettingDcbFlags for the DCB │
1823       │                            │                   │               │ iSCSI application.  Flags may │
1824       │                            │                   │               │ be any combination of         │
1825       │                            │                   │               │ NM_SETTING_DCB_FLAG_ENABLE    │
1826       │                            │                   │               │ (0x1),                        │
1827       │                            │                   │               │ NM_SETTING_DCB_FLAG_ADVERTISE │
1828       │                            │                   │               │ (0x2), and                    │
1829       │                            │                   │               │ NM_SETTING_DCB_FLAG_WILLING   │
1830       │                            │                   │               │ (0x4).                        │
1831       ├────────────────────────────┼───────────────────┼───────────────┼───────────────────────────────┤
1832       │app-iscsi-priority          │ int32             │ -1            │ The highest User Priority (0  │
1833       │                            │                   │               │ - 7) which iSCSI frames       │
1834       │                            │                   │               │ should use, or -1 for default │
1835       │                            │                   │               │ priority. Only used when the  │
1836       │                            │                   │               │ "app-iscsi-flags" property    │
1837       │                            │                   │               │ includes the                  │
1838       │                            │                   │               │ NM_SETTING_DCB_FLAG_ENABLE    │
1839       │                            │                   │               │ (0x1) flag.                   │
1840       ├────────────────────────────┼───────────────────┼───────────────┼───────────────────────────────┤
1841       │priority-bandwidth          │ array of uint32   │               │ An array of 8 uint values,    │
1842       │                            │                   │               │ where the array index         │
1843       │                            │                   │               │ corresponds to the User       │
1844       │                            │                   │               │ Priority (0 - 7) and the      │
1845       │                            │                   │               │ value indicates the           │
1846       │                            │                   │               │ percentage of bandwidth of    │
1847       │                            │                   │               │ the priority's assigned group │
1848       │                            │                   │               │ that the priority may use.    │
1849       │                            │                   │               │ The sum of all percentages    │
1850       │                            │                   │               │ for priorities which belong   │
1851       │                            │                   │               │ to the same group must total  │
1852       │                            │                   │               │ 100 percents.                 │
1853       ├────────────────────────────┼───────────────────┼───────────────┼───────────────────────────────┤
1854       │priority-flow-control       │ array of uint32   │               │ An array of 8 boolean values, │
1855       │                            │                   │               │ where the array index         │
1856       │                            │                   │               │ corresponds to the User       │
1857       │                            │                   │               │ Priority (0 - 7) and the      │
1858       │                            │                   │               │ value indicates whether or    │
1859       │                            │                   │               │ not the corresponding         │
1860       │                            │                   │               │ priority should transmit      │
1861       │                            │                   │               │ priority pause.               │
1862       ├────────────────────────────┼───────────────────┼───────────────┼───────────────────────────────┤
1863       │priority-flow-control-flags │ NMSettingDcbFlags │               │ Specifies the                 │
1864       │                            │ (uint32)          │               │ NMSettingDcbFlags for DCB     │
1865       │                            │                   │               │ Priority Flow Control (PFC).  │
1866       │                            │                   │               │ Flags may be any combination  │
1867       │                            │                   │               │ of NM_SETTING_DCB_FLAG_ENABLE │
1868       │                            │                   │               │ (0x1),                        │
1869       │                            │                   │               │ NM_SETTING_DCB_FLAG_ADVERTISE │
1870       │                            │                   │               │ (0x2), and                    │
1871       │                            │                   │               │ NM_SETTING_DCB_FLAG_WILLING   │
1872       │                            │                   │               │ (0x4).                        │
1873       ├────────────────────────────┼───────────────────┼───────────────┼───────────────────────────────┤
1874       │priority-group-bandwidth    │ array of uint32   │               │ An array of 8 uint values,    │
1875       │                            │                   │               │ where the array index         │
1876       │                            │                   │               │ corresponds to the Priority   │
1877       │                            │                   │               │ Group ID (0 - 7) and the      │
1878       │                            │                   │               │ value indicates the           │
1879       │                            │                   │               │ percentage of link bandwidth  │
1880       │                            │                   │               │ allocated to that group.      │
1881       │                            │                   │               │ Allowed values are 0 - 100,   │
1882       │                            │                   │               │ and the sum of all values     │
1883       │                            │                   │               │ must total 100 percents.      │
1884       ├────────────────────────────┼───────────────────┼───────────────┼───────────────────────────────┤
1885       │priority-group-flags        │ NMSettingDcbFlags │               │ Specifies the                 │
1886       │                            │ (uint32)          │               │ NMSettingDcbFlags for DCB     │
1887       │                            │                   │               │ Priority Groups.  Flags may   │
1888       │                            │                   │               │ be any combination of         │
1889       │                            │                   │               │ NM_SETTING_DCB_FLAG_ENABLE    │
1890       │                            │                   │               │ (0x1),                        │
1891       │                            │                   │               │ NM_SETTING_DCB_FLAG_ADVERTISE │
1892       │                            │                   │               │ (0x2), and                    │
1893       │                            │                   │               │ NM_SETTING_DCB_FLAG_WILLING   │
1894       │                            │                   │               │ (0x4).                        │
1895       ├────────────────────────────┼───────────────────┼───────────────┼───────────────────────────────┤
1896       │priority-group-id           │ array of uint32   │               │ An array of 8 uint values,    │
1897       │                            │                   │               │ where the array index         │
1898       │                            │                   │               │ corresponds to the User       │
1899       │                            │                   │               │ Priority (0 - 7) and the      │
1900       │                            │                   │               │ value indicates the Priority  │
1901       │                            │                   │               │ Group ID.  Allowed Priority   │
1902       │                            │                   │               │ Group ID values are 0 - 7 or  │
1903       │                            │                   │               │ 15 for the unrestricted       │
1904       │                            │                   │               │ group.                        │
1905       ├────────────────────────────┼───────────────────┼───────────────┼───────────────────────────────┤
1906       │priority-strict-bandwidth   │ array of uint32   │               │ An array of 8 boolean values, │
1907       │                            │                   │               │ where the array index         │
1908       │                            │                   │               │ corresponds to the User       │
1909       │                            │                   │               │ Priority (0 - 7) and the      │
1910       │                            │                   │               │ value indicates whether or    │
1911       │                            │                   │               │ not the priority may use all  │
1912       │                            │                   │               │ of the bandwidth allocated to │
1913       │                            │                   │               │ its assigned group.           │
1914       ├────────────────────────────┼───────────────────┼───────────────┼───────────────────────────────┤
1915       │priority-traffic-class      │ array of uint32   │               │ An array of 8 uint values,    │
1916       │                            │                   │               │ where the array index         │
1917       │                            │                   │               │ corresponds to the User       │
1918       │                            │                   │               │ Priority (0 - 7) and the      │
1919       │                            │                   │               │ value indicates the traffic   │
1920       │                            │                   │               │ class (0 - 7) to which the    │
1921       │                            │                   │               │ priority is mapped.           │
1922       └────────────────────────────┴───────────────────┴───────────────┴───────────────────────────────┘
1923
1924   dummy setting
1925       Dummy Link Settings.
1926
1927
1928
1929   ethtool setting
1930       Ethtool Ethernet Settings.
1931
1932
1933
1934   generic setting
1935       Generic Link Settings.
1936
1937
1938
1939   gsm setting
1940       GSM-based Mobile Broadband Settings.
1941
1942       ┌────────────────┬──────────────────────┬───────────────┬───────────────────┐
1943Key Name        Value Type           Default Value Value             
1944       │                │                      │               │ Description       
1945       ├────────────────┼──────────────────────┼───────────────┼───────────────────┤
1946       │apn             │ string               │               │ The GPRS Access   │
1947       │                │                      │               │ Point Name        │
1948       │                │                      │               │ specifying the    │
1949       │                │                      │               │ APN used when     │
1950       │                │                      │               │ establishing a    │
1951       │                │                      │               │ data session      │
1952       │                │                      │               │ with the          │
1953       │                │                      │               │ GSM-based         │
1954       │                │                      │               │ network.  The     │
1955       │                │                      │               │ APN often         │
1956       │                │                      │               │ determines how    │
1957       │                │                      │               │ the user will be  │
1958       │                │                      │               │ billed for their  │
1959       │                │                      │               │ network usage     │
1960       │                │                      │               │ and whether the   │
1961       │                │                      │               │ user has access   │
1962       │                │                      │               │ to the Internet   │
1963       │                │                      │               │ or just a         │
1964       │                │                      │               │ provider-specific │
1965       │                │                      │               │ walled-garden,    │
1966       │                │                      │               │ so it is          │
1967       │                │                      │               │ important to use  │
1968       │                │                      │               │ the correct APN   │
1969       │                │                      │               │ for the user's    │
1970       │                │                      │               │ mobile broadband  │
1971       │                │                      │               │ plan. The APN     │
1972       │                │                      │               │ may only be       │
1973       │                │                      │               │ composed of the   │
1974       │                │                      │               │ characters a-z,   │
1975       │                │                      │               │ 0-9, ., and -     │
1976       │                │                      │               │ per GSM 03.60     │
1977       │                │                      │               │ Section 14.9.     │
1978       ├────────────────┼──────────────────────┼───────────────┼───────────────────┤
1979       │auto-config     │ boolean              │ FALSE         │ When TRUE, the    │
1980       │                │                      │               │ settings such as  │
1981       │                │                      │               │ APN, username, or │
1982       │                │                      │               │ password will     │
1983       │                │                      │               │ default to values │
1984       │                │                      │               │ that match the    │
1985       │                │                      │               │ network the modem │
1986       │                │                      │               │ will register to  │
1987       │                │                      │               │ in the Mobile     │
1988       │                │                      │               │ Broadband         │
1989       │                │                      │               │ Provider          │
1990       │                │                      │               │ database.         │
1991       ├────────────────┼──────────────────────┼───────────────┼───────────────────┤
1992       │device-id       │ string               │               │ The device unique │
1993       │                │                      │               │ identifier (as    │
1994       │                │                      │               │ given by the WWAN │
1995       │                │                      │               │ management        │
1996       │                │                      │               │ service) which    │
1997       │                │                      │               │ this connection   │
1998       │                │                      │               │ applies to.  If   │
1999       │                │                      │               │ given, the        │
2000       │                │                      │               │ connection will   │
2001       │                │                      │               │ only apply to the │
2002       │                │                      │               │ specified device. │
2003       ├────────────────┼──────────────────────┼───────────────┼───────────────────┤
2004       │home-only       │ boolean              │ FALSE         │ When TRUE, only   │
2005       │                │                      │               │ connections to    │
2006       │                │                      │               │ the home network  │
2007       │                │                      │               │ will be allowed.  │
2008       │                │                      │               │ Connections to    │
2009       │                │                      │               │ roaming networks  │
2010       │                │                      │               │ will not be made. │
2011       ├────────────────┼──────────────────────┼───────────────┼───────────────────┤
2012       │mtu             │ uint32               │ 0             │ If non-zero, only │
2013       │                │                      │               │ transmit packets  │
2014       │                │                      │               │ of the specified  │
2015       │                │                      │               │ size or smaller,  │
2016       │                │                      │               │ breaking larger   │
2017       │                │                      │               │ packets up into   │
2018       │                │                      │               │ multiple frames.  │
2019       ├────────────────┼──────────────────────┼───────────────┼───────────────────┤
2020       │network-id      │ string               │               │ The Network ID    │
2021       │                │                      │               │ (GSM LAI format,  │
2022       │                │                      │               │ ie MCC-MNC) to    │
2023       │                │                      │               │ force specific    │
2024       │                │                      │               │ network           │
2025       │                │                      │               │ registration.  If │
2026       │                │                      │               │ the Network ID is │
2027       │                │                      │               │ specified,        │
2028       │                │                      │               │ NetworkManager    │
2029       │                │                      │               │ will attempt to   │
2030       │                │                      │               │ force the device  │
2031       │                │                      │               │ to register only  │
2032       │                │                      │               │ on the specified  │
2033       │                │                      │               │ network. This can │
2034       │                │                      │               │ be used to ensure │
2035       │                │                      │               │ that the device   │
2036       │                │                      │               │ does not roam     │
2037       │                │                      │               │ when direct       │
2038       │                │                      │               │ roaming control   │
2039       │                │                      │               │ of the device is  │
2040       │                │                      │               │ not otherwise     │
2041       │                │                      │               │ possible.         │
2042       ├────────────────┼──────────────────────┼───────────────┼───────────────────┤
2043       │number          │ string               │               │ Legacy setting    │
2044       │                │                      │               │ that used to help │
2045       │                │                      │               │ establishing PPP  │
2046       │                │                      │               │ data sessions for │
2047       │                │                      │               │ GSM-based modems. │
2048       │                │                      │               │ Deprecated: 1     │
2049       ├────────────────┼──────────────────────┼───────────────┼───────────────────┤
2050       │password        │ string               │               │ The password used │
2051       │                │                      │               │ to authenticate   │
2052       │                │                      │               │ with the network, │
2053       │                │                      │               │ if required.      │
2054       │                │                      │               │ Many providers do │
2055       │                │                      │               │ not require a     │
2056       │                │                      │               │ password, or      │
2057       │                │                      │               │ accept any        │
2058       │                │                      │               │ password.  But if │
2059       │                │                      │               │ a password is     │
2060       │                │                      │               │ required, it is   │
2061       │                │                      │               │ specified here.   │
2062       ├────────────────┼──────────────────────┼───────────────┼───────────────────┤
2063       │password-flags  │ NMSettingSecretFlags │               │ Flags indicating  │
2064       │                │ (uint32)             │               │ how to handle the │
2065       │                │                      │               │ "password"        │
2066       │                │                      │               │ property.         │
2067       ├────────────────┼──────────────────────┼───────────────┼───────────────────┤
2068       │pin             │ string               │               │ If the SIM is     │
2069       │                │                      │               │ locked with a PIN │
2070       │                │                      │               │ it must be        │
2071       │                │                      │               │ unlocked before   │
2072       │                │                      │               │ any other         │
2073       │                │                      │               │ operations are    │
2074       │                │                      │               │ requested.        │
2075       │                │                      │               │ Specify the PIN   │
2076       │                │                      │               │ here to allow     │
2077       │                │                      │               │ operation of the  │
2078       │                │                      │               │ device.           │
2079       ├────────────────┼──────────────────────┼───────────────┼───────────────────┤
2080       │pin-flags       │ NMSettingSecretFlags │               │ Flags indicating  │
2081       │                │ (uint32)             │               │ how to handle the │
2082       │                │                      │               │ "pin" property.   │
2083       ├────────────────┼──────────────────────┼───────────────┼───────────────────┤
2084       │sim-id          │ string               │               │ The SIM card      │
2085       │                │                      │               │ unique identifier │
2086       │                │                      │               │ (as given by the  │
2087       │                │                      │               │ WWAN management   │
2088       │                │                      │               │ service) which    │
2089       │                │                      │               │ this connection   │
2090       │                │                      │               │ applies to.  If   │
2091       │                │                      │               │ given, the        │
2092       │                │                      │               │ connection will   │
2093       │                │                      │               │ apply to any      │
2094       │                │                      │               │ device also       │
2095       │                │                      │               │ allowed by        │
2096       │                │                      │               │ "device-id" which │
2097       │                │                      │               │ contains a SIM    │
2098       │                │                      │               │ card matching the │
2099       │                │                      │               │ given identifier. │
2100       ├────────────────┼──────────────────────┼───────────────┼───────────────────┤
2101       │sim-operator-id │ string               │               │ A MCC/MNC string  │
2102       │                │                      │               │ like "310260" or  │
2103       │                │                      │               │ "21601"           │
2104       │                │                      │               │ identifying the   │
2105       │                │                      │               │ specific mobile   │
2106       │                │                      │               │ network operator  │
2107       │                │                      │               │ which this        │
2108       │                │                      │               │ connection        │
2109       │                │                      │               │ applies to.  If   │
2110       │                │                      │               │ given, the        │
2111       │                │                      │               │ connection will   │
2112       │                │                      │               │ apply to any      │
2113       │                │                      │               │ device also       │
2114       │                │                      │               │ allowed by        │
2115       │                │                      │               │ "device-id" and   │
2116       │                │                      │               │ "sim-id" which    │
2117       │                │                      │               │ contains a SIM    │
2118       │                │                      │               │ card provisioned  │
2119       │                │                      │               │ by the given      │
2120       │                │                      │               │ operator.         │
2121       ├────────────────┼──────────────────────┼───────────────┼───────────────────┤
2122       │username        │ string               │               │ The username used │
2123       │                │                      │               │ to authenticate   │
2124       │                │                      │               │ with the network, │
2125       │                │                      │               │ if required.      │
2126       │                │                      │               │ Many providers do │
2127       │                │                      │               │ not require a     │
2128       │                │                      │               │ username, or      │
2129       │                │                      │               │ accept any        │
2130       │                │                      │               │ username.  But if │
2131       │                │                      │               │ a username is     │
2132       │                │                      │               │ required, it is   │
2133       │                │                      │               │ specified here.   │
2134       └────────────────┴──────────────────────┴───────────────┴───────────────────┘
2135
2136   infiniband setting
2137       Infiniband Settings.
2138
2139       ┌───────────────┬────────────┬───────────────┬────────────────────┐
2140Key Name       Value Type Default Value Value              
2141       │               │            │               │ Description        
2142       ├───────────────┼────────────┼───────────────┼────────────────────┤
2143       │mac-address    │ byte array │               │ If specified,      │
2144       │               │            │               │ this connection    │
2145       │               │            │               │ will only apply    │
2146       │               │            │               │ to the IPoIB       │
2147       │               │            │               │ device whose       │
2148       │               │            │               │ permanent MAC      │
2149       │               │            │               │ address matches.   │
2150       │               │            │               │ This property      │
2151       │               │            │               │ does not change    │
2152       │               │            │               │ the MAC address    │
2153       │               │            │               │ of the device      │
2154       │               │            │               │ (i.e. MAC          │
2155       │               │            │               │ spoofing).         │
2156       ├───────────────┼────────────┼───────────────┼────────────────────┤
2157       │mtu            │ uint32     │ 0             │ If non-zero,       │
2158       │               │            │               │ only transmit      │
2159       │               │            │               │ packets of the     │
2160       │               │            │               │ specified size     │
2161       │               │            │               │ or smaller,        │
2162       │               │            │               │ breaking larger    │
2163       │               │            │               │ packets up into    │
2164       │               │            │               │ multiple frames.   │
2165       ├───────────────┼────────────┼───────────────┼────────────────────┤
2166       │p-key          │ int32      │ -1            │ The InfiniBand     │
2167       │               │            │               │ P_Key to use for   │
2168       │               │            │               │ this device. A     │
2169       │               │            │               │ value of -1        │
2170       │               │            │               │ means to use the   │
2171       │               │            │               │ default P_Key      │
2172       │               │            │               │ (aka "the P_Key    │
2173       │               │            │               │ at index 0").      │
2174       │               │            │               │ Otherwise, it is   │
2175       │               │            │               │ a 16-bit           │
2176       │               │            │               │ unsigned           │
2177       │               │            │               │ integer, whose     │
2178       │               │            │               │ high bit is set    │
2179       │               │            │               │ if it is a "full   │
2180       │               │            │               │ membership"        │
2181       │               │            │               │ P_Key.             │
2182       ├───────────────┼────────────┼───────────────┼────────────────────┤
2183       │parent         │ string     │               │ The interface      │
2184       │               │            │               │ name of the        │
2185       │               │            │               │ parent device of   │
2186       │               │            │               │ this device.       │
2187       │               │            │               │ Normally NULL,     │
2188       │               │            │               │ but if the         │
2189       │               │            │               │ "p_key" property   │
2190       │               │            │               │ is set, then you   │
2191       │               │            │               │ must specify the   │
2192       │               │            │               │ base device by     │
2193       │               │            │               │ setting either     │
2194       │               │            │               │ this property or   │
2195       │               │            │               │ "mac-address".     │
2196       ├───────────────┼────────────┼───────────────┼────────────────────┤
2197       │transport-mode │ string     │               │ The                │
2198       │               │            │               │ IP-over-InfiniBand │
2199       │               │            │               │ transport mode.    │
2200       │               │            │               │ Either             │
2201       │               │            │               │ "datagram" or      │
2202       │               │            │               │ "connected".       │
2203       └───────────────┴────────────┴───────────────┴────────────────────┘
2204
2205   ipv4 setting
2206       IPv4 Settings.
2207
2208       ┌─────────────────────────────┬──────────────────┬───────────────┬────────────────────────────────────────┐
2209Key Name                     Value Type       Default Value Value                                  
2210       │                             │                  │               │ Description                            
2211       ├─────────────────────────────┼──────────────────┼───────────────┼────────────────────────────────────────┤
2212       │address-data                 │ array of vardict │               │ Array of IPv4                          │
2213       │                             │                  │               │ addresses. Each                        │
2214       │                             │                  │               │ address                                │
2215       │                             │                  │               │ dictionary                             │
2216       │                             │                  │               │ contains at                            │
2217       │                             │                  │               │ least 'address'                        │
2218       │                             │                  │               │ and 'prefix'                           │
2219       │                             │                  │               │ entries,                               │
2220       │                             │                  │               │ containing the                         │
2221       │                             │                  │               │ IP address as a                        │
2222       │                             │                  │               │ string, and the                        │
2223       │                             │                  │               │ prefix length as                       │
2224       │                             │                  │               │ a uint32.                              │
2225       │                             │                  │               │ Additional                             │
2226       │                             │                  │               │ attributes may                         │
2227       │                             │                  │               │ also exist on                          │
2228       │                             │                  │               │ some addresses.                        │
2229       ├─────────────────────────────┼──────────────────┼───────────────┼────────────────────────────────────────┤
2230       │addresses                    │ array of array   │               │ Deprecated in                          │
2231       │                             │ of uint32        │               │ favor of the                           │
2232       │                             │                  │               │ 'address-data'                         │
2233       │                             │                  │               │ and 'gateway'                          │
2234       │                             │                  │               │ properties, but                        │
2235       │                             │                  │               │ this can be used                       │
2236       │                             │                  │               │ for                                    │
2237       │                             │                  │               │ backward-compatibility                 │
2238       │                             │                  │               │ with older                             │
2239       │                             │                  │               │ daemons. Note                          │
2240       │                             │                  │               │ that if you send                       │
2241       │                             │                  │               │ this property                          │
2242       │                             │                  │               │ the daemon will                        │
2243       │                             │                  │               │ ignore                                 │
2244       │                             │                  │               │ 'address-data'                         │
2245       │                             │                  │               │ and 'gateway'.                         │
2246       │                             │                  │               │ Array of IPv4                          │
2247       │                             │                  │               │ address                                │
2248       │                             │                  │               │ structures.                            │
2249       │                             │                  │               │ Each IPv4                              │
2250       │                             │                  │               │ address                                │
2251       │                             │                  │               │ structure is                           │
2252       │                             │                  │               │ composed of 3                          │
2253       │                             │                  │               │ 32-bit values;                         │
2254       │                             │                  │               │ the first being                        │
2255       │                             │                  │               │ the IPv4 address                       │
2256       │                             │                  │               │ (network byte                          │
2257       │                             │                  │               │ order), the                            │
2258       │                             │                  │               │ second the                             │
2259       │                             │                  │               │ prefix (1 - 32),                       │
2260       │                             │                  │               │ and last the                           │
2261       │                             │                  │               │ IPv4 gateway                           │
2262       │                             │                  │               │ (network byte                          │
2263       │                             │                  │               │ order). The                            │
2264       │                             │                  │               │ gateway may be                         │
2265       │                             │                  │               │ left as 0 if no                        │
2266       │                             │                  │               │ gateway exists                         │
2267       │                             │                  │               │ for that subnet.                       │
2268       ├─────────────────────────────┼──────────────────┼───────────────┼────────────────────────────────────────┤
2269       │dad-timeout                  │ int32            │ -1            │ Timeout in                             │
2270       │                             │                  │               │ milliseconds used to                   │
2271       │                             │                  │               │ check for the presence                 │
2272       │                             │                  │               │ of duplicate IP                        │
2273       │                             │                  │               │ addresses on the                       │
2274       │                             │                  │               │ network.  If an                        │
2275       │                             │                  │               │ address conflict is                    │
2276       │                             │                  │               │ detected, the                          │
2277       │                             │                  │               │ activation will fail.                  │
2278       │                             │                  │               │ A zero value means                     │
2279       │                             │                  │               │ that no duplicate                      │
2280       │                             │                  │               │ address detection is                   │
2281       │                             │                  │               │ performed, -1 means                    │
2282       │                             │                  │               │ the default value                      │
2283       │                             │                  │               │ (either configuration                  │
2284       │                             │                  │               │ ipvx.dad-timeout                       │
2285       │                             │                  │               │ override or zero).  A                  │
2286       │                             │                  │               │ value greater than                     │
2287       │                             │                  │               │ zero is a timeout in                   │
2288       │                             │                  │               │ milliseconds.                          │
2289       │                             │                  │               │                                        │
2290       │                             │                  │               │  The property is                       │
2291       │                             │                  │               │ currently implemented                  │
2292       │                             │                  │               │ only for IPv4.                         │
2293       ├─────────────────────────────┼──────────────────┼───────────────┼────────────────────────────────────────┤
2294       │dhcp-client-id               │ string           │               │ A string sent to the                   │
2295       │                             │                  │               │ DHCP server to                         │
2296       │                             │                  │               │ identify the local                     │
2297       │                             │                  │               │ machine which the DHCP                 │
2298       │                             │                  │               │ server may use to                      │
2299       │                             │                  │               │ customize the DHCP                     │
2300       │                             │                  │               │ lease and options.                     │
2301       │                             │                  │               │ When the property is a                 │
2302       │                             │                  │               │ hex string                             │
2303       │                             │                  │               │ ('aa:bb:cc') it is                     │
2304       │                             │                  │               │ interpreted as a                       │
2305       │                             │                  │               │ binary client ID, in                   │
2306       │                             │                  │               │ which case the first                   │
2307       │                             │                  │               │ byte is assumed to be                  │
2308       │                             │                  │               │ the 'type' field as                    │
2309       │                             │                  │               │ per RFC 2132 section                   │
2310       │                             │                  │               │ 9.14 and the remaining                 │
2311       │                             │                  │               │ bytes may be an                        │
2312       │                             │                  │               │ hardware address (e.g.                 │
2313       │                             │                  │               │ '01:xx:xx:xx:xx:xx:xx'                 │
2314       │                             │                  │               │ where 1 is the                         │
2315       │                             │                  │               │ Ethernet ARP type and                  │
2316       │                             │                  │               │ the rest is a MAC                      │
2317       │                             │                  │               │ address). If the                       │
2318       │                             │                  │               │ property is not a hex                  │
2319       │                             │                  │               │ string it is                           │
2320       │                             │                  │               │ considered as a                        │
2321       │                             │                  │               │ non-hardware-address                   │
2322       │                             │                  │               │ client ID and the                      │
2323       │                             │                  │               │ 'type' field is set to                 │
2324       │                             │                  │               │ 0.                                     │
2325       │                             │                  │               │                                        │
2326       │                             │                  │               │  The special values                    │
2327       │                             │                  │               │ "mac" and "perm-mac"                   │
2328       │                             │                  │               │ are supported, which                   │
2329       │                             │                  │               │ use the current or                     │
2330       │                             │                  │               │ permanent MAC address                  │
2331       │                             │                  │               │ of the device to                       │
2332       │                             │                  │               │ generate a client                      │
2333       │                             │                  │               │ identifier with type                   │
2334       │                             │                  │               │ ethernet (01).                         │
2335       │                             │                  │               │ Currently, these                       │
2336       │                             │                  │               │ options only work for                  │
2337       │                             │                  │               │ ethernet type of                       │
2338       │                             │                  │               │ links.                                 │
2339       │                             │                  │               │                                        │
2340       │                             │                  │               │  The special value                     │
2341       │                             │                  │               │ "ipv6-duid" uses the                   │
2342       │                             │                  │               │ DUID from                              │
2343       │                             │                  │               │ "ipv6.dhcp-duid"                       │
2344       │                             │                  │               │ property as an                         │
2345       │                             │                  │               │ RFC4361-compliant                      │
2346       │                             │                  │               │ client identifier. As                  │
2347       │                             │                  │               │ IAID it uses                           │
2348       │                             │                  │               │ "ipv4.dhcp-iaid" and                   │
2349       │                             │                  │               │ falls back to                          │
2350       │                             │                  │               │ "ipv6.dhcp-iaid" if                    │
2351       │                             │                  │               │ unset.                                 │
2352       │                             │                  │               │                                        │
2353       │                             │                  │               │  The special value                     │
2354       │                             │                  │               │ "duid" generates a                     │
2355       │                             │                  │               │ RFC4361-compliant                      │
2356       │                             │                  │               │ client identifier                      │
2357       │                             │                  │               │ based on                               │
2358       │                             │                  │               │ "ipv4.dhcp-iaid" and                   │
2359       │                             │                  │               │ uses a DUID generated                  │
2360       │                             │                  │               │ by hashing                             │
2361       │                             │                  │               │ /etc/machine-id.                       │
2362       │                             │                  │               │                                        │
2363       │                             │                  │               │  The special value                     │
2364       │                             │                  │               │ "stable" is supported                  │
2365       │                             │                  │               │ to generate a type 0                   │
2366       │                             │                  │               │ client identifier                      │
2367       │                             │                  │               │ based on the stable-id                 │
2368       │                             │                  │               │ (see                                   │
2369       │                             │                  │               │ connection.stable-id)                  │
2370       │                             │                  │               │ and a per-host key. If                 │
2371       │                             │                  │               │ you set the stable-id,                 │
2372       │                             │                  │               │ you may want to                        │
2373       │                             │                  │               │ include the                            │
2374       │                             │                  │               │ "${DEVICE}" or                         │
2375       │                             │                  │               │ "${MAC}" specifier to                  │
2376       │                             │                  │               │ get a per-device key.                  │
2377       │                             │                  │               │                                        │
2378       │                             │                  │               │  If unset, a globally                  │
2379       │                             │                  │               │ configured default is                  │
2380       │                             │                  │               │ used. If still unset,                  │
2381       │                             │                  │               │ the default depends on                 │
2382       │                             │                  │               │ the DHCP plugin.                       │
2383       ├─────────────────────────────┼──────────────────┼───────────────┼────────────────────────────────────────┤
2384       │dhcp-fqdn                    │ string           │               │ If the                                 │
2385       │                             │                  │               │ "dhcp-send-hostname"                   │
2386       │                             │                  │               │ property is TRUE, then                 │
2387       │                             │                  │               │ the specified FQDN                     │
2388       │                             │                  │               │ will be sent to the                    │
2389       │                             │                  │               │ DHCP server when                       │
2390       │                             │                  │               │ acquiring a lease.                     │
2391       │                             │                  │               │ This property and                      │
2392       │                             │                  │               │ "dhcp-hostname" are                    │
2393       │                             │                  │               │ mutually exclusive and                 │
2394       │                             │                  │               │ cannot be set at the                   │
2395       │                             │                  │               │ same time.                             │
2396       ├─────────────────────────────┼──────────────────┼───────────────┼────────────────────────────────────────┤
2397       │dhcp-hostname                │ string           │               │ If the                                 │
2398       │                             │                  │               │ "dhcp-send-hostname"                   │
2399       │                             │                  │               │ property is TRUE, then                 │
2400       │                             │                  │               │ the specified name                     │
2401       │                             │                  │               │ will be sent to the                    │
2402       │                             │                  │               │ DHCP server when                       │
2403       │                             │                  │               │ acquiring a lease.                     │
2404       │                             │                  │               │ This property and                      │
2405       │                             │                  │               │ "dhcp-fqdn" are                        │
2406       │                             │                  │               │ mutually exclusive and                 │
2407       │                             │                  │               │ cannot be set at the                   │
2408       │                             │                  │               │ same time.                             │
2409       ├─────────────────────────────┼──────────────────┼───────────────┼────────────────────────────────────────┤
2410       │dhcp-hostname-flags          │ uint32           │ 0             │ Flags for the DHCP                     │
2411       │                             │                  │               │ hostname and FQDN.                     │
2412       │                             │                  │               │                                        │
2413       │                             │                  │               │  Currently, this                       │
2414       │                             │                  │               │ property only includes                 │
2415       │                             │                  │               │ flags to control the                   │
2416       │                             │                  │               │ FQDN flags set in the                  │
2417       │                             │                  │               │ DHCP FQDN option.                      │
2418       │                             │                  │               │ Supported FQDN flags                   │
2419       │                             │                  │               │ are                                    │
2420       │                             │                  │               │ NM_DHCP_HOSTNAME_FLAG_FQDN_SERV_UPDATE │
2421       │                             │                  │               │ (0x1),                                 │
2422       │                             │                  │               │ NM_DHCP_HOSTNAME_FLAG_FQDN_ENCODED     │
2423       │                             │                  │               │ (0x2) and                              │
2424       │                             │                  │               │ NM_DHCP_HOSTNAME_FLAG_FQDN_NO_UPDATE   │
2425       │                             │                  │               │ (0x4).  When no FQDN                   │
2426       │                             │                  │               │ flag is set and                        │
2427       │                             │                  │               │ NM_DHCP_HOSTNAME_FLAG_FQDN_CLEAR_FLAGS │
2428       │                             │                  │               │ (0x8) is set, the DHCP                 │
2429       │                             │                  │               │ FQDN option will                       │
2430       │                             │                  │               │ contain no flag.                       │
2431       │                             │                  │               │ Otherwise, if no FQDN                  │
2432       │                             │                  │               │ flag is set and                        │
2433       │                             │                  │               │ NM_DHCP_HOSTNAME_FLAG_FQDN_CLEAR_FLAGS │
2434       │                             │                  │               │ (0x8) is not set, the                  │
2435       │                             │                  │               │ standard FQDN flags                    │
2436       │                             │                  │               │ are set in the                         │
2437       │                             │                  │               │ request:                               │
2438       │                             │                  │               │ NM_DHCP_HOSTNAME_FLAG_FQDN_SERV_UPDATE │
2439       │                             │                  │               │ (0x1),                                 │
2440       │                             │                  │               │ NM_DHCP_HOSTNAME_FLAG_FQDN_ENCODED     │
2441       │                             │                  │               │ (0x2) for IPv4 and                     │
2442       │                             │                  │               │ NM_DHCP_HOSTNAME_FLAG_FQDN_SERV_UPDATE │
2443       │                             │                  │               │ (0x1) for IPv6.                        │
2444       │                             │                  │               │                                        │
2445       │                             │                  │               │  When this property is                 │
2446       │                             │                  │               │ set to the default                     │
2447       │                             │                  │               │ value                                  │
2448       │                             │                  │               │ NM_DHCP_HOSTNAME_FLAG_NONE             │
2449       │                             │                  │               │ (0x0), a global                        │
2450       │                             │                  │               │ default is looked up                   │
2451       │                             │                  │               │ in NetworkManager                      │
2452       │                             │                  │               │ configuration. If that                 │
2453       │                             │                  │               │ value is unset or also                 │
2454       │                             │                  │               │ NM_DHCP_HOSTNAME_FLAG_NONE             │
2455       │                             │                  │               │ (0x0), then the                        │
2456       │                             │                  │               │ standard FQDN flags                    │
2457       │                             │                  │               │ described above are                    │
2458       │                             │                  │               │ sent in the DHCP                       │
2459       │                             │                  │               │ requests.                              │
2460       ├─────────────────────────────┼──────────────────┼───────────────┼────────────────────────────────────────┤
2461       │dhcp-iaid                    │ string           │               │ A string containing the "Identity      │
2462       │                             │                  │               │ Association Identifier" (IAID) used by │
2463       │                             │                  │               │ the DHCP client. The property is a     │
2464       │                             │                  │               │ 32-bit decimal value or a special      │
2465       │                             │                  │               │ value among "mac", "perm-mac",         │
2466       │                             │                  │               │ "ifname" and "stable". When set to     │
2467       │                             │                  │               │ "mac" (or "perm-mac"), the last 4      │
2468       │                             │                  │               │ bytes of the current (or permanent)    │
2469       │                             │                  │               │ MAC address are used as IAID. When set │
2470       │                             │                  │               │ to "ifname", the IAID is computed by   │
2471       │                             │                  │               │ hashing the interface name. The        │
2472       │                             │                  │               │ special value "stable" can be used to  │
2473       │                             │                  │               │ generate an IAID based on the          │
2474       │                             │                  │               │ stable-id (see connection.stable-id),  │
2475       │                             │                  │               │ a per-host key and the interface name. │
2476       │                             │                  │               │ When the property is unset, the value  │
2477       │                             │                  │               │ from global configuration is used; if  │
2478       │                             │                  │               │ no global default is set then the IAID │
2479       │                             │                  │               │ is assumed to be "ifname". Note that   │
2480       │                             │                  │               │ at the moment this property is ignored │
2481       │                             │                  │               │ for IPv6 by dhclient, which always     │
2482       │                             │                  │               │ derives the IAID from the MAC address. │
2483       ├─────────────────────────────┼──────────────────┼───────────────┼────────────────────────────────────────┤
2484       │dhcp-reject-servers          │ array of string  │               │ Array of servers from which DHCP       │
2485       │                             │                  │               │ offers must be rejected. This property │
2486       │                             │                  │               │ is useful to avoid getting a lease     │
2487       │                             │                  │               │ from misconfigured or rogue servers.   │
2488       │                             │                  │               │                                        │
2489       │                             │                  │               │  For DHCPv4, each element must be an   │
2490       │                             │                  │               │ IPv4 address, optionally followed by a │
2491       │                             │                  │               │ slash and a prefix length (e.g.        │
2492       │                             │                  │               │ "192.168.122.0/24").                   │
2493       │                             │                  │               │                                        │
2494       │                             │                  │               │  This property is currently not        │
2495       │                             │                  │               │ implemented for DHCPv6.                │
2496       ├─────────────────────────────┼──────────────────┼───────────────┼────────────────────────────────────────┤
2497       │dhcp-send-hostname           │ boolean          │ TRUE          │ If TRUE, a hostname is sent to the     │
2498       │                             │                  │               │ DHCP server when acquiring a lease.    │
2499       │                             │                  │               │ Some DHCP servers use this hostname to │
2500       │                             │                  │               │ update DNS databases, essentially      │
2501       │                             │                  │               │ providing a static hostname for the    │
2502       │                             │                  │               │ computer.  If the "dhcp-hostname"      │
2503       │                             │                  │               │ property is NULL and this property is  │
2504       │                             │                  │               │ TRUE, the current persistent hostname  │
2505       │                             │                  │               │ of the computer is sent.               │
2506       ├─────────────────────────────┼──────────────────┼───────────────┼────────────────────────────────────────┤
2507       │dhcp-timeout                 │ int32            │ 0             │ A timeout for a DHCP transaction in    │
2508       │                             │                  │               │ seconds. If zero (the default), a      │
2509       │                             │                  │               │ globally configured default is used.   │
2510       │                             │                  │               │ If still unspecified, a device         │
2511       │                             │                  │               │ specific timeout is used (usually 45   │
2512       │                             │                  │               │ seconds).                              │
2513       │                             │                  │               │                                        │
2514       │                             │                  │               │  Set to 2147483647 (MAXINT32) for      │
2515       │                             │                  │               │ infinity.                              │
2516       ├─────────────────────────────┼──────────────────┼───────────────┼────────────────────────────────────────┤
2517       │dhcp-vendor-class-identifier │ string           │               │ The Vendor Class Identifier DHCP       │
2518       │                             │                  │               │ option (60). Special characters in the │
2519       │                             │                  │               │ data string may be escaped using       │
2520       │                             │                  │               │ C-style escapes, nevertheless this     │
2521       │                             │                  │               │ property cannot contain nul bytes. If  │
2522       │                             │                  │               │ the per-profile value is unspecified   │
2523       │                             │                  │               │ (the default), a global connection     │
2524       │                             │                  │               │ default gets consulted. If still       │
2525       │                             │                  │               │ unspecified, the DHCP option is not    │
2526       │                             │                  │               │ sent to the server.                    │
2527       ├─────────────────────────────┼──────────────────┼───────────────┼────────────────────────────────────────┤
2528       │dns                          │ array of uint32  │               │ Array of IP addresses of DNS servers   │
2529       │                             │                  │               │ (as network-byte-order integers)       │
2530       ├─────────────────────────────┼──────────────────┼───────────────┼────────────────────────────────────────┤
2531       │dns-options                  │ array of string  │               │ Array of DNS options as described in   │
2532       │                             │                  │               │ man 5 resolv.conf.                     │
2533       │                             │                  │               │                                        │
2534       │                             │                  │               │  NULL means that the options are unset │
2535       │                             │                  │               │ and left at the default. In this case  │
2536       │                             │                  │               │ NetworkManager will use default        │
2537       │                             │                  │               │ options. This is distinct from an      │
2538       │                             │                  │               │ empty list of properties.              │
2539       │                             │                  │               │                                        │
2540       │                             │                  │               │  The currently supported options are   │
2541       │                             │                  │               │ "attempts", "debug", "edns0", "inet6", │
2542       │                             │                  │               │ "ip6-bytestring", "ip6-dotint",        │
2543       │                             │                  │               │ "ndots", "no-check-names",             │
2544       │                             │                  │               │ "no-ip6-dotint", "no-reload",          │
2545       │                             │                  │               │ "no-tld-query", "rotate",              │
2546       │                             │                  │               │ "single-request",                      │
2547       │                             │                  │               │ "single-request-reopen", "timeout",    │
2548       │                             │                  │               │ "trust-ad", "use-vc".                  │
2549       │                             │                  │               │                                        │
2550       │                             │                  │               │  The "trust-ad" setting is only        │
2551       │                             │                  │               │ honored if the profile contributes     │
2552       │                             │                  │               │ name servers to resolv.conf, and if    │
2553       │                             │                  │               │ all contributing profiles have         │
2554       │                             │                  │               │ "trust-ad" enabled.                    │
2555       │                             │                  │               │                                        │
2556       │                             │                  │               │  When using a caching DNS plugin       │
2557       │                             │                  │               │ (dnsmasq or systemd-resolved in        │
2558       │                             │                  │               │ NetworkManager.conf) then "edns0" and  │
2559       │                             │                  │               │ "trust-ad" are automatically added.    │
2560       ├─────────────────────────────┼──────────────────┼───────────────┼────────────────────────────────────────┤
2561       │dns-priority                 │ int32            │ 0             │ DNS servers priority.                  │
2562       │                             │                  │               │                                        │
2563       │                             │                  │               │  The relative priority for DNS servers │
2564       │                             │                  │               │ specified by this setting.  A lower    │
2565       │                             │                  │               │ numerical value is better (higher      │
2566       │                             │                  │               │ priority).                             │
2567       │                             │                  │               │                                        │
2568       │                             │                  │               │  Negative values have the special      │
2569       │                             │                  │               │ effect of excluding other              │
2570       │                             │                  │               │ configurations with a greater          │
2571       │                             │                  │               │ numerical priority value; so in        │
2572       │                             │                  │               │ presence of at least one negative      │
2573       │                             │                  │               │ priority, only DNS servers from        │
2574       │                             │                  │               │ connections with the lowest priority   │
2575       │                             │                  │               │ value will be used. To avoid all DNS   │
2576       │                             │                  │               │ leaks, set the priority of the profile │
2577       │                             │                  │               │ that should be used to the most        │
2578       │                             │                  │               │ negative value of all active           │
2579       │                             │                  │               │ connections profiles.                  │
2580       │                             │                  │               │                                        │
2581       │                             │                  │               │  Zero selects a globally configured    │
2582       │                             │                  │               │ default value. If the latter is        │
2583       │                             │                  │               │ missing or zero too, it defaults to 50 │
2584       │                             │                  │               │ for VPNs (including WireGuard) and 100 │
2585       │                             │                  │               │ for other connections.                 │
2586       │                             │                  │               │                                        │
2587       │                             │                  │               │  Note that the priority is to order    │
2588       │                             │                  │               │ DNS settings for multiple active       │
2589       │                             │                  │               │ connections.  It does not disambiguate │
2590       │                             │                  │               │ multiple DNS servers within the same   │
2591       │                             │                  │               │ connection profile.                    │
2592       │                             │                  │               │                                        │
2593       │                             │                  │               │  When multiple devices have            │
2594       │                             │                  │               │ configurations with the same priority, │
2595       │                             │                  │               │ VPNs will be considered first, then    │
2596       │                             │                  │               │ devices with the best (lowest metric)  │
2597       │                             │                  │               │ default route and then all other       │
2598       │                             │                  │               │ devices.                               │
2599       │                             │                  │               │                                        │
2600       │                             │                  │               │  When using dns=default, servers with  │
2601       │                             │                  │               │ higher priority will be on top of      │
2602       │                             │                  │               │ resolv.conf. To prioritize a given     │
2603       │                             │                  │               │ server over another one within the     │
2604       │                             │                  │               │ same connection, just specify them in  │
2605       │                             │                  │               │ the desired order. Note that commonly  │
2606       │                             │                  │               │ the resolver tries name servers in     │
2607       │                             │                  │               │ /etc/resolv.conf in the order listed,  │
2608       │                             │                  │               │ proceeding with the next server in the │
2609       │                             │                  │               │ list on failure. See for example the   │
2610       │                             │                  │               │ "rotate" option of the dns-options     │
2611       │                             │                  │               │ setting. If there are any negative DNS │
2612       │                             │                  │               │ priorities, then only name servers     │
2613       │                             │                  │               │ from the devices with that lowest      │
2614       │                             │                  │               │ priority will be considered.           │
2615       │                             │                  │               │                                        │
2616       │                             │                  │               │  When using a DNS resolver that        │
2617       │                             │                  │               │ supports Conditional Forwarding or     │
2618       │                             │                  │               │ Split DNS (with dns=dnsmasq or         │
2619       │                             │                  │               │ dns=systemd-resolved settings), each   │
2620       │                             │                  │               │ connection is used to query domains in │
2621       │                             │                  │               │ its search list. The search domains    │
2622       │                             │                  │               │ determine which name servers to ask,   │
2623       │                             │                  │               │ and the DNS priority is used to        │
2624       │                             │                  │               │ prioritize name servers based on the   │
2625       │                             │                  │               │ domain.  Queries for domains not       │
2626       │                             │                  │               │ present in any search list are routed  │
2627       │                             │                  │               │ through connections having the '~.'    │
2628       │                             │                  │               │ special wildcard domain, which is      │
2629       │                             │                  │               │ added automatically to connections     │
2630       │                             │                  │               │ with the default route (or can be      │
2631       │                             │                  │               │ added manually).  When multiple        │
2632       │                             │                  │               │ connections specify the same domain,   │
2633       │                             │                  │               │ the one with the best priority (lowest │
2634       │                             │                  │               │ numerical value) wins.  If a sub       │
2635       │                             │                  │               │ domain is configured on another        │
2636       │                             │                  │               │ interface it will be accepted          │
2637       │                             │                  │               │ regardless the priority, unless parent │
2638       │                             │                  │               │ domain on the other interface has a    │
2639       │                             │                  │               │ negative priority, which causes the    │
2640       │                             │                  │               │ sub domain to be shadowed. With Split  │
2641       │                             │                  │               │ DNS one can avoid undesired DNS leaks  │
2642       │                             │                  │               │ by properly configuring DNS priorities │
2643       │                             │                  │               │ and the search domains, so that only   │
2644       │                             │                  │               │ name servers of the desired interface  │
2645       │                             │                  │               │ are configured.                        │
2646       ├─────────────────────────────┼──────────────────┼───────────────┼────────────────────────────────────────┤
2647       │dns-search                   │ array of string  │               │ List of DNS search domains. Domains    │
2648       │                             │                  │               │ starting with a tilde ('~') are        │
2649       │                             │                  │               │ considered 'routing' domains and are   │
2650       │                             │                  │               │ used only to decide the interface over │
2651       │                             │                  │               │ which a query must be forwarded; they  │
2652       │                             │                  │               │ are not used to complete unqualified   │
2653       │                             │                  │               │ host names.                            │
2654       │                             │                  │               │                                        │
2655       │                             │                  │               │  When using a DNS plugin that supports │
2656       │                             │                  │               │ Conditional Forwarding or Split DNS,   │
2657       │                             │                  │               │ then the search domains specify which  │
2658       │                             │                  │               │ name servers to query. This makes the  │
2659       │                             │                  │               │ behavior different from running with   │
2660       │                             │                  │               │ plain /etc/resolv.conf. For more       │
2661       │                             │                  │               │ information see also the dns-priority  │
2662       │                             │                  │               │ setting.                               │
2663       │                             │                  │               │                                        │
2664       │                             │                  │               │  When set on a profile that also       │
2665       │                             │                  │               │ enabled DHCP, the DNS search list      │
2666       │                             │                  │               │ received automatically (option 119 for │
2667       │                             │                  │               │ DHCPv4 and option 24 for DHCPv6) gets  │
2668       │                             │                  │               │ merged with the manual list. This can  │
2669       │                             │                  │               │ be prevented by setting                │
2670       │                             │                  │               │ "ignore-auto-dns". Note that if no DNS │
2671       │                             │                  │               │ searches are configured, the fallback  │
2672       │                             │                  │               │ will be derived from the domain from   │
2673       │                             │                  │               │ DHCP (option 15).                      │
2674       ├─────────────────────────────┼──────────────────┼───────────────┼────────────────────────────────────────┤
2675       │gateway                      │ string           │               │ The gateway associated with this       │
2676       │                             │                  │               │ configuration. This is only meaningful │
2677       │                             │                  │               │ if "addresses" is also set.            │
2678       │                             │                  │               │                                        │
2679       │                             │                  │               │  Setting the gateway causes            │
2680       │                             │                  │               │ NetworkManager to configure a standard │
2681       │                             │                  │               │ default route with the gateway as next │
2682       │                             │                  │               │ hop. This is ignored if                │
2683       │                             │                  │               │ "never-default" is set. An alternative │
2684       │                             │                  │               │ is to configure the default route      │
2685       │                             │                  │               │ explicitly with a manual route and /0  │
2686       │                             │                  │               │ as prefix length.                      │
2687       │                             │                  │               │                                        │
2688       │                             │                  │               │  Note that the gateway usually         │
2689       │                             │                  │               │ conflicts with routing that            │
2690       │                             │                  │               │ NetworkManager configures for          │
2691       │                             │                  │               │ WireGuard interfaces, so usually it    │
2692       │                             │                  │               │ should not be set in that case. See    │
2693       │                             │                  │               │ "ip4-auto-default-route".              │
2694       ├─────────────────────────────┼──────────────────┼───────────────┼────────────────────────────────────────┤
2695       │ignore-auto-dns              │ boolean          │ FALSE         │ When "method" is set to "auto" and     │
2696       │                             │                  │               │ this property to TRUE, automatically   │
2697       │                             │                  │               │ configured name servers and search     │
2698       │                             │                  │               │ domains are ignored and only name      │
2699       │                             │                  │               │ servers and search domains specified   │
2700       │                             │                  │               │ in the "dns" and "dns-search"          │
2701       │                             │                  │               │ properties, if any, are used.          │
2702       ├─────────────────────────────┼──────────────────┼───────────────┼────────────────────────────────────────┤
2703       │ignore-auto-routes           │ boolean          │ FALSE         │ When "method" is set to "auto" and     │
2704       │                             │                  │               │ this property to TRUE, automatically   │
2705       │                             │                  │               │ configured routes are ignored and only │
2706       │                             │                  │               │ routes specified in the "routes"       │
2707       │                             │                  │               │ property, if any, are used.            │
2708       ├─────────────────────────────┼──────────────────┼───────────────┼────────────────────────────────────────┤
2709       │link-local                   │ int32            │ 0             │ Enable and disable the IPv4 link-local │
2710       │                             │                  │               │ configuration independently of the     │
2711       │                             │                  │               │ ipv4.method configuration. This allows │
2712       │                             │                  │               │ a link-local address (169.254.x.y/16)  │
2713       │                             │                  │               │ to be obtained in addition to other    │
2714       │                             │                  │               │ addresses, such as those manually      │
2715       │                             │                  │               │ configured or obtained from a DHCP     │
2716       │                             │                  │               │ server.                                │
2717       │                             │                  │               │                                        │
2718       │                             │                  │               │  When set to "auto", the value is      │
2719       │                             │                  │               │ dependent on "ipv4.method". When set   │
2720       │                             │                  │               │ to "default", it honors the global     │
2721       │                             │                  │               │ connection default, before falling     │
2722       │                             │                  │               │ back to "auto". Note that if           │
2723       │                             │                  │               │ "ipv4.method" is "disabled", then link │
2724       │                             │                  │               │ local addressing is always disabled    │
2725       │                             │                  │               │ too. The default is "default".         │
2726       ├─────────────────────────────┼──────────────────┼───────────────┼────────────────────────────────────────┤
2727       │may-fail                     │ boolean          │ TRUE          │ If TRUE, allow overall network         │
2728       │                             │                  │               │ configuration to proceed even if the   │
2729       │                             │                  │               │ configuration specified by this        │
2730       │                             │                  │               │ property times out.  Note that at      │
2731       │                             │                  │               │ least one IP configuration must        │
2732       │                             │                  │               │ succeed or overall network             │
2733       │                             │                  │               │ configuration will still fail.  For    │
2734       │                             │                  │               │ example, in IPv6-only networks,        │
2735       │                             │                  │               │ setting this property to TRUE on the   │
2736       │                             │                  │               │ NMSettingIP4Config allows the overall  │
2737       │                             │                  │               │ network configuration to succeed if    │
2738       │                             │                  │               │ IPv4 configuration fails but IPv6      │
2739       │                             │                  │               │ configuration completes successfully.  │
2740       ├─────────────────────────────┼──────────────────┼───────────────┼────────────────────────────────────────┤
2741       │method                       │ string           │               │ IP configuration method.               │
2742       │                             │                  │               │                                        │
2743       │                             │                  │               │  NMSettingIP4Config and                │
2744       │                             │                  │               │ NMSettingIP6Config both support        │
2745       │                             │                  │               │ "disabled", "auto", "manual", and      │
2746       │                             │                  │               │ "link-local". See the                  │
2747       │                             │                  │               │ subclass-specific documentation for    │
2748       │                             │                  │               │ other values.                          │
2749       │                             │                  │               │                                        │
2750       │                             │                  │               │  In general, for the "auto" method,    │
2751       │                             │                  │               │ properties such as "dns" and "routes"  │
2752       │                             │                  │               │ specify information that is added on   │
2753       │                             │                  │               │ to the information returned from       │
2754       │                             │                  │               │ automatic configuration.  The          │
2755       │                             │                  │               │ "ignore-auto-routes" and               │
2756       │                             │                  │               │ "ignore-auto-dns" properties modify    │
2757       │                             │                  │               │ this behavior.                         │
2758       │                             │                  │               │                                        │
2759       │                             │                  │               │  For methods that imply no upstream    │
2760       │                             │                  │               │ network, such as "shared" or           │
2761       │                             │                  │               │ "link-local", these properties must be │
2762       │                             │                  │               │ empty.                                 │
2763       │                             │                  │               │                                        │
2764       │                             │                  │               │  For IPv4 method "shared", the IP      │
2765       │                             │                  │               │ subnet can be configured by adding one │
2766       │                             │                  │               │ manual IPv4 address or otherwise       │
2767       │                             │                  │               │ 10.42.x.0/24 is chosen. Note that the  │
2768       │                             │                  │               │ shared method must be configured on    │
2769       │                             │                  │               │ the interface which shares the         │
2770       │                             │                  │               │ internet to a subnet, not on the       │
2771       │                             │                  │               │ uplink which is shared.                │
2772       ├─────────────────────────────┼──────────────────┼───────────────┼────────────────────────────────────────┤
2773       │never-default                │ boolean          │ FALSE         │ If TRUE, this connection will never be │
2774       │                             │                  │               │ the default connection for this IP     │
2775       │                             │                  │               │ type, meaning it will never be         │
2776       │                             │                  │               │ assigned the default route by          │
2777       │                             │                  │               │ NetworkManager.                        │
2778       ├─────────────────────────────┼──────────────────┼───────────────┼────────────────────────────────────────┤
2779       │required-timeout             │ int32            │ -1            │ The minimum time interval in           │
2780       │                             │                  │               │ milliseconds for which dynamic IP      │
2781       │                             │                  │               │ configuration should be tried before   │
2782       │                             │                  │               │ the connection succeeds.               │
2783       │                             │                  │               │                                        │
2784       │                             │                  │               │  This property is useful for example   │
2785       │                             │                  │               │ if both IPv4 and IPv6 are enabled and  │
2786       │                             │                  │               │ are allowed to fail. Normally the      │
2787       │                             │                  │               │ connection succeeds as soon as one of  │
2788       │                             │                  │               │ the two address families completes; by │
2789       │                             │                  │               │ setting a required timeout for e.g.    │
2790       │                             │                  │               │ IPv4, one can ensure that even if IP6  │
2791       │                             │                  │               │ succeeds earlier than IPv4,            │
2792       │                             │                  │               │ NetworkManager waits some time for     │
2793       │                             │                  │               │ IPv4 before the connection becomes     │
2794       │                             │                  │               │ active.                                │
2795       │                             │                  │               │                                        │
2796       │                             │                  │               │  Note that if "may-fail" is FALSE for  │
2797       │                             │                  │               │ the same address family, this property │
2798       │                             │                  │               │ has no effect as NetworkManager needs  │
2799       │                             │                  │               │ to wait for the full DHCP timeout.     │
2800       │                             │                  │               │                                        │
2801       │                             │                  │               │  A zero value means that no required   │
2802       │                             │                  │               │ timeout is present, -1 means the       │
2803       │                             │                  │               │ default value (either configuration    │
2804       │                             │                  │               │ ipvx.required-timeout override or      │
2805       │                             │                  │               │ zero).                                 │
2806       ├─────────────────────────────┼──────────────────┼───────────────┼────────────────────────────────────────┤
2807       │route-data                   │ array of vardict │               │ Array of IPv4 routes. Each route       │
2808       │                             │                  │               │ dictionary contains at least 'dest'    │
2809       │                             │                  │               │ and 'prefix' entries, containing the   │
2810       │                             │                  │               │ destination IP address as a string,    │
2811       │                             │                  │               │ and the prefix length as a uint32.     │
2812       │                             │                  │               │ Most routes will also have a           │
2813       │                             │                  │               │ 'next-hop' entry, containing the next  │
2814       │                             │                  │               │ hop IP address as a string. If the     │
2815       │                             │                  │               │ route has a 'metric' entry (containing │
2816       │                             │                  │               │ a uint32), that will be used as the    │
2817       │                             │                  │               │ metric for the route (otherwise NM     │
2818       │                             │                  │               │ will pick a default value appropriate  │
2819       │                             │                  │               │ to the device). Additional attributes  │
2820       │                             │                  │               │ may also exist on some routes.         │
2821       ├─────────────────────────────┼──────────────────┼───────────────┼────────────────────────────────────────┤
2822       │route-metric                 │ int64            │ -1            │ The default metric for routes that     │
2823       │                             │                  │               │ don't explicitly specify a metric. The │
2824       │                             │                  │               │ default value -1 means that the metric │
2825       │                             │                  │               │ is chosen automatically based on the   │
2826       │                             │                  │               │ device type. The metric applies to     │
2827       │                             │                  │               │ dynamic routes, manual (static) routes │
2828       │                             │                  │               │ that don't have an explicit metric     │
2829       │                             │                  │               │ setting, address prefix routes, and    │
2830       │                             │                  │               │ the default route. Note that for IPv6, │
2831       │                             │                  │               │ the kernel accepts zero (0) but        │
2832       │                             │                  │               │ coerces it to 1024 (user default).     │
2833       │                             │                  │               │ Hence, setting this property to zero   │
2834       │                             │                  │               │ effectively mean setting it to 1024.   │
2835       │                             │                  │               │ For IPv4, zero is a regular value for  │
2836       │                             │                  │               │ the metric.                            │
2837       ├─────────────────────────────┼──────────────────┼───────────────┼────────────────────────────────────────┤
2838       │route-table                  │ uint32           │ 0             │ Enable policy routing (source routing) │
2839       │                             │                  │               │ and set the routing table used when    │
2840       │                             │                  │               │ adding routes.                         │
2841       │                             │                  │               │                                        │
2842       │                             │                  │               │  This affects all routes, including    │
2843       │                             │                  │               │ device-routes, IPv4LL, DHCP, SLAAC,    │
2844       │                             │                  │               │ default-routes and static routes. But  │
2845       │                             │                  │               │ note that static routes can            │
2846       │                             │                  │               │ individually overwrite the setting by  │
2847       │                             │                  │               │ explicitly specifying a non-zero       │
2848       │                             │                  │               │ routing table.                         │
2849       │                             │                  │               │                                        │
2850       │                             │                  │               │  If the table setting is left at zero, │
2851       │                             │                  │               │ it is eligible to be overwritten via   │
2852       │                             │                  │               │ global configuration. If the property  │
2853       │                             │                  │               │ is zero even after applying the global │
2854       │                             │                  │               │ configuration value, policy routing is │
2855       │                             │                  │               │ disabled for the address family of     │
2856       │                             │                  │               │ this connection.                       │
2857       │                             │                  │               │                                        │
2858       │                             │                  │               │  Policy routing disabled means that    │
2859       │                             │                  │               │ NetworkManager will add all routes to  │
2860       │                             │                  │               │ the main table (except static routes   │
2861       │                             │                  │               │ that explicitly configure a different  │
2862       │                             │                  │               │ table). Additionally, NetworkManager   │
2863       │                             │                  │               │ will not delete any extraneous routes  │
2864       │                             │                  │               │ from tables except the main table.     │
2865       │                             │                  │               │ This is to preserve backward           │
2866       │                             │                  │               │ compatibility for users who manage     │
2867       │                             │                  │               │ routing tables outside of              │
2868       │                             │                  │               │ NetworkManager.                        │
2869       ├─────────────────────────────┼──────────────────┼───────────────┼────────────────────────────────────────┤
2870       │routes                       │ array of array   │               │ Deprecated in favor of the             │
2871       │                             │ of uint32        │               │ 'route-data' property, but this can be │
2872       │                             │                  │               │ used for backward-compatibility with   │
2873       │                             │                  │               │ older daemons. Note that if you send   │
2874       │                             │                  │               │ this property the daemon will ignore   │
2875       │                             │                  │               │ 'route-data'.  Array of IPv4 route     │
2876       │                             │                  │               │ structures.  Each IPv4 route structure │
2877       │                             │                  │               │ is composed of 4 32-bit values; the    │
2878       │                             │                  │               │ first being the destination IPv4       │
2879       │                             │                  │               │ network or address (network byte       │
2880       │                             │                  │               │ order), the second the destination     │
2881       │                             │                  │               │ network or address prefix (1 - 32),    │
2882       │                             │                  │               │ the third being the next-hop (network  │
2883       │                             │                  │               │ byte order) if any, and the fourth     │
2884       │                             │                  │               │ being the route metric. If the metric  │
2885       │                             │                  │               │ is 0, NM will choose an appropriate    │
2886       │                             │                  │               │ default metric for the device. (There  │
2887       │                             │                  │               │ is no way to explicitly specify an     │
2888       │                             │                  │               │ actual metric of 0 with this           │
2889       │                             │                  │               │ property.)                             │
2890       └─────────────────────────────┴──────────────────┴───────────────┴────────────────────────────────────────┘
2891
2892   ipv6 setting
2893       IPv6 Settings.
2894
2895       ┌────────────────────┬───────────────────────────┬───────────────┬──────────────────────────────────────────────────────┐
2896Key Name            Value Type                Default Value Value                                                
2897       │                    │                           │               │ Description                                          
2898       ├────────────────────┼───────────────────────────┼───────────────┼──────────────────────────────────────────────────────┤
2899       │addr-gen-mode       │ int32                     │ 3             │ Configure method                                     │
2900       │                    │                           │               │ for creating the                                     │
2901       │                    │                           │               │ address for use                                      │
2902       │                    │                           │               │ with RFC4862                                         │
2903       │                    │                           │               │ IPv6 Stateless                                       │
2904       │                    │                           │               │ Address                                              │
2905       │                    │                           │               │ Autoconfiguration.                                   │
2906       │                    │                           │               │ The permitted                                        │
2907       │                    │                           │               │ values are:                                          │
2908       │                    │                           │               │ NM_SETTING_IP6_CONFIG_ADDR_GEN_MODE_EUI64            │
2909       │                    │                           │               │ (0),                                                 │
2910       │                    │                           │               │ NM_SETTING_IP6_CONFIG_ADDR_GEN_MODE_STABLE_PRIVACY   │
2911       │                    │                           │               │ (1).                                                 │
2912       │                    │                           │               │ NM_SETTING_IP6_CONFIG_ADDR_GEN_MODE_DEFAULT_OR_EUI64 │
2913       │                    │                           │               │ (2) or                                               │
2914       │                    │                           │               │ NM_SETTING_IP6_CONFIG_ADDR_GEN_MODE_DEFAULT          │
2915       │                    │                           │               │ (3).                                                 │
2916       │                    │                           │               │                                                      │
2917       │                    │                           │               │  If the property                                     │
2918       │                    │                           │               │ is set to EUI64,                                     │
2919       │                    │                           │               │ the addresses                                        │
2920       │                    │                           │               │ will be                                              │
2921       │                    │                           │               │ generated using                                      │
2922       │                    │                           │               │ the interface                                        │
2923       │                    │                           │               │ tokens derived                                       │
2924       │                    │                           │               │ from hardware                                        │
2925       │                    │                           │               │ address. This                                        │
2926       │                    │                           │               │ makes the host                                       │
2927       │                    │                           │               │ part of the                                          │
2928       │                    │                           │               │ address to stay                                      │
2929       │                    │                           │               │ constant, making                                     │
2930       │                    │                           │               │ it possible to                                       │
2931       │                    │                           │               │ track host's                                         │
2932       │                    │                           │               │ presence when it                                     │
2933       │                    │                           │               │ changes                                              │
2934       │                    │                           │               │ networks. The                                        │
2935       │                    │                           │               │ address changes                                      │
2936       │                    │                           │               │ when the                                             │
2937       │                    │                           │               │ interface                                            │
2938       │                    │                           │               │ hardware is                                          │
2939       │                    │                           │               │ replaced.                                            │
2940       │                    │                           │               │                                                      │
2941       │                    │                           │               │  The value of                                        │
2942       │                    │                           │               │ stable-privacy                                       │
2943       │                    │                           │               │ enables use of                                       │
2944       │                    │                           │               │ cryptographically                                    │
2945       │                    │                           │               │ secure hash of a                                     │
2946       │                    │                           │               │ secret                                               │
2947       │                    │                           │               │ host-specific                                        │
2948       │                    │                           │               │ key along with                                       │
2949       │                    │                           │               │ the connection's                                     │
2950       │                    │                           │               │ stable-id and                                        │
2951       │                    │                           │               │ the network                                          │
2952       │                    │                           │               │ address as                                           │
2953       │                    │                           │               │ specified by                                         │
2954       │                    │                           │               │ RFC7217. This                                        │
2955       │                    │                           │               │ makes it                                             │
2956       │                    │                           │               │ impossible to                                        │
2957       │                    │                           │               │ use the address                                      │
2958       │                    │                           │               │ track host's                                         │
2959       │                    │                           │               │ presence, and                                        │
2960       │                    │                           │               │ makes the                                            │
2961       │                    │                           │               │ address stable                                       │
2962       │                    │                           │               │ when the network                                     │
2963       │                    │                           │               │ interface                                            │
2964       │                    │                           │               │ hardware is                                          │
2965       │                    │                           │               │ replaced.                                            │
2966       │                    │                           │               │                                                      │
2967       │                    │                           │               │  The special                                         │
2968       │                    │                           │               │ values "default"                                     │
2969       │                    │                           │               │ and                                                  │
2970       │                    │                           │               │ "default-or-eui64"                                   │
2971       │                    │                           │               │ will fallback to                                     │
2972       │                    │                           │               │ the global                                           │
2973       │                    │                           │               │ connection                                           │
2974       │                    │                           │               │ default in as                                        │
2975       │                    │                           │               │ documented in                                        │
2976       │                    │                           │               │ NetworkManager.conf(5)
2977       │                    │                           │               │ manual. If the                                       │
2978       │                    │                           │               │ global default                                       │
2979       │                    │                           │               │ is not                                               │
2980       │                    │                           │               │ specified, the                                       │
2981       │                    │                           │               │ fallback value                                       │
2982       │                    │                           │               │ is                                                   │
2983       │                    │                           │               │ "stable-privacy"                                     │
2984       │                    │                           │               │ or "eui64",                                          │
2985       │                    │                           │               │ respectively.                                        │
2986       │                    │                           │               │                                                      │
2987       │                    │                           │               │  For libnm, the                                      │
2988       │                    │                           │               │ property                                             │
2989       │                    │                           │               │ defaults to                                          │
2990       │                    │                           │               │ "default" since                                      │
2991       │                    │                           │               │ 1.40. Previously                                     │
2992       │                    │                           │               │ it defaulted to                                      │
2993       │                    │                           │               │ "stable-privacy".                                    │
2994       │                    │                           │               │ On D-Bus, the                                        │
2995       │                    │                           │               │ absence of an                                        │
2996       │                    │                           │               │ addr-gen-mode                                        │
2997       │                    │                           │               │ setting equals                                       │
2998       │                    │                           │               │ "default". For                                       │
2999       │                    │                           │               │ keyfile plugin,                                      │
3000       │                    │                           │               │ the absence of                                       │
3001       │                    │                           │               │ the setting on                                       │
3002       │                    │                           │               │ disk means                                           │
3003       │                    │                           │               │ "default-or-eui64"                                   │
3004       │                    │                           │               │ so that the                                          │
3005       │                    │                           │               │ property doesn't                                     │
3006       │                    │                           │               │ change on                                            │
3007       │                    │                           │               │ upgrade from                                         │
3008       │                    │                           │               │ older versions.                                      │
3009       │                    │                           │               │                                                      │
3010       │                    │                           │               │  Note that this                                      │
3011       │                    │                           │               │ setting is                                           │
3012       │                    │                           │               │ distinct from                                        │
3013       │                    │                           │               │ the Privacy                                          │
3014       │                    │                           │               │ Extensions as                                        │
3015       │                    │                           │               │ configured by                                        │
3016       │                    │                           │               │ "ip6-privacy"                                        │
3017       │                    │                           │               │ property and it                                      │
3018       │                    │                           │               │ does not affect                                      │
3019       │                    │                           │               │ the temporary                                        │
3020       │                    │                           │               │ addresses                                            │
3021       │                    │                           │               │ configured with                                      │
3022       │                    │                           │               │ this option.                                         │
3023       ├────────────────────┼───────────────────────────┼───────────────┼──────────────────────────────────────────────────────┤
3024       │address-data        │ array of vardict          │               │ Array of IPv6 addresses. Each address dictionary     │
3025       │                    │                           │               │ contains at least 'address' and 'prefix' entries,    │
3026       │                    │                           │               │ containing the IP address as a string, and the       │
3027       │                    │                           │               │ prefix length as a uint32. Additional attributes may │
3028       │                    │                           │               │ also exist on some addresses.                        │
3029       ├────────────────────┼───────────────────────────┼───────────────┼──────────────────────────────────────────────────────┤
3030       │addresses           │ array of legacy           │               │ Deprecated in favor of the 'address-data' and        │
3031       │                    │ IPv6 address              │               │ 'gateway' properties, but this can be used for       │
3032       │                    │ struct                    │               │ backward-compatibility with older daemons. Note that │
3033       │                    │ (a(ayuay))                │               │ if you send this property the daemon will ignore     │
3034       │                    │                           │               │ 'address-data' and 'gateway'.  Array of IPv6 address │
3035       │                    │                           │               │ structures.  Each IPv6 address structure is composed │
3036       │                    │                           │               │ of an IPv6 address, a prefix length (0 - 128), and   │
3037       │                    │                           │               │ an IPv6 gateway address. The gateway may be zeroed   │
3038       │                    │                           │               │ out if no gateway exists for that subnet.            │
3039       ├────────────────────┼───────────────────────────┼───────────────┼──────────────────────────────────────────────────────┤
3040       │dad-timeout         │ int32                     │ -1            │ Timeout in milliseconds used to check for the        │
3041       │                    │                           │               │ presence of duplicate IP addresses on the network.   │
3042       │                    │                           │               │ If an address conflict is detected, the activation   │
3043       │                    │                           │               │ will fail.  A zero value means that no duplicate     │
3044       │                    │                           │               │ address detection is performed, -1 means the default │
3045       │                    │                           │               │ value (either configuration ipvx.dad-timeout         │
3046       │                    │                           │               │ override or zero).  A value greater than zero is a   │
3047       │                    │                           │               │ timeout in milliseconds.                             │
3048       │                    │                           │               │                                                      │
3049       │                    │                           │               │  The property is currently implemented only for      │
3050       │                    │                           │               │ IPv4.                                                │
3051       ├────────────────────┼───────────────────────────┼───────────────┼──────────────────────────────────────────────────────┤
3052       │dhcp-duid           │ string                    │               │ A string containing the DHCPv6 Unique Identifier     │
3053       │                    │                           │               │ (DUID) used by the dhcp client to identify itself to │
3054       │                    │                           │               │ DHCPv6 servers (RFC 3315). The DUID is carried in    │
3055       │                    │                           │               │ the Client Identifier option. If the property is a   │
3056       │                    │                           │               │ hex string ('aa:bb:cc') it is interpreted as a       │
3057       │                    │                           │               │ binary DUID and filled as an opaque value in the     │
3058       │                    │                           │               │ Client Identifier option.                            │
3059       │                    │                           │               │                                                      │
3060       │                    │                           │               │  The special value "lease" will retrieve the DUID    │
3061       │                    │                           │               │ previously used from the lease file belonging to the │
3062       │                    │                           │               │ connection. If no DUID is found and "dhclient" is    │
3063       │                    │                           │               │ the configured dhcp client, the DUID is searched in  │
3064       │                    │                           │               │ the system-wide dhclient lease file. If still no     │
3065       │                    │                           │               │ DUID is found, or another dhcp client is used, a     │
3066       │                    │                           │               │ global and permanent DUID-UUID (RFC 6355) will be    │
3067       │                    │                           │               │ generated based on the machine-id.                   │
3068       │                    │                           │               │                                                      │
3069       │                    │                           │               │  The special values "llt" and "ll" will generate a   │
3070       │                    │                           │               │ DUID of type LLT or LL (see RFC 3315) based on the   │
3071       │                    │                           │               │ current MAC address of the device. In order to try   │
3072       │                    │                           │               │ providing a stable DUID-LLT, the time field will     │
3073       │                    │                           │               │ contain a constant timestamp that is used globally   │
3074       │                    │                           │               │ (for all profiles) and persisted to disk.            │
3075       │                    │                           │               │                                                      │
3076       │                    │                           │               │  The special values "stable-llt", "stable-ll" and    │
3077       │                    │                           │               │ "stable-uuid" will generate a DUID of the            │
3078       │                    │                           │               │ corresponding type, derived from the connection's    │
3079       │                    │                           │               │ stable-id and a per-host unique key. You may want to │
3080       │                    │                           │               │ include the "${DEVICE}" or "${MAC}" specifier in the │
3081       │                    │                           │               │ stable-id, in case this profile gets activated on    │
3082       │                    │                           │               │ multiple devices. So, the link-layer address of      │
3083       │                    │                           │               │ "stable-ll" and "stable-llt" will be a generated     │
3084       │                    │                           │               │ address derived from the stable id. The DUID-LLT     │
3085       │                    │                           │               │ time value in the "stable-llt" option will be picked │
3086       │                    │                           │               │ among a static timespan of three years (the upper    │
3087       │                    │                           │               │ bound of the interval is the same constant timestamp │
3088       │                    │                           │               │ used in "llt").                                      │
3089       │                    │                           │               │                                                      │
3090       │                    │                           │               │  When the property is unset, the global value        │
3091       │                    │                           │               │ provided for "ipv6.dhcp-duid" is used. If no global  │
3092       │                    │                           │               │ value is provided, the default "lease" value is      │
3093       │                    │                           │               │ assumed.                                             │
3094       ├────────────────────┼───────────────────────────┼───────────────┼──────────────────────────────────────────────────────┤
3095       │dhcp-hostname       │ string                    │               │ If the "dhcp-send-hostname" property is TRUE, then   │
3096       │                    │                           │               │ the specified name will be sent to the DHCP server   │
3097       │                    │                           │               │ when acquiring a lease. This property and            │
3098       │                    │                           │               │ "dhcp-fqdn" are mutually exclusive and cannot be set │
3099       │                    │                           │               │ at the same time.                                    │
3100       ├────────────────────┼───────────────────────────┼───────────────┼──────────────────────────────────────────────────────┤
3101       │dhcp-hostname-flags │ uint32                    │ 0             │ Flags for the DHCP hostname and FQDN.                │
3102       │                    │                           │               │                                                      │
3103       │                    │                           │               │  Currently, this property only includes flags to     │
3104       │                    │                           │               │ control the FQDN flags set in the DHCP FQDN option.  │
3105       │                    │                           │               │ Supported FQDN flags are                             │
3106       │                    │                           │               │ NM_DHCP_HOSTNAME_FLAG_FQDN_SERV_UPDATE (0x1),        │
3107       │                    │                           │               │ NM_DHCP_HOSTNAME_FLAG_FQDN_ENCODED (0x2) and         │
3108       │                    │                           │               │ NM_DHCP_HOSTNAME_FLAG_FQDN_NO_UPDATE (0x4).  When no │
3109       │                    │                           │               │ FQDN flag is set and                                 │
3110       │                    │                           │               │ NM_DHCP_HOSTNAME_FLAG_FQDN_CLEAR_FLAGS (0x8) is set, │
3111       │                    │                           │               │ the DHCP FQDN option will contain no flag.           │
3112       │                    │                           │               │ Otherwise, if no FQDN flag is set and                │
3113       │                    │                           │               │ NM_DHCP_HOSTNAME_FLAG_FQDN_CLEAR_FLAGS (0x8) is not  │
3114       │                    │                           │               │ set, the standard FQDN flags are set in the request: │
3115       │                    │                           │               │ NM_DHCP_HOSTNAME_FLAG_FQDN_SERV_UPDATE (0x1),        │
3116       │                    │                           │               │ NM_DHCP_HOSTNAME_FLAG_FQDN_ENCODED (0x2) for IPv4    │
3117       │                    │                           │               │ and NM_DHCP_HOSTNAME_FLAG_FQDN_SERV_UPDATE (0x1) for │
3118       │                    │                           │               │ IPv6.                                                │
3119       │                    │                           │               │                                                      │
3120       │                    │                           │               │  When this property is set to the default value      │
3121       │                    │                           │               │ NM_DHCP_HOSTNAME_FLAG_NONE (0x0), a global default   │
3122       │                    │                           │               │ is looked up in NetworkManager configuration. If     │
3123       │                    │                           │               │ that value is unset or also                          │
3124       │                    │                           │               │ NM_DHCP_HOSTNAME_FLAG_NONE (0x0), then the standard  │
3125       │                    │                           │               │ FQDN flags described above are sent in the DHCP      │
3126       │                    │                           │               │ requests.                                            │
3127       ├────────────────────┼───────────────────────────┼───────────────┼──────────────────────────────────────────────────────┤
3128       │dhcp-iaid           │ string                    │               │ A string containing the "Identity Association        │
3129       │                    │                           │               │ Identifier" (IAID) used by the DHCP client. The      │
3130       │                    │                           │               │ property is a 32-bit decimal value or a special      │
3131       │                    │                           │               │ value among "mac", "perm-mac", "ifname" and          │
3132       │                    │                           │               │ "stable". When set to "mac" (or "perm-mac"), the     │
3133       │                    │                           │               │ last 4 bytes of the current (or permanent) MAC       │
3134       │                    │                           │               │ address are used as IAID. When set to "ifname", the  │
3135       │                    │                           │               │ IAID is computed by hashing the interface name. The  │
3136       │                    │                           │               │ special value "stable" can be used to generate an    │
3137       │                    │                           │               │ IAID based on the stable-id (see                     │
3138       │                    │                           │               │ connection.stable-id), a per-host key and the        │
3139       │                    │                           │               │ interface name. When the property is unset, the      │
3140       │                    │                           │               │ value from global configuration is used; if no       │
3141       │                    │                           │               │ global default is set then the IAID is assumed to be │
3142       │                    │                           │               │ "ifname". Note that at the moment this property is   │
3143       │                    │                           │               │ ignored for IPv6 by dhclient, which always derives   │
3144       │                    │                           │               │ the IAID from the MAC address.                       │
3145       ├────────────────────┼───────────────────────────┼───────────────┼──────────────────────────────────────────────────────┤
3146       │dhcp-reject-servers │ array of string           │               │ Array of servers from which DHCP offers must be      │
3147       │                    │                           │               │ rejected. This property is useful to avoid getting a │
3148       │                    │                           │               │ lease from misconfigured or rogue servers.           │
3149       │                    │                           │               │                                                      │
3150       │                    │                           │               │  For DHCPv4, each element must be an IPv4 address,   │
3151       │                    │                           │               │ optionally followed by a slash and a prefix length   │
3152       │                    │                           │               │ (e.g. "192.168.122.0/24").                           │
3153       │                    │                           │               │                                                      │
3154       │                    │                           │               │  This property is currently not implemented for      │
3155       │                    │                           │               │ DHCPv6.                                              │
3156       ├────────────────────┼───────────────────────────┼───────────────┼──────────────────────────────────────────────────────┤
3157       │dhcp-send-hostname  │ boolean                   │ TRUE          │ If TRUE, a hostname is sent to the DHCP server when  │
3158       │                    │                           │               │ acquiring a lease. Some DHCP servers use this        │
3159       │                    │                           │               │ hostname to update DNS databases, essentially        │
3160       │                    │                           │               │ providing a static hostname for the computer.  If    │
3161       │                    │                           │               │ the "dhcp-hostname" property is NULL and this        │
3162       │                    │                           │               │ property is TRUE, the current persistent hostname of │
3163       │                    │                           │               │ the computer is sent.                                │
3164       ├────────────────────┼───────────────────────────┼───────────────┼──────────────────────────────────────────────────────┤
3165       │dhcp-timeout        │ int32                     │ 0             │ A timeout for a DHCP transaction in seconds. If zero │
3166       │                    │                           │               │ (the default), a globally configured default is      │
3167       │                    │                           │               │ used. If still unspecified, a device specific        │
3168       │                    │                           │               │ timeout is used (usually 45 seconds).                │
3169       │                    │                           │               │                                                      │
3170       │                    │                           │               │  Set to 2147483647 (MAXINT32) for infinity.          │
3171       ├────────────────────┼───────────────────────────┼───────────────┼──────────────────────────────────────────────────────┤
3172       │dns                 │ array of byte             │               │ Array of IP addresses of DNS servers (in network     │
3173       │                    │ array                     │               │ byte order)                                          │
3174       ├────────────────────┼───────────────────────────┼───────────────┼──────────────────────────────────────────────────────┤
3175       │dns-options         │ array of string           │               │ Array of DNS options as described in man 5           │
3176       │                    │                           │               │ resolv.conf.                                         │
3177       │                    │                           │               │                                                      │
3178       │                    │                           │               │  NULL means that the options are unset and left at   │
3179       │                    │                           │               │ the default. In this case NetworkManager will use    │
3180       │                    │                           │               │ default options. This is distinct from an empty list │
3181       │                    │                           │               │ of properties.                                       │
3182       │                    │                           │               │                                                      │
3183       │                    │                           │               │  The currently supported options are "attempts",     │
3184       │                    │                           │               │ "debug", "edns0", "inet6", "ip6-bytestring",         │
3185       │                    │                           │               │ "ip6-dotint", "ndots", "no-check-names",             │
3186       │                    │                           │               │ "no-ip6-dotint", "no-reload", "no-tld-query",        │
3187       │                    │                           │               │ "rotate", "single-request", "single-request-reopen", │
3188       │                    │                           │               │ "timeout", "trust-ad", "use-vc".                     │
3189       │                    │                           │               │                                                      │
3190       │                    │                           │               │  The "trust-ad" setting is only honored if the       │
3191       │                    │                           │               │ profile contributes name servers to resolv.conf, and │
3192       │                    │                           │               │ if all contributing profiles have "trust-ad"         │
3193       │                    │                           │               │ enabled.                                             │
3194       │                    │                           │               │                                                      │
3195       │                    │                           │               │  When using a caching DNS plugin (dnsmasq or         │
3196       │                    │                           │               │ systemd-resolved in NetworkManager.conf) then        │
3197       │                    │                           │               │ "edns0" and "trust-ad" are automatically added.      │
3198       ├────────────────────┼───────────────────────────┼───────────────┼──────────────────────────────────────────────────────┤
3199       │dns-priority        │ int32                     │ 0             │ DNS servers priority.                                │
3200       │                    │                           │               │                                                      │
3201       │                    │                           │               │  The relative priority for DNS servers specified by  │
3202       │                    │                           │               │ this setting.  A lower numerical value is better     │
3203       │                    │                           │               │ (higher priority).                                   │
3204       │                    │                           │               │                                                      │
3205       │                    │                           │               │  Negative values have the special effect of          │
3206       │                    │                           │               │ excluding other configurations with a greater        │
3207       │                    │                           │               │ numerical priority value; so in presence of at least │
3208       │                    │                           │               │ one negative priority, only DNS servers from         │
3209       │                    │                           │               │ connections with the lowest priority value will be   │
3210       │                    │                           │               │ used. To avoid all DNS leaks, set the priority of    │
3211       │                    │                           │               │ the profile that should be used to the most negative │
3212       │                    │                           │               │ value of all active connections profiles.            │
3213       │                    │                           │               │                                                      │
3214       │                    │                           │               │  Zero selects a globally configured default value.   │
3215       │                    │                           │               │ If the latter is missing or zero too, it defaults to │
3216       │                    │                           │               │ 50 for VPNs (including WireGuard) and 100 for other  │
3217       │                    │                           │               │ connections.                                         │
3218       │                    │                           │               │                                                      │
3219       │                    │                           │               │  Note that the priority is to order DNS settings for │
3220       │                    │                           │               │ multiple active connections.  It does not            │
3221       │                    │                           │               │ disambiguate multiple DNS servers within the same    │
3222       │                    │                           │               │ connection profile.                                  │
3223       │                    │                           │               │                                                      │
3224       │                    │                           │               │  When multiple devices have configurations with the  │
3225       │                    │                           │               │ same priority, VPNs will be considered first, then   │
3226       │                    │                           │               │ devices with the best (lowest metric) default route  │
3227       │                    │                           │               │ and then all other devices.                          │
3228       │                    │                           │               │                                                      │
3229       │                    │                           │               │  When using dns=default, servers with higher         │
3230       │                    │                           │               │ priority will be on top of resolv.conf. To           │
3231       │                    │                           │               │ prioritize a given server over another one within    │
3232       │                    │                           │               │ the same connection, just specify them in the        │
3233       │                    │                           │               │ desired order. Note that commonly the resolver tries │
3234       │                    │                           │               │ name servers in /etc/resolv.conf in the order        │
3235       │                    │                           │               │ listed, proceeding with the next server in the list  │
3236       │                    │                           │               │ on failure. See for example the "rotate" option of   │
3237       │                    │                           │               │ the dns-options setting. If there are any negative   │
3238       │                    │                           │               │ DNS priorities, then only name servers from the      │
3239       │                    │                           │               │ devices with that lowest priority will be            │
3240       │                    │                           │               │ considered.                                          │
3241       │                    │                           │               │                                                      │
3242       │                    │                           │               │  When using a DNS resolver that supports Conditional │
3243       │                    │                           │               │ Forwarding or Split DNS (with dns=dnsmasq or         │
3244       │                    │                           │               │ dns=systemd-resolved settings), each connection is   │
3245       │                    │                           │               │ used to query domains in its search list. The search │
3246       │                    │                           │               │ domains determine which name servers to ask, and the │
3247       │                    │                           │               │ DNS priority is used to prioritize name servers      │
3248       │                    │                           │               │ based on the domain.  Queries for domains not        │
3249       │                    │                           │               │ present in any search list are routed through        │
3250       │                    │                           │               │ connections having the '~.' special wildcard domain, │
3251       │                    │                           │               │ which is added automatically to connections with the │
3252       │                    │                           │               │ default route (or can be added manually).  When      │
3253       │                    │                           │               │ multiple connections specify the same domain, the    │
3254       │                    │                           │               │ one with the best priority (lowest numerical value)  │
3255       │                    │                           │               │ wins.  If a sub domain is configured on another      │
3256       │                    │                           │               │ interface it will be accepted regardless the         │
3257       │                    │                           │               │ priority, unless parent domain on the other          │
3258       │                    │                           │               │ interface has a negative priority, which causes the  │
3259       │                    │                           │               │ sub domain to be shadowed. With Split DNS one can    │
3260       │                    │                           │               │ avoid undesired DNS leaks by properly configuring    │
3261       │                    │                           │               │ DNS priorities and the search domains, so that only  │
3262       │                    │                           │               │ name servers of the desired interface are            │
3263       │                    │                           │               │ configured.                                          │
3264       ├────────────────────┼───────────────────────────┼───────────────┼──────────────────────────────────────────────────────┤
3265       │dns-search          │ array of string           │               │ List of DNS search domains. Domains starting with a  │
3266       │                    │                           │               │ tilde ('~') are considered 'routing' domains and are │
3267       │                    │                           │               │ used only to decide the interface over which a query │
3268       │                    │                           │               │ must be forwarded; they are not used to complete     │
3269       │                    │                           │               │ unqualified host names.                              │
3270       │                    │                           │               │                                                      │
3271       │                    │                           │               │  When using a DNS plugin that supports Conditional   │
3272       │                    │                           │               │ Forwarding or Split DNS, then the search domains     │
3273       │                    │                           │               │ specify which name servers to query. This makes the  │
3274       │                    │                           │               │ behavior different from running with plain           │
3275       │                    │                           │               │ /etc/resolv.conf. For more information see also the  │
3276       │                    │                           │               │ dns-priority setting.                                │
3277       │                    │                           │               │                                                      │
3278       │                    │                           │               │  When set on a profile that also enabled DHCP, the   │
3279       │                    │                           │               │ DNS search list received automatically (option 119   │
3280       │                    │                           │               │ for DHCPv4 and option 24 for DHCPv6) gets merged     │
3281       │                    │                           │               │ with the manual list. This can be prevented by       │
3282       │                    │                           │               │ setting "ignore-auto-dns". Note that if no DNS       │
3283       │                    │                           │               │ searches are configured, the fallback will be        │
3284       │                    │                           │               │ derived from the domain from DHCP (option 15).       │
3285       ├────────────────────┼───────────────────────────┼───────────────┼──────────────────────────────────────────────────────┤
3286       │gateway             │ string                    │               │ The gateway associated with this configuration. This │
3287       │                    │                           │               │ is only meaningful if "addresses" is also set.       │
3288       │                    │                           │               │                                                      │
3289       │                    │                           │               │  Setting the gateway causes NetworkManager to        │
3290       │                    │                           │               │ configure a standard default route with the gateway  │
3291       │                    │                           │               │ as next hop. This is ignored if "never-default" is   │
3292       │                    │                           │               │ set. An alternative is to configure the default      │
3293       │                    │                           │               │ route explicitly with a manual route and /0 as       │
3294       │                    │                           │               │ prefix length.                                       │
3295       │                    │                           │               │                                                      │
3296       │                    │                           │               │  Note that the gateway usually conflicts with        │
3297       │                    │                           │               │ routing that NetworkManager configures for WireGuard │
3298       │                    │                           │               │ interfaces, so usually it should not be set in that  │
3299       │                    │                           │               │ case. See "ip4-auto-default-route".                  │
3300       ├────────────────────┼───────────────────────────┼───────────────┼──────────────────────────────────────────────────────┤
3301       │ignore-auto-dns     │ boolean                   │ FALSE         │ When "method" is set to "auto" and this property to  │
3302       │                    │                           │               │ TRUE, automatically configured name servers and      │
3303       │                    │                           │               │ search domains are ignored and only name servers and │
3304       │                    │                           │               │ search domains specified in the "dns" and            │
3305       │                    │                           │               │ "dns-search" properties, if any, are used.           │
3306       ├────────────────────┼───────────────────────────┼───────────────┼──────────────────────────────────────────────────────┤
3307       │ignore-auto-routes  │ boolean                   │ FALSE         │ When "method" is set to "auto" and this property to  │
3308       │                    │                           │               │ TRUE, automatically configured routes are ignored    │
3309       │                    │                           │               │ and only routes specified in the "routes" property,  │
3310       │                    │                           │               │ if any, are used.                                    │
3311       ├────────────────────┼───────────────────────────┼───────────────┼──────────────────────────────────────────────────────┤
3312       │ip6-privacy         │ NMSettingIP6ConfigPrivacy │               │ Configure IPv6 Privacy Extensions for SLAAC,         │
3313       │                    │ (int32)                   │               │ described in RFC4941.  If enabled, it makes the      │
3314       │                    │                           │               │ kernel generate a temporary IPv6 address in addition │
3315       │                    │                           │               │ to the public one generated from MAC address via     │
3316       │                    │                           │               │ modified EUI-64.  This enhances privacy, but could   │
3317       │                    │                           │               │ cause problems in some applications, on the other    │
3318       │                    │                           │               │ hand.  The permitted values are: -1: unknown, 0:     │
3319       │                    │                           │               │ disabled, 1: enabled (prefer public address), 2:     │
3320       │                    │                           │               │ enabled (prefer temporary addresses).                │
3321       │                    │                           │               │                                                      │
3322       │                    │                           │               │  Having a per-connection setting set to "-1"         │
3323       │                    │                           │               │ (unknown) means fallback to global configuration     │
3324       │                    │                           │               │ "ipv6.ip6-privacy".                                  │
3325       │                    │                           │               │                                                      │
3326       │                    │                           │               │  If also global configuration is unspecified or set  │
3327       │                    │                           │               │ to "-1", fallback to read                            │
3328       │                    │                           │               │ "/proc/sys/net/ipv6/conf/default/use_tempaddr".      │
3329       │                    │                           │               │                                                      │
3330       │                    │                           │               │  Note that this setting is distinct from the Stable  │
3331       │                    │                           │               │ Privacy addresses that can be enabled with the       │
3332       │                    │                           │               │ "addr-gen-mode" property's "stable-privacy" setting  │
3333       │                    │                           │               │ as another way of avoiding host tracking with IPv6   │
3334       │                    │                           │               │ addresses.                                           │
3335       ├────────────────────┼───────────────────────────┼───────────────┼──────────────────────────────────────────────────────┤
3336       │may-fail            │ boolean                   │ TRUE          │ If TRUE, allow overall network configuration to      │
3337       │                    │                           │               │ proceed even if the configuration specified by this  │
3338       │                    │                           │               │ property times out.  Note that at least one IP       │
3339       │                    │                           │               │ configuration must succeed or overall network        │
3340       │                    │                           │               │ configuration will still fail.  For example, in      │
3341       │                    │                           │               │ IPv6-only networks, setting this property to TRUE on │
3342       │                    │                           │               │ the NMSettingIP4Config allows the overall network    │
3343       │                    │                           │               │ configuration to succeed if IPv4 configuration fails │
3344       │                    │                           │               │ but IPv6 configuration completes successfully.       │
3345       ├────────────────────┼───────────────────────────┼───────────────┼──────────────────────────────────────────────────────┤
3346       │method              │ string                    │               │ IP configuration method.                             │
3347       │                    │                           │               │                                                      │
3348       │                    │                           │               │  NMSettingIP4Config and NMSettingIP6Config both      │
3349       │                    │                           │               │ support "disabled", "auto", "manual", and            │
3350       │                    │                           │               │ "link-local". See the subclass-specific              │
3351       │                    │                           │               │ documentation for other values.                      │
3352       │                    │                           │               │                                                      │
3353       │                    │                           │               │  In general, for the "auto" method, properties such  │
3354       │                    │                           │               │ as "dns" and "routes" specify information that is    │
3355       │                    │                           │               │ added on to the information returned from automatic  │
3356       │                    │                           │               │ configuration.  The "ignore-auto-routes" and         │
3357       │                    │                           │               │ "ignore-auto-dns" properties modify this behavior.   │
3358       │                    │                           │               │                                                      │
3359       │                    │                           │               │  For methods that imply no upstream network, such as │
3360       │                    │                           │               │ "shared" or "link-local", these properties must be   │
3361       │                    │                           │               │ empty.                                               │
3362       │                    │                           │               │                                                      │
3363       │                    │                           │               │  For IPv4 method "shared", the IP subnet can be      │
3364       │                    │                           │               │ configured by adding one manual IPv4 address or      │
3365       │                    │                           │               │ otherwise 10.42.x.0/24 is chosen. Note that the      │
3366       │                    │                           │               │ shared method must be configured on the interface    │
3367       │                    │                           │               │ which shares the internet to a subnet, not on the    │
3368       │                    │                           │               │ uplink which is shared.                              │
3369       ├────────────────────┼───────────────────────────┼───────────────┼──────────────────────────────────────────────────────┤
3370       │mtu                 │ uint32                    │ 0             │ Maximum transmission unit size, in bytes. If zero    │
3371       │                    │                           │               │ (the default), the MTU is set automatically from     │
3372       │                    │                           │               │ router advertisements or is left equal to the        │
3373       │                    │                           │               │ link-layer MTU. If greater than the link-layer MTU,  │
3374       │                    │                           │               │ or greater than zero but less than the minimum IPv6  │
3375       │                    │                           │               │ MTU of 1280, this value has no effect.               │
3376       ├────────────────────┼───────────────────────────┼───────────────┼──────────────────────────────────────────────────────┤
3377       │never-default       │ boolean                   │ FALSE         │ If TRUE, this connection will never be the default   │
3378       │                    │                           │               │ connection for this IP type, meaning it will never   │
3379       │                    │                           │               │ be assigned the default route by NetworkManager.     │
3380       ├────────────────────┼───────────────────────────┼───────────────┼──────────────────────────────────────────────────────┤
3381       │ra-timeout          │ int32                     │ 0             │ A timeout for waiting Router Advertisements in       │
3382       │                    │                           │               │ seconds. If zero (the default), a globally           │
3383       │                    │                           │               │ configured default is used. If still unspecified,    │
3384       │                    │                           │               │ the timeout depends on the sysctl settings of the    │
3385       │                    │                           │               │ device.                                              │
3386       │                    │                           │               │                                                      │
3387       │                    │                           │               │  Set to 2147483647 (MAXINT32) for infinity.          │
3388       ├────────────────────┼───────────────────────────┼───────────────┼──────────────────────────────────────────────────────┤
3389       │required-timeout    │ int32                     │ -1            │ The minimum time interval in milliseconds for which  │
3390       │                    │                           │               │ dynamic IP configuration should be tried before the  │
3391       │                    │                           │               │ connection succeeds.                                 │
3392       │                    │                           │               │                                                      │
3393       │                    │                           │               │  This property is useful for example if both IPv4    │
3394       │                    │                           │               │ and IPv6 are enabled and are allowed to fail.        │
3395       │                    │                           │               │ Normally the connection succeeds as soon as one of   │
3396       │                    │                           │               │ the two address families completes; by setting a     │
3397       │                    │                           │               │ required timeout for e.g. IPv4, one can ensure that  │
3398       │                    │                           │               │ even if IP6 succeeds earlier than IPv4,              │
3399       │                    │                           │               │ NetworkManager waits some time for IPv4 before the   │
3400       │                    │                           │               │ connection becomes active.                           │
3401       │                    │                           │               │                                                      │
3402       │                    │                           │               │  Note that if "may-fail" is FALSE for the same       │
3403       │                    │                           │               │ address family, this property has no effect as       │
3404       │                    │                           │               │ NetworkManager needs to wait for the full DHCP       │
3405       │                    │                           │               │ timeout.                                             │
3406       │                    │                           │               │                                                      │
3407       │                    │                           │               │  A zero value means that no required timeout is      │
3408       │                    │                           │               │ present, -1 means the default value (either          │
3409       │                    │                           │               │ configuration ipvx.required-timeout override or      │
3410       │                    │                           │               │ zero).                                               │
3411       ├────────────────────┼───────────────────────────┼───────────────┼──────────────────────────────────────────────────────┤
3412       │route-data          │ array of vardict          │               │ Array of IPv6 routes. Each route dictionary contains │
3413       │                    │                           │               │ at least 'dest' and 'prefix' entries, containing the │
3414       │                    │                           │               │ destination IP address as a string, and the prefix   │
3415       │                    │                           │               │ length as a uint32. Most routes will also have a     │
3416       │                    │                           │               │ 'next-hop' entry, containing the next hop IP address │
3417       │                    │                           │               │ as a string. If the route has a 'metric' entry       │
3418       │                    │                           │               │ (containing a uint32), that will be used as the      │
3419       │                    │                           │               │ metric for the route (otherwise NM will pick a       │
3420       │                    │                           │               │ default value appropriate to the device). Additional │
3421       │                    │                           │               │ attributes may also exist on some routes.            │
3422       ├────────────────────┼───────────────────────────┼───────────────┼──────────────────────────────────────────────────────┤
3423       │route-metric        │ int64                     │ -1            │ The default metric for routes that don't explicitly  │
3424       │                    │                           │               │ specify a metric. The default value -1 means that    │
3425       │                    │                           │               │ the metric is chosen automatically based on the      │
3426       │                    │                           │               │ device type. The metric applies to dynamic routes,   │
3427       │                    │                           │               │ manual (static) routes that don't have an explicit   │
3428       │                    │                           │               │ metric setting, address prefix routes, and the       │
3429       │                    │                           │               │ default route. Note that for IPv6, the kernel        │
3430       │                    │                           │               │ accepts zero (0) but coerces it to 1024 (user        │
3431       │                    │                           │               │ default). Hence, setting this property to zero       │
3432       │                    │                           │               │ effectively mean setting it to 1024. For IPv4, zero  │
3433       │                    │                           │               │ is a regular value for the metric.                   │
3434       ├────────────────────┼───────────────────────────┼───────────────┼──────────────────────────────────────────────────────┤
3435       │route-table         │ uint32                    │ 0             │ Enable policy routing (source routing) and set the   │
3436       │                    │                           │               │ routing table used when adding routes.               │
3437       │                    │                           │               │                                                      │
3438       │                    │                           │               │  This affects all routes, including device-routes,   │
3439       │                    │                           │               │ IPv4LL, DHCP, SLAAC, default-routes and static       │
3440       │                    │                           │               │ routes. But note that static routes can individually │
3441       │                    │                           │               │ overwrite the setting by explicitly specifying a     │
3442       │                    │                           │               │ non-zero routing table.                              │
3443       │                    │                           │               │                                                      │
3444       │                    │                           │               │  If the table setting is left at zero, it is         │
3445       │                    │                           │               │ eligible to be overwritten via global configuration. │
3446       │                    │                           │               │ If the property is zero even after applying the      │
3447       │                    │                           │               │ global configuration value, policy routing is        │
3448       │                    │                           │               │ disabled for the address family of this connection.  │
3449       │                    │                           │               │                                                      │
3450       │                    │                           │               │  Policy routing disabled means that NetworkManager   │
3451       │                    │                           │               │ will add all routes to the main table (except static │
3452       │                    │                           │               │ routes that explicitly configure a different table). │
3453       │                    │                           │               │ Additionally, NetworkManager will not delete any     │
3454       │                    │                           │               │ extraneous routes from tables except the main table. │
3455       │                    │                           │               │ This is to preserve backward compatibility for users │
3456       │                    │                           │               │ who manage routing tables outside of NetworkManager. │
3457       ├────────────────────┼───────────────────────────┼───────────────┼──────────────────────────────────────────────────────┤
3458       │routes              │ array of legacy IPv6      │               │ Deprecated in favor of the 'route-data' property,    │
3459       │                    │ route struct (a(ayuayu))  │               │ but this can be used for backward-compatibility with │
3460       │                    │                           │               │ older daemons. Note that if you send this property   │
3461       │                    │                           │               │ the daemon will ignore 'route-data'.  Array of IPv6  │
3462       │                    │                           │               │ route structures.  Each IPv6 route structure is      │
3463       │                    │                           │               │ composed of an IPv6 address, a prefix length (0 -    │
3464       │                    │                           │               │ 128), an IPv6 next hop address (which may be zeroed  │
3465       │                    │                           │               │ out if there is no next hop), and a metric. If the   │
3466       │                    │                           │               │ metric is 0, NM will choose an appropriate default   │
3467       │                    │                           │               │ metric for the device.                               │
3468       ├────────────────────┼───────────────────────────┼───────────────┼──────────────────────────────────────────────────────┤
3469       │token               │ string                    │               │ Configure the token for                              │
3470       │                    │                           │               │ draft-chown-6man-tokenised-ipv6-identifiers-02 IPv6  │
3471       │                    │                           │               │ tokenized interface identifiers. Useful with eui64   │
3472       │                    │                           │               │ addr-gen-mode.                                       │
3473       └────────────────────┴───────────────────────────┴───────────────┴──────────────────────────────────────────────────────┘
3474
3475   ip-tunnel setting
3476       IP Tunneling Settings.
3477
3478       ┌────────────────────┬────────────┬───────────────┬──────────────────────────────────────────┐
3479Key Name            Value Type Default Value Value                                    
3480       │                    │            │               │ Description                              
3481       ├────────────────────┼────────────┼───────────────┼──────────────────────────────────────────┤
3482       │encapsulation-limit │ uint32     │ 0             │ How many                                 │
3483       │                    │            │               │ additional                               │
3484       │                    │            │               │ levels of                                │
3485       │                    │            │               │ encapsulation                            │
3486       │                    │            │               │ are permitted to                         │
3487       │                    │            │               │ be prepended to                          │
3488       │                    │            │               │ packets. This                            │
3489       │                    │            │               │ property applies                         │
3490       │                    │            │               │ only to IPv6                             │
3491       │                    │            │               │ tunnels.                                 │
3492       ├────────────────────┼────────────┼───────────────┼──────────────────────────────────────────┤
3493       │flags               │ uint32     │ 0             │ Tunnel flags.                            │
3494       │                    │            │               │ Currently, the                           │
3495       │                    │            │               │ following values                         │
3496       │                    │            │               │ are supported:                           │
3497       │                    │            │               │ NM_IP_TUNNEL_FLAG_IP6_IGN_ENCAP_LIMIT    │
3498       │                    │            │               │ (0x1),                                   │
3499       │                    │            │               │ NM_IP_TUNNEL_FLAG_IP6_USE_ORIG_TCLASS    │
3500       │                    │            │               │ (0x2),                                   │
3501       │                    │            │               │ NM_IP_TUNNEL_FLAG_IP6_USE_ORIG_FLOWLABEL │
3502       │                    │            │               │ (0x4),                                   │
3503       │                    │            │               │ NM_IP_TUNNEL_FLAG_IP6_MIP6_DEV           │
3504       │                    │            │               │ (0x8),                                   │
3505       │                    │            │               │ NM_IP_TUNNEL_FLAG_IP6_RCV_DSCP_COPY      │
3506       │                    │            │               │ (0x10),                                  │
3507       │                    │            │               │ NM_IP_TUNNEL_FLAG_IP6_USE_ORIG_FWMARK    │
3508       │                    │            │               │ (0x20). They are                         │
3509       │                    │            │               │ valid only for                           │
3510       │                    │            │               │ IPv6 tunnels.                            │
3511       ├────────────────────┼────────────┼───────────────┼──────────────────────────────────────────┤
3512       │flow-label          │ uint32     │ 0             │ The flow label to assign to tunnel       │
3513       │                    │            │               │ packets. This property applies only to   │
3514       │                    │            │               │ IPv6 tunnels.                            │
3515       ├────────────────────┼────────────┼───────────────┼──────────────────────────────────────────┤
3516       │input-key           │ string     │               │ The key used for tunnel input packets;   │
3517       │                    │            │               │ the property is valid only for certain   │
3518       │                    │            │               │ tunnel modes (GRE, IP6GRE). If empty, no │
3519       │                    │            │               │ key is used.                             │
3520       ├────────────────────┼────────────┼───────────────┼──────────────────────────────────────────┤
3521       │local               │ string     │               │ The local endpoint of the tunnel; the    │
3522       │                    │            │               │ value can be empty, otherwise it must    │
3523       │                    │            │               │ contain an IPv4 or IPv6 address.         │
3524       ├────────────────────┼────────────┼───────────────┼──────────────────────────────────────────┤
3525       │mode                │ uint32     │ 0             │ The tunneling mode, for example          │
3526       │                    │            │               │ NM_IP_TUNNEL_MODE_IPIP (1) or            │
3527       │                    │            │               │ NM_IP_TUNNEL_MODE_GRE (2).               │
3528       ├────────────────────┼────────────┼───────────────┼──────────────────────────────────────────┤
3529       │mtu                 │ uint32     │ 0             │ If non-zero, only transmit packets of    │
3530       │                    │            │               │ the specified size or smaller, breaking  │
3531       │                    │            │               │ larger packets up into multiple          │
3532       │                    │            │               │ fragments.                               │
3533       ├────────────────────┼────────────┼───────────────┼──────────────────────────────────────────┤
3534       │output-key          │ string     │               │ The key used for tunnel output packets;  │
3535       │                    │            │               │ the property is valid only for certain   │
3536       │                    │            │               │ tunnel modes (GRE, IP6GRE). If empty, no │
3537       │                    │            │               │ key is used.                             │
3538       ├────────────────────┼────────────┼───────────────┼──────────────────────────────────────────┤
3539       │parent              │ string     │               │ If given, specifies the parent interface │
3540       │                    │            │               │ name or parent connection UUID the new   │
3541       │                    │            │               │ device will be bound to so that tunneled │
3542       │                    │            │               │ packets will only be routed via that     │
3543       │                    │            │               │ interface.                               │
3544       ├────────────────────┼────────────┼───────────────┼──────────────────────────────────────────┤
3545       │path-mtu-discovery  │ boolean    │ TRUE          │ Whether to enable Path MTU Discovery on  │
3546       │                    │            │               │ this tunnel.                             │
3547       ├────────────────────┼────────────┼───────────────┼──────────────────────────────────────────┤
3548       │remote              │ string     │               │ The remote endpoint of the tunnel; the   │
3549       │                    │            │               │ value must contain an IPv4 or IPv6       │
3550       │                    │            │               │ address.                                 │
3551       ├────────────────────┼────────────┼───────────────┼──────────────────────────────────────────┤
3552       │tos                 │ uint32     │ 0             │ The type of service (IPv4) or traffic    │
3553       │                    │            │               │ class (IPv6) field to be set on tunneled │
3554       │                    │            │               │ packets.                                 │
3555       ├────────────────────┼────────────┼───────────────┼──────────────────────────────────────────┤
3556       │ttl                 │ uint32     │ 0             │ The TTL to assign to tunneled packets. 0 │
3557       │                    │            │               │ is a special value meaning that packets  │
3558       │                    │            │               │ inherit the TTL value.                   │
3559       └────────────────────┴────────────┴───────────────┴──────────────────────────────────────────┘
3560
3561   macsec setting
3562       MACSec Settings.
3563
3564       ┌──────────────┬──────────────────────┬───────────────┬───────────────────────────┐
3565Key Name      Value Type           Default Value Value                     
3566       │              │                      │               │ Description               
3567       ├──────────────┼──────────────────────┼───────────────┼───────────────────────────┤
3568       │encrypt       │ boolean              │ TRUE          │ Whether the               │
3569       │              │                      │               │ transmitted               │
3570       │              │                      │               │ traffic must be           │
3571       │              │                      │               │ encrypted.                │
3572       ├──────────────┼──────────────────────┼───────────────┼───────────────────────────┤
3573       │mka-cak       │ string               │               │ The pre-shared            │
3574       │              │                      │               │ CAK                       │
3575       │              │                      │               │ (Connectivity             │
3576       │              │                      │               │ Association Key)          │
3577       │              │                      │               │ for MACsec Key            │
3578       │              │                      │               │ Agreement. Must           │
3579       │              │                      │               │ be a string of            │
3580       │              │                      │               │ 32 hexadecimal            │
3581       │              │                      │               │ characters.               │
3582       ├──────────────┼──────────────────────┼───────────────┼───────────────────────────┤
3583       │mka-cak-flags │ NMSettingSecretFlags │               │ Flags indicating          │
3584       │              │ (uint32)             │               │ how to handle             │
3585       │              │                      │               │ the "mka-cak"             │
3586       │              │                      │               │ property.                 │
3587       ├──────────────┼──────────────────────┼───────────────┼───────────────────────────┤
3588       │mka-ckn       │ string               │               │ The pre-shared            │
3589       │              │                      │               │ CKN                       │
3590       │              │                      │               │ (Connectivity-association │
3591       │              │                      │               │ Key Name) for             │
3592       │              │                      │               │ MACsec Key                │
3593       │              │                      │               │ Agreement. Must           │
3594       │              │                      │               │ be a string of            │
3595       │              │                      │               │ hexadecimal               │
3596       │              │                      │               │ characters with           │
3597       │              │                      │               │ a even length             │
3598       │              │                      │               │ between 2 and             │
3599       │              │                      │               │ 64.                       │
3600       ├──────────────┼──────────────────────┼───────────────┼───────────────────────────┤
3601       │mode          │ int32                │ 0             │ Specifies how the CAK     │
3602       │              │                      │               │ (Connectivity Association │
3603       │              │                      │               │ Key) for MKA (MACsec Key  │
3604       │              │                      │               │ Agreement) is obtained.   │
3605       ├──────────────┼──────────────────────┼───────────────┼───────────────────────────┤
3606       │parent        │ string               │               │ If given, specifies the   │
3607       │              │                      │               │ parent interface name or  │
3608       │              │                      │               │ parent connection UUID    │
3609       │              │                      │               │ from which this MACSEC    │
3610       │              │                      │               │ interface should be       │
3611       │              │                      │               │ created.  If this         │
3612       │              │                      │               │ property is not           │
3613       │              │                      │               │ specified, the connection │
3614       │              │                      │               │ must contain an           │
3615       │              │                      │               │ "802-3-ethernet" setting  │
3616       │              │                      │               │ with a "mac-address"      │
3617       │              │                      │               │ property.                 │
3618       ├──────────────┼──────────────────────┼───────────────┼───────────────────────────┤
3619       │port          │ int32                │ 1             │ The port component of the │
3620       │              │                      │               │ SCI (Secure Channel       │
3621       │              │                      │               │ Identifier), between 1    │
3622       │              │                      │               │ and 65534.                │
3623       ├──────────────┼──────────────────────┼───────────────┼───────────────────────────┤
3624       │send-sci      │ boolean              │ TRUE          │ Specifies whether the SCI │
3625       │              │                      │               │ (Secure Channel           │
3626       │              │                      │               │ Identifier) is included   │
3627       │              │                      │               │ in every packet.          │
3628       ├──────────────┼──────────────────────┼───────────────┼───────────────────────────┤
3629       │validation    │ int32                │ 2             │ Specifies the validation  │
3630       │              │                      │               │ mode for incoming frames. │
3631       └──────────────┴──────────────────────┴───────────────┴───────────────────────────┘
3632
3633   macvlan setting
3634       MAC VLAN Settings.
3635
3636       ┌────────────┬────────────┬───────────────┬──────────────────┐
3637Key Name    Value Type Default Value Value            
3638       │            │            │               │ Description      
3639       ├────────────┼────────────┼───────────────┼──────────────────┤
3640       │mode        │ uint32     │ 0             │ The macvlan      │
3641       │            │            │               │ mode, which      │
3642       │            │            │               │ specifies the    │
3643       │            │            │               │ communication    │
3644       │            │            │               │ mechanism        │
3645       │            │            │               │ between multiple │
3646       │            │            │               │ macvlans on the  │
3647       │            │            │               │ same lower       │
3648       │            │            │               │ device.          │
3649       ├────────────┼────────────┼───────────────┼──────────────────┤
3650       │parent      │ string     │               │ If given,        │
3651       │            │            │               │ specifies the    │
3652       │            │            │               │ parent interface │
3653       │            │            │               │ name or parent   │
3654       │            │            │               │ connection UUID  │
3655       │            │            │               │ from which this  │
3656       │            │            │               │ MAC-VLAN         │
3657       │            │            │               │ interface should │
3658       │            │            │               │ be created.  If  │
3659       │            │            │               │ this property is │
3660       │            │            │               │ not specified,   │
3661       │            │            │               │ the connection   │
3662       │            │            │               │ must contain an  │
3663       │            │            │               │ "802-3-ethernet" │
3664       │            │            │               │ setting with a   │
3665       │            │            │               │ "mac-address"    │
3666       │            │            │               │ property.        │
3667       ├────────────┼────────────┼───────────────┼──────────────────┤
3668       │promiscuous │ boolean    │ TRUE          │ Whether the      │
3669       │            │            │               │ interface should │
3670       │            │            │               │ be put in        │
3671       │            │            │               │ promiscuous      │
3672       │            │            │               │ mode.            │
3673       ├────────────┼────────────┼───────────────┼──────────────────┤
3674       │tap         │ boolean    │ FALSE         │ Whether the      │
3675       │            │            │               │ interface should │
3676       │            │            │               │ be a MACVTAP.    │
3677       └────────────┴────────────┴───────────────┴──────────────────┘
3678
3679   match setting
3680       Match settings.
3681
3682       ┌────────────────────┬─────────────────┬───────────────┬───────────────────────────────────────┐
3683Key Name            Value Type      Default Value Value                                 
3684       │                    │                 │               │ Description                           
3685       ├────────────────────┼─────────────────┼───────────────┼───────────────────────────────────────┤
3686       │driver              │ array of string │               │ A list of driver                      │
3687       │                    │                 │               │ names to match.                       │
3688       │                    │                 │               │ Each element is                       │
3689       │                    │                 │               │ a shell wildcard                      │
3690       │                    │                 │               │ pattern.                              │
3691       │                    │                 │               │                                       │
3692       │                    │                 │               │  See                                  │
3693       │                    │                 │               │ NMSettingMatch:interface-name         │
3694       │                    │                 │               │ for how special                       │
3695       │                    │                 │               │ characters '|',                       │
3696       │                    │                 │               │ '&', '!' and                          │
3697       │                    │                 │               │ '\\' are used                         │
3698       │                    │                 │               │ for optional and                      │
3699       │                    │                 │               │ mandatory                             │
3700       │                    │                 │               │ matches and                           │
3701       │                    │                 │               │ inverting the                         │
3702       │                    │                 │               │ pattern.                              │
3703       ├────────────────────┼─────────────────┼───────────────┼───────────────────────────────────────┤
3704       │interface-name      │ array of string │               │ A list of interface names to          │
3705       │                    │                 │               │ match. Each element is a              │
3706       │                    │                 │               │ shell wildcard pattern.               │
3707       │                    │                 │               │                                       │
3708       │                    │                 │               │  An element can be prefixed           │
3709       │                    │                 │               │ with a pipe symbol (|) or an          │
3710       │                    │                 │               │ ampersand (&). The former             │
3711       │                    │                 │               │ means that the element is             │
3712       │                    │                 │               │ optional and the latter means         │
3713       │                    │                 │               │ that it is mandatory. If              │
3714       │                    │                 │               │ there are any optional                │
3715       │                    │                 │               │ elements, than the match              │
3716       │                    │                 │               │ evaluates to true if at least         │
3717       │                    │                 │               │ one of the optional element           │
3718       │                    │                 │               │ matches (logical OR). If              │
3719       │                    │                 │               │ there are any mandatory               │
3720       │                    │                 │               │ elements, then they all must          │
3721       │                    │                 │               │ match (logical AND). By               │
3722       │                    │                 │               │ default, an element is                │
3723       │                    │                 │               │ optional. This means that an          │
3724       │                    │                 │               │ element "foo" behaves the             │
3725       │                    │                 │               │ same as "|foo". An element            │
3726       │                    │                 │               │ can also be inverted with             │
3727       │                    │                 │               │ exclamation mark (!) between          │
3728       │                    │                 │               │ the pipe symbol (or the               │
3729       │                    │                 │               │ ampersand) and before the             │
3730       │                    │                 │               │ pattern. Note that "!foo" is          │
3731       │                    │                 │               │ a shortcut for the mandatory          │
3732       │                    │                 │               │ match "&!foo". Finally, a             │
3733       │                    │                 │               │ backslash can be used at the          │
3734       │                    │                 │               │ beginning of the element              │
3735       │                    │                 │               │ (after the optional special           │
3736       │                    │                 │               │ characters) to escape the             │
3737       │                    │                 │               │ start of the pattern. For             │
3738       │                    │                 │               │ example, "&\\!a" is an                │
3739       │                    │                 │               │ mandatory match for literally         │
3740       │                    │                 │               │ "!a".                                 │
3741       ├────────────────────┼─────────────────┼───────────────┼───────────────────────────────────────┤
3742       │kernel-command-line │ array of string │               │ A list of kernel command line         │
3743       │                    │                 │               │ arguments to match. This may          │
3744       │                    │                 │               │ be used to check whether a            │
3745       │                    │                 │               │ specific kernel command line          │
3746       │                    │                 │               │ option is set (or unset, if           │
3747       │                    │                 │               │ prefixed with the exclamation         │
3748       │                    │                 │               │ mark). The argument must              │
3749       │                    │                 │               │ either be a single word, or           │
3750       │                    │                 │               │ an assignment (i.e. two               │
3751       │                    │                 │               │ words, joined by "="). In the         │
3752       │                    │                 │               │ former case the kernel                │
3753       │                    │                 │               │ command line is searched for          │
3754       │                    │                 │               │ the word appearing as is, or          │
3755       │                    │                 │               │ as left hand side of an               │
3756       │                    │                 │               │ assignment. In the latter             │
3757       │                    │                 │               │ case, the exact assignment is         │
3758       │                    │                 │               │ looked for with right and             │
3759       │                    │                 │               │ left hand side matching.              │
3760       │                    │                 │               │ Wildcard patterns are not             │
3761       │                    │                 │               │ supported.                            │
3762       │                    │                 │               │                                       │
3763       │                    │                 │               │  See                                  │
3764       │                    │                 │               │ NMSettingMatch:interface-name         │
3765       │                    │                 │               │ for how special characters            │
3766       │                    │                 │               │ '|', '&', '!' and '\\' are            │
3767       │                    │                 │               │ used for optional and                 │
3768       │                    │                 │               │ mandatory matches and                 │
3769       │                    │                 │               │ inverting the match.                  │
3770       ├────────────────────┼─────────────────┼───────────────┼───────────────────────────────────────┤
3771       │path                │ array of string │               │ A list of paths to match              │
3772       │                    │                 │               │ against the ID_PATH udev              │
3773       │                    │                 │               │ property of devices. ID_PATH          │
3774       │                    │                 │               │ represents the topological            │
3775       │                    │                 │               │ persistent path of a device.          │
3776       │                    │                 │               │ It typically contains a               │
3777       │                    │                 │               │ subsystem string (pci, usb,           │
3778       │                    │                 │               │ platform, etc.) and a                 │
3779       │                    │                 │               │ subsystem-specific                    │
3780       │                    │                 │               │ identifier.                           │
3781       │                    │                 │               │                                       │
3782       │                    │                 │               │  For PCI devices the path has         │
3783       │                    │                 │               │ the form                              │
3784       │                    │                 │               │ "pci-$domain:$bus:$device.$function", │
3785       │                    │                 │               │ where each variable is an             │
3786       │                    │                 │               │ hexadecimal value; for                │
3787       │                    │                 │               │ example "pci-0000:0a:00.0".           │
3788       │                    │                 │               │                                       │
3789       │                    │                 │               │  The path of a device can be          │
3790       │                    │                 │               │ obtained with "udevadm info           │
3791       │                    │                 │               │ /sys/class/net/$dev | grep            │
3792       │                    │                 │               │ ID_PATH=" or by looking at            │
3793       │                    │                 │               │ the "path" property exported          │
3794       │                    │                 │               │ by NetworkManager ("nmcli -f          │
3795       │                    │                 │               │ general.path device show              │
3796       │                    │                 │               │ $dev").                               │
3797       │                    │                 │               │                                       │
3798       │                    │                 │               │  Each element of the list is          │
3799       │                    │                 │               │ a shell wildcard pattern.             │
3800       │                    │                 │               │                                       │
3801       │                    │                 │               │  See                                  │
3802       │                    │                 │               │ NMSettingMatch:interface-name         │
3803       │                    │                 │               │ for how special characters            │
3804       │                    │                 │               │ '|', '&', '!' and '\\' are            │
3805       │                    │                 │               │ used for optional and                 │
3806       │                    │                 │               │ mandatory matches and                 │
3807       │                    │                 │               │ inverting the pattern.                │
3808       └────────────────────┴─────────────────┴───────────────┴───────────────────────────────────────┘
3809
3810   802-11-olpc-mesh setting
3811       OLPC Wireless Mesh Settings.
3812
3813       ┌─────────────────────┬────────────┬───────────────┬──────────────────┐
3814Key Name             Value Type Default Value Value            
3815       │                     │            │               │ Description      
3816       ├─────────────────────┼────────────┼───────────────┼──────────────────┤
3817       │channel              │ uint32     │ 0             │ Channel on which │
3818       │                     │            │               │ the mesh network │
3819       │                     │            │               │ to join is       │
3820       │                     │            │               │ located.         │
3821       ├─────────────────────┼────────────┼───────────────┼──────────────────┤
3822       │dhcp-anycast-address │ byte array │               │ Anycast DHCP MAC │
3823       │                     │            │               │ address used     │
3824       │                     │            │               │ when requesting  │
3825       │                     │            │               │ an IP address    │
3826       │                     │            │               │ via DHCP. The    │
3827       │                     │            │               │ specific anycast │
3828       │                     │            │               │ address used     │
3829       │                     │            │               │ determines which │
3830       │                     │            │               │ DHCP server      │
3831       │                     │            │               │ class answers    │
3832       │                     │            │               │ the request.     │
3833       │                     │            │               │                  │
3834       │                     │            │               │  This is         │
3835       │                     │            │               │ currently only   │
3836       │                     │            │               │ implemented by   │
3837       │                     │            │               │ dhclient DHCP    │
3838       │                     │            │               │ plugin.          │
3839       ├─────────────────────┼────────────┼───────────────┼──────────────────┤
3840       │ssid                 │ byte array │               │ SSID of the mesh │
3841       │                     │            │               │ network to join. │
3842       └─────────────────────┴────────────┴───────────────┴──────────────────┘
3843
3844   ovs-bridge setting
3845       OvsBridge Link Settings.
3846
3847       ┌──────────────────────┬────────────┬───────────────┬──────────────────┐
3848Key Name              Value Type Default Value Value            
3849       │                      │            │               │ Description      
3850       ├──────────────────────┼────────────┼───────────────┼──────────────────┤
3851       │datapath-type         │ string     │               │ The data path    │
3852       │                      │            │               │ type. One of     │
3853       │                      │            │               │ "system",        │
3854       │                      │            │               │ "netdev" or      │
3855       │                      │            │               │ empty.           │
3856       ├──────────────────────┼────────────┼───────────────┼──────────────────┤
3857       │fail-mode             │ string     │               │ The bridge       │
3858       │                      │            │               │ failure mode.    │
3859       │                      │            │               │ One of "secure", │
3860       │                      │            │               │ "standalone" or  │
3861       │                      │            │               │ empty.           │
3862       ├──────────────────────┼────────────┼───────────────┼──────────────────┤
3863       │mcast-snooping-enable │ boolean    │ FALSE         │ Enable or        │
3864       │                      │            │               │ disable          │
3865       │                      │            │               │ multicast        │
3866       │                      │            │               │ snooping.        │
3867       ├──────────────────────┼────────────┼───────────────┼──────────────────┤
3868       │rstp-enable           │ boolean    │ FALSE         │ Enable or        │
3869       │                      │            │               │ disable RSTP.    │
3870       ├──────────────────────┼────────────┼───────────────┼──────────────────┤
3871       │stp-enable            │ boolean    │ FALSE         │ Enable or        │
3872       │                      │            │               │ disable STP.     │
3873       └──────────────────────┴────────────┴───────────────┴──────────────────┘
3874
3875   ovs-dpdk setting
3876       OvsDpdk Link Settings.
3877
3878       ┌─────────┬────────────┬───────────────┬──────────────────┐
3879Key Name Value Type Default Value Value            
3880       │         │            │               │ Description      
3881       ├─────────┼────────────┼───────────────┼──────────────────┤
3882       │devargs  │ string     │               │ Open vSwitch     │
3883       │         │            │               │ DPDK device      │
3884       │         │            │               │ arguments.       │
3885       ├─────────┼────────────┼───────────────┼──────────────────┤
3886       │n-rxq    │ uint32     │ 0             │ Open vSwitch     │
3887       │         │            │               │ DPDK number of   │
3888       │         │            │               │ rx queues.       │
3889       │         │            │               │ Defaults to zero │
3890       │         │            │               │ which means to   │
3891       │         │            │               │ leave the        │
3892       │         │            │               │ parameter in OVS │
3893       │         │            │               │ unspecified and  │
3894       │         │            │               │ effectively      │
3895       │         │            │               │ configures one   │
3896       │         │            │               │ queue.           │
3897       └─────────┴────────────┴───────────────┴──────────────────┘
3898
3899   ovs-interface setting
3900       Open vSwitch Interface Settings.
3901
3902       ┌─────────┬────────────┬───────────────┬──────────────────┐
3903Key Name Value Type Default Value Value            
3904       │         │            │               │ Description      
3905       ├─────────┼────────────┼───────────────┼──────────────────┤
3906       │type     │ string     │               │ The interface    │
3907       │         │            │               │ type. Either     │
3908       │         │            │               │ "internal",      │
3909       │         │            │               │ "system",        │
3910       │         │            │               │ "patch", "dpdk", │
3911       │         │            │               │ or empty.        │
3912       └─────────┴────────────┴───────────────┴──────────────────┘
3913
3914   ovs-patch setting
3915       OvsPatch Link Settings.
3916
3917       ┌─────────┬────────────┬───────────────┬──────────────────┐
3918Key Name Value Type Default Value Value            
3919       │         │            │               │ Description      
3920       ├─────────┼────────────┼───────────────┼──────────────────┤
3921       │peer     │ string     │               │ Specifies the    │
3922       │         │            │               │ name of the      │
3923       │         │            │               │ interface for    │
3924       │         │            │               │ the other side   │
3925       │         │            │               │ of the patch.    │
3926       │         │            │               │ The patch on the │
3927       │         │            │               │ other side must  │
3928       │         │            │               │ also set this    │
3929       │         │            │               │ interface as     │
3930       │         │            │               │ peer.            │
3931       └─────────┴────────────┴───────────────┴──────────────────┘
3932
3933   ovs-port setting
3934       OvsPort Link Settings.
3935
3936       ┌───────────────┬────────────┬───────────────┬────────────────────┐
3937Key Name       Value Type Default Value Value              
3938       │               │            │               │ Description        
3939       ├───────────────┼────────────┼───────────────┼────────────────────┤
3940       │bond-downdelay │ uint32     │ 0             │ The time port      │
3941       │               │            │               │ must be inactive   │
3942       │               │            │               │ in order to be     │
3943       │               │            │               │ considered down.   │
3944       ├───────────────┼────────────┼───────────────┼────────────────────┤
3945       │bond-mode      │ string     │               │ Bonding mode.      │
3946       │               │            │               │ One of             │
3947       │               │            │               │ "active-backup",   │
3948       │               │            │               │ "balance-slb",     │
3949       │               │            │               │ or                 │
3950       │               │            │               │ "balance-tcp".     │
3951       ├───────────────┼────────────┼───────────────┼────────────────────┤
3952       │bond-updelay   │ uint32     │ 0             │ The time port      │
3953       │               │            │               │ must be active     │
3954       │               │            │               │ before it starts   │
3955       │               │            │               │ forwarding         │
3956       │               │            │               │ traffic.           │
3957       ├───────────────┼────────────┼───────────────┼────────────────────┤
3958       │lacp           │ string     │               │ LACP mode. One     │
3959       │               │            │               │ of "active",       │
3960       │               │            │               │ "off", or          │
3961       │               │            │               │ "passive".         │
3962       ├───────────────┼────────────┼───────────────┼────────────────────┤
3963       │tag            │ uint32     │ 0             │ The VLAN tag in    │
3964       │               │            │               │ the range          │
3965       │               │            │               │ 0-4095.            │
3966       ├───────────────┼────────────┼───────────────┼────────────────────┤
3967       │vlan-mode      │ string     │               │ The VLAN mode.     │
3968       │               │            │               │ One of "access",   │
3969       │               │            │               │ "native-tagged",   │
3970       │               │            │               │ "native-untagged", │
3971       │               │            │               │ "trunk" or         │
3972       │               │            │               │ unset.             │
3973       └───────────────┴────────────┴───────────────┴────────────────────┘
3974
3975   ppp setting
3976       Point-to-Point Protocol Settings.
3977
3978       ┌──────────────────┬────────────┬───────────────┬─────────────────────┐
3979Key Name          Value Type Default Value Value               
3980       │                  │            │               │ Description         
3981       ├──────────────────┼────────────┼───────────────┼─────────────────────┤
3982       │baud              │ uint32     │ 0             │ If non-zero,        │
3983       │                  │            │               │ instruct pppd to    │
3984       │                  │            │               │ set the serial      │
3985       │                  │            │               │ port to the         │
3986       │                  │            │               │ specified           │
3987       │                  │            │               │ baudrate.  This     │
3988       │                  │            │               │ value should        │
3989       │                  │            │               │ normally be left    │
3990       │                  │            │               │ as 0 to             │
3991       │                  │            │               │ automatically       │
3992       │                  │            │               │ choose the          │
3993       │                  │            │               │ speed.              │
3994       ├──────────────────┼────────────┼───────────────┼─────────────────────┤
3995       │crtscts           │ boolean    │ FALSE         │ If TRUE, specify    │
3996       │                  │            │               │ that pppd should    │
3997       │                  │            │               │ set the serial      │
3998       │                  │            │               │ port to use         │
3999       │                  │            │               │ hardware flow       │
4000       │                  │            │               │ control with RTS    │
4001       │                  │            │               │ and CTS signals.    │
4002       │                  │            │               │ This value          │
4003       │                  │            │               │ should normally     │
4004       │                  │            │               │ be set to FALSE.    │
4005       ├──────────────────┼────────────┼───────────────┼─────────────────────┤
4006       │lcp-echo-failure  │ uint32     │ 0             │ If non-zero,        │
4007       │                  │            │               │ instruct pppd to    │
4008       │                  │            │               │ presume the         │
4009       │                  │            │               │ connection to       │
4010       │                  │            │               │ the peer has        │
4011       │                  │            │               │ failed if the       │
4012       │                  │            │               │ specified number    │
4013       │                  │            │               │ of LCP              │
4014       │                  │            │               │ echo-requests go    │
4015       │                  │            │               │ unanswered by       │
4016       │                  │            │               │ the peer.  The      │
4017       │                  │            │               │ "lcp-echo-interval" │
4018       │                  │            │               │ property must       │
4019       │                  │            │               │ also be set to a    │
4020       │                  │            │               │ non-zero value      │
4021       │                  │            │               │ if this property    │
4022       │                  │            │               │ is used.            │
4023       ├──────────────────┼────────────┼───────────────┼─────────────────────┤
4024       │lcp-echo-interval │ uint32     │ 0             │ If non-zero,        │
4025       │                  │            │               │ instruct pppd to    │
4026       │                  │            │               │ send an LCP         │
4027       │                  │            │               │ echo-request frame  │
4028       │                  │            │               │ to the peer every n │
4029       │                  │            │               │ seconds (where n is │
4030       │                  │            │               │ the specified       │
4031       │                  │            │               │ value).  Note that  │
4032       │                  │            │               │ some PPP peers will │
4033       │                  │            │               │ respond to echo     │
4034       │                  │            │               │ requests and some   │
4035       │                  │            │               │ will not, and it is │
4036       │                  │            │               │ not possible to     │
4037       │                  │            │               │ autodetect this.    │
4038       ├──────────────────┼────────────┼───────────────┼─────────────────────┤
4039       │mppe-stateful     │ boolean    │ FALSE         │ If TRUE, stateful   │
4040       │                  │            │               │ MPPE is used.  See  │
4041       │                  │            │               │ pppd documentation  │
4042       │                  │            │               │ for more            │
4043       │                  │            │               │ information on      │
4044       │                  │            │               │ stateful MPPE.      │
4045       ├──────────────────┼────────────┼───────────────┼─────────────────────┤
4046       │mru               │ uint32     │ 0             │ If non-zero,        │
4047       │                  │            │               │ instruct pppd to    │
4048       │                  │            │               │ request that the    │
4049       │                  │            │               │ peer send packets   │
4050       │                  │            │               │ no larger than the  │
4051       │                  │            │               │ specified size.  If │
4052       │                  │            │               │ non-zero, the MRU   │
4053       │                  │            │               │ should be between   │
4054       │                  │            │               │ 128 and 16384.      │
4055       ├──────────────────┼────────────┼───────────────┼─────────────────────┤
4056       │mtu               │ uint32     │ 0             │ If non-zero,        │
4057       │                  │            │               │ instruct pppd to    │
4058       │                  │            │               │ send packets no     │
4059       │                  │            │               │ larger than the     │
4060       │                  │            │               │ specified size.     │
4061       ├──────────────────┼────────────┼───────────────┼─────────────────────┤
4062       │no-vj-comp        │ boolean    │ FALSE         │ If TRUE, Van        │
4063       │                  │            │               │ Jacobsen TCP header │
4064       │                  │            │               │ compression will    │
4065       │                  │            │               │ not be requested.   │
4066       ├──────────────────┼────────────┼───────────────┼─────────────────────┤
4067       │noauth            │ boolean    │ TRUE          │ If TRUE, do not     │
4068       │                  │            │               │ require the other   │
4069       │                  │            │               │ side (usually the   │
4070       │                  │            │               │ PPP server) to      │
4071       │                  │            │               │ authenticate itself │
4072       │                  │            │               │ to the client.  If  │
4073       │                  │            │               │ FALSE, require      │
4074       │                  │            │               │ authentication from │
4075       │                  │            │               │ the remote side.    │
4076       │                  │            │               │ In almost all       │
4077       │                  │            │               │ cases, this should  │
4078       │                  │            │               │ be TRUE.            │
4079       ├──────────────────┼────────────┼───────────────┼─────────────────────┤
4080       │nobsdcomp         │ boolean    │ FALSE         │ If TRUE, BSD        │
4081       │                  │            │               │ compression will    │
4082       │                  │            │               │ not be requested.   │
4083       ├──────────────────┼────────────┼───────────────┼─────────────────────┤
4084       │nodeflate         │ boolean    │ FALSE         │ If TRUE, "deflate"  │
4085       │                  │            │               │ compression will    │
4086       │                  │            │               │ not be requested.   │
4087       ├──────────────────┼────────────┼───────────────┼─────────────────────┤
4088       │refuse-chap       │ boolean    │ FALSE         │ If TRUE, the CHAP   │
4089       │                  │            │               │ authentication      │
4090       │                  │            │               │ method will not be  │
4091       │                  │            │               │ used.               │
4092       ├──────────────────┼────────────┼───────────────┼─────────────────────┤
4093       │refuse-eap        │ boolean    │ FALSE         │ If TRUE, the EAP    │
4094       │                  │            │               │ authentication      │
4095       │                  │            │               │ method will not be  │
4096       │                  │            │               │ used.               │
4097       ├──────────────────┼────────────┼───────────────┼─────────────────────┤
4098       │refuse-mschap     │ boolean    │ FALSE         │ If TRUE, the MSCHAP │
4099       │                  │            │               │ authentication      │
4100       │                  │            │               │ method will not be  │
4101       │                  │            │               │ used.               │
4102       ├──────────────────┼────────────┼───────────────┼─────────────────────┤
4103       │refuse-mschapv2   │ boolean    │ FALSE         │ If TRUE, the        │
4104       │                  │            │               │ MSCHAPv2            │
4105       │                  │            │               │ authentication      │
4106       │                  │            │               │ method will not be  │
4107       │                  │            │               │ used.               │
4108       ├──────────────────┼────────────┼───────────────┼─────────────────────┤
4109       │refuse-pap        │ boolean    │ FALSE         │ If TRUE, the PAP    │
4110       │                  │            │               │ authentication      │
4111       │                  │            │               │ method will not be  │
4112       │                  │            │               │ used.               │
4113       ├──────────────────┼────────────┼───────────────┼─────────────────────┤
4114       │require-mppe      │ boolean    │ FALSE         │ If TRUE, MPPE       │
4115       │                  │            │               │ (Microsoft          │
4116       │                  │            │               │ Point-to-Point      │
4117       │                  │            │               │ Encryption) will be │
4118       │                  │            │               │ required for the    │
4119       │                  │            │               │ PPP session.  If    │
4120       │                  │            │               │ either 64-bit or    │
4121       │                  │            │               │ 128-bit MPPE is not │
4122       │                  │            │               │ available the       │
4123       │                  │            │               │ session will fail.  │
4124       │                  │            │               │ Note that MPPE is   │
4125       │                  │            │               │ not used on mobile  │
4126       │                  │            │               │ broadband           │
4127       │                  │            │               │ connections.        │
4128       ├──────────────────┼────────────┼───────────────┼─────────────────────┤
4129       │require-mppe-128  │ boolean    │ FALSE         │ If TRUE, 128-bit    │
4130       │                  │            │               │ MPPE (Microsoft     │
4131       │                  │            │               │ Point-to-Point      │
4132       │                  │            │               │ Encryption) will be │
4133       │                  │            │               │ required for the    │
4134       │                  │            │               │ PPP session, and    │
4135       │                  │            │               │ the "require-mppe"  │
4136       │                  │            │               │ property must also  │
4137       │                  │            │               │ be set to TRUE.  If │
4138       │                  │            │               │ 128-bit MPPE is not │
4139       │                  │            │               │ available the       │
4140       │                  │            │               │ session will fail.  │
4141       └──────────────────┴────────────┴───────────────┴─────────────────────┘
4142
4143   pppoe setting
4144       PPP-over-Ethernet Settings.
4145
4146       ┌───────────────┬──────────────────────┬───────────────┬──────────────────────┐
4147Key Name       Value Type           Default Value Value                
4148       │               │                      │               │ Description          
4149       ├───────────────┼──────────────────────┼───────────────┼──────────────────────┤
4150       │parent         │ string               │               │ If given,            │
4151       │               │                      │               │ specifies the        │
4152       │               │                      │               │ parent interface     │
4153       │               │                      │               │ name on which        │
4154       │               │                      │               │ this PPPoE           │
4155       │               │                      │               │ connection           │
4156       │               │                      │               │ should be            │
4157       │               │                      │               │ created.  If         │
4158       │               │                      │               │ this property is     │
4159       │               │                      │               │ not specified,       │
4160       │               │                      │               │ the connection       │
4161       │               │                      │               │ is activated on      │
4162       │               │                      │               │ the interface        │
4163       │               │                      │               │ specified in         │
4164       │               │                      │               │ "interface-name"     │
4165       │               │                      │               │ of                   │
4166       │               │                      │               │ NMSettingConnection. │
4167       ├───────────────┼──────────────────────┼───────────────┼──────────────────────┤
4168       │password       │ string               │               │ Password used to     │
4169       │               │                      │               │ authenticate with    │
4170       │               │                      │               │ the PPPoE service.   │
4171       ├───────────────┼──────────────────────┼───────────────┼──────────────────────┤
4172       │password-flags │ NMSettingSecretFlags │               │ Flags indicating how │
4173       │               │ (uint32)             │               │ to handle the        │
4174       │               │                      │               │ "password" property. │
4175       ├───────────────┼──────────────────────┼───────────────┼──────────────────────┤
4176       │service        │ string               │               │ If specified,        │
4177       │               │                      │               │ instruct PPPoE to    │
4178       │               │                      │               │ only initiate        │
4179       │               │                      │               │ sessions with access │
4180       │               │                      │               │ concentrators that   │
4181       │               │                      │               │ provide the          │
4182       │               │                      │               │ specified service.   │
4183       │               │                      │               │ For most providers,  │
4184       │               │                      │               │ this should be left  │
4185       │               │                      │               │ blank.  It is only   │
4186       │               │                      │               │ required if there    │
4187       │               │                      │               │ are multiple access  │
4188       │               │                      │               │ concentrators or a   │
4189       │               │                      │               │ specific service is  │
4190       │               │                      │               │ known to be          │
4191       │               │                      │               │ required.            │
4192       ├───────────────┼──────────────────────┼───────────────┼──────────────────────┤
4193       │username       │ string               │               │ Username used to     │
4194       │               │                      │               │ authenticate with    │
4195       │               │                      │               │ the PPPoE service.   │
4196       └───────────────┴──────────────────────┴───────────────┴──────────────────────┘
4197
4198   proxy setting
4199       WWW Proxy Settings.
4200
4201       ┌─────────────┬────────────┬───────────────┬──────────────────────────────┐
4202Key Name     Value Type Default Value Value                        
4203       │             │            │               │ Description                  
4204       ├─────────────┼────────────┼───────────────┼──────────────────────────────┤
4205       │browser-only │ boolean    │ FALSE         │ Whether the                  │
4206       │             │            │               │ proxy                        │
4207       │             │            │               │ configuration is             │
4208       │             │            │               │ for browser                  │
4209       │             │            │               │ only.                        │
4210       ├─────────────┼────────────┼───────────────┼──────────────────────────────┤
4211       │method       │ int32      │ 0             │ Method for proxy             │
4212       │             │            │               │ configuration,               │
4213       │             │            │               │ Default is                   │
4214       │             │            │               │ NM_SETTING_PROXY_METHOD_NONE │
4215       │             │            │               │ (0)                          │
4216       ├─────────────┼────────────┼───────────────┼──────────────────────────────┤
4217       │pac-script   │ string     │               │ PAC script for the           │
4218       │             │            │               │ connection. This is an UTF-8 │
4219       │             │            │               │ encoded javascript code that │
4220       │             │            │               │ defines a FindProxyForURL()  │
4221       │             │            │               │ function.                    │
4222       ├─────────────┼────────────┼───────────────┼──────────────────────────────┤
4223       │pac-url      │ string     │               │ PAC URL for obtaining PAC    │
4224       │             │            │               │ file.                        │
4225       └─────────────┴────────────┴───────────────┴──────────────────────────────┘
4226
4227   serial setting
4228       Serial Link Settings.
4229
4230       ┌───────────┬────────────┬───────────────┬──────────────────┐
4231Key Name   Value Type Default Value Value            
4232       │           │            │               │ Description      
4233       ├───────────┼────────────┼───────────────┼──────────────────┤
4234       │baud       │ uint32     │ 57600         │ Speed to use for │
4235       │           │            │               │ communication    │
4236       │           │            │               │ over the serial  │
4237       │           │            │               │ port.  Note that │
4238       │           │            │               │ this value       │
4239       │           │            │               │ usually has no   │
4240       │           │            │               │ effect for       │
4241       │           │            │               │ mobile broadband │
4242       │           │            │               │ modems as they   │
4243       │           │            │               │ generally ignore │
4244       │           │            │               │ speed settings   │
4245       │           │            │               │ and use the      │
4246       │           │            │               │ highest          │
4247       │           │            │               │ available speed. │
4248       ├───────────┼────────────┼───────────────┼──────────────────┤
4249       │bits       │ uint32     │ 8             │ Byte-width of    │
4250       │           │            │               │ the serial       │
4251       │           │            │               │ communication.   │
4252       │           │            │               │ The 8 in "8n1"   │
4253       │           │            │               │ for example.     │
4254       ├───────────┼────────────┼───────────────┼──────────────────┤
4255       │parity     │ byte       │               │ The connection   │
4256       │           │            │               │ parity: 69       │
4257       │           │            │               │ (ASCII 'E') for  │
4258       │           │            │               │ even parity, 111 │
4259       │           │            │               │ (ASCII 'o') for  │
4260       │           │            │               │ odd, 110 (ASCII  │
4261       │           │            │               │ 'n') for none.   │
4262       ├───────────┼────────────┼───────────────┼──────────────────┤
4263       │send-delay │ uint64     │ 0             │ Time to delay    │
4264       │           │            │               │ between each     │
4265       │           │            │               │ byte sent to the │
4266       │           │            │               │ modem, in        │
4267       │           │            │               │ microseconds.    │
4268       ├───────────┼────────────┼───────────────┼──────────────────┤
4269       │stopbits   │ uint32     │ 1             │ Number of stop   │
4270       │           │            │               │ bits for         │
4271       │           │            │               │ communication on │
4272       │           │            │               │ the serial port. │
4273       │           │            │               │ Either 1 or 2.   │
4274       │           │            │               │ The 1 in "8n1"   │
4275       │           │            │               │ for example.     │
4276       └───────────┴────────────┴───────────────┴──────────────────┘
4277
4278   sriov setting
4279       SR-IOV settings.
4280
4281       ┌──────────────────┬──────────────────┬───────────────┬───────────────────────────┐
4282Key Name          Value Type       Default Value Value                     
4283       │                  │                  │               │ Description               
4284       ├──────────────────┼──────────────────┼───────────────┼───────────────────────────┤
4285       │autoprobe-drivers │ NMTernary        │               │ Whether to                │
4286       │                  │ (int32)          │               │ autoprobe                 │
4287       │                  │                  │               │ virtual                   │
4288       │                  │                  │               │ functions by a            │
4289       │                  │                  │               │ compatible                │
4290       │                  │                  │               │ driver.                   │
4291       │                  │                  │               │                           │
4292       │                  │                  │               │  If set to                │
4293       │                  │                  │               │ NM_TERNARY_TRUE           │
4294       │                  │                  │               │ (1), the kernel           │
4295       │                  │                  │               │ will try to bind          │
4296       │                  │                  │               │ VFs to a                  │
4297       │                  │                  │               │ compatible                │
4298       │                  │                  │               │ driver and if             │
4299       │                  │                  │               │ this succeeds a           │
4300       │                  │                  │               │ new network               │
4301       │                  │                  │               │ interface will            │
4302       │                  │                  │               │ be instantiated           │
4303       │                  │                  │               │ for each VF.              │
4304       │                  │                  │               │                           │
4305       │                  │                  │               │  If set to                │
4306       │                  │                  │               │ NM_TERNARY_FALSE          │
4307       │                  │                  │               │ (0), VFs will             │
4308       │                  │                  │               │ not be claimed            │
4309       │                  │                  │               │ and no network            │
4310       │                  │                  │               │ interfaces will           │
4311       │                  │                  │               │ be created for            │
4312       │                  │                  │               │ them.                     │
4313       │                  │                  │               │                           │
4314       │                  │                  │               │  When set to              │
4315       │                  │                  │               │ NM_TERNARY_DEFAULT        │
4316       │                  │                  │               │ (-1), the global          │
4317       │                  │                  │               │ default is used;          │
4318       │                  │                  │               │ in case the               │
4319       │                  │                  │               │ global default            │
4320       │                  │                  │               │ is unspecified            │
4321       │                  │                  │               │ it is assumed to          │
4322       │                  │                  │               │ be                        │
4323       │                  │                  │               │ NM_TERNARY_TRUE           │
4324       │                  │                  │               │ (1).                      │
4325       ├──────────────────┼──────────────────┼───────────────┼───────────────────────────┤
4326       │total-vfs         │ uint32           │ 0             │ The total number          │
4327       │                  │                  │               │ of virtual                │
4328       │                  │                  │               │ functions to              │
4329       │                  │                  │               │ create.                   │
4330       │                  │                  │               │                           │
4331       │                  │                  │               │  Note that when           │
4332       │                  │                  │               │ the sriov setting         │
4333       │                  │                  │               │ is present                │
4334       │                  │                  │               │ NetworkManager            │
4335       │                  │                  │               │ enforces the              │
4336       │                  │                  │               │ number of virtual         │
4337       │                  │                  │               │ functions on the          │
4338       │                  │                  │               │ interface (also           │
4339       │                  │                  │               │ when it is zero)          │
4340       │                  │                  │               │ during activation         │
4341       │                  │                  │               │ and resets it upon        │
4342       │                  │                  │               │ deactivation. To          │
4343       │                  │                  │               │ prevent any               │
4344       │                  │                  │               │ changes to SR-IOV         │
4345       │                  │                  │               │ parameters don't          │
4346       │                  │                  │               │ add a sriov               │
4347       │                  │                  │               │ setting to the            │
4348       │                  │                  │               │ connection.               │
4349       ├──────────────────┼──────────────────┼───────────────┼───────────────────────────┤
4350       │vfs               │ array of vardict │               │ Array of virtual          │
4351       │                  │                  │               │ function                  │
4352       │                  │                  │               │ descriptors.              │
4353       │                  │                  │               │                           │
4354       │                  │                  │               │  Each VF                  │
4355       │                  │                  │               │ descriptor is a           │
4356       │                  │                  │               │ dictionary mapping        │
4357       │                  │                  │               │ attribute names to        │
4358       │                  │                  │               │ GVariant values.          │
4359       │                  │                  │               │ The 'index' entry         │
4360       │                  │                  │               │ is mandatory for          │
4361       │                  │                  │               │ each VF.                  │
4362       │                  │                  │               │                           │
4363       │                  │                  │               │  When represented         │
4364       │                  │                  │               │ as string a VF is         │
4365       │                  │                  │               │ in the form:              │
4366       │                  │                  │               │                           │
4367       │                  │                  │               │  "INDEX                   │
4368       │                  │                  │               │ [ATTR=VALUE[              │
4369       │                  │                  │               │ ATTR=VALUE]...]".         │
4370       │                  │                  │               │                           │
4371       │                  │                  │               │  for example:             │
4372       │                  │                  │               │                           │
4373       │                  │                  │               │  "2                       │
4374       │                  │                  │               │ mac=00:11:22:33:44:55     │
4375       │                  │                  │               │ spoof-check=true".        │
4376       │                  │                  │               │                           │
4377       │                  │                  │               │  Multiple VFs can         │
4378       │                  │                  │               │ be specified using        │
4379       │                  │                  │               │ a comma as                │
4380       │                  │                  │               │ separator.                │
4381       │                  │                  │               │ Currently, the            │
4382       │                  │                  │               │ following                 │
4383       │                  │                  │               │ attributes are            │
4384       │                  │                  │               │ supported: mac,           │
4385       │                  │                  │               │ spoof-check,              │
4386       │                  │                  │               │ trust,                    │
4387       │                  │                  │               │ min-tx-rate,              │
4388       │                  │                  │               │ max-tx-rate,              │
4389       │                  │                  │               │ vlans.                    │
4390       │                  │                  │               │                           │
4391       │                  │                  │               │  The "vlans"              │
4392       │                  │                  │               │ attribute is              │
4393       │                  │                  │               │ represented as a          │
4394       │                  │                  │               │ semicolon-separated       │
4395       │                  │                  │               │ list of VLAN              │
4396       │                  │                  │               │ descriptors, where        │
4397       │                  │                  │               │ each descriptor           │
4398       │                  │                  │               │ has the form              │
4399       │                  │                  │               │                           │
4400       │                  │                  │               │  "ID[.PRIORITY[.PROTO]]". │
4401       │                  │                  │               │                           │
4402       │                  │                  │               │  PROTO can be             │
4403       │                  │                  │               │ either 'q' for            │
4404       │                  │                  │               │ 802.1Q (the               │
4405       │                  │                  │               │ default) or 'ad'          │
4406       │                  │                  │               │ for 802.1ad.              │
4407       └──────────────────┴──────────────────┴───────────────┴───────────────────────────┘
4408
4409   tc setting
4410       Linux Traffic Control Settings.
4411
4412       ┌─────────┬──────────────────┬───────────────┬──────────────────────────┐
4413Key Name Value Type       Default Value Value                    
4414       │         │                  │               │ Description              
4415       ├─────────┼──────────────────┼───────────────┼──────────────────────────┤
4416       │qdiscs   │ array of vardict │               │ Array of TC              │
4417       │         │                  │               │ queueing                 │
4418       │         │                  │               │ disciplines.             │
4419       │         │                  │               │                          │
4420       │         │                  │               │  When the "tc"           │
4421       │         │                  │               │ setting is               │
4422       │         │                  │               │ present, qdiscs          │
4423       │         │                  │               │ from this                │
4424       │         │                  │               │ property are             │
4425       │         │                  │               │ applied upon             │
4426       │         │                  │               │ activation. If           │
4427       │         │                  │               │ the property is          │
4428       │         │                  │               │ empty, all               │
4429       │         │                  │               │ qdiscs are               │
4430       │         │                  │               │ removed and the          │
4431       │         │                  │               │ device will only         │
4432       │         │                  │               │ have the default         │
4433       │         │                  │               │ qdisc assigned           │
4434       │         │                  │               │ by kernel                │
4435       │         │                  │               │ according to the         │
4436       │         │                  │               │ "net.core.default_qdisc" │
4437       │         │                  │               │ sysctl.                  │
4438       │         │                  │               │                          │
4439       │         │                  │               │  If the "tc"             │
4440       │         │                  │               │ setting is not           │
4441       │         │                  │               │ present,                 │
4442       │         │                  │               │ NetworkManager           │
4443       │         │                  │               │ doesn't touch            │
4444       │         │                  │               │ the qdiscs               │
4445       │         │                  │               │ present on the           │
4446       │         │                  │               │ interface.               │
4447       ├─────────┼──────────────────┼───────────────┼──────────────────────────┤
4448       │tfilters │ array of vardict │               │ Array of TC traffic      │
4449       │         │                  │               │ filters.                 │
4450       │         │                  │               │                          │
4451       │         │                  │               │  When the "tc" setting   │
4452       │         │                  │               │ is present, filters from │
4453       │         │                  │               │ this property are        │
4454       │         │                  │               │ applied upon activation. │
4455       │         │                  │               │ If the property is       │
4456       │         │                  │               │ empty, NetworkManager    │
4457       │         │                  │               │ removes all the filters. │
4458       │         │                  │               │                          │
4459       │         │                  │               │  If the "tc" setting is  │
4460       │         │                  │               │ not present,             │
4461       │         │                  │               │ NetworkManager doesn't   │
4462       │         │                  │               │ touch the filters        │
4463       │         │                  │               │ present on the           │
4464       │         │                  │               │ interface.               │
4465       └─────────┴──────────────────┴───────────────┴──────────────────────────┘
4466
4467   team setting
4468       Teaming Settings.
4469
4470       ┌────────────────────────────┬──────────────────┬───────────────┬──────────────────────────────┐
4471Key Name                    Value Type       Default Value Value                        
4472       │                            │                  │               │ Description                  
4473       ├────────────────────────────┼──────────────────┼───────────────┼──────────────────────────────┤
4474       │config                      │ string           │               │ The JSON                     │
4475       │                            │                  │               │ configuration                │
4476       │                            │                  │               │ for the team                 │
4477       │                            │                  │               │ network                      │
4478       │                            │                  │               │ interface.  The              │
4479       │                            │                  │               │ property should              │
4480       │                            │                  │               │ contain raw JSON             │
4481       │                            │                  │               │ configuration                │
4482       │                            │                  │               │ data suitable                │
4483       │                            │                  │               │ for teamd,                   │
4484       │                            │                  │               │ because the                  │
4485       │                            │                  │               │ value is passed              │
4486       │                            │                  │               │ directly to                  │
4487       │                            │                  │               │ teamd. If not                │
4488       │                            │                  │               │ specified, the               │
4489       │                            │                  │               │ default                      │
4490       │                            │                  │               │ configuration is             │
4491       │                            │                  │               │ used.  See man               │
4492       │                            │                  │               │ teamd.conf for               │
4493       │                            │                  │               │ the format                   │
4494       │                            │                  │               │ details.                     │
4495       ├────────────────────────────┼──────────────────┼───────────────┼──────────────────────────────┤
4496       │interface-name              │ string           │               │ Deprecated in                │
4497       │                            │                  │               │ favor of                     │
4498       │                            │                  │               │ connection.interface-name,   │
4499       │                            │                  │               │ but can be used              │
4500       │                            │                  │               │ for                          │
4501       │                            │                  │               │ backward-compatibility       │
4502       │                            │                  │               │ with older                   │
4503       │                            │                  │               │ daemons, to set              │
4504       │                            │                  │               │ the team's                   │
4505       │                            │                  │               │ interface name.              │
4506       ├────────────────────────────┼──────────────────┼───────────────┼──────────────────────────────┤
4507       │link-watchers               │ array of vardict │               │ Link watchers                │
4508       │                            │                  │               │ configuration for the        │
4509       │                            │                  │               │ connection: each link        │
4510       │                            │                  │               │ watcher is defined by a      │
4511       │                            │                  │               │ dictionary, whose keys       │
4512       │                            │                  │               │ depend upon the selected     │
4513       │                            │                  │               │ link watcher. Available      │
4514       │                            │                  │               │ link watchers are            │
4515       │                            │                  │               │ 'ethtool', 'nsna_ping' and   │
4516       │                            │                  │               │ 'arp_ping' and it is         │
4517       │                            │                  │               │ specified in the             │
4518       │                            │                  │               │ dictionary with the key      │
4519       │                            │                  │               │ 'name'. Available keys       │
4520       │                            │                  │               │ are:   ethtool:              │
4521       │                            │                  │               │ 'delay-up', 'delay-down',    │
4522       │                            │                  │               │ 'init-wait'; nsna_ping:      │
4523       │                            │                  │               │ 'init-wait', 'interval',     │
4524       │                            │                  │               │ 'missed-max',                │
4525       │                            │                  │               │ 'target-host'; arp_ping:     │
4526       │                            │                  │               │ all the ones in nsna_ping    │
4527       │                            │                  │               │ and 'source-host',           │
4528       │                            │                  │               │ 'validate-active',           │
4529       │                            │                  │               │ 'validate-inactive',         │
4530       │                            │                  │               │ 'send-always'. See           │
4531       │                            │                  │               │ teamd.conf man for more      │
4532       │                            │                  │               │ details.                     │
4533       ├────────────────────────────┼──────────────────┼───────────────┼──────────────────────────────┤
4534       │mcast-rejoin-count          │ int32            │ -1            │ Corresponds to the teamd     │
4535       │                            │                  │               │ mcast_rejoin.count.          │
4536       ├────────────────────────────┼──────────────────┼───────────────┼──────────────────────────────┤
4537       │mcast-rejoin-interval       │ int32            │ -1            │ Corresponds to the teamd     │
4538       │                            │                  │               │ mcast_rejoin.interval.       │
4539       ├────────────────────────────┼──────────────────┼───────────────┼──────────────────────────────┤
4540       │notify-peers-count          │ int32            │ -1            │ Corresponds to the teamd     │
4541       │                            │                  │               │ notify_peers.count.          │
4542       ├────────────────────────────┼──────────────────┼───────────────┼──────────────────────────────┤
4543       │notify-peers-interval       │ int32            │ -1            │ Corresponds to the teamd     │
4544       │                            │                  │               │ notify_peers.interval.       │
4545       ├────────────────────────────┼──────────────────┼───────────────┼──────────────────────────────┤
4546       │runner                      │ string           │               │ Corresponds to the teamd     │
4547       │                            │                  │               │ runner.name. Permitted       │
4548       │                            │                  │               │ values are: "roundrobin",    │
4549       │                            │                  │               │ "broadcast",                 │
4550       │                            │                  │               │ "activebackup",              │
4551       │                            │                  │               │ "loadbalance", "lacp",       │
4552       │                            │                  │               │ "random".                    │
4553       ├────────────────────────────┼──────────────────┼───────────────┼──────────────────────────────┤
4554       │runner-active               │ boolean          │ TRUE          │ Corresponds to the teamd     │
4555       │                            │                  │               │ runner.active.               │
4556       ├────────────────────────────┼──────────────────┼───────────────┼──────────────────────────────┤
4557       │runner-agg-select-policy    │ string           │               │ Corresponds to the teamd     │
4558       │                            │                  │               │ runner.agg_select_policy.    │
4559       ├────────────────────────────┼──────────────────┼───────────────┼──────────────────────────────┤
4560       │runner-fast-rate            │ boolean          │ FALSE         │ Corresponds to the teamd     │
4561       │                            │                  │               │ runner.fast_rate.            │
4562       ├────────────────────────────┼──────────────────┼───────────────┼──────────────────────────────┤
4563       │runner-hwaddr-policy        │ string           │               │ Corresponds to the teamd     │
4564       │                            │                  │               │ runner.hwaddr_policy.        │
4565       ├────────────────────────────┼──────────────────┼───────────────┼──────────────────────────────┤
4566       │runner-min-ports            │ int32            │ -1            │ Corresponds to the teamd     │
4567       │                            │                  │               │ runner.min_ports.            │
4568       ├────────────────────────────┼──────────────────┼───────────────┼──────────────────────────────┤
4569       │runner-sys-prio             │ int32            │ -1            │ Corresponds to the teamd     │
4570       │                            │                  │               │ runner.sys_prio.             │
4571       ├────────────────────────────┼──────────────────┼───────────────┼──────────────────────────────┤
4572       │runner-tx-balancer          │ string           │               │ Corresponds to the teamd     │
4573       │                            │                  │               │ runner.tx_balancer.name.     │
4574       ├────────────────────────────┼──────────────────┼───────────────┼──────────────────────────────┤
4575       │runner-tx-balancer-interval │ int32            │ -1            │ Corresponds to the teamd     │
4576       │                            │                  │               │ runner.tx_balancer.interval. │
4577       ├────────────────────────────┼──────────────────┼───────────────┼──────────────────────────────┤
4578       │runner-tx-hash              │ array of string  │               │ Corresponds to the teamd     │
4579       │                            │                  │               │ runner.tx_hash.              │
4580       └────────────────────────────┴──────────────────┴───────────────┴──────────────────────────────┘
4581
4582   team-port setting
4583       Team Port Settings.
4584
4585       ┌──────────────┬──────────────────┬───────────────┬─────────────────────────────┐
4586Key Name      Value Type       Default Value Value                       
4587       │              │                  │               │ Description                 
4588       ├──────────────┼──────────────────┼───────────────┼─────────────────────────────┤
4589       │config        │ string           │               │ The JSON                    │
4590       │              │                  │               │ configuration               │
4591       │              │                  │               │ for the team                │
4592       │              │                  │               │ port. The                   │
4593       │              │                  │               │ property should             │
4594       │              │                  │               │ contain raw JSON            │
4595       │              │                  │               │ configuration               │
4596       │              │                  │               │ data suitable               │
4597       │              │                  │               │ for teamd,                  │
4598       │              │                  │               │ because the                 │
4599       │              │                  │               │ value is passed             │
4600       │              │                  │               │ directly to                 │
4601       │              │                  │               │ teamd. If not               │
4602       │              │                  │               │ specified, the              │
4603       │              │                  │               │ default                     │
4604       │              │                  │               │ configuration is            │
4605       │              │                  │               │ used. See man               │
4606       │              │                  │               │ teamd.conf for              │
4607       │              │                  │               │ the format                  │
4608       │              │                  │               │ details.                    │
4609       ├──────────────┼──────────────────┼───────────────┼─────────────────────────────┤
4610       │lacp-key      │ int32            │ -1            │ Corresponds to              │
4611       │              │                  │               │ the teamd                   │
4612       │              │                  │               │ ports.PORTIFNAME.lacp_key.  │
4613       ├──────────────┼──────────────────┼───────────────┼─────────────────────────────┤
4614       │lacp-prio     │ int32            │ -1            │ Corresponds to the teamd    │
4615       │              │                  │               │ ports.PORTIFNAME.lacp_prio. │
4616       ├──────────────┼──────────────────┼───────────────┼─────────────────────────────┤
4617       │link-watchers │ array of vardict │               │ Link watchers configuration │
4618       │              │                  │               │ for the connection: each    │
4619       │              │                  │               │ link watcher is defined by  │
4620       │              │                  │               │ a dictionary, whose keys    │
4621       │              │                  │               │ depend upon the selected    │
4622       │              │                  │               │ link watcher. Available     │
4623       │              │                  │               │ link watchers are           │
4624       │              │                  │               │ 'ethtool', 'nsna_ping' and  │
4625       │              │                  │               │ 'arp_ping' and it is        │
4626       │              │                  │               │ specified in the dictionary │
4627       │              │                  │               │ with the key 'name'.        │
4628       │              │                  │               │ Available keys are:         │
4629       │              │                  │               │ ethtool: 'delay-up',        │
4630       │              │                  │               │ 'delay-down', 'init-wait';  │
4631       │              │                  │               │ nsna_ping: 'init-wait',     │
4632       │              │                  │               │ 'interval', 'missed-max',   │
4633       │              │                  │               │ 'target-host'; arp_ping:    │
4634       │              │                  │               │ all the ones in nsna_ping   │
4635       │              │                  │               │ and 'source-host',          │
4636       │              │                  │               │ 'validate-active',          │
4637       │              │                  │               │ 'validate-inactive',        │
4638       │              │                  │               │ 'send-always'. See          │
4639       │              │                  │               │ teamd.conf man for more     │
4640       │              │                  │               │ details.                    │
4641       ├──────────────┼──────────────────┼───────────────┼─────────────────────────────┤
4642       │prio          │ int32            │ 0             │ Corresponds to the teamd    │
4643       │              │                  │               │ ports.PORTIFNAME.prio.      │
4644       ├──────────────┼──────────────────┼───────────────┼─────────────────────────────┤
4645       │queue-id      │ int32            │ -1            │ Corresponds to the teamd    │
4646       │              │                  │               │ ports.PORTIFNAME.queue_id.  │
4647       │              │                  │               │ When set to -1 means the    │
4648       │              │                  │               │ parameter is skipped from   │
4649       │              │                  │               │ the json config.            │
4650       ├──────────────┼──────────────────┼───────────────┼─────────────────────────────┤
4651       │sticky        │ boolean          │ FALSE         │ Corresponds to the teamd    │
4652       │              │                  │               │ ports.PORTIFNAME.sticky.    │
4653       └──────────────┴──────────────────┴───────────────┴─────────────────────────────┘
4654
4655   tun setting
4656       Tunnel Settings.
4657
4658       ┌────────────┬────────────┬───────────────┬─────────────────────────┐
4659Key Name    Value Type Default Value Value                   
4660       │            │            │               │ Description             
4661       ├────────────┼────────────┼───────────────┼─────────────────────────┤
4662       │group       │ string     │               │ The group ID            │
4663       │            │            │               │ which will own          │
4664       │            │            │               │ the device. If          │
4665       │            │            │               │ set to NULL             │
4666       │            │            │               │ everyone will be        │
4667       │            │            │               │ able to use the         │
4668       │            │            │               │ device.                 │
4669       ├────────────┼────────────┼───────────────┼─────────────────────────┤
4670       │mode        │ uint32     │ 1             │ The operating           │
4671       │            │            │               │ mode of the             │
4672       │            │            │               │ virtual device.         │
4673       │            │            │               │ Allowed values          │
4674       │            │            │               │ are                     │
4675       │            │            │               │ NM_SETTING_TUN_MODE_TUN │
4676       │            │            │               │ (1) to create a         │
4677       │            │            │               │ layer 3 device          │
4678       │            │            │               │ and                     │
4679       │            │            │               │ NM_SETTING_TUN_MODE_TAP │
4680       │            │            │               │ (2) to create an        │
4681       │            │            │               │ Ethernet-like           │
4682       │            │            │               │ layer 2 one.            │
4683       ├────────────┼────────────┼───────────────┼─────────────────────────┤
4684       │multi-queue │ boolean    │ FALSE         │ If the property is set  │
4685       │            │            │               │ to TRUE, the interface  │
4686       │            │            │               │ will support multiple   │
4687       │            │            │               │ file descriptors        │
4688       │            │            │               │ (queues) to parallelize │
4689       │            │            │               │ packet sending or       │
4690       │            │            │               │ receiving. Otherwise,   │
4691       │            │            │               │ the interface will only │
4692       │            │            │               │ support a single queue. │
4693       ├────────────┼────────────┼───────────────┼─────────────────────────┤
4694       │owner       │ string     │               │ The user ID which will  │
4695       │            │            │               │ own the device. If set  │
4696       │            │            │               │ to NULL everyone will   │
4697       │            │            │               │ be able to use the      │
4698       │            │            │               │ device.                 │
4699       ├────────────┼────────────┼───────────────┼─────────────────────────┤
4700       │pi          │ boolean    │ FALSE         │ If TRUE the interface   │
4701       │            │            │               │ will prepend a 4 byte   │
4702       │            │            │               │ header describing the   │
4703       │            │            │               │ physical interface to   │
4704       │            │            │               │ the packets.            │
4705       ├────────────┼────────────┼───────────────┼─────────────────────────┤
4706       │vnet-hdr    │ boolean    │ FALSE         │ If TRUE the             │
4707       │            │            │               │ IFF_VNET_HDR the tunnel │
4708       │            │            │               │ packets will include a  │
4709       │            │            │               │ virtio network header.  │
4710       └────────────┴────────────┴───────────────┴─────────────────────────┘
4711
4712   user setting
4713       General User Profile Settings.
4714
4715       ┌─────────┬────────────────┬───────────────┬──────────────────┐
4716Key Name Value Type     Default Value Value            
4717       │         │                │               │ Description      
4718       ├─────────┼────────────────┼───────────────┼──────────────────┤
4719       │data     │ dict of string │ {}            │ A dictionary of  │
4720       │         │ to string      │               │ key/value pairs  │
4721       │         │                │               │ with user data.  │
4722       │         │                │               │ This data is     │
4723       │         │                │               │ ignored by       │
4724       │         │                │               │ NetworkManager   │
4725       │         │                │               │ and can be used  │
4726       │         │                │               │ at the users     │
4727       │         │                │               │ discretion. The  │
4728       │         │                │               │ keys only        │
4729       │         │                │               │ support a strict │
4730       │         │                │               │ ascii format,    │
4731       │         │                │               │ but the values   │
4732       │         │                │               │ can be arbitrary │
4733       │         │                │               │ UTF8 strings up  │
4734       │         │                │               │ to a certain     │
4735       │         │                │               │ length.          │
4736       └─────────┴────────────────┴───────────────┴──────────────────┘
4737
4738   vlan setting
4739       VLAN Settings.
4740
4741       ┌─────────────────────┬─────────────────┬───────────────┬───────────────────────────────┐
4742Key Name             Value Type      Default Value Value                         
4743       │                     │                 │               │ Description                   
4744       ├─────────────────────┼─────────────────┼───────────────┼───────────────────────────────┤
4745       │egress-priority-map  │ array of string │               │ For outgoing                  │
4746       │                     │                 │               │ packets, a list               │
4747       │                     │                 │               │ of mappings from              │
4748       │                     │                 │               │ Linux SKB                     │
4749       │                     │                 │               │ priorities to                 │
4750       │                     │                 │               │ 802.1p                        │
4751       │                     │                 │               │ priorities.  The              │
4752       │                     │                 │               │ mapping is given              │
4753       │                     │                 │               │ in the format                 │
4754       │                     │                 │               │ "from:to" where               │
4755       │                     │                 │               │ both "from" and               │
4756       │                     │                 │               │ "to" are                      │
4757       │                     │                 │               │ unsigned                      │
4758       │                     │                 │               │ integers, ie                  │
4759       │                     │                 │               │ "7:3".                        │
4760       ├─────────────────────┼─────────────────┼───────────────┼───────────────────────────────┤
4761       │flags                │ NMVlanFlags     │               │ One or more                   │
4762       │                     │ (uint32)        │               │ flags which                   │
4763       │                     │                 │               │ control the                   │
4764       │                     │                 │               │ behavior and                  │
4765       │                     │                 │               │ features of the               │
4766       │                     │                 │               │ VLAN interface.               │
4767       │                     │                 │               │ Flags include                 │
4768       │                     │                 │               │ NM_VLAN_FLAG_REORDER_HEADERS  │
4769       │                     │                 │               │ (0x1)                         │
4770       │                     │                 │               │ (reordering of                │
4771       │                     │                 │               │ output packet                 │
4772       │                     │                 │               │ headers),                     │
4773       │                     │                 │               │ NM_VLAN_FLAG_GVRP             │
4774       │                     │                 │               │ (0x2) (use of                 │
4775       │                     │                 │               │ the GVRP                      │
4776       │                     │                 │               │ protocol), and                │
4777       │                     │                 │               │ NM_VLAN_FLAG_LOOSE_BINDING    │
4778       │                     │                 │               │ (0x4) (loose                  │
4779       │                     │                 │               │ binding of the                │
4780       │                     │                 │               │ interface to its              │
4781       │                     │                 │               │ master device's               │
4782       │                     │                 │               │ operating                     │
4783       │                     │                 │               │ state).                       │
4784       │                     │                 │               │ NM_VLAN_FLAG_MVRP             │
4785       │                     │                 │               │ (0x8) (use of                 │
4786       │                     │                 │               │ the MVRP                      │
4787       │                     │                 │               │ protocol).                    │
4788       │                     │                 │               │                               │
4789       │                     │                 │               │  The default                  │
4790       │                     │                 │               │ value of this                 │
4791       │                     │                 │               │ property is                   │
4792       │                     │                 │               │ NM_VLAN_FLAG_REORDER_HEADERS, │
4793       │                     │                 │               │ but it used to                │
4794       │                     │                 │               │ be 0. To                      │
4795       │                     │                 │               │ preserve                      │
4796       │                     │                 │               │ backward                      │
4797       │                     │                 │               │ compatibility,                │
4798       │                     │                 │               │ the                           │
4799       │                     │                 │               │ default-value in              │
4800       │                     │                 │               │ the D-Bus API                 │
4801       │                     │                 │               │ continues to be               │
4802       │                     │                 │               │ 0 and a missing               │
4803       │                     │                 │               │ property on                   │
4804       │                     │                 │               │ D-Bus is still                │
4805       │                     │                 │               │ considered as 0.              │
4806       ├─────────────────────┼─────────────────┼───────────────┼───────────────────────────────┤
4807       │id                   │ uint32          │ 0             │ The VLAN identifier that the  │
4808       │                     │                 │               │ interface created by this     │
4809       │                     │                 │               │ connection should be          │
4810       │                     │                 │               │ assigned. The valid range is  │
4811       │                     │                 │               │ from 0 to 4094, without the   │
4812       │                     │                 │               │ reserved id 4095.             │
4813       ├─────────────────────┼─────────────────┼───────────────┼───────────────────────────────┤
4814       │ingress-priority-map │ array of string │               │ For incoming packets, a list  │
4815       │                     │                 │               │ of mappings from 802.1p       │
4816       │                     │                 │               │ priorities to Linux SKB       │
4817       │                     │                 │               │ priorities.  The mapping is   │
4818       │                     │                 │               │ given in the format "from:to" │
4819       │                     │                 │               │ where both "from" and "to"    │
4820       │                     │                 │               │ are unsigned integers, ie     │
4821       │                     │                 │               │ "7:3".                        │
4822       ├─────────────────────┼─────────────────┼───────────────┼───────────────────────────────┤
4823       │interface-name       │ string          │               │ Deprecated in favor of        │
4824       │                     │                 │               │ connection.interface-name,    │
4825       │                     │                 │               │ but can be used for           │
4826       │                     │                 │               │ backward-compatibility with   │
4827       │                     │                 │               │ older daemons, to set the     │
4828       │                     │                 │               │ vlan's interface name.        │
4829       ├─────────────────────┼─────────────────┼───────────────┼───────────────────────────────┤
4830       │parent               │ string          │               │ If given, specifies the       │
4831       │                     │                 │               │ parent interface name or      │
4832       │                     │                 │               │ parent connection UUID from   │
4833       │                     │                 │               │ which this VLAN interface     │
4834       │                     │                 │               │ should be created.  If this   │
4835       │                     │                 │               │ property is not specified,    │
4836       │                     │                 │               │ the connection must contain   │
4837       │                     │                 │               │ an "802-3-ethernet" setting   │
4838       │                     │                 │               │ with a "mac-address"          │
4839       │                     │                 │               │ property.                     │
4840       └─────────────────────┴─────────────────┴───────────────┴───────────────────────────────┘
4841
4842   vpn setting
4843       VPN Settings.
4844
4845       ┌─────────────┬────────────────┬───────────────┬─────────────────────────────────────┐
4846Key Name     Value Type     Default Value Value                               
4847       │             │                │               │ Description                         
4848       ├─────────────┼────────────────┼───────────────┼─────────────────────────────────────┤
4849       │data         │ dict of string │ {}            │ Dictionary of                       │
4850       │             │ to string      │               │ key/value pairs                     │
4851       │             │                │               │ of VPN plugin                       │
4852       │             │                │               │ specific data.                      │
4853       │             │                │               │ Both keys and                       │
4854       │             │                │               │ values must be                      │
4855       │             │                │               │ strings.                            │
4856       ├─────────────┼────────────────┼───────────────┼─────────────────────────────────────┤
4857       │persistent   │ boolean        │ FALSE         │ If the VPN                          │
4858       │             │                │               │ service supports                    │
4859       │             │                │               │ persistence, and                    │
4860       │             │                │               │ this property is                    │
4861       │             │                │               │ TRUE, the VPN                       │
4862       │             │                │               │ will attempt to                     │
4863       │             │                │               │ stay connected                      │
4864       │             │                │               │ across link                         │
4865       │             │                │               │ changes and                         │
4866       │             │                │               │ outages, until                      │
4867       │             │                │               │ explicitly                          │
4868       │             │                │               │ disconnected.                       │
4869       ├─────────────┼────────────────┼───────────────┼─────────────────────────────────────┤
4870       │secrets      │ dict of string │ {}            │ Dictionary of                       │
4871       │             │ to string      │               │ key/value pairs                     │
4872       │             │                │               │ of VPN plugin                       │
4873       │             │                │               │ specific secrets                    │
4874       │             │                │               │ like passwords                      │
4875       │             │                │               │ or private keys.                    │
4876       │             │                │               │ Both keys and                       │
4877       │             │                │               │ values must be                      │
4878       │             │                │               │ strings.                            │
4879       ├─────────────┼────────────────┼───────────────┼─────────────────────────────────────┤
4880       │service-type │ string         │               │ D-Bus service                       │
4881       │             │                │               │ name of the VPN                     │
4882       │             │                │               │ plugin that this                    │
4883       │             │                │               │ setting uses to                     │
4884       │             │                │               │ connect to its                      │
4885       │             │                │               │ network.  i.e.                      │
4886       │             │                │               │ org.freedesktop.NetworkManager.vpnc │
4887       │             │                │               │ for the vpnc                        │
4888       │             │                │               │ plugin.                             │
4889       ├─────────────┼────────────────┼───────────────┼─────────────────────────────────────┤
4890       │timeout      │ uint32         │ 0             │ Timeout for the VPN service to      │
4891       │             │                │               │ establish the connection. Some      │
4892       │             │                │               │ services may take quite a long time │
4893       │             │                │               │ to connect. Value of 0 means a      │
4894       │             │                │               │ default timeout, which is 60        │
4895       │             │                │               │ seconds (unless overridden by       │
4896       │             │                │               │ vpn.timeout in configuration file). │
4897       │             │                │               │ Values greater than zero mean       │
4898       │             │                │               │ timeout in seconds.                 │
4899       ├─────────────┼────────────────┼───────────────┼─────────────────────────────────────┤
4900       │user-name    │ string         │               │ If the VPN connection requires a    │
4901       │             │                │               │ user name for authentication, that  │
4902       │             │                │               │ name should be provided here.  If   │
4903       │             │                │               │ the connection is available to more │
4904       │             │                │               │ than one user, and the VPN requires │
4905       │             │                │               │ each user to supply a different     │
4906       │             │                │               │ name, then leave this property      │
4907       │             │                │               │ empty.  If this property is empty,  │
4908       │             │                │               │ NetworkManager will automatically   │
4909       │             │                │               │ supply the username of the user     │
4910       │             │                │               │ which requested the VPN connection. │
4911       └─────────────┴────────────────┴───────────────┴─────────────────────────────────────┘
4912
4913   vrf setting
4914       VRF settings.
4915
4916       ┌─────────┬────────────┬───────────────┬────────────────┐
4917Key Name Value Type Default Value Value          
4918       │         │            │               │ Description    
4919       ├─────────┼────────────┼───────────────┼────────────────┤
4920       │table    │ uint32     │ 0             │ The routing    │
4921       │         │            │               │ table for this │
4922       │         │            │               │ VRF.           │
4923       └─────────┴────────────┴───────────────┴────────────────┘
4924
4925   vxlan setting
4926       VXLAN Settings.
4927
4928       ┌─────────────────┬────────────┬───────────────┬──────────────────┐
4929Key Name         Value Type Default Value Value            
4930       │                 │            │               │ Description      
4931       ├─────────────────┼────────────┼───────────────┼──────────────────┤
4932       │ageing           │ uint32     │ 300           │ Specifies the    │
4933       │                 │            │               │ lifetime in      │
4934       │                 │            │               │ seconds of FDB   │
4935       │                 │            │               │ entries learnt   │
4936       │                 │            │               │ by the kernel.   │
4937       ├─────────────────┼────────────┼───────────────┼──────────────────┤
4938       │destination-port │ uint32     │ 8472          │ Specifies the    │
4939       │                 │            │               │ UDP destination  │
4940       │                 │            │               │ port to          │
4941       │                 │            │               │ communicate to   │
4942       │                 │            │               │ the remote VXLAN │
4943       │                 │            │               │ tunnel endpoint. │
4944       ├─────────────────┼────────────┼───────────────┼──────────────────┤
4945       │id               │ uint32     │ 0             │ Specifies the    │
4946       │                 │            │               │ VXLAN Network    │
4947       │                 │            │               │ Identifier (or   │
4948       │                 │            │               │ VXLAN Segment    │
4949       │                 │            │               │ Identifier) to   │
4950       │                 │            │               │ use.             │
4951       ├─────────────────┼────────────┼───────────────┼──────────────────┤
4952       │l2-miss          │ boolean    │ FALSE         │ Specifies        │
4953       │                 │            │               │ whether netlink  │
4954       │                 │            │               │ LL ADDR miss     │
4955       │                 │            │               │ notifications    │
4956       │                 │            │               │ are generated.   │
4957       ├─────────────────┼────────────┼───────────────┼──────────────────┤
4958       │l3-miss          │ boolean    │ FALSE         │ Specifies        │
4959       │                 │            │               │ whether netlink  │
4960       │                 │            │               │ IP ADDR miss     │
4961       │                 │            │               │ notifications    │
4962       │                 │            │               │ are generated.   │
4963       ├─────────────────┼────────────┼───────────────┼──────────────────┤
4964       │learning         │ boolean    │ TRUE          │ Specifies        │
4965       │                 │            │               │ whether unknown  │
4966       │                 │            │               │ source link      │
4967       │                 │            │               │ layer addresses  │
4968       │                 │            │               │ and IP addresses │
4969       │                 │            │               │ are entered into │
4970       │                 │            │               │ the VXLAN device │
4971       │                 │            │               │ forwarding       │
4972       │                 │            │               │ database.        │
4973       ├─────────────────┼────────────┼───────────────┼──────────────────┤
4974       │limit            │ uint32     │ 0             │ Specifies the    │
4975       │                 │            │               │ maximum number   │
4976       │                 │            │               │ of FDB entries.  │
4977       │                 │            │               │ A value of zero  │
4978       │                 │            │               │ means that the   │
4979       │                 │            │               │ kernel will      │
4980       │                 │            │               │ store unlimited  │
4981       │                 │            │               │ entries.         │
4982       ├─────────────────┼────────────┼───────────────┼──────────────────┤
4983       │local            │ string     │               │ If given,        │
4984       │                 │            │               │ specifies the    │
4985       │                 │            │               │ source IP        │
4986       │                 │            │               │ address to use   │
4987       │                 │            │               │ in outgoing      │
4988       │                 │            │               │ packets.         │
4989       ├─────────────────┼────────────┼───────────────┼──────────────────┤
4990       │parent           │ string     │               │ If given,        │
4991       │                 │            │               │ specifies the    │
4992       │                 │            │               │ parent interface │
4993       │                 │            │               │ name or parent   │
4994       │                 │            │               │ connection UUID. │
4995       ├─────────────────┼────────────┼───────────────┼──────────────────┤
4996       │proxy            │ boolean    │ FALSE         │ Specifies        │
4997       │                 │            │               │ whether ARP      │
4998       │                 │            │               │ proxy is turned  │
4999       │                 │            │               │ on.              │
5000       ├─────────────────┼────────────┼───────────────┼──────────────────┤
5001       │remote           │ string     │               │ Specifies the    │
5002       │                 │            │               │ unicast          │
5003       │                 │            │               │ destination IP   │
5004       │                 │            │               │ address to use   │
5005       │                 │            │               │ in outgoing      │
5006       │                 │            │               │ packets when the │
5007       │                 │            │               │ destination link │
5008       │                 │            │               │ layer address is │
5009       │                 │            │               │ not known in the │
5010       │                 │            │               │ VXLAN device     │
5011       │                 │            │               │ forwarding       │
5012       │                 │            │               │ database, or the │
5013       │                 │            │               │ multicast IP     │
5014       │                 │            │               │ address to join. │
5015       ├─────────────────┼────────────┼───────────────┼──────────────────┤
5016       │rsc              │ boolean    │ FALSE         │ Specifies        │
5017       │                 │            │               │ whether route    │
5018       │                 │            │               │ short circuit is │
5019       │                 │            │               │ turned on.       │
5020       ├─────────────────┼────────────┼───────────────┼──────────────────┤
5021       │source-port-max  │ uint32     │ 0             │ Specifies the    │
5022       │                 │            │               │ maximum UDP      │
5023       │                 │            │               │ source port to   │
5024       │                 │            │               │ communicate to   │
5025       │                 │            │               │ the remote VXLAN │
5026       │                 │            │               │ tunnel endpoint. │
5027       ├─────────────────┼────────────┼───────────────┼──────────────────┤
5028       │source-port-min  │ uint32     │ 0             │ Specifies the    │
5029       │                 │            │               │ minimum UDP      │
5030       │                 │            │               │ source port to   │
5031       │                 │            │               │ communicate to   │
5032       │                 │            │               │ the remote VXLAN │
5033       │                 │            │               │ tunnel endpoint. │
5034       ├─────────────────┼────────────┼───────────────┼──────────────────┤
5035       │tos              │ uint32     │ 0             │ Specifies the    │
5036       │                 │            │               │ TOS value to use │
5037       │                 │            │               │ in outgoing      │
5038       │                 │            │               │ packets.         │
5039       ├─────────────────┼────────────┼───────────────┼──────────────────┤
5040       │ttl              │ uint32     │ 0             │ Specifies the    │
5041       │                 │            │               │ time-to-live     │
5042       │                 │            │               │ value to use in  │
5043       │                 │            │               │ outgoing         │
5044       │                 │            │               │ packets.         │
5045       └─────────────────┴────────────┴───────────────┴──────────────────┘
5046
5047   wifi-p2p setting
5048       Wi-Fi P2P Settings.
5049
5050       ┌───────────┬────────────┬───────────────┬──────────────────┐
5051Key Name   Value Type Default Value Value            
5052       │           │            │               │ Description      
5053       ├───────────┼────────────┼───────────────┼──────────────────┤
5054       │peer       │ string     │               │ The P2P device   │
5055       │           │            │               │ that should be   │
5056       │           │            │               │ connected to.    │
5057       │           │            │               │ Currently, this  │
5058       │           │            │               │ is the only way  │
5059       │           │            │               │ to create or     │
5060       │           │            │               │ join a group.    │
5061       ├───────────┼────────────┼───────────────┼──────────────────┤
5062       │wfd-ies    │ byte array │               │ The Wi-Fi        │
5063       │           │            │               │ Display (WFD)    │
5064       │           │            │               │ Information      │
5065       │           │            │               │ Elements (IEs)   │
5066       │           │            │               │ to set.          │
5067       │           │            │               │                  │
5068       │           │            │               │  Wi-Fi Display   │
5069       │           │            │               │ requires a       │
5070       │           │            │               │ protocol         │
5071       │           │            │               │ specific         │
5072       │           │            │               │ information      │
5073       │           │            │               │ element to be    │
5074       │           │            │               │ set in certain   │
5075       │           │            │               │ Wi-Fi frames.    │
5076       │           │            │               │ These can be     │
5077       │           │            │               │ specified here   │
5078       │           │            │               │ for the purpose  │
5079       │           │            │               │ of establishing  │
5080       │           │            │               │ a connection.    │
5081       │           │            │               │ This setting is  │
5082       │           │            │               │ only useful when │
5083       │           │            │               │ implementing a   │
5084       │           │            │               │ Wi-Fi Display    │
5085       │           │            │               │ client.          │
5086       ├───────────┼────────────┼───────────────┼──────────────────┤
5087       │wps-method │ uint32     │ 0             │ Flags indicating │
5088       │           │            │               │ which mode of    │
5089       │           │            │               │ WPS is to be     │
5090       │           │            │               │ used.            │
5091       │           │            │               │                  │
5092       │           │            │               │  There's little  │
5093       │           │            │               │ point in         │
5094       │           │            │               │ changing the     │
5095       │           │            │               │ default setting  │
5096       │           │            │               │ as               │
5097       │           │            │               │ NetworkManager   │
5098       │           │            │               │ will             │
5099       │           │            │               │ automatically    │
5100       │           │            │               │ determine the    │
5101       │           │            │               │ best method to   │
5102       │           │            │               │ use.             │
5103       └───────────┴────────────┴───────────────┴──────────────────┘
5104
5105   wimax setting
5106       WiMax Settings.
5107
5108       ┌─────────────┬────────────┬───────────────┬──────────────────┐
5109Key Name     Value Type Default Value Value            
5110       │             │            │               │ Description      
5111       ├─────────────┼────────────┼───────────────┼──────────────────┤
5112       │mac-address  │ byte array │               │ If specified,    │
5113       │             │            │               │ this connection  │
5114       │             │            │               │ will only apply  │
5115       │             │            │               │ to the WiMAX     │
5116       │             │            │               │ device whose MAC │
5117       │             │            │               │ address matches. │
5118       │             │            │               │ This property    │
5119       │             │            │               │ does not change  │
5120       │             │            │               │ the MAC address  │
5121       │             │            │               │ of the device    │
5122       │             │            │               │ (known as MAC    │
5123       │             │            │               │ spoofing).       │
5124       │             │            │               │ Deprecated: 1    │
5125       ├─────────────┼────────────┼───────────────┼──────────────────┤
5126       │network-name │ string     │               │ Network Service  │
5127       │             │            │               │ Provider (NSP)   │
5128       │             │            │               │ name of the      │
5129       │             │            │               │ WiMAX network    │
5130       │             │            │               │ this connection  │
5131       │             │            │               │ should use.      │
5132       │             │            │               │ Deprecated: 1    │
5133       └─────────────┴────────────┴───────────────┴──────────────────┘
5134
5135   802-3-ethernet setting
5136       Wired Ethernet Settings.
5137
5138       ┌──────────────────────────┬─────────────────┬───────────────┬────────────────────────────────────────┐
5139Key Name                  Value Type      Default Value Value                                  
5140       │                          │                 │               │ Description                            
5141       ├──────────────────────────┼─────────────────┼───────────────┼────────────────────────────────────────┤
5142       │accept-all-mac-addresses  │ NMTernary       │               │ When TRUE, setup                       │
5143       │                          │ (int32)         │               │ the interface to                       │
5144       │                          │                 │               │ accept packets                         │
5145       │                          │                 │               │ for all MAC                            │
5146       │                          │                 │               │ addresses. This                        │
5147       │                          │                 │               │ is enabling the                        │
5148       │                          │                 │               │ kernel interface                       │
5149       │                          │                 │               │ flag                                   │
5150       │                          │                 │               │ IFF_PROMISC.                           │
5151       │                          │                 │               │ When FALSE, the                        │
5152       │                          │                 │               │ interface will                         │
5153       │                          │                 │               │ only accept the                        │
5154       │                          │                 │               │ packets with the                       │
5155       │                          │                 │               │ interface                              │
5156       │                          │                 │               │ destination mac                        │
5157       │                          │                 │               │ address or                             │
5158       │                          │                 │               │ broadcast.                             │
5159       ├──────────────────────────┼─────────────────┼───────────────┼────────────────────────────────────────┤
5160       │assigned-mac-address      │ string          │               │ The new field                          │
5161       │                          │                 │               │ for the cloned                         │
5162       │                          │                 │               │ MAC address. It                        │
5163       │                          │                 │               │ can be either a                        │
5164       │                          │                 │               │ hardware address                       │
5165       │                          │                 │               │ in ASCII                               │
5166       │                          │                 │               │ representation,                        │
5167       │                          │                 │               │ or one of the                          │
5168       │                          │                 │               │ special values                         │
5169       │                          │                 │               │ "preserve",                            │
5170       │                          │                 │               │ "permanent",                           │
5171       │                          │                 │               │ "random" or                            │
5172       │                          │                 │               │ "stable". This                         │
5173       │                          │                 │               │ field replaces                         │
5174       │                          │                 │               │ the deprecated                         │
5175       │                          │                 │               │ "cloned-mac-address"                   │
5176       │                          │                 │               │ on D-Bus, which                        │
5177       │                          │                 │               │ can only contain                       │
5178       │                          │                 │               │ explicit                               │
5179       │                          │                 │               │ hardware                               │
5180       │                          │                 │               │ addresses. Note                        │
5181       │                          │                 │               │ that this                              │
5182       │                          │                 │               │ property only                          │
5183       │                          │                 │               │ exists in D-Bus                        │
5184       │                          │                 │               │ API. libnm and                         │
5185       │                          │                 │               │ nmcli continue                         │
5186       │                          │                 │               │ to call this                           │
5187       │                          │                 │               │ property                               │
5188       │                          │                 │               │ "cloned-mac-address".                  │
5189       ├──────────────────────────┼─────────────────┼───────────────┼────────────────────────────────────────┤
5190       │auto-negotiate            │ boolean         │ FALSE         │ When TRUE, enforce                     │
5191       │                          │                 │               │ auto-negotiation of                    │
5192       │                          │                 │               │ speed and duplex                       │
5193       │                          │                 │               │ mode. If "speed" and                   │
5194       │                          │                 │               │ "duplex" properties                    │
5195       │                          │                 │               │ are both specified,                    │
5196       │                          │                 │               │ only that single mode                  │
5197       │                          │                 │               │ will be advertised                     │
5198       │                          │                 │               │ and accepted during                    │
5199       │                          │                 │               │ the link                               │
5200       │                          │                 │               │ auto-negotiation                       │
5201       │                          │                 │               │ process: this works                    │
5202       │                          │                 │               │ only for BASE-T 802.3                  │
5203       │                          │                 │               │ specifications and is                  │
5204       │                          │                 │               │ useful for enforcing                   │
5205       │                          │                 │               │ gigabits modes, as in                  │
5206       │                          │                 │               │ these cases link                       │
5207       │                          │                 │               │ negotiation is                         │
5208       │                          │                 │               │ mandatory. When                        │
5209       │                          │                 │               │ FALSE, "speed" and                     │
5210       │                          │                 │               │ "duplex" properties                    │
5211       │                          │                 │               │ should be both set or                  │
5212       │                          │                 │               │ link configuration                     │
5213       │                          │                 │               │ will be skipped.                       │
5214       ├──────────────────────────┼─────────────────┼───────────────┼────────────────────────────────────────┤
5215       │cloned-mac-address        │ byte array      │               │ This D-Bus field is                    │
5216       │                          │                 │               │ deprecated in favor                    │
5217       │                          │                 │               │ of                                     │
5218       │                          │                 │               │ "assigned-mac-address"                 │
5219       │                          │                 │               │ which is more                          │
5220       │                          │                 │               │ flexible and allows                    │
5221       │                          │                 │               │ specifying special                     │
5222       │                          │                 │               │ variants like                          │
5223       │                          │                 │               │ "random". For libnm                    │
5224       │                          │                 │               │ and nmcli, this field                  │
5225       │                          │                 │               │ is called                              │
5226       │                          │                 │               │ "cloned-mac-address".                  │
5227       ├──────────────────────────┼─────────────────┼───────────────┼────────────────────────────────────────┤
5228       │duplex                    │ string          │               │ When a value is set,                   │
5229       │                          │                 │               │ either "half" or                       │
5230       │                          │                 │               │ "full", configures the                 │
5231       │                          │                 │               │ device to use the                      │
5232       │                          │                 │               │ specified duplex mode.                 │
5233       │                          │                 │               │ If "auto-negotiate" is                 │
5234       │                          │                 │               │ "yes" the specified                    │
5235       │                          │                 │               │ duplex mode will be                    │
5236       │                          │                 │               │ the only one                           │
5237       │                          │                 │               │ advertised during link                 │
5238       │                          │                 │               │ negotiation: this                      │
5239       │                          │                 │               │ works only for BASE-T                  │
5240       │                          │                 │               │ 802.3 specifications                   │
5241       │                          │                 │               │ and is useful for                      │
5242       │                          │                 │               │ enforcing gigabits                     │
5243       │                          │                 │               │ modes, as in these                     │
5244       │                          │                 │               │ cases link negotiation                 │
5245       │                          │                 │               │ is mandatory. If the                   │
5246       │                          │                 │               │ value is unset (the                    │
5247       │                          │                 │               │ default), the link                     │
5248       │                          │                 │               │ configuration will be                  │
5249       │                          │                 │               │ either skipped (if                     │
5250       │                          │                 │               │ "auto-negotiate" is                    │
5251       │                          │                 │               │ "no", the default) or                  │
5252       │                          │                 │               │ will be                                │
5253       │                          │                 │               │ auto-negotiated (if                    │
5254       │                          │                 │               │ "auto-negotiate" is                    │
5255       │                          │                 │               │ "yes") and the local                   │
5256       │                          │                 │               │ device will advertise                  │
5257       │                          │                 │               │ all the supported                      │
5258       │                          │                 │               │ duplex modes. Must be                  │
5259       │                          │                 │               │ set together with the                  │
5260       │                          │                 │               │ "speed" property if                    │
5261       │                          │                 │               │ specified. Before                      │
5262       │                          │                 │               │ specifying a duplex                    │
5263       │                          │                 │               │ mode be sure your                      │
5264       │                          │                 │               │ device supports it.                    │
5265       ├──────────────────────────┼─────────────────┼───────────────┼────────────────────────────────────────┤
5266       │generate-mac-address-mask │ string          │               │ With                                   │
5267       │                          │                 │               │ "cloned-mac-address"                   │
5268       │                          │                 │               │ setting "random" or                    │
5269       │                          │                 │               │ "stable", by default                   │
5270       │                          │                 │               │ all bits of the MAC                    │
5271       │                          │                 │               │ address are scrambled                  │
5272       │                          │                 │               │ and a                                  │
5273       │                          │                 │               │ locally-administered,                  │
5274       │                          │                 │               │ unicast MAC address is                 │
5275       │                          │                 │               │ created. This property                 │
5276       │                          │                 │               │ allows to specify that                 │
5277       │                          │                 │               │ certain bits are                       │
5278       │                          │                 │               │ fixed. Note that the                   │
5279       │                          │                 │               │ least significant bit                  │
5280       │                          │                 │               │ of the first MAC                       │
5281       │                          │                 │               │ address will always be                 │
5282       │                          │                 │               │ unset to create a                      │
5283       │                          │                 │               │ unicast MAC address.                   │
5284       │                          │                 │               │                                        │
5285       │                          │                 │               │  If the property is                    │
5286       │                          │                 │               │ NULL, it is eligible                   │
5287       │                          │                 │               │ to be overwritten by a                 │
5288       │                          │                 │               │ default connection                     │
5289       │                          │                 │               │ setting. If the value                  │
5290       │                          │                 │               │ is still NULL or an                    │
5291       │                          │                 │               │ empty string, the                      │
5292       │                          │                 │               │ default is to create a                 │
5293       │                          │                 │               │ locally-administered,                  │
5294       │                          │                 │               │ unicast MAC address.                   │
5295       │                          │                 │               │                                        │
5296       │                          │                 │               │  If the value contains                 │
5297       │                          │                 │               │ one MAC address, this                  │
5298       │                          │                 │               │ address is used as                     │
5299       │                          │                 │               │ mask. The set bits of                  │
5300       │                          │                 │               │ the mask are to be                     │
5301       │                          │                 │               │ filled with the                        │
5302       │                          │                 │               │ current MAC address of                 │
5303       │                          │                 │               │ the device, while the                  │
5304       │                          │                 │               │ unset bits are subject                 │
5305       │                          │                 │               │ to randomization.                      │
5306       │                          │                 │               │ Setting                                │
5307       │                          │                 │               │ "FE:FF:FF:00:00:00"                    │
5308       │                          │                 │               │ means to preserve the                  │
5309       │                          │                 │               │ OUI of the current MAC                 │
5310       │                          │                 │               │ address and only                       │
5311       │                          │                 │               │ randomize the lower 3                  │
5312       │                          │                 │               │ bytes using the                        │
5313       │                          │                 │               │ "random" or "stable"                   │
5314       │                          │                 │               │ algorithm.                             │
5315       │                          │                 │               │                                        │
5316       │                          │                 │               │  If the value contains                 │
5317       │                          │                 │               │ one additional MAC                     │
5318       │                          │                 │               │ address after the                      │
5319       │                          │                 │               │ mask, this address is                  │
5320       │                          │                 │               │ used instead of the                    │
5321       │                          │                 │               │ current MAC address to                 │
5322       │                          │                 │               │ fill the bits that                     │
5323       │                          │                 │               │ shall not be                           │
5324       │                          │                 │               │ randomized. For                        │
5325       │                          │                 │               │ example, a value of                    │
5326       │                          │                 │               │ "FE:FF:FF:00:00:00                     │
5327       │                          │                 │               │ 68:F7:28:00:00:00"                     │
5328       │                          │                 │               │ will set the OUI of                    │
5329       │                          │                 │               │ the MAC address to                     │
5330       │                          │                 │               │ 68:F7:28, while the                    │
5331       │                          │                 │               │ lower bits are                         │
5332       │                          │                 │               │ randomized. A value of                 │
5333       │                          │                 │               │ "02:00:00:00:00:00                     │
5334       │                          │                 │               │ 00:00:00:00:00:00"                     │
5335       │                          │                 │               │ will create a fully                    │
5336       │                          │                 │               │ scrambled                              │
5337       │                          │                 │               │ globally-administered,                 │
5338       │                          │                 │               │ burned-in MAC address.                 │
5339       │                          │                 │               │                                        │
5340       │                          │                 │               │  If the value contains                 │
5341       │                          │                 │               │ more than one                          │
5342       │                          │                 │               │ additional MAC                         │
5343       │                          │                 │               │ addresses, one of them                 │
5344       │                          │                 │               │ is chosen randomly.                    │
5345       │                          │                 │               │ For example,                           │
5346       │                          │                 │               │ "02:00:00:00:00:00                     │
5347       │                          │                 │               │ 00:00:00:00:00:00                      │
5348       │                          │                 │               │ 02:00:00:00:00:00"                     │
5349       │                          │                 │               │ will create a fully                    │
5350       │                          │                 │               │ scrambled MAC address,                 │
5351       │                          │                 │               │ randomly locally or                    │
5352       │                          │                 │               │ globally administered.                 │
5353       ├──────────────────────────┼─────────────────┼───────────────┼────────────────────────────────────────┤
5354       │mac-address               │ byte array      │               │ If specified, this                     │
5355       │                          │                 │               │ connection will only                   │
5356       │                          │                 │               │ apply to the Ethernet                  │
5357       │                          │                 │               │ device whose permanent                 │
5358       │                          │                 │               │ MAC address matches.                   │
5359       │                          │                 │               │ This property does not                 │
5360       │                          │                 │               │ change the MAC address                 │
5361       │                          │                 │               │ of the device (i.e.                    │
5362       │                          │                 │               │ MAC spoofing).                         │
5363       ├──────────────────────────┼─────────────────┼───────────────┼────────────────────────────────────────┤
5364       │mac-address-blacklist     │ array of string │               │ If specified, this                     │
5365       │                          │                 │               │ connection will never                  │
5366       │                          │                 │               │ apply to the Ethernet                  │
5367       │                          │                 │               │ device whose permanent                 │
5368       │                          │                 │               │ MAC address matches an                 │
5369       │                          │                 │               │ address in the list.                   │
5370       │                          │                 │               │ Each MAC address is in                 │
5371       │                          │                 │               │ the standard                           │
5372       │                          │                 │               │ hex-digits-and-colons                  │
5373       │                          │                 │               │ notation                               │
5374       │                          │                 │               │ (00:11:22:33:44:55).                   │
5375       ├──────────────────────────┼─────────────────┼───────────────┼────────────────────────────────────────┤
5376       │mtu                       │ uint32          │ 0             │ If non-zero, only                      │
5377       │                          │                 │               │ transmit packets of                    │
5378       │                          │                 │               │ the specified size or                  │
5379       │                          │                 │               │ smaller, breaking                      │
5380       │                          │                 │               │ larger packets up into                 │
5381       │                          │                 │               │ multiple Ethernet                      │
5382       │                          │                 │               │ frames.                                │
5383       ├──────────────────────────┼─────────────────┼───────────────┼────────────────────────────────────────┤
5384       │port                      │ string          │               │ Specific port type to                  │
5385       │                          │                 │               │ use if the device                      │
5386       │                          │                 │               │ supports multiple                      │
5387       │                          │                 │               │ attachment methods.                    │
5388       │                          │                 │               │ One of "tp" (Twisted                   │
5389       │                          │                 │               │ Pair), "aui"                           │
5390       │                          │                 │               │ (Attachment Unit                       │
5391       │                          │                 │               │ Interface), "bnc"                      │
5392       │                          │                 │               │ (Thin Ethernet) or                     │
5393       │                          │                 │               │ "mii" (Media                           │
5394       │                          │                 │               │ Independent                            │
5395       │                          │                 │               │ Interface). If the                     │
5396       │                          │                 │               │ device supports only                   │
5397       │                          │                 │               │ one port type, this                    │
5398       │                          │                 │               │ setting is ignored.                    │
5399       ├──────────────────────────┼─────────────────┼───────────────┼────────────────────────────────────────┤
5400       │s390-nettype              │ string          │               │ s390 network device                    │
5401       │                          │                 │               │ type; one of "qeth",                   │
5402       │                          │                 │               │ "lcs", or "ctc",                       │
5403       │                          │                 │               │ representing the                       │
5404       │                          │                 │               │ different types of                     │
5405       │                          │                 │               │ virtual network                        │
5406       │                          │                 │               │ devices available on                   │
5407       │                          │                 │               │ s390 systems.                          │
5408       ├──────────────────────────┼─────────────────┼───────────────┼────────────────────────────────────────┤
5409       │s390-options              │ dict of string  │ {}            │ Dictionary of                          │
5410       │                          │ to string       │               │ key/value pairs of                     │
5411       │                          │                 │               │ s390-specific device                   │
5412       │                          │                 │               │ options.  Both keys                    │
5413       │                          │                 │               │ and values must be                     │
5414       │                          │                 │               │ strings.  Allowed keys                 │
5415       │                          │                 │               │ include "portno",                      │
5416       │                          │                 │               │ "layer2", "portname",                  │
5417       │                          │                 │               │ "protocol", among                      │
5418       │                          │                 │               │ others.  Key names                     │
5419       │                          │                 │               │ must contain only                      │
5420       │                          │                 │               │ alphanumeric                           │
5421       │                          │                 │               │ characters (ie,                        │
5422       │                          │                 │               │ [a-zA-Z0-9]).                          │
5423       │                          │                 │               │                                        │
5424       │                          │                 │               │  Currently,                            │
5425       │                          │                 │               │ NetworkManager itself                  │
5426       │                          │                 │               │ does nothing with this                 │
5427       │                          │                 │               │ information. However,                  │
5428       │                          │                 │               │ s390utils ships a udev                 │
5429       │                          │                 │               │ rule which parses this                 │
5430       │                          │                 │               │ information and                        │
5431       │                          │                 │               │ applies it to the                      │
5432       │                          │                 │               │ interface.                             │
5433       ├──────────────────────────┼─────────────────┼───────────────┼────────────────────────────────────────┤
5434       │s390-subchannels          │ array of string │               │ Identifies specific                    │
5435       │                          │                 │               │ subchannels that this                  │
5436       │                          │                 │               │ network device uses                    │
5437       │                          │                 │               │ for communication with                 │
5438       │                          │                 │               │ z/VM or s390 host.                     │
5439       │                          │                 │               │ Like the "mac-address"                 │
5440       │                          │                 │               │ property for non-z/VM                  │
5441       │                          │                 │               │ devices, this property                 │
5442       │                          │                 │               │ can be used to ensure                  │
5443       │                          │                 │               │ this connection only                   │
5444       │                          │                 │               │ applies to the network                 │
5445       │                          │                 │               │ device that uses these                 │
5446       │                          │                 │               │ subchannels.  The list                 │
5447       │                          │                 │               │ should contain exactly                 │
5448       │                          │                 │               │ 3 strings, and each                    │
5449       │                          │                 │               │ string may only be                     │
5450       │                          │                 │               │ composed of                            │
5451       │                          │                 │               │ hexadecimal characters                 │
5452       │                          │                 │               │ and the period (.)                     │
5453       │                          │                 │               │ character.                             │
5454       ├──────────────────────────┼─────────────────┼───────────────┼────────────────────────────────────────┤
5455       │speed                     │ uint32          │ 0             │ When a value greater                   │
5456       │                          │                 │               │ than 0 is set,                         │
5457       │                          │                 │               │ configures the device                  │
5458       │                          │                 │               │ to use the specified                   │
5459       │                          │                 │               │ speed. If                              │
5460       │                          │                 │               │ "auto-negotiate" is                    │
5461       │                          │                 │               │ "yes" the specified                    │
5462       │                          │                 │               │ speed will be the only                 │
5463       │                          │                 │               │ one advertised during                  │
5464       │                          │                 │               │ link negotiation: this                 │
5465       │                          │                 │               │ works only for BASE-T                  │
5466       │                          │                 │               │ 802.3 specifications                   │
5467       │                          │                 │               │ and is useful for                      │
5468       │                          │                 │               │ enforcing gigabit                      │
5469       │                          │                 │               │ speeds, as in this                     │
5470       │                          │                 │               │ case link negotiation                  │
5471       │                          │                 │               │ is mandatory. If the                   │
5472       │                          │                 │               │ value is unset (0, the                 │
5473       │                          │                 │               │ default), the link                     │
5474       │                          │                 │               │ configuration will be                  │
5475       │                          │                 │               │ either skipped (if                     │
5476       │                          │                 │               │ "auto-negotiate" is                    │
5477       │                          │                 │               │ "no", the default) or                  │
5478       │                          │                 │               │ will be                                │
5479       │                          │                 │               │ auto-negotiated (if                    │
5480       │                          │                 │               │ "auto-negotiate" is                    │
5481       │                          │                 │               │ "yes") and the local                   │
5482       │                          │                 │               │ device will advertise                  │
5483       │                          │                 │               │ all the supported                      │
5484       │                          │                 │               │ speeds. In Mbit/s, ie                  │
5485       │                          │                 │               │ 100 == 100Mbit/s. Must                 │
5486       │                          │                 │               │ be set together with                   │
5487       │                          │                 │               │ the "duplex" property                  │
5488       │                          │                 │               │ when non-zero. Before                  │
5489       │                          │                 │               │ specifying a speed                     │
5490       │                          │                 │               │ value be sure your                     │
5491       │                          │                 │               │ device supports it.                    │
5492       ├──────────────────────────┼─────────────────┼───────────────┼────────────────────────────────────────┤
5493       │wake-on-lan               │ uint32          │ 1             │ The                                    │
5494       │                          │                 │               │ NMSettingWiredWakeOnLan                │
5495       │                          │                 │               │ options to enable. Not                 │
5496       │                          │                 │               │ all devices support                    │
5497       │                          │                 │               │ all options. May be                    │
5498       │                          │                 │               │ any combination of                     │
5499       │                          │                 │               │ NM_SETTING_WIRED_WAKE_ON_LAN_PHY       │
5500       │                          │                 │               │ (0x2),                                 │
5501       │                          │                 │               │ NM_SETTING_WIRED_WAKE_ON_LAN_UNICAST   │
5502       │                          │                 │               │ (0x4),                                 │
5503       │                          │                 │               │ NM_SETTING_WIRED_WAKE_ON_LAN_MULTICAST │
5504       │                          │                 │               │ (0x8),                                 │
5505       │                          │                 │               │ NM_SETTING_WIRED_WAKE_ON_LAN_BROADCAST │
5506       │                          │                 │               │ (0x10),                                │
5507       │                          │                 │               │ NM_SETTING_WIRED_WAKE_ON_LAN_ARP       │
5508       │                          │                 │               │ (0x20),                                │
5509       │                          │                 │               │ NM_SETTING_WIRED_WAKE_ON_LAN_MAGIC     │
5510       │                          │                 │               │ (0x40) or the special                  │
5511       │                          │                 │               │ values                                 │
5512       │                          │                 │               │ NM_SETTING_WIRED_WAKE_ON_LAN_DEFAULT   │
5513       │                          │                 │               │ (0x1) (to use global                   │
5514       │                          │                 │               │ settings) and                          │
5515       │                          │                 │               │ NM_SETTING_WIRED_WAKE_ON_LAN_IGNORE    │
5516       │                          │                 │               │ (0x8000) (to disable                   │
5517       │                          │                 │               │ management of                          │
5518       │                          │                 │               │ Wake-on-LAN in                         │
5519       │                          │                 │               │ NetworkManager).                       │
5520       ├──────────────────────────┼─────────────────┼───────────────┼────────────────────────────────────────┤
5521       │wake-on-lan-password      │ string          │               │ If specified, the password used with   │
5522       │                          │                 │               │ magic-packet-based Wake-on-LAN,        │
5523       │                          │                 │               │ represented as an Ethernet MAC         │
5524       │                          │                 │               │ address.  If NULL, no password will be │
5525       │                          │                 │               │ required.                              │
5526       └──────────────────────────┴─────────────────┴───────────────┴────────────────────────────────────────┘
5527
5528   wireguard setting
5529       WireGuard Settings.
5530
5531       ┌───────────────────────┬──────────────────────┬───────────────┬──────────────────────────┐
5532Key Name               Value Type           Default Value Value                    
5533       │                       │                      │               │ Description              
5534       ├───────────────────────┼──────────────────────┼───────────────┼──────────────────────────┤
5535       │fwmark                 │ uint32               │ 0             │ The use of               │
5536       │                       │                      │               │ fwmark is                │
5537       │                       │                      │               │ optional and is          │
5538       │                       │                      │               │ by default off.          │
5539       │                       │                      │               │ Setting it to 0          │
5540       │                       │                      │               │ disables it.             │
5541       │                       │                      │               │ Otherwise, it is         │
5542       │                       │                      │               │ a 32-bit fwmark          │
5543       │                       │                      │               │ for outgoing             │
5544       │                       │                      │               │ packets.                 │
5545       │                       │                      │               │                          │
5546       │                       │                      │               │  Note that               │
5547       │                       │                      │               │ "ip4-auto-default-route" │
5548       │                       │                      │               │ or                       │
5549       │                       │                      │               │ "ip6-auto-default-route" │
5550       │                       │                      │               │ enabled, implies         │
5551       │                       │                      │               │ to automatically         │
5552       │                       │                      │               │ choose a fwmark.         │
5553       ├───────────────────────┼──────────────────────┼───────────────┼──────────────────────────┤
5554       │ip4-auto-default-route │ NMTernary            │               │ Whether to enable        │
5555       │                       │ (int32)              │               │ special handling of the  │
5556       │                       │                      │               │ IPv4 default route. If   │
5557       │                       │                      │               │ enabled, the IPv4        │
5558       │                       │                      │               │ default route from       │
5559       │                       │                      │               │ wireguard.peer-routes    │
5560       │                       │                      │               │ will be placed to a      │
5561       │                       │                      │               │ dedicated routing-table  │
5562       │                       │                      │               │ and two policy routing   │
5563       │                       │                      │               │ rules will be added. The │
5564       │                       │                      │               │ fwmark number is also    │
5565       │                       │                      │               │ used as routing-table    │
5566       │                       │                      │               │ for the default-route,   │
5567       │                       │                      │               │ and if fwmark is zero,   │
5568       │                       │                      │               │ an unused fwmark/table   │
5569       │                       │                      │               │ is chosen automatically. │
5570       │                       │                      │               │ This corresponds to what │
5571       │                       │                      │               │ wg-quick does with       │
5572       │                       │                      │               │ Table=auto and what      │
5573       │                       │                      │               │ WireGuard calls          │
5574       │                       │                      │               │ "Improved Rule-based     │
5575       │                       │                      │               │ Routing".                │
5576       │                       │                      │               │                          │
5577       │                       │                      │               │  Note that for this      │
5578       │                       │                      │               │ automatism to work, you  │
5579       │                       │                      │               │ usually don't want to    │
5580       │                       │                      │               │ set ipv4.gateway,        │
5581       │                       │                      │               │ because that will result │
5582       │                       │                      │               │ in a conflicting default │
5583       │                       │                      │               │ route.                   │
5584       │                       │                      │               │                          │
5585       │                       │                      │               │  Leaving this at the     │
5586       │                       │                      │               │ default will enable this │
5587       │                       │                      │               │ option automatically if  │
5588       │                       │                      │               │ ipv4.never-default is    │
5589       │                       │                      │               │ not set and there are    │
5590       │                       │                      │               │ any peers that use a     │
5591       │                       │                      │               │ default-route as         │
5592       │                       │                      │               │ allowed-ips. Since this  │
5593       │                       │                      │               │ automatism only makes    │
5594       │                       │                      │               │ sense if you also have a │
5595       │                       │                      │               │ peer with an /0          │
5596       │                       │                      │               │ allowed-ips, it is       │
5597       │                       │                      │               │ usually not necessary to │
5598       │                       │                      │               │ enable this explicitly.  │
5599       │                       │                      │               │ However, you can disable │
5600       │                       │                      │               │ it if you want to        │
5601       │                       │                      │               │ configure your own       │
5602       │                       │                      │               │ routing and rules.       │
5603       ├───────────────────────┼──────────────────────┼───────────────┼──────────────────────────┤
5604       │ip6-auto-default-route │ NMTernary            │               │ Like                     │
5605       │                       │ (int32)              │               │ ip4-auto-default-route,  │
5606       │                       │                      │               │ but for the IPv6 default │
5607       │                       │                      │               │ route.                   │
5608       ├───────────────────────┼──────────────────────┼───────────────┼──────────────────────────┤
5609       │listen-port            │ uint32               │ 0             │ The listen-port. If      │
5610       │                       │                      │               │ listen-port is not       │
5611       │                       │                      │               │ specified, the port will │
5612       │                       │                      │               │ be chosen randomly when  │
5613       │                       │                      │               │ the interface comes up.  │
5614       ├───────────────────────┼──────────────────────┼───────────────┼──────────────────────────┤
5615       │mtu                    │ uint32               │ 0             │ If non-zero, only        │
5616       │                       │                      │               │ transmit packets of the  │
5617       │                       │                      │               │ specified size or        │
5618       │                       │                      │               │ smaller, breaking larger │
5619       │                       │                      │               │ packets up into multiple │
5620       │                       │                      │               │ fragments.               │
5621       │                       │                      │               │                          │
5622       │                       │                      │               │  If zero a default MTU   │
5623       │                       │                      │               │ is used. Note that       │
5624       │                       │                      │               │ contrary to wg-quick's   │
5625       │                       │                      │               │ MTU setting, this does   │
5626       │                       │                      │               │ not take into account    │
5627       │                       │                      │               │ the current routes at    │
5628       │                       │                      │               │ the time of activation.  │
5629       ├───────────────────────┼──────────────────────┼───────────────┼──────────────────────────┤
5630       │peer-routes            │ boolean              │ TRUE          │ Whether to automatically │
5631       │                       │                      │               │ add routes for the       │
5632       │                       │                      │               │ AllowedIPs ranges of the │
5633       │                       │                      │               │ peers. If TRUE (the      │
5634       │                       │                      │               │ default), NetworkManager │
5635       │                       │                      │               │ will automatically add   │
5636       │                       │                      │               │ routes in the routing    │
5637       │                       │                      │               │ tables according to      │
5638       │                       │                      │               │ ipv4.route-table and     │
5639       │                       │                      │               │ ipv6.route-table.        │
5640       │                       │                      │               │ Usually you want this    │
5641       │                       │                      │               │ automatism enabled. If   │
5642       │                       │                      │               │ FALSE, no such routes    │
5643       │                       │                      │               │ are added automatically. │
5644       │                       │                      │               │ In this case, the user   │
5645       │                       │                      │               │ may want to configure    │
5646       │                       │                      │               │ static routes in         │
5647       │                       │                      │               │ ipv4.routes and          │
5648       │                       │                      │               │ ipv6.routes,             │
5649       │                       │                      │               │ respectively.            │
5650       │                       │                      │               │                          │
5651       │                       │                      │               │  Note that if the peer's │
5652       │                       │                      │               │ AllowedIPs is            │
5653       │                       │                      │               │ "0.0.0.0/0" or "::/0"    │
5654       │                       │                      │               │ and the profile's        │
5655       │                       │                      │               │ ipv4.never-default or    │
5656       │                       │                      │               │ ipv6.never-default       │
5657       │                       │                      │               │ setting is enabled, the  │
5658       │                       │                      │               │ peer route for this peer │
5659       │                       │                      │               │ won't be added           │
5660       │                       │                      │               │ automatically.           │
5661       ├───────────────────────┼──────────────────────┼───────────────┼──────────────────────────┤
5662       │peers                  │ array of 'a{sv}'     │               │ Array of dictionaries    │
5663       │                       │                      │               │ for the WireGuard peers. │
5664       ├───────────────────────┼──────────────────────┼───────────────┼──────────────────────────┤
5665       │private-key            │ string               │               │ The 256 bit private-key  │
5666       │                       │                      │               │ in base64 encoding.      │
5667       ├───────────────────────┼──────────────────────┼───────────────┼──────────────────────────┤
5668       │private-key-flags      │ NMSettingSecretFlags │               │ Flags indicating how to  │
5669       │                       │ (uint32)             │               │ handle the "private-key" │
5670       │                       │                      │               │ property.                │
5671       └───────────────────────┴──────────────────────┴───────────────┴──────────────────────────┘
5672
5673   802-11-wireless setting
5674       Wi-Fi Settings.
5675
5676       ┌──────────────────────────┬─────────────────┬───────────────┬───────────────────────────────────────────────────────┐
5677Key Name                  Value Type      Default Value Value                                                 
5678       │                          │                 │               │ Description                                           
5679       ├──────────────────────────┼─────────────────┼───────────────┼───────────────────────────────────────────────────────┤
5680       │ap-isolation              │ NMTernary       │               │ Configures AP                                         │
5681       │                          │ (int32)         │               │ isolation, which                                      │
5682       │                          │                 │               │ prevents                                              │
5683       │                          │                 │               │ communication                                         │
5684       │                          │                 │               │ between wireless                                      │
5685       │                          │                 │               │ devices                                               │
5686       │                          │                 │               │ connected to                                          │
5687       │                          │                 │               │ this AP. This                                         │
5688       │                          │                 │               │ property can be                                       │
5689       │                          │                 │               │ set to a value                                        │
5690       │                          │                 │               │ different from                                        │
5691       │                          │                 │               │ NM_TERNARY_DEFAULT                                    │
5692       │                          │                 │               │ (-1) only when                                        │
5693       │                          │                 │               │ the interface is                                      │
5694       │                          │                 │               │ configured in AP                                      │
5695       │                          │                 │               │ mode.                                                 │
5696       │                          │                 │               │                                                       │
5697       │                          │                 │               │  If set to                                            │
5698       │                          │                 │               │ NM_TERNARY_TRUE                                       │
5699       │                          │                 │               │ (1), devices are                                      │
5700       │                          │                 │               │ not able to                                           │
5701       │                          │                 │               │ communicate with                                      │
5702       │                          │                 │               │ each other. This                                      │
5703       │                          │                 │               │ increases                                             │
5704       │                          │                 │               │ security because                                      │
5705       │                          │                 │               │ it protects                                           │
5706       │                          │                 │               │ devices against                                       │
5707       │                          │                 │               │ attacks from                                          │
5708       │                          │                 │               │ other clients in                                      │
5709       │                          │                 │               │ the network. At                                       │
5710       │                          │                 │               │ the same time,                                        │
5711       │                          │                 │               │ it prevents                                           │
5712       │                          │                 │               │ devices to                                            │
5713       │                          │                 │               │ access resources                                      │
5714       │                          │                 │               │ on the same                                           │
5715       │                          │                 │               │ wireless                                              │
5716       │                          │                 │               │ networks as file                                      │
5717       │                          │                 │               │ shares,                                               │
5718       │                          │                 │               │ printers, etc.                                        │
5719       │                          │                 │               │                                                       │
5720       │                          │                 │               │  If set to                                            │
5721       │                          │                 │               │ NM_TERNARY_FALSE                                      │
5722       │                          │                 │               │ (0), devices can                                      │
5723       │                          │                 │               │ talk to each                                          │
5724       │                          │                 │               │ other.                                                │
5725       │                          │                 │               │                                                       │
5726       │                          │                 │               │  When set to                                          │
5727       │                          │                 │               │ NM_TERNARY_DEFAULT                                    │
5728       │                          │                 │               │ (-1), the global                                      │
5729       │                          │                 │               │ default is used;                                      │
5730       │                          │                 │               │ in case the                                           │
5731       │                          │                 │               │ global default                                        │
5732       │                          │                 │               │ is unspecified                                        │
5733       │                          │                 │               │ it is assumed to                                      │
5734       │                          │                 │               │ be                                                    │
5735       │                          │                 │               │ NM_TERNARY_FALSE                                      │
5736       │                          │                 │               │ (0).                                                  │
5737       ├──────────────────────────┼─────────────────┼───────────────┼───────────────────────────────────────────────────────┤
5738       │assigned-mac-address      │ string          │               │ The new field for                                     │
5739       │                          │                 │               │ the cloned MAC                                        │
5740       │                          │                 │               │ address. It can be                                    │
5741       │                          │                 │               │ either a hardware                                     │
5742       │                          │                 │               │ address in ASCII                                      │
5743       │                          │                 │               │ representation, or                                    │
5744       │                          │                 │               │ one of the special                                    │
5745       │                          │                 │               │ values "preserve",                                    │
5746       │                          │                 │               │ "permanent",                                          │
5747       │                          │                 │               │ "random" or                                           │
5748       │                          │                 │               │ "stable". This                                        │
5749       │                          │                 │               │ field replaces the                                    │
5750       │                          │                 │               │ deprecated                                            │
5751       │                          │                 │               │ "cloned-mac-address"                                  │
5752       │                          │                 │               │ on D-Bus, which                                       │
5753       │                          │                 │               │ can only contain                                      │
5754       │                          │                 │               │ explicit hardware                                     │
5755       │                          │                 │               │ addresses. Note                                       │
5756       │                          │                 │               │ that this property                                    │
5757       │                          │                 │               │ only exists in                                        │
5758       │                          │                 │               │ D-Bus API. libnm                                      │
5759       │                          │                 │               │ and nmcli continue                                    │
5760       │                          │                 │               │ to call this                                          │
5761       │                          │                 │               │ property                                              │
5762       │                          │                 │               │ "cloned-mac-address".                                 │
5763       ├──────────────────────────┼─────────────────┼───────────────┼───────────────────────────────────────────────────────┤
5764       │band                      │ string          │               │ 802.11 frequency band                                 │
5765       │                          │                 │               │ of the network.  One                                  │
5766       │                          │                 │               │ of "a" for 5GHz                                       │
5767       │                          │                 │               │ 802.11a or "bg" for                                   │
5768       │                          │                 │               │ 2.4GHz 802.11.  This                                  │
5769       │                          │                 │               │ will lock                                             │
5770       │                          │                 │               │ associations to the                                   │
5771       │                          │                 │               │ Wi-Fi network to the                                  │
5772       │                          │                 │               │ specific band, i.e.                                   │
5773       │                          │                 │               │ if "a" is specified,                                  │
5774       │                          │                 │               │ the device will not                                   │
5775       │                          │                 │               │ associate with the                                    │
5776       │                          │                 │               │ same network in the                                   │
5777       │                          │                 │               │ 2.4GHz band even if                                   │
5778       │                          │                 │               │ the network's                                         │
5779       │                          │                 │               │ settings are                                          │
5780       │                          │                 │               │ compatible.  This                                     │
5781       │                          │                 │               │ setting depends on                                    │
5782       │                          │                 │               │ specific driver                                       │
5783       │                          │                 │               │ capability and may                                    │
5784       │                          │                 │               │ not work with all                                     │
5785       │                          │                 │               │ drivers.                                              │
5786       ├──────────────────────────┼─────────────────┼───────────────┼───────────────────────────────────────────────────────┤
5787       │bssid                     │ byte array      │               │ If specified, directs                                 │
5788       │                          │                 │               │ the device to only                                    │
5789       │                          │                 │               │ associate with the                                    │
5790       │                          │                 │               │ given access point.                                   │
5791       │                          │                 │               │ This capability is                                    │
5792       │                          │                 │               │ highly driver                                         │
5793       │                          │                 │               │ dependent and not                                     │
5794       │                          │                 │               │ supported by all                                      │
5795       │                          │                 │               │ devices.  Note: this                                  │
5796       │                          │                 │               │ property does not                                     │
5797       │                          │                 │               │ control the BSSID                                     │
5798       │                          │                 │               │ used when creating an                                 │
5799       │                          │                 │               │ Ad-Hoc network and is                                 │
5800       │                          │                 │               │ unlikely to in the                                    │
5801       │                          │                 │               │ future.                                               │
5802       │                          │                 │               │                                                       │
5803       │                          │                 │               │  Locking a client                                     │
5804       │                          │                 │               │ profile to a certain                                  │
5805       │                          │                 │               │ BSSID will prevent                                    │
5806       │                          │                 │               │ roaming and also                                      │
5807       │                          │                 │               │ disable background                                    │
5808       │                          │                 │               │ scanning. That can be                                 │
5809       │                          │                 │               │ useful, if there is                                   │
5810       │                          │                 │               │ only one access point                                 │
5811       │                          │                 │               │ for the SSID.                                         │
5812       ├──────────────────────────┼─────────────────┼───────────────┼───────────────────────────────────────────────────────┤
5813       │channel                   │ uint32          │ 0             │ Wireless channel to                                   │
5814       │                          │                 │               │ use for the Wi-Fi                                     │
5815       │                          │                 │               │ connection.  The                                      │
5816       │                          │                 │               │ device will only join                                 │
5817       │                          │                 │               │ (or create for Ad-Hoc                                 │
5818       │                          │                 │               │ networks) a Wi-Fi                                     │
5819       │                          │                 │               │ network on the                                        │
5820       │                          │                 │               │ specified channel.                                    │
5821       │                          │                 │               │ Because channel                                       │
5822       │                          │                 │               │ numbers overlap                                       │
5823       │                          │                 │               │ between bands, this                                   │
5824       │                          │                 │               │ property also                                         │
5825       │                          │                 │               │ requires the "band"                                   │
5826       │                          │                 │               │ property to be set.                                   │
5827       ├──────────────────────────┼─────────────────┼───────────────┼───────────────────────────────────────────────────────┤
5828       │cloned-mac-address        │ byte array      │               │ This D-Bus field is                                   │
5829       │                          │                 │               │ deprecated in favor                                   │
5830       │                          │                 │               │ of                                                    │
5831       │                          │                 │               │ "assigned-mac-address"                                │
5832       │                          │                 │               │ which is more                                         │
5833       │                          │                 │               │ flexible and allows                                   │
5834       │                          │                 │               │ specifying special                                    │
5835       │                          │                 │               │ variants like                                         │
5836       │                          │                 │               │ "random". For libnm                                   │
5837       │                          │                 │               │ and nmcli, this field                                 │
5838       │                          │                 │               │ is called                                             │
5839       │                          │                 │               │ "cloned-mac-address".                                 │
5840       ├──────────────────────────┼─────────────────┼───────────────┼───────────────────────────────────────────────────────┤
5841       │generate-mac-address-mask │ string          │               │ With                                                  │
5842       │                          │                 │               │ "cloned-mac-address"                                  │
5843       │                          │                 │               │ setting "random" or                                   │
5844       │                          │                 │               │ "stable", by default                                  │
5845       │                          │                 │               │ all bits of the MAC                                   │
5846       │                          │                 │               │ address are scrambled                                 │
5847       │                          │                 │               │ and a                                                 │
5848       │                          │                 │               │ locally-administered,                                 │
5849       │                          │                 │               │ unicast MAC address is                                │
5850       │                          │                 │               │ created. This property                                │
5851       │                          │                 │               │ allows to specify that                                │
5852       │                          │                 │               │ certain bits are                                      │
5853       │                          │                 │               │ fixed. Note that the                                  │
5854       │                          │                 │               │ least significant bit                                 │
5855       │                          │                 │               │ of the first MAC                                      │
5856       │                          │                 │               │ address will always be                                │
5857       │                          │                 │               │ unset to create a                                     │
5858       │                          │                 │               │ unicast MAC address.                                  │
5859       │                          │                 │               │                                                       │
5860       │                          │                 │               │  If the property is                                   │
5861       │                          │                 │               │ NULL, it is eligible                                  │
5862       │                          │                 │               │ to be overwritten by a                                │
5863       │                          │                 │               │ default connection                                    │
5864       │                          │                 │               │ setting. If the value                                 │
5865       │                          │                 │               │ is still NULL or an                                   │
5866       │                          │                 │               │ empty string, the                                     │
5867       │                          │                 │               │ default is to create a                                │
5868       │                          │                 │               │ locally-administered,                                 │
5869       │                          │                 │               │ unicast MAC address.                                  │
5870       │                          │                 │               │                                                       │
5871       │                          │                 │               │  If the value contains                                │
5872       │                          │                 │               │ one MAC address, this                                 │
5873       │                          │                 │               │ address is used as                                    │
5874       │                          │                 │               │ mask. The set bits of                                 │
5875       │                          │                 │               │ the mask are to be                                    │
5876       │                          │                 │               │ filled with the                                       │
5877       │                          │                 │               │ current MAC address of                                │
5878       │                          │                 │               │ the device, while the                                 │
5879       │                          │                 │               │ unset bits are subject                                │
5880       │                          │                 │               │ to randomization.                                     │
5881       │                          │                 │               │ Setting                                               │
5882       │                          │                 │               │ "FE:FF:FF:00:00:00"                                   │
5883       │                          │                 │               │ means to preserve the                                 │
5884       │                          │                 │               │ OUI of the current MAC                                │
5885       │                          │                 │               │ address and only                                      │
5886       │                          │                 │               │ randomize the lower 3                                 │
5887       │                          │                 │               │ bytes using the                                       │
5888       │                          │                 │               │ "random" or "stable"                                  │
5889       │                          │                 │               │ algorithm.                                            │
5890       │                          │                 │               │                                                       │
5891       │                          │                 │               │  If the value contains                                │
5892       │                          │                 │               │ one additional MAC                                    │
5893       │                          │                 │               │ address after the                                     │
5894       │                          │                 │               │ mask, this address is                                 │
5895       │                          │                 │               │ used instead of the                                   │
5896       │                          │                 │               │ current MAC address to                                │
5897       │                          │                 │               │ fill the bits that                                    │
5898       │                          │                 │               │ shall not be                                          │
5899       │                          │                 │               │ randomized. For                                       │
5900       │                          │                 │               │ example, a value of                                   │
5901       │                          │                 │               │ "FE:FF:FF:00:00:00                                    │
5902       │                          │                 │               │ 68:F7:28:00:00:00"                                    │
5903       │                          │                 │               │ will set the OUI of                                   │
5904       │                          │                 │               │ the MAC address to                                    │
5905       │                          │                 │               │ 68:F7:28, while the                                   │
5906       │                          │                 │               │ lower bits are                                        │
5907       │                          │                 │               │ randomized. A value of                                │
5908       │                          │                 │               │ "02:00:00:00:00:00                                    │
5909       │                          │                 │               │ 00:00:00:00:00:00"                                    │
5910       │                          │                 │               │ will create a fully                                   │
5911       │                          │                 │               │ scrambled                                             │
5912       │                          │                 │               │ globally-administered,                                │
5913       │                          │                 │               │ burned-in MAC address.                                │
5914       │                          │                 │               │                                                       │
5915       │                          │                 │               │  If the value contains                                │
5916       │                          │                 │               │ more than one                                         │
5917       │                          │                 │               │ additional MAC                                        │
5918       │                          │                 │               │ addresses, one of them                                │
5919       │                          │                 │               │ is chosen randomly.                                   │
5920       │                          │                 │               │ For example,                                          │
5921       │                          │                 │               │ "02:00:00:00:00:00                                    │
5922       │                          │                 │               │ 00:00:00:00:00:00                                     │
5923       │                          │                 │               │ 02:00:00:00:00:00"                                    │
5924       │                          │                 │               │ will create a fully                                   │
5925       │                          │                 │               │ scrambled MAC address,                                │
5926       │                          │                 │               │ randomly locally or                                   │
5927       │                          │                 │               │ globally administered.                                │
5928       ├──────────────────────────┼─────────────────┼───────────────┼───────────────────────────────────────────────────────┤
5929       │hidden                    │ boolean         │ FALSE         │ If TRUE, indicates                                    │
5930       │                          │                 │               │ that the network is a                                 │
5931       │                          │                 │               │ non-broadcasting                                      │
5932       │                          │                 │               │ network that hides its                                │
5933       │                          │                 │               │ SSID. This works both                                 │
5934       │                          │                 │               │ in infrastructure and                                 │
5935       │                          │                 │               │ AP mode.                                              │
5936       │                          │                 │               │                                                       │
5937       │                          │                 │               │  In infrastructure                                    │
5938       │                          │                 │               │ mode, various                                         │
5939       │                          │                 │               │ workarounds are used                                  │
5940       │                          │                 │               │ for a more reliable                                   │
5941       │                          │                 │               │ discovery of hidden                                   │
5942       │                          │                 │               │ networks, such as                                     │
5943       │                          │                 │               │ probe-scanning the                                    │
5944       │                          │                 │               │ SSID.  However, these                                 │
5945       │                          │                 │               │ workarounds expose                                    │
5946       │                          │                 │               │ inherent insecurities                                 │
5947       │                          │                 │               │ with hidden SSID                                      │
5948       │                          │                 │               │ networks, and thus                                    │
5949       │                          │                 │               │ hidden SSID networks                                  │
5950       │                          │                 │               │ should be used with                                   │
5951       │                          │                 │               │ caution.                                              │
5952       │                          │                 │               │                                                       │
5953       │                          │                 │               │  In AP mode, the                                      │
5954       │                          │                 │               │ created network does                                  │
5955       │                          │                 │               │ not broadcast its                                     │
5956       │                          │                 │               │ SSID.                                                 │
5957       │                          │                 │               │                                                       │
5958       │                          │                 │               │  Note that marking the                                │
5959       │                          │                 │               │ network as hidden may                                 │
5960       │                          │                 │               │ be a privacy issue for                                │
5961       │                          │                 │               │ you (in infrastructure                                │
5962       │                          │                 │               │ mode) or client                                       │
5963       │                          │                 │               │ stations (in AP mode),                                │
5964       │                          │                 │               │ as the explicit                                       │
5965       │                          │                 │               │ probe-scans are                                       │
5966       │                          │                 │               │ distinctly                                            │
5967       │                          │                 │               │ recognizable on the                                   │
5968       │                          │                 │               │ air.                                                  │
5969       ├──────────────────────────┼─────────────────┼───────────────┼───────────────────────────────────────────────────────┤
5970       │mac-address               │ byte array      │               │ If specified, this                                    │
5971       │                          │                 │               │ connection will only                                  │
5972       │                          │                 │               │ apply to the Wi-Fi                                    │
5973       │                          │                 │               │ device whose permanent                                │
5974       │                          │                 │               │ MAC address matches.                                  │
5975       │                          │                 │               │ This property does not                                │
5976       │                          │                 │               │ change the MAC address                                │
5977       │                          │                 │               │ of the device (i.e.                                   │
5978       │                          │                 │               │ MAC spoofing).                                        │
5979       ├──────────────────────────┼─────────────────┼───────────────┼───────────────────────────────────────────────────────┤
5980       │mac-address-blacklist     │ array of string │               │ A list of permanent                                   │
5981       │                          │                 │               │ MAC addresses of Wi-Fi                                │
5982       │                          │                 │               │ devices to which this                                 │
5983       │                          │                 │               │ connection should                                     │
5984       │                          │                 │               │ never apply.  Each MAC                                │
5985       │                          │                 │               │ address should be                                     │
5986       │                          │                 │               │ given in the standard                                 │
5987       │                          │                 │               │ hex-digits-and-colons                                 │
5988       │                          │                 │               │ notation (eg                                          │
5989       │                          │                 │               │ "00:11:22:33:44:55").                                 │
5990       ├──────────────────────────┼─────────────────┼───────────────┼───────────────────────────────────────────────────────┤
5991       │mac-address-randomization │ uint32          │ 0             │ One of                                                │
5992       │                          │                 │               │ NM_SETTING_MAC_RANDOMIZATION_DEFAULT                  │
5993       │                          │                 │               │ (0) (never randomize                                  │
5994       │                          │                 │               │ unless the user has                                   │
5995       │                          │                 │               │ set a global default                                  │
5996       │                          │                 │               │ to randomize and the                                  │
5997       │                          │                 │               │ supplicant supports                                   │
5998       │                          │                 │               │ randomization),                                       │
5999       │                          │                 │               │ NM_SETTING_MAC_RANDOMIZATION_NEVER                    │
6000       │                          │                 │               │ (1) (never randomize                                  │
6001       │                          │                 │               │ the MAC address), or                                  │
6002       │                          │                 │               │ NM_SETTING_MAC_RANDOMIZATION_ALWAYS                   │
6003       │                          │                 │               │ (2) (always randomize                                 │
6004       │                          │                 │               │ the MAC address). This                                │
6005       │                          │                 │               │ property is deprecated                                │
6006       │                          │                 │               │ for                                                   │
6007       │                          │                 │               │ 'cloned-mac-address'.                                 │
6008       │                          │                 │               │ Deprecated: 1                                         │
6009       ├──────────────────────────┼─────────────────┼───────────────┼───────────────────────────────────────────────────────┤
6010       │mode                      │ string          │               │ Wi-Fi network mode; one of                            │
6011       │                          │                 │               │ "infrastructure", "mesh", "adhoc" or                  │
6012       │                          │                 │               │ "ap".  If blank, infrastructure is                    │
6013       │                          │                 │               │ assumed.                                              │
6014       ├──────────────────────────┼─────────────────┼───────────────┼───────────────────────────────────────────────────────┤
6015       │mtu                       │ uint32          │ 0             │ If non-zero, only transmit packets                    │
6016       │                          │                 │               │ of the specified size or smaller,                     │
6017       │                          │                 │               │ breaking larger packets up into                       │
6018       │                          │                 │               │ multiple Ethernet frames.                             │
6019       ├──────────────────────────┼─────────────────┼───────────────┼───────────────────────────────────────────────────────┤
6020       │powersave                 │ uint32          │ 0             │ One of                                                │
6021       │                          │                 │               │ NM_SETTING_WIRELESS_POWERSAVE_DISABLE                 │
6022       │                          │                 │               │ (2) (disable Wi-Fi power saving),                     │
6023       │                          │                 │               │ NM_SETTING_WIRELESS_POWERSAVE_ENABLE                  │
6024       │                          │                 │               │ (3) (enable Wi-Fi power saving),                      │
6025       │                          │                 │               │ NM_SETTING_WIRELESS_POWERSAVE_IGNORE                  │
6026       │                          │                 │               │ (1) (don't touch currently configure                  │
6027       │                          │                 │               │ setting) or                                           │
6028       │                          │                 │               │ NM_SETTING_WIRELESS_POWERSAVE_DEFAULT                 │
6029       │                          │                 │               │ (0) (use the globally configured                      │
6030       │                          │                 │               │ value). All other values are                          │
6031       │                          │                 │               │ reserved.                                             │
6032       ├──────────────────────────┼─────────────────┼───────────────┼───────────────────────────────────────────────────────┤
6033       │rate                      │ uint32          │ 0             │ If non-zero, directs the device to                    │
6034       │                          │                 │               │ only use the specified bitrate for                    │
6035       │                          │                 │               │ communication with the access point.                  │
6036       │                          │                 │               │ Units are in Kb/s, ie 5500 = 5.5                      │
6037       │                          │                 │               │ Mbit/s.  This property is highly                      │
6038       │                          │                 │               │ driver dependent and not all devices                  │
6039       │                          │                 │               │ support setting a static bitrate.                     │
6040       ├──────────────────────────┼─────────────────┼───────────────┼───────────────────────────────────────────────────────┤
6041       │security                  │                 │               │ This property is deprecated, but can                  │
6042       │                          │                 │               │ be set to the value                                   │
6043       │                          │                 │               │ '802-11-wireless-security' when a                     │
6044       │                          │                 │               │ wireless security setting is also                     │
6045       │                          │                 │               │ present in the connection dictionary,                 │
6046       │                          │                 │               │ for compatibility with very old                       │
6047       │                          │                 │               │ NetworkManager daemons.                               │
6048       ├──────────────────────────┼─────────────────┼───────────────┼───────────────────────────────────────────────────────┤
6049       │seen-bssids               │ array of string │               │ A list of BSSIDs (each BSSID                          │
6050       │                          │                 │               │ formatted as a MAC address like                       │
6051       │                          │                 │               │ "00:11:22:33:44:55") that have been                   │
6052       │                          │                 │               │ detected as part of the Wi-Fi                         │
6053       │                          │                 │               │ network.  NetworkManager internally                   │
6054       │                          │                 │               │ tracks previously seen BSSIDs. The                    │
6055       │                          │                 │               │ property is only meant for reading                    │
6056       │                          │                 │               │ and reflects the BSSID list of                        │
6057       │                          │                 │               │ NetworkManager. The changes you make                  │
6058       │                          │                 │               │ to this property will not be                          │
6059       │                          │                 │               │ preserved.                                            │
6060       ├──────────────────────────┼─────────────────┼───────────────┼───────────────────────────────────────────────────────┤
6061       │ssid                      │ byte array      │               │ SSID of the Wi-Fi network. Must be                    │
6062       │                          │                 │               │ specified.                                            │
6063       ├──────────────────────────┼─────────────────┼───────────────┼───────────────────────────────────────────────────────┤
6064       │tx-power                  │ uint32          │ 0             │ If non-zero, directs the device to                    │
6065       │                          │                 │               │ use the specified transmit power.                     │
6066       │                          │                 │               │ Units are dBm.  This property is                      │
6067       │                          │                 │               │ highly driver dependent and not all                   │
6068       │                          │                 │               │ devices support setting a static                      │
6069       │                          │                 │               │ transmit power.                                       │
6070       ├──────────────────────────┼─────────────────┼───────────────┼───────────────────────────────────────────────────────┤
6071       │wake-on-wlan              │ uint32          │ 1             │ The NMSettingWirelessWakeOnWLan                       │
6072       │                          │                 │               │ options to enable. Not all devices                    │
6073       │                          │                 │               │ support all options. May be any                       │
6074       │                          │                 │               │ combination of                                        │
6075       │                          │                 │               │ NM_SETTING_WIRELESS_WAKE_ON_WLAN_ANY                  │
6076       │                          │                 │               │ (0x2),                                                │
6077       │                          │                 │               │ NM_SETTING_WIRELESS_WAKE_ON_WLAN_DISCONNECT           │
6078       │                          │                 │               │ (0x4),                                                │
6079       │                          │                 │               │ NM_SETTING_WIRELESS_WAKE_ON_WLAN_MAGIC                │
6080       │                          │                 │               │ (0x8),                                                │
6081       │                          │                 │               │ NM_SETTING_WIRELESS_WAKE_ON_WLAN_GTK_REKEY_FAILURE    │
6082       │                          │                 │               │ (0x10),                                               │
6083       │                          │                 │               │ NM_SETTING_WIRELESS_WAKE_ON_WLAN_EAP_IDENTITY_REQUEST │
6084       │                          │                 │               │ (0x20),                                               │
6085       │                          │                 │               │ NM_SETTING_WIRELESS_WAKE_ON_WLAN_4WAY_HANDSHAKE       │
6086       │                          │                 │               │ (0x40),                                               │
6087       │                          │                 │               │ NM_SETTING_WIRELESS_WAKE_ON_WLAN_RFKILL_RELEASE       │
6088       │                          │                 │               │ (0x80),                                               │
6089       │                          │                 │               │ NM_SETTING_WIRELESS_WAKE_ON_WLAN_TCP                  │
6090       │                          │                 │               │ (0x100) or the special values                         │
6091       │                          │                 │               │ NM_SETTING_WIRELESS_WAKE_ON_WLAN_DEFAULT              │
6092       │                          │                 │               │ (0x1) (to use global settings) and                    │
6093       │                          │                 │               │ NM_SETTING_WIRELESS_WAKE_ON_WLAN_IGNORE               │
6094       │                          │                 │               │ (0x8000) (to disable management of                    │
6095       │                          │                 │               │ Wake-on-LAN in NetworkManager).                       │
6096       └──────────────────────────┴─────────────────┴───────────────┴───────────────────────────────────────────────────────┘
6097
6098   802-11-wireless-security setting
6099       Wi-Fi Security Settings.
6100
6101       ┌────────────────────┬──────────────────────┬───────────────┬────────────────────────────────────────────┐
6102Key Name            Value Type           Default Value Value                                      
6103       │                    │                      │               │ Description                                
6104       ├────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
6105       │auth-alg            │ string               │               │ When WEP is used                           │
6106       │                    │                      │               │ (ie, key-mgmt =                            │
6107       │                    │                      │               │ "none" or                                  │
6108       │                    │                      │               │ "ieee8021x")                               │
6109       │                    │                      │               │ indicate the                               │
6110       │                    │                      │               │ 802.11                                     │
6111       │                    │                      │               │ authentication                             │
6112       │                    │                      │               │ algorithm                                  │
6113       │                    │                      │               │ required by the                            │
6114       │                    │                      │               │ AP here.  One of                           │
6115       │                    │                      │               │ "open" for Open                            │
6116       │                    │                      │               │ System, "shared"                           │
6117       │                    │                      │               │ for Shared Key,                            │
6118       │                    │                      │               │ or "leap" for                              │
6119       │                    │                      │               │ Cisco LEAP.                                │
6120       │                    │                      │               │ When using Cisco                           │
6121       │                    │                      │               │ LEAP (ie,                                  │
6122       │                    │                      │               │ key-mgmt =                                 │
6123       │                    │                      │               │ "ieee8021x" and                            │
6124       │                    │                      │               │ auth-alg =                                 │
6125       │                    │                      │               │ "leap") the                                │
6126       │                    │                      │               │ "leap-username"                            │
6127       │                    │                      │               │ and                                        │
6128       │                    │                      │               │ "leap-password"                            │
6129       │                    │                      │               │ properties must                            │
6130       │                    │                      │               │ be specified.                              │
6131       ├────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
6132       │fils                │ int32                │ 0             │ Indicates                                  │
6133       │                    │                      │               │ whether Fast                               │
6134       │                    │                      │               │ Initial Link                               │
6135       │                    │                      │               │ Setup (802.11ai)                           │
6136       │                    │                      │               │ must be enabled                            │
6137       │                    │                      │               │ for the                                    │
6138       │                    │                      │               │ connection.  One                           │
6139       │                    │                      │               │ of                                         │
6140       │                    │                      │               │ NM_SETTING_WIRELESS_SECURITY_FILS_DEFAULT  │
6141       │                    │                      │               │ (0) (use global                            │
6142       │                    │                      │               │ default value),                            │
6143       │                    │                      │               │ NM_SETTING_WIRELESS_SECURITY_FILS_DISABLE  │
6144       │                    │                      │               │ (1) (disable                               │
6145       │                    │                      │               │ FILS),                                     │
6146       │                    │                      │               │ NM_SETTING_WIRELESS_SECURITY_FILS_OPTIONAL │
6147       │                    │                      │               │ (2) (enable FILS                           │
6148       │                    │                      │               │ if the                                     │
6149       │                    │                      │               │ supplicant and                             │
6150       │                    │                      │               │ the access point                           │
6151       │                    │                      │               │ support it) or                             │
6152       │                    │                      │               │ NM_SETTING_WIRELESS_SECURITY_FILS_REQUIRED │
6153       │                    │                      │               │ (3) (enable FILS                           │
6154       │                    │                      │               │ and fail if not                            │
6155       │                    │                      │               │ supported).                                │
6156       │                    │                      │               │ When set to                                │
6157       │                    │                      │               │ NM_SETTING_WIRELESS_SECURITY_FILS_DEFAULT  │
6158       │                    │                      │               │ (0) and no                                 │
6159       │                    │                      │               │ global default                             │
6160       │                    │                      │               │ is set, FILS                               │
6161       │                    │                      │               │ will be                                    │
6162       │                    │                      │               │ optionally                                 │
6163       │                    │                      │               │ enabled.                                   │
6164       ├────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
6165       │group               │ array of string      │               │ A list of group/broadcast encryption       │
6166       │                    │                      │               │ algorithms which prevents connections to   │
6167       │                    │                      │               │ Wi-Fi networks that do not utilize one of  │
6168       │                    │                      │               │ the algorithms in the list.  For maximum   │
6169       │                    │                      │               │ compatibility leave this property empty.   │
6170       │                    │                      │               │ Each list element may be one of "wep40",   │
6171       │                    │                      │               │ "wep104", "tkip", or "ccmp".               │
6172       ├────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
6173       │key-mgmt            │ string               │               │ Key management used for the connection.    │
6174       │                    │                      │               │ One of "none" (WEP or no password          │
6175       │                    │                      │               │ protection), "ieee8021x" (Dynamic WEP),    │
6176       │                    │                      │               │ "owe" (Opportunistic Wireless Encryption), │
6177       │                    │                      │               │ "wpa-psk" (WPA2 + WPA3 personal), "sae"    │
6178       │                    │                      │               │ (WPA3 personal only), "wpa-eap" (WPA2 +    │
6179       │                    │                      │               │ WPA3 enterprise) or "wpa-eap-suite-b-192"  │
6180       │                    │                      │               │ (WPA3 enterprise only).                    │
6181       │                    │                      │               │                                            │
6182       │                    │                      │               │  This property must be set for any Wi-Fi   │
6183       │                    │                      │               │ connection that uses security.             │
6184       ├────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
6185       │leap-password       │ string               │               │ The login password for legacy LEAP         │
6186       │                    │                      │               │ connections (ie, key-mgmt = "ieee8021x"    │
6187       │                    │                      │               │ and auth-alg = "leap").                    │
6188       ├────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
6189       │leap-password-flags │ NMSettingSecretFlags │               │ Flags indicating how to handle the         │
6190       │                    │ (uint32)             │               │ "leap-password" property.                  │
6191       ├────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
6192       │leap-username       │ string               │               │ The login username for legacy LEAP         │
6193       │                    │                      │               │ connections (ie, key-mgmt = "ieee8021x"    │
6194       │                    │                      │               │ and auth-alg = "leap").                    │
6195       ├────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
6196       │pairwise            │ array of string      │               │ A list of pairwise encryption algorithms   │
6197       │                    │                      │               │ which prevents connections to Wi-Fi        │
6198       │                    │                      │               │ networks that do not utilize one of the    │
6199       │                    │                      │               │ algorithms in the list. For maximum        │
6200       │                    │                      │               │ compatibility leave this property empty.   │
6201       │                    │                      │               │ Each list element may be one of "tkip" or  │
6202       │                    │                      │               │ "ccmp".                                    │
6203       ├────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
6204       │pmf                 │ int32                │ 0             │ Indicates whether Protected Management     │
6205       │                    │                      │               │ Frames (802.11w) must be enabled for the   │
6206       │                    │                      │               │ connection.  One of                        │
6207       │                    │                      │               │ NM_SETTING_WIRELESS_SECURITY_PMF_DEFAULT   │
6208       │                    │                      │               │ (0) (use global default value),            │
6209       │                    │                      │               │ NM_SETTING_WIRELESS_SECURITY_PMF_DISABLE   │
6210       │                    │                      │               │ (1) (disable PMF),                         │
6211       │                    │                      │               │ NM_SETTING_WIRELESS_SECURITY_PMF_OPTIONAL  │
6212       │                    │                      │               │ (2) (enable PMF if the supplicant and the  │
6213       │                    │                      │               │ access point support it) or                │
6214       │                    │                      │               │ NM_SETTING_WIRELESS_SECURITY_PMF_REQUIRED  │
6215       │                    │                      │               │ (3) (enable PMF and fail if not            │
6216       │                    │                      │               │ supported).  When set to                   │
6217       │                    │                      │               │ NM_SETTING_WIRELESS_SECURITY_PMF_DEFAULT   │
6218       │                    │                      │               │ (0) and no global default is set, PMF will │
6219       │                    │                      │               │ be optionally enabled.                     │
6220       ├────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
6221       │proto               │ array of string      │               │ List of strings specifying the allowed WPA │
6222       │                    │                      │               │ protocol versions to use. Each element may │
6223       │                    │                      │               │ be one "wpa" (allow WPA) or "rsn" (allow   │
6224       │                    │                      │               │ WPA2/RSN).  If not specified, both WPA and │
6225       │                    │                      │               │ RSN connections are allowed.               │
6226       ├────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
6227       │psk                 │ string               │               │ Pre-Shared-Key for WPA networks. For       │
6228       │                    │                      │               │ WPA-PSK, it's either an ASCII passphrase   │
6229       │                    │                      │               │ of 8 to 63 characters that is (as          │
6230       │                    │                      │               │ specified in the 802.11i standard) hashed  │
6231       │                    │                      │               │ to derive the actual key, or the key in    │
6232       │                    │                      │               │ form of 64 hexadecimal character. The      │
6233       │                    │                      │               │ WPA3-Personal networks use a passphrase of │
6234       │                    │                      │               │ any length for SAE authentication.         │
6235       ├────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
6236       │psk-flags           │ NMSettingSecretFlags │               │ Flags indicating how to handle the "psk"   │
6237       │                    │ (uint32)             │               │ property.                                  │
6238       ├────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
6239       │wep-key-flags       │ NMSettingSecretFlags │               │ Flags indicating how to handle the         │
6240       │                    │ (uint32)             │               │ "wep-key0", "wep-key1", "wep-key2", and    │
6241       │                    │                      │               │ "wep-key3" properties.                     │
6242       ├────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
6243       │wep-key-type        │ NMWepKeyType         │               │ Controls the interpretation of WEP keys.   │
6244       │                    │ (uint32)             │               │ Allowed values are NM_WEP_KEY_TYPE_KEY     │
6245       │                    │                      │               │ (1), in which case the key is either a 10- │
6246       │                    │                      │               │ or 26-character hexadecimal string, or a   │
6247       │                    │                      │               │ 5- or 13-character ASCII password; or      │
6248       │                    │                      │               │ NM_WEP_KEY_TYPE_PASSPHRASE (2), in which   │
6249       │                    │                      │               │ case the passphrase is provided as a       │
6250       │                    │                      │               │ string and will be hashed using the        │
6251       │                    │                      │               │ de-facto MD5 method to derive the actual   │
6252       │                    │                      │               │ WEP key.                                   │
6253       ├────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
6254       │wep-key0            │ string               │               │ Index 0 WEP key.  This is the WEP key used │
6255       │                    │                      │               │ in most networks.  See the "wep-key-type"  │
6256       │                    │                      │               │ property for a description of how this key │
6257       │                    │                      │               │ is interpreted.                            │
6258       ├────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
6259       │wep-key1            │ string               │               │ Index 1 WEP key.  This WEP index is not    │
6260       │                    │                      │               │ used by most networks.  See the            │
6261       │                    │                      │               │ "wep-key-type" property for a description  │
6262       │                    │                      │               │ of how this key is interpreted.            │
6263       ├────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
6264       │wep-key2            │ string               │               │ Index 2 WEP key.  This WEP index is not    │
6265       │                    │                      │               │ used by most networks.  See the            │
6266       │                    │                      │               │ "wep-key-type" property for a description  │
6267       │                    │                      │               │ of how this key is interpreted.            │
6268       ├────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
6269       │wep-key3            │ string               │               │ Index 3 WEP key.  This WEP index is not    │
6270       │                    │                      │               │ used by most networks.  See the            │
6271       │                    │                      │               │ "wep-key-type" property for a description  │
6272       │                    │                      │               │ of how this key is interpreted.            │
6273       ├────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
6274       │wep-tx-keyidx       │ uint32               │ 0             │ When static WEP is used (ie, key-mgmt =    │
6275       │                    │                      │               │ "none") and a non-default WEP key index is │
6276       │                    │                      │               │ used by the AP, put that WEP key index     │
6277       │                    │                      │               │ here.  Valid values are 0 (default key)    │
6278       │                    │                      │               │ through 3.  Note that some consumer access │
6279       │                    │                      │               │ points (like the Linksys WRT54G) number    │
6280       │                    │                      │               │ the keys 1 - 4.                            │
6281       ├────────────────────┼──────────────────────┼───────────────┼────────────────────────────────────────────┤
6282       │wps-method          │ uint32               │ 0             │ Flags indicating which mode of WPS is to   │
6283       │                    │                      │               │ be used if any.                            │
6284       │                    │                      │               │                                            │
6285       │                    │                      │               │  There's little point in changing the      │
6286       │                    │                      │               │ default setting as NetworkManager will     │
6287       │                    │                      │               │ automatically determine whether it's       │
6288       │                    │                      │               │ feasible to start WPS enrollment from the  │
6289       │                    │                      │               │ Access Point capabilities.                 │
6290       │                    │                      │               │                                            │
6291       │                    │                      │               │  WPS can be disabled by setting this       │
6292       │                    │                      │               │ property to a value of 1.                  │
6293       └────────────────────┴──────────────────────┴───────────────┴────────────────────────────────────────────┘
6294
6295   wpan setting
6296       IEEE 802.15.4 (WPAN) MAC Settings.
6297
6298       ┌──────────────┬────────────┬───────────────┬──────────────────┐
6299Key Name      Value Type Default Value Value            
6300       │              │            │               │ Description      
6301       ├──────────────┼────────────┼───────────────┼──────────────────┤
6302       │channel       │ int32      │ -1            │ IEEE 802.15.4    │
6303       │              │            │               │ channel. A       │
6304       │              │            │               │ positive integer │
6305       │              │            │               │ or -1, meaning   │
6306       │              │            │               │ "do not set, use │
6307       │              │            │               │ whatever the     │
6308       │              │            │               │ device is        │
6309       │              │            │               │ already set to". │
6310       ├──────────────┼────────────┼───────────────┼──────────────────┤
6311       │mac-address   │ string     │               │ If specified,    │
6312       │              │            │               │ this connection  │
6313       │              │            │               │ will only apply  │
6314       │              │            │               │ to the IEEE      │
6315       │              │            │               │ 802.15.4 (WPAN)  │
6316       │              │            │               │ MAC layer device │
6317       │              │            │               │ whose permanent  │
6318       │              │            │               │ MAC address      │
6319       │              │            │               │ matches.         │
6320       ├──────────────┼────────────┼───────────────┼──────────────────┤
6321       │page          │ int32      │ -1            │ IEEE 802.15.4    │
6322       │              │            │               │ channel page. A  │
6323       │              │            │               │ positive integer │
6324       │              │            │               │ or -1, meaning   │
6325       │              │            │               │ "do not set, use │
6326       │              │            │               │ whatever the     │
6327       │              │            │               │ device is        │
6328       │              │            │               │ already set to". │
6329       ├──────────────┼────────────┼───────────────┼──────────────────┤
6330       │pan-id        │ uint32     │ 65535         │ IEEE 802.15.4    │
6331       │              │            │               │ Personal Area    │
6332       │              │            │               │ Network (PAN)    │
6333       │              │            │               │ identifier.      │
6334       ├──────────────┼────────────┼───────────────┼──────────────────┤
6335       │short-address │ uint32     │ 65535         │ Short IEEE       │
6336       │              │            │               │ 802.15.4 address │
6337       │              │            │               │ to be used       │
6338       │              │            │               │ within a         │
6339       │              │            │               │ restricted       │
6340       │              │            │               │ environment.     │
6341       └──────────────┴────────────┴───────────────┴──────────────────┘
6342
6343   bond-port setting
6344       Bond Port Settings.
6345
6346       ┌─────────┬────────────┬───────────────┬──────────────────┐
6347Key Name Value Type Default Value Value            
6348       │         │            │               │ Description      
6349       ├─────────┼────────────┼───────────────┼──────────────────┤
6350       │queue-id │ uint32     │ 0             │ The queue ID of  │
6351       │         │            │               │ this bond port.  │
6352       │         │            │               │ The maximum      │
6353       │         │            │               │ value of queue   │
6354       │         │            │               │ ID is the number │
6355       │         │            │               │ of TX queues     │
6356       │         │            │               │ currently active │
6357       │         │            │               │ in device.       │
6358       └─────────┴────────────┴───────────────┴──────────────────┘
6359
6360   hostname setting
6361       Hostname settings.
6362
6363       ┌──────────────────┬────────────┬───────────────┬────────────────────┐
6364Key Name          Value Type Default Value Value              
6365       │                  │            │               │ Description        
6366       ├──────────────────┼────────────┼───────────────┼────────────────────┤
6367       │from-dhcp         │ NMTernary  │               │ Whether the        │
6368       │                  │ (int32)    │               │ system hostname    │
6369       │                  │            │               │ can be             │
6370       │                  │            │               │ determined from    │
6371       │                  │            │               │ DHCP on this       │
6372       │                  │            │               │ connection.        │
6373       │                  │            │               │                    │
6374       │                  │            │               │  When set to       │
6375       │                  │            │               │ NM_TERNARY_DEFAULT │
6376       │                  │            │               │ (-1), the value    │
6377       │                  │            │               │ from global        │
6378       │                  │            │               │ configuration is   │
6379       │                  │            │               │ used. If the       │
6380       │                  │            │               │ property doesn't   │
6381       │                  │            │               │ have a value in    │
6382       │                  │            │               │ the global         │
6383       │                  │            │               │ configuration,     │
6384       │                  │            │               │ NetworkManager     │
6385       │                  │            │               │ assumes the        │
6386       │                  │            │               │ value to be        │
6387       │                  │            │               │ NM_TERNARY_TRUE    │
6388       │                  │            │               │ (1).               │
6389       ├──────────────────┼────────────┼───────────────┼────────────────────┤
6390       │from-dns-lookup   │ NMTernary  │               │ Whether the system │
6391       │                  │ (int32)    │               │ hostname can be    │
6392       │                  │            │               │ determined from    │
6393       │                  │            │               │ reverse DNS lookup │
6394       │                  │            │               │ of addresses on    │
6395       │                  │            │               │ this device.       │
6396       │                  │            │               │                    │
6397       │                  │            │               │  When set to       │
6398       │                  │            │               │ NM_TERNARY_DEFAULT │
6399       │                  │            │               │ (-1), the value    │
6400       │                  │            │               │ from global        │
6401       │                  │            │               │ configuration is   │
6402       │                  │            │               │ used. If the       │
6403       │                  │            │               │ property doesn't   │
6404       │                  │            │               │ have a value in    │
6405       │                  │            │               │ the global         │
6406       │                  │            │               │ configuration,     │
6407       │                  │            │               │ NetworkManager     │
6408       │                  │            │               │ assumes the value  │
6409       │                  │            │               │ to be              │
6410       │                  │            │               │ NM_TERNARY_TRUE    │
6411       │                  │            │               │ (1).               │
6412       ├──────────────────┼────────────┼───────────────┼────────────────────┤
6413       │only-from-default │ NMTernary  │               │ If set to          │
6414       │                  │ (int32)    │               │ NM_TERNARY_TRUE    │
6415       │                  │            │               │ (1),               │
6416       │                  │            │               │ NetworkManager     │
6417       │                  │            │               │ attempts to get    │
6418       │                  │            │               │ the hostname via   │
6419       │                  │            │               │ DHCPv4/DHCPv6 or   │
6420       │                  │            │               │ reverse DNS lookup │
6421       │                  │            │               │ on this device     │
6422       │                  │            │               │ only when the      │
6423       │                  │            │               │ device has the     │
6424       │                  │            │               │ default route for  │
6425       │                  │            │               │ the given address  │
6426       │                  │            │               │ family             │
6427       │                  │            │               │ (IPv4/IPv6).       │
6428       │                  │            │               │                    │
6429       │                  │            │               │  If set to         │
6430       │                  │            │               │ NM_TERNARY_FALSE   │
6431       │                  │            │               │ (0), the hostname  │
6432       │                  │            │               │ can be set from    │
6433       │                  │            │               │ this device even   │
6434       │                  │            │               │ if it doesn't have │
6435       │                  │            │               │ the default route. │
6436       │                  │            │               │                    │
6437       │                  │            │               │  When set to       │
6438       │                  │            │               │ NM_TERNARY_DEFAULT │
6439       │                  │            │               │ (-1), the value    │
6440       │                  │            │               │ from global        │
6441       │                  │            │               │ configuration is   │
6442       │                  │            │               │ used. If the       │
6443       │                  │            │               │ property doesn't   │
6444       │                  │            │               │ have a value in    │
6445       │                  │            │               │ the global         │
6446       │                  │            │               │ configuration,     │
6447       │                  │            │               │ NetworkManager     │
6448       │                  │            │               │ assumes the value  │
6449       │                  │            │               │ to be              │
6450       │                  │            │               │ NM_TERNARY_FALSE   │
6451       │                  │            │               │ (0).               │
6452       ├──────────────────┼────────────┼───────────────┼────────────────────┤
6453       │priority          │ int32      │ 0             │ The relative       │
6454       │                  │            │               │ priority of this   │
6455       │                  │            │               │ connection to      │
6456       │                  │            │               │ determine the      │
6457       │                  │            │               │ system hostname. A │
6458       │                  │            │               │ lower numerical    │
6459       │                  │            │               │ value is better    │
6460       │                  │            │               │ (higher priority). │
6461       │                  │            │               │ A connection with  │
6462       │                  │            │               │ higher priority is │
6463       │                  │            │               │ considered before  │
6464       │                  │            │               │ connections with   │
6465       │                  │            │               │ lower priority.    │
6466       │                  │            │               │                    │
6467       │                  │            │               │  If the value is   │
6468       │                  │            │               │ zero, it can be    │
6469       │                  │            │               │ overridden by a    │
6470       │                  │            │               │ global value from  │
6471       │                  │            │               │ NetworkManager     │
6472       │                  │            │               │ configuration. If  │
6473       │                  │            │               │ the property       │
6474       │                  │            │               │ doesn't have a     │
6475       │                  │            │               │ value in the       │
6476       │                  │            │               │ global             │
6477       │                  │            │               │ configuration, the │
6478       │                  │            │               │ value is assumed   │
6479       │                  │            │               │ to be 100.         │
6480       │                  │            │               │                    │
6481       │                  │            │               │  Negative values   │
6482       │                  │            │               │ have the special   │
6483       │                  │            │               │ effect of          │
6484       │                  │            │               │ excluding other    │
6485       │                  │            │               │ connections with a │
6486       │                  │            │               │ greater numerical  │
6487       │                  │            │               │ priority value; so │
6488       │                  │            │               │ in presence of at  │
6489       │                  │            │               │ least one negative │
6490       │                  │            │               │ priority, only     │
6491       │                  │            │               │ connections with   │
6492       │                  │            │               │ the lowest         │
6493       │                  │            │               │ priority value     │
6494       │                  │            │               │ will be used to    │
6495       │                  │            │               │ determine the      │
6496       │                  │            │               │ hostname.          │
6497       └──────────────────┴────────────┴───────────────┴────────────────────┘
6498
6499   ovs-external-ids setting
6500       OVS External IDs Settings.
6501
6502       ┌─────────┬────────────────┬───────────────┬──────────────────┐
6503Key Name Value Type     Default Value Value            
6504       │         │                │               │ Description      
6505       ├─────────┼────────────────┼───────────────┼──────────────────┤
6506       │data     │ dict of string │ {}            │ A dictionary of  │
6507       │         │ to string      │               │ key/value pairs  │
6508       │         │                │               │ with exernal-ids │
6509       │         │                │               │ for OVS.         │
6510       └─────────┴────────────────┴───────────────┴──────────────────┘
6511
6512   veth setting
6513       Veth Settings.
6514
6515       ┌─────────┬────────────┬───────────────┬────────────────┐
6516Key Name Value Type Default Value Value          
6517       │         │            │               │ Description    
6518       ├─────────┼────────────┼───────────────┼────────────────┤
6519       │peer     │ string     │               │ This property  │
6520       │         │            │               │ specifies the  │
6521       │         │            │               │ peer interface │
6522       │         │            │               │ name of the    │
6523       │         │            │               │ veth. This     │
6524       │         │            │               │ property is    │
6525       │         │            │               │ mandatory.     │
6526       └─────────┴────────────┴───────────────┴────────────────┘
6527
6528   Secret flag types:
6529       Each password or secret property in a setting has an associated flags
6530       property that describes how to handle that secret. The flags property
6531       is a bitfield that contains zero or more of the following values
6532       logically OR-ed together.
6533
6534       •   0x0 (none) - the system is responsible for providing and storing
6535           this secret. This may be required so that secrets are already
6536           available before the user logs in. It also commonly means that the
6537           secret will be stored in plain text on disk, accessible to root
6538           only. For example via the keyfile settings plugin as described in
6539           the "PLUGINS" section in NetworkManager.conf(5).
6540
6541       •   0x1 (agent-owned) - a user-session secret agent is responsible for
6542           providing and storing this secret; when it is required, agents will
6543           be asked to provide it.
6544
6545       •   0x2 (not-saved) - this secret should not be saved but should be
6546           requested from the user each time it is required. This flag should
6547           be used for One-Time-Pad secrets, PIN codes from hardware tokens,
6548           or if the user simply does not want to save the secret.
6549
6550       •   0x4 (not-required) - in some situations it cannot be automatically
6551           determined that a secret is required or not. This flag hints that
6552           the secret is not required and should not be requested from the
6553           user.
6554

FILES

6556       /etc/NetworkManager/system-connections or distro plugin-specific
6557       location
6558

SEE ALSO

6560       nm-settings-nmcli(5), nm-settings-keyfile(5), NetworkManager(8),
6561       nmcli(1), nmcli-examples(7), NetworkManager.conf(5)
6562
6563
6564
6565NetworkManager 1.40.10                                     NM-SETTINGS-DBUS(5)
Impressum