1NM-SETTINGS-IFCFG-RH(5) Configuration NM-SETTINGS-IFCFG-RH(5)
2
3
4
6 nm-settings-ifcfg-rh - Description of ifcfg-rh settings plugin
7
9 NetworkManager is based on the concept of connection profiles that
10 contain network configuration (see nm-settings(5) for details). The
11 profiles can be stored in various formats. NetworkManager uses plugins
12 for reading and writing the data. The plugins can be configured in
13 NetworkManager.conf(5).
14
15 The ifcfg-rh plugin is used on the Fedora and Red Hat Enterprise Linux
16 distributions to read/write configuration from/to the traditional
17 /etc/sysconfig/network-scripts/ifcfg-* files. Each NetworkManager
18 connection maps to one ifcfg-* file, with possible usage of keys-* for
19 passwords, route-* for static IPv4 routes and route6-* for static IPv6
20 routes. The plugin currently supports reading and writing Ethernet,
21 Wi-Fi, InfiniBand, VLAN, Bond, Bridge, and Team connections.
22 Unsupported connection types (such as WWAN, PPPoE, VPN, or ADSL) are
23 handled by keyfile plugin (nm-settings-keyfile(5)). The main reason for
24 using ifcfg-rh plugin is the compatibility with legacy configurations
25 for ifup and ifdown (initscripts).
26
28 The ifcfg-rh config format is a simple text file containing
29 VARIABLE="value" lines. The format is described in sysconfig.txt of
30 initscripts package. Note that the configuration files may be sourced
31 by initscripts, so they must be valid shell scripts. That means, for
32 instance, that # character can be used for comments, strings with
33 spaces must be quoted, special characters must be escaped, etc.
34
35 Users can create or modify the ifcfg-rh connection files manually, even
36 if that is not the recommended way of managing the profiles. However,
37 if they choose to do that, they must inform NetworkManager about their
38 changes (for example via nmcli con (re)load).
39
40 Some ifcfg-rh configuration examples:.
41
42 Simple DHCP ethernet configuration:
43 NAME=ethernet
44 UUID=1c4ddf70-01bf-46d6-b04f-47e842bd98da
45 TYPE=Ethernet
46 BOOTPROTO=dhcp
47 DEFROUTE=yes
48 PEERDNS=yes
49 PEERROUTES=yes
50 IPV4_FAILURE_FATAL=no
51 ONBOOT=yes
52
53
54
55 Simple ethernet configuration with static IP:
56 TYPE=Ethernet
57 BOOTPROTO=none
58 IPADDR=10.1.0.25
59 PREFIX=24
60 GATEWAY=10.1.0.1
61 DEFROUTE=yes
62 IPV4_FAILURE_FATAL=no
63 IPV6INIT=yes
64 IPV6_AUTOCONF=yes
65 IPV6_DEFROUTE=yes
66 IPV6_PEERDNS=yes
67 IPV6_PEERROUTES=yes
68 IPV6_FAILURE_FATAL=no
69 NAME=ethernet-em2
70 UUID=51bb3904-c0fc-4dfe-83b2-0a71e7928c13
71 DEVICE=em2
72 ONBOOT=yes
73
74
75
76 WPA2 Enterprise WLAN (TTLS with inner MSCHAPV2 authentication):
77 ESSID="CompanyWLAN"
78 MODE=Managed
79 KEY_MGMT=WPA-EAP
80 TYPE=Wireless
81 IEEE_8021X_EAP_METHODS=TTLS
82 IEEE_8021X_IDENTITY=joe
83 IEEE_8021X_PASSWORD_FLAGS=ask
84 IEEE_8021X_INNER_AUTH_METHODS=MSCHAPV2
85 IEEE_8021X_CA_CERT=/home/joe/.cert/company.crt
86 BOOTPROTO=dhcp
87 DEFROUTE=yes
88 PEERDNS=yes
89 PEERROUTES=yes
90 IPV4_FAILURE_FATAL=no
91 IPV6INIT=no
92 NAME=MyCompany
93 UUID=f79848ff-11a6-4810-9e1a-99039dea84c4
94 ONBOOT=yes
95
96
97
98 Bridge and bridge port configuration:
99 ifcfg-bridge: ifcfg-bridge-port:
100 NAME=bridge NAME=bridge007-port-eth0
101 UUID=4be99ce0-c5b2-4764-8b77-ec226e440125 UUID=3ad56c4a-47e1-419b-b0d4-8ad86eb967a3
102 DEVICE=bridge007 DEVICE=eth0
103 STP=yes ONBOOT=yes
104 TYPE=Bridge TYPE=Ethernet
105 BRIDGING_OPTS=priority=32768 BRIDGE=bridge007
106 ONBOOT=yes
107 BOOTPROTO=dhcp
108
109
110
111
112 Bonding configuration:
113 ifcfg-BOND: ifcfg-BOND-slave:
114 NAME=BOND NAME=BOND-slave
115 UUID=b41888aa-924c-450c-b0f8-85a4f0a51b4a UUID=9bb048e4-286a-4cc3-b104-007dbd20decb
116 DEVICE=bond100 DEVICE=eth0
117 BONDING_OPTS="mode=balance-rr miimon=100" ONBOOT=yes
118 TYPE=Bond TYPE=Ethernet
119 BONDING_MASTER=yes MASTER=bond100
120 ONBOOT=yes SLAVE=yes
121 BOOTPROTO=dhcp
122
123
124
125
126 Team and team port configuration:
127 ifcfg-my_team0:
128 DEVICE=team0
129 TEAM_CONFIG="{ \"device\": \"team0\", \"runner\": {\"name\": \"roundrobin\"}, \"ports\": {\"eth1\": {}, \"eth2\": {}} }"
130 DEVICETYPE=Team
131 BOOTPROTO=dhcp
132 NAME=team0-profile
133 UUID=1d3460a0-7b37-457f-a300-fe8d92da4807
134 ONBOOT=yes
135
136 ifcfg-my_team0_slave1:
137 NAME=team0-slave1
138 UUID=d5aed298-c567-4cc1-b808-6d38ecef9e64
139 DEVICE=eth1
140 ONBOOT=yes
141 TEAM_MASTER=team0
142 DEVICETYPE=TeamPort
143
144 ifcfg-my_team0_slave2:
145 NAME=team0-slave2
146 UUID=94e75f4e-e5ad-401c-8962-31e0ae5d2215
147 DEVICE=eth2
148 ONBOOT=yes
149 TEAM_MASTER=team0
150 DEVICETYPE=TeamPort
151
152
153 The UUID values in the config files must be unique. You can use uuidgen
154 command line tool to generate such values. Alternatively, you can leave
155 out UUID entirely. In that case NetworkManager will generate a UUID
156 based on the file name.
157
159 The main differences of NetworkManager ifcfg-rh plugin and traditional
160 initscripts are:
161
162 NM_CONTROLLED=yes|no
163 NM_CONTROLLED is NetworkManager-specific variable used by
164 NetworkManager for determining whether the device of the ifcfg file
165 should be managed. NM_CONTROLLED=yes is supposed if the variable is
166 not present in the file. Note that if you have more ifcfg files for
167 a single device, NM_CONTROLLED=no in one of the files will cause
168 the device not to be managed. The profile may not even be the
169 active one.
170
171 New variables
172 NetworkManager has introduced some new variable, not present in
173 initscripts, to be able to store data for its new features. The
174 variables are marked as extensions in the tables below.
175
176 Semantic change of variables and differences
177 NetworkManager changes the semantics for a few variables and there
178 are other behavioral differences.
179
180 • PEERDNS - initscripts interpret PEERDNS=no to mean "never touch
181 resolv.conf". NetworkManager interprets it to say "never add
182 automatic (DHCP, PPP, VPN, etc.) nameservers to resolv.conf".
183
184 • ONBOOT - initscripts use ONBOOT=yes to mark the devices that
185 are to be activated during boot. NetworkManager extends this to
186 also mean that this profile can be used for auto-connecting at
187 any time.
188
189 • BOOTPROTO - NetworkManager supports traditional values none
190 (static), dhcp. But it also allows additional values to enable
191 new addressing methods. They are autoip for IPv4 link-local
192 addressing using Avahi daemon and shared for connection
193 sharing. When shared is used, NetworkManager assigns the
194 interface 10.42.0.1, or it uses the first static address, if
195 configured.
196
197 • HWADDR - initscripts compare the currently set hardware address
198 of a device, while NetworkManager considers the permanent one.
199
200 • NOZEROCONF - initscripts add an on-link route to 169.254.0.0/16
201 for ethernet profiles that don't explicitly opt-out by setting
202 NOZEROCONF variable. NetworkManager does not do that. Instead a
203 static, manual route with scope=253 (link) should be added to
204 get that behavior.
205
206 See the next section for detailed mapping of NetworkManager properties
207 and ifcfg-rh variables. Variable names, format and usage differences in
208 NetworkManager and initscripts are documented in the tables below.
209
211 ifcfg-rh plugin variables marked with (+) are NetworkManager specific
212 extensions not understood by traditional initscripts.
213
214 Table 1. 6lowpan setting
215 Table 2. 802-1x setting
216 ┌──────────────────────────────────┬────────────────────────────────────────────────┬─────────┬───────────────────────────────────────────────────┐
217 │Property │ Ifcfg-rh │ Default │ Description │
218 │ │ Variable │ │ │
219 ├──────────────────────────────────┼────────────────────────────────────────────────┼─────────┼───────────────────────────────────────────────────┤
220 │eap │ IEEE_8021X_EAP_METHODS(+) │ │ EAP method for │
221 │ │ │ │ 802.1X │
222 │ │ │ │ authentication. │
223 │ │ │ │ │
224 │ │ │ │ Example: │
225 │ │ │ │ IEEE_8021X_EAP_METHODS=PEAP │
226 │ │ │ │ │
227 │ │ │ │ Allowed values: │
228 │ │ │ │ "LEAP", "PWD", │
229 │ │ │ │ "TLS", "PEAP", │
230 │ │ │ │ "TTLS", "FAST" │
231 ├──────────────────────────────────┼────────────────────────────────────────────────┼─────────┼───────────────────────────────────────────────────┤
232 │identity │ IEEE_8021X_IDENTITY(+) │ │ Identity for EAP │
233 │ │ │ │ authentication methods. │
234 │ │ │ │ │
235 │ │ │ │ Example: │
236 │ │ │ │ IEEE_8021X_IDENTITY=itsme │
237 ├──────────────────────────────────┼────────────────────────────────────────────────┼─────────┼───────────────────────────────────────────────────┤
238 │anonymous-identity │ IEEE_8021X_ANON_IDENTITY(+) │ │ Anonymous identity for EAP │
239 │ │ │ │ authentication methods. │
240 ├──────────────────────────────────┼────────────────────────────────────────────────┼─────────┼───────────────────────────────────────────────────┤
241 │pac-file │ IEEE_8021X_PAC_FILE(+) │ │ File with PAC (Protected │
242 │ │ │ │ Access Credential) for │
243 │ │ │ │ EAP-FAST. │
244 │ │ │ │ │
245 │ │ │ │ Example: │
246 │ │ │ │ IEEE_8021X_PAC_FILE=/home/joe/my-fast.pac │
247 ├──────────────────────────────────┼────────────────────────────────────────────────┼─────────┼───────────────────────────────────────────────────┤
248 │ca-cert │ IEEE_8021X_CA_CERT(+) │ │ CA certificate for EAP. │
249 │ │ │ │ │
250 │ │ │ │ Example: │
251 │ │ │ │ IEEE_8021X_CA_CERT=/home/joe/cacert.crt │
252 ├──────────────────────────────────┼────────────────────────────────────────────────┼─────────┼───────────────────────────────────────────────────┤
253 │ca-path │ IEEE_8021X_CA_PATH(+) │ │ The search path for the certificate. │
254 ├──────────────────────────────────┼────────────────────────────────────────────────┼─────────┼───────────────────────────────────────────────────┤
255 │subject-match │ IEEE_8021X_SUBJECT_MATCH(+) │ │ Substring to match subject of server │
256 │ │ │ │ certificate against. │
257 │ │ │ │ │
258 │ │ │ │ Example: IEEE_8021X_SUBJECT_MATCH="Red │
259 │ │ │ │ Hat" │
260 ├──────────────────────────────────┼────────────────────────────────────────────────┼─────────┼───────────────────────────────────────────────────┤
261 │altsubject-matches │ IEEE_8021X_ALTSUBJECT_MATCHES(+) │ │ List of strings to be matched against the │
262 │ │ │ │ altSubjectName. │
263 │ │ │ │ │
264 │ │ │ │ Example: │
265 │ │ │ │ IEEE_8021X_ALTSUBJECT_MATCHES="s1.domain.cc" │
266 ├──────────────────────────────────┼────────────────────────────────────────────────┼─────────┼───────────────────────────────────────────────────┤
267 │domain-suffix-match │ IEEE_8021X_DOMAIN_SUFFIX_MATCH(+) │ │ Suffix to match domain of server certificate │
268 │ │ │ │ against. │
269 ├──────────────────────────────────┼────────────────────────────────────────────────┼─────────┼───────────────────────────────────────────────────┤
270 │domain-match │ IEEE_8021X_DOMAIN_MATCH(+) │ │ Value to match domain of server certificate │
271 │ │ │ │ against. │
272 ├──────────────────────────────────┼────────────────────────────────────────────────┼─────────┼───────────────────────────────────────────────────┤
273 │client-cert │ IEEE_8021X_CLIENT_CERT(+) │ │ Client certificate for EAP. │
274 │ │ │ │ │
275 │ │ │ │ Example: │
276 │ │ │ │ IEEE_8021X_CLIENT_CERT=/home/joe/mycert.crt │
277 ├──────────────────────────────────┼────────────────────────────────────────────────┼─────────┼───────────────────────────────────────────────────┤
278 │phase1-peapver │ IEEE_8021X_PEAP_VERSION(+) │ │ Use to force a specific PEAP version. │
279 │ │ │ │ │
280 │ │ │ │ Allowed values: 0, 1 │
281 ├──────────────────────────────────┼────────────────────────────────────────────────┼─────────┼───────────────────────────────────────────────────┤
282 │phase1-peaplabel │ IEEE_8021X_PEAP_FORCE_NEW_LABEL(+) │ no │ Use to force the new PEAP label during key │
283 │ │ │ │ derivation. │
284 │ │ │ │ │
285 │ │ │ │ Allowed values: yes, no │
286 ├──────────────────────────────────┼────────────────────────────────────────────────┼─────────┼───────────────────────────────────────────────────┤
287 │phase1-fast-provisioning │ IEEE_8021X_FAST_PROVISIONING(+) │ │ Enable in-line provisioning of EAP-FAST │
288 │ │ │ │ credentials. │
289 │ │ │ │ │
290 │ │ │ │ Example: │
291 │ │ │ │ IEEE_8021X_FAST_PROVISIONING="allow-auth │
292 │ │ │ │ allow-unauth" │
293 │ │ │ │ │
294 │ │ │ │ Allowed values: space-separated list of │
295 │ │ │ │ these values [allow-auth, allow-unauth] │
296 ├──────────────────────────────────┼────────────────────────────────────────────────┼─────────┼───────────────────────────────────────────────────┤
297 │phase1-auth-flags │ IEEE_8021X_PHASE1_AUTH_FLAGS(+) │ │ Authentication flags for the supplicant │
298 │ │ │ │ │
299 │ │ │ │ Example: │
300 │ │ │ │ IEEE_8021X_PHASE1_AUTH_FLAGS="tls-1-0-disable │
301 │ │ │ │ tls-1-1-disable" │
302 │ │ │ │ │
303 │ │ │ │ Allowed values: space-separated list of │
304 │ │ │ │ authentication flags names │
305 ├──────────────────────────────────┼────────────────────────────────────────────────┼─────────┼───────────────────────────────────────────────────┤
306 │phase2-auth │ IEEE_8021X_INNER_AUTH_METHODS(+) │ │ Inner non-EAP authentication methods for TTLS │
307 │ │ │ │ or the inner EAP authentication method for │
308 │ │ │ │ PEAP. IEEE_8021X_INNER_AUTH_METHODS can │
309 │ │ │ │ contain values both for 'phase2-auth' and │
310 │ │ │ │ 'phase2-autheap' properties. │
311 │ │ │ │ │
312 │ │ │ │ Example: IEEE_8021X_INNER_AUTH_METHODS=PAP │
313 │ │ │ │ │
314 │ │ │ │ Allowed values: "PAP", "CHAP", "MSCHAP", │
315 │ │ │ │ "MSCHAPV2", "GTC", "OTP", "MD5" and "TLS" │
316 ├──────────────────────────────────┼────────────────────────────────────────────────┼─────────┼───────────────────────────────────────────────────┤
317 │phase2-autheap │ IEEE_8021X_INNER_AUTH_METHODS(+) │ │ Inner EAP-based authentication methods. Note │
318 │ │ │ │ that IEEE_8021X_INNER_AUTH_METHODS is also │
319 │ │ │ │ used for 'phase2-auth' values. │
320 │ │ │ │ │
321 │ │ │ │ Example: │
322 │ │ │ │ IEEE_8021X_INNER_AUTH_METHODS="MSCHAPV2 │
323 │ │ │ │ EAP-TLS" │
324 │ │ │ │ │
325 │ │ │ │ Allowed values: "EAP-MD5", "EAP-MSCHAPV2", │
326 │ │ │ │ "EAP-GTC", "EAP-OTP" and "EAP-TLS" │
327 ├──────────────────────────────────┼────────────────────────────────────────────────┼─────────┼───────────────────────────────────────────────────┤
328 │phase2-ca-path │ IEEE_8021X_PHASE2_CA_PATH(+) │ │ The search path for the certificate. │
329 ├──────────────────────────────────┼────────────────────────────────────────────────┼─────────┼───────────────────────────────────────────────────┤
330 │phase2-subject-match │ IEEE_8021X_PHASE2_SUBJECT_MATCH(+) │ │ Substring to match subject of server │
331 │ │ │ │ certificate against. │
332 │ │ │ │ │
333 │ │ │ │ Example: IEEE_8021X_PHASE2_SUBJECT_MATCH="Red │
334 │ │ │ │ Hat" │
335 ├──────────────────────────────────┼────────────────────────────────────────────────┼─────────┼───────────────────────────────────────────────────┤
336 │phase2-altsubject-matches │ IEEE_8021X_PHASE2_ALTSUBJECT_MATCHES(+) │ │ │
337 ├──────────────────────────────────┼────────────────────────────────────────────────┼─────────┼───────────────────────────────────────────────────┤
338 │phase2-domain-suffix-match │ IEEE_8021X_PHASE2_DOMAIN_SUFFIX_MATCH(+) │ │ Suffix to match domain of server certificate │
339 │ │ │ │ for phase 2 against. │
340 ├──────────────────────────────────┼────────────────────────────────────────────────┼─────────┼───────────────────────────────────────────────────┤
341 │phase2-domain-match │ IEEE_8021X_PHASE2_DOMAIN_MATCH(+) │ │ Value to match domain of server certificate │
342 │ │ │ │ for phase 2 against. │
343 ├──────────────────────────────────┼────────────────────────────────────────────────┼─────────┼───────────────────────────────────────────────────┤
344 │phase2-client-cert │ IEEE_8021X_INNER_CLIENT_CERT(+) │ │ Client certificate for inner EAP method. │
345 │ │ │ │ │
346 │ │ │ │ Example: │
347 │ │ │ │ IEEE_8021X_INNER_CLIENT_CERT=/home/joe/mycert.crt │
348 ├──────────────────────────────────┼────────────────────────────────────────────────┼─────────┼───────────────────────────────────────────────────┤
349 │password │ IEEE_8021X_PASSWORD(+) │ │ UTF-8 encoded password used for EAP. It can also │
350 │ │ │ │ go to "key-" lookaside file, or it can be owned │
351 │ │ │ │ by a secret agent. │
352 ├──────────────────────────────────┼────────────────────────────────────────────────┼─────────┼───────────────────────────────────────────────────┤
353 │password-flags │ IEEE_8021X_PASSWORD_FLAGS(+) │ │ Password flags for IEEE_8021X_PASSWORD password. │
354 │ │ │ │ (see the section called “Secret flags” for _FLAGS │
355 │ │ │ │ values) │
356 ├──────────────────────────────────┼────────────────────────────────────────────────┼─────────┼───────────────────────────────────────────────────┤
357 │password-raw │ IEEE_8021X_PASSWORD_RAW(+) │ │ password used for EAP, encoded as a hexadecimal │
358 │ │ │ │ string. It can also go to "key-" lookaside file. │
359 │ │ │ │ │
360 │ │ │ │ Example: IEEE_8021X_PASSWORD_RAW=041c8320083aa4bf │
361 ├──────────────────────────────────┼────────────────────────────────────────────────┼─────────┼───────────────────────────────────────────────────┤
362 │password-raw-flags │ IEEE_8021X_PASSWORD_RAW_FLAGS(+) │ │ The secret flags for password-raw. │
363 ├──────────────────────────────────┼────────────────────────────────────────────────┼─────────┼───────────────────────────────────────────────────┤
364 │private-key │ IEEE_8021X_PRIVATE_KEY(+) │ │ Private key for EAP-TLS. │
365 │ │ │ │ │
366 │ │ │ │ Example: │
367 │ │ │ │ IEEE_8021X_PRIVATE_KEY=/home/joe/mykey.p12 │
368 ├──────────────────────────────────┼────────────────────────────────────────────────┼─────────┼───────────────────────────────────────────────────┤
369 │private-key-password │ IEEE_8021X_PRIVATE_KEY_PASSWORD(+) │ │ Password for IEEE_8021X_PRIVATE_KEY. It can also │
370 │ │ │ │ go to "key-" lookaside file, or it can be owned │
371 │ │ │ │ by a secret agent. │
372 ├──────────────────────────────────┼────────────────────────────────────────────────┼─────────┼───────────────────────────────────────────────────┤
373 │private-key-password-flags │ IEEE_8021X_PRIVATE_KEY_PASSWORD_FLAGS(+) │ │ Password flags for │
374 │ │ │ │ IEEE_8021X_PRIVATE_KEY_PASSWORD password. (see │
375 │ │ │ │ the section called “Secret flags” for _FLAGS │
376 │ │ │ │ values) │
377 ├──────────────────────────────────┼────────────────────────────────────────────────┼─────────┼───────────────────────────────────────────────────┤
378 │phase2-private-key │ IEEE_8021X_INNER_PRIVATE_KEY(+) │ │ Private key for inner authentication method for │
379 │ │ │ │ EAP-TLS. │
380 ├──────────────────────────────────┼────────────────────────────────────────────────┼─────────┼───────────────────────────────────────────────────┤
381 │phase2-private-key-password │ IEEE_8021X_INNER_PRIVATE_KEY_PASSWORD(+) │ │ Password for IEEE_8021X_INNER_PRIVATE_KEY. It can │
382 │ │ │ │ also go to "key-" lookaside file, or it can be │
383 │ │ │ │ owned by a secret agent. │
384 ├──────────────────────────────────┼────────────────────────────────────────────────┼─────────┼───────────────────────────────────────────────────┤
385 │phase2-private-key-password-flags │ IEEE_8021X_INNER_PRIVATE_KEY_PASSWORD_FLAGS(+) │ │ Password flags for │
386 │ │ │ │ IEEE_8021X_INNER_PRIVATE_KEY_PASSWORD password. │
387 │ │ │ │ (see the section called “Secret flags” for _FLAGS │
388 │ │ │ │ values) │
389 ├──────────────────────────────────┼────────────────────────────────────────────────┼─────────┼───────────────────────────────────────────────────┤
390 │pin │ IEEE_8021X_PIN(+) │ │ The pin secret used for EAP authentication │
391 │ │ │ │ methods. │
392 ├──────────────────────────────────┼────────────────────────────────────────────────┼─────────┼───────────────────────────────────────────────────┤
393 │pin-flags │ IEEE_8021X_PIN_FLAGS(+) │ │ The secret flags for the pin property. │
394 ├──────────────────────────────────┼────────────────────────────────────────────────┼─────────┼───────────────────────────────────────────────────┤
395 │system-ca-certs │ IEEE_8021X_SYSTEM_CA_CERTS(+) │ │ a boolean value. │
396 ├──────────────────────────────────┼────────────────────────────────────────────────┼─────────┼───────────────────────────────────────────────────┤
397 │auth-timeout │ IEEE_8021X_AUTH_TIMEOUT(+) │ 0 │ Timeout in seconds for the 802.1X authentication. │
398 │ │ │ │ Zero means the global default or 25. │
399 ├──────────────────────────────────┼────────────────────────────────────────────────┼─────────┼───────────────────────────────────────────────────┤
400 │optional │ IEEE_8021X_OPTIONAL(+) default=no │ │ whether the 802.1X authentication is optional │
401 └──────────────────────────────────┴────────────────────────────────────────────────┴─────────┴───────────────────────────────────────────────────┘
402
403 Table 3. bond setting
404 ┌─────────┬──────────────┬─────────┬──────────────────────────┐
405 │Property │ Ifcfg-rh │ Default │ Description │
406 │ │ Variable │ │ │
407 ├─────────┼──────────────┼─────────┼──────────────────────────┤
408 │options │ BONDING_OPTS │ │ Bonding options. │
409 │ │ │ │ │
410 │ │ │ │ Example: │
411 │ │ │ │ BONDING_OPTS="miimon=100 │
412 │ │ │ │ mode=broadcast" │
413 └─────────┴──────────────┴─────────┴──────────────────────────┘
414
415 Table 4. bridge-port setting
416 ┌─────────────┬───────────────────┬─────────┬──────────────────────┐
417 │Property │ Ifcfg-rh │ Default │ Description │
418 │ │ Variable │ │ │
419 ├─────────────┼───────────────────┼─────────┼──────────────────────┤
420 │priority │ BRIDGING_OPTS: │ 32 │ STP priority. │
421 │ │ priority= │ │ │
422 │ │ │ │ Allowed values: │
423 │ │ │ │ 0 - 63 │
424 ├─────────────┼───────────────────┼─────────┼──────────────────────┤
425 │path-cost │ BRIDGING_OPTS: │ 100 │ STP cost. │
426 │ │ path_cost= │ │ │
427 │ │ │ │ Allowed values: │
428 │ │ │ │ 1 - 65535 │
429 ├─────────────┼───────────────────┼─────────┼──────────────────────┤
430 │hairpin-mode │ BRIDGING_OPTS: │ yes │ Hairpin mode of │
431 │ │ hairpin_mode= │ │ the bridge port. │
432 ├─────────────┼───────────────────┼─────────┼──────────────────────┤
433 │vlans │ BRIDGE_PORT_VLANS │ │ List of VLANs on │
434 │ │ │ │ the bridge port │
435 │ │ │ │ │
436 │ │ │ │ Example: │
437 │ │ │ │ BRIDGE_PORT_VLANS="1 │
438 │ │ │ │ pvid │
439 │ │ │ │ untagged,20,300-400 │
440 │ │ │ │ untagged" │
441 └─────────────┴───────────────────┴─────────┴──────────────────────┘
442
443 Table 5. bridge setting
444 ┌──────────────────────────────────┬────────────────────────────────────┬─────────┬────────────────────────────────────────────────────────┐
445 │Property │ Ifcfg-rh │ Default │ Description │
446 │ │ Variable │ │ │
447 ├──────────────────────────────────┼────────────────────────────────────┼─────────┼────────────────────────────────────────────────────────┤
448 │mac-address │ BRIDGE_MACADDR(+) │ │ MAC address of │
449 │ │ │ │ the bridge. Note │
450 │ │ │ │ that this │
451 │ │ │ │ requires a │
452 │ │ │ │ recent kernel │
453 │ │ │ │ support, │
454 │ │ │ │ originally │
455 │ │ │ │ introduced in │
456 │ │ │ │ 3.15 upstream │
457 │ │ │ │ kernel) │
458 │ │ │ │ BRIDGE_MACADDR │
459 │ │ │ │ for bridges is │
460 │ │ │ │ an NM extension. │
461 ├──────────────────────────────────┼────────────────────────────────────┼─────────┼────────────────────────────────────────────────────────┤
462 │stp │ STP │ no │ Span tree │
463 │ │ │ │ protocol │
464 │ │ │ │ participation. │
465 ├──────────────────────────────────┼────────────────────────────────────┼─────────┼────────────────────────────────────────────────────────┤
466 │priority │ BRIDGING_OPTS: │ 32768 │ STP priority. │
467 │ │ priority= │ │ │
468 │ │ │ │ Allowed values: │
469 │ │ │ │ 0 - 32768 │
470 ├──────────────────────────────────┼────────────────────────────────────┼─────────┼────────────────────────────────────────────────────────┤
471 │forward-delay │ DELAY │ 15 │ STP forwarding │
472 │ │ │ │ delay. │
473 │ │ │ │ │
474 │ │ │ │ Allowed values: │
475 │ │ │ │ 2 - 30 │
476 ├──────────────────────────────────┼────────────────────────────────────┼─────────┼────────────────────────────────────────────────────────┤
477 │hello-time │ BRIDGING_OPTS: │ 2 │ STP hello time. │
478 │ │ hello_time= │ │ │
479 │ │ │ │ Allowed values: │
480 │ │ │ │ 1 - 10 │
481 ├──────────────────────────────────┼────────────────────────────────────┼─────────┼────────────────────────────────────────────────────────┤
482 │max-age │ BRIDGING_OPTS: │ 20 │ STP maximum │
483 │ │ max_age= │ │ message age. │
484 │ │ │ │ │
485 │ │ │ │ Allowed values: │
486 │ │ │ │ 6 - 40 │
487 ├──────────────────────────────────┼────────────────────────────────────┼─────────┼────────────────────────────────────────────────────────┤
488 │ageing-time │ BRIDGING_OPTS: │ 300 │ Ethernet MAC │
489 │ │ ageing_time= │ │ ageing time. │
490 │ │ │ │ │
491 │ │ │ │ Allowed values: │
492 │ │ │ │ 0 - 1000000 │
493 ├──────────────────────────────────┼────────────────────────────────────┼─────────┼────────────────────────────────────────────────────────┤
494 │multicast-snooping │ BRIDGING_OPTS: │ 1 │ IGMP snooping │
495 │ │ multicast_snooping= │ │ support. │
496 │ │ │ │ │
497 │ │ │ │ Allowed values: │
498 │ │ │ │ 0 or 1 │
499 ├──────────────────────────────────┼────────────────────────────────────┼─────────┼────────────────────────────────────────────────────────┤
500 │vlan-filtering │ BRIDGING_OPTS: │ 0 │ VLAN filtering │
501 │ │ vlan_filtering= │ │ support. │
502 │ │ │ │ │
503 │ │ │ │ Allowed values: │
504 │ │ │ │ 0 or 1 │
505 ├──────────────────────────────────┼────────────────────────────────────┼─────────┼────────────────────────────────────────────────────────┤
506 │vlan-default-pvid │ BRIDGING_OPTS: │ 1 │ default VLAN │
507 │ │ default_pvid= │ │ PVID. │
508 │ │ │ │ │
509 │ │ │ │ Allowed values: │
510 │ │ │ │ 0 - 4094 │
511 ├──────────────────────────────────┼────────────────────────────────────┼─────────┼────────────────────────────────────────────────────────┤
512 │vlans │ BRIDGE_VLANS │ │ List of VLANs on │
513 │ │ │ │ the bridge │
514 │ │ │ │ │
515 │ │ │ │ Example: │
516 │ │ │ │ BRIDGE_VLANS="1 │
517 │ │ │ │ pvid │
518 │ │ │ │ untagged,20,300-400 │
519 │ │ │ │ untagged" │
520 ├──────────────────────────────────┼────────────────────────────────────┼─────────┼────────────────────────────────────────────────────────┤
521 │group-address │ BRIDGING_OPTS: │ │ STP group address. │
522 │ │ group_address= │ │ │
523 │ │ │ │ Example: │
524 │ │ │ │ BRIDGING_OPTS="group_address=01:80:C2:00:00:0A" │
525 ├──────────────────────────────────┼────────────────────────────────────┼─────────┼────────────────────────────────────────────────────────┤
526 │vlan-protocol │ BRIDGING_OPTS: │ │ VLAN filtering protocol. │
527 │ │ vlan_protocol= │ │ │
528 │ │ │ │ Example: BRIDGING_OPTS="vlan_protocol=802.1Q" │
529 ├──────────────────────────────────┼────────────────────────────────────┼─────────┼────────────────────────────────────────────────────────┤
530 │vlan-stats-enabled │ BRIDGING_OPTS: │ 0 │ │
531 │ │ vlan_stats_enabled= │ │ │
532 │ │ │ │ Example: BRIDGING_OPTS="vlan_stats_enabled=1" │
533 ├──────────────────────────────────┼────────────────────────────────────┼─────────┼────────────────────────────────────────────────────────┤
534 │multicast-router │ BRIDGING_OPTS: │ auto │ │
535 │ │ multicast_router= │ │ │
536 │ │ │ │ Example: │
537 │ │ │ │ BRIDGING_OPTS="multicast_router=enabled" │
538 │ │ │ │ │
539 │ │ │ │ Allowed values: auto, enabled, disabled │
540 ├──────────────────────────────────┼────────────────────────────────────┼─────────┼────────────────────────────────────────────────────────┤
541 │multicast-query-use-ifaddr │ BRIDGING_OPTS: │ 0 │ │
542 │ │ multicast_query_use_ifaddr= │ │ │
543 │ │ │ │ Example: │
544 │ │ │ │ BRIDGING_OPTS="multicast_query-use_ifaddr=1" │
545 ├──────────────────────────────────┼────────────────────────────────────┼─────────┼────────────────────────────────────────────────────────┤
546 │multicast-querier │ BRIDGING_OPTS: │ 0 │ │
547 │ │ multicast_querier= │ │ │
548 │ │ │ │ Example: BRIDGING_OPTS="multicast_querier=1" │
549 ├──────────────────────────────────┼────────────────────────────────────┼─────────┼────────────────────────────────────────────────────────┤
550 │multicast-hash-max │ BRIDGING_OPTS: │ 4096 │ │
551 │ │ multicast_hash_max= │ │ │
552 │ │ │ │ Example: │
553 │ │ │ │ BRIDGING_OPTS="multicast_hash_max=8192" │
554 ├──────────────────────────────────┼────────────────────────────────────┼─────────┼────────────────────────────────────────────────────────┤
555 │multicast-last-member-count │ BRIDGING_OPTS: │ 2 │ │
556 │ │ multicast_last_member_count= │ │ │
557 │ │ │ │ Example: │
558 │ │ │ │ BRIDGING_OPTS="multicast_last_member_count=4" │
559 ├──────────────────────────────────┼────────────────────────────────────┼─────────┼────────────────────────────────────────────────────────┤
560 │multicast-last-member-interval │ BRIDGING_OPTS: │ 100 │ │
561 │ │ multicast_last_member_interval= │ │ │
562 │ │ │ │ Example: │
563 │ │ │ │ BRIDGING_OPTS="multicast_last_member_interval=200" │
564 ├──────────────────────────────────┼────────────────────────────────────┼─────────┼────────────────────────────────────────────────────────┤
565 │multicast-membership-interval │ BRIDGING_OPTS: │ 26000 │ │
566 │ │ multicast_membership_interval= │ │ │
567 │ │ │ │ Example: │
568 │ │ │ │ BRIDGING_OPTS="multicast_membership_interval=16000" │
569 ├──────────────────────────────────┼────────────────────────────────────┼─────────┼────────────────────────────────────────────────────────┤
570 │multicast-querier-interval │ BRIDGING_OPTS: │ 25500 │ │
571 │ │ multicast_querier_interval= │ │ │
572 │ │ │ │ Example: │
573 │ │ │ │ BRIDGING_OPTS="multicast_querier_interval=20000" │
574 ├──────────────────────────────────┼────────────────────────────────────┼─────────┼────────────────────────────────────────────────────────┤
575 │multicast-query-interval │ BRIDGING_OPTS: │ 12500 │ │
576 │ │ multicast_query_interval= │ │ │
577 │ │ │ │ Example: │
578 │ │ │ │ BRIDGING_OPTS="multicast_query_interval=22500" │
579 ├──────────────────────────────────┼────────────────────────────────────┼─────────┼────────────────────────────────────────────────────────┤
580 │multicast-query-response-interval │ BRIDGING_OPTS: │ 1000 │ │
581 │ │ multicast_query_response_interval= │ │ │
582 │ │ │ │ Example: │
583 │ │ │ │ BRIDGING_OPTS="multicast_query_response_interval=2000" │
584 ├──────────────────────────────────┼────────────────────────────────────┼─────────┼────────────────────────────────────────────────────────┤
585 │multicast-startup-query-count │ BRIDGING_OPTS: │ 2 │ │
586 │ │ multicast_startup_query_count= │ │ │
587 │ │ │ │ Example: │
588 │ │ │ │ BRIDGING_OPTS="multicast_startup_query_count=4" │
589 ├──────────────────────────────────┼────────────────────────────────────┼─────────┼────────────────────────────────────────────────────────┤
590 │multicast-startup-query-interval │ BRIDGING_OPTS: │ 3125 │ │
591 │ │ multicast_startup_query_interval= │ │ │
592 │ │ │ │ Example: │
593 │ │ │ │ BRIDGING_OPTS="multicast_startup_query_interval=4000" │
594 └──────────────────────────────────┴────────────────────────────────────┴─────────┴────────────────────────────────────────────────────────┘
595
596 Table 6. connection setting
597 ┌─────────────────────┬─────────────────────────┬──────────────────┬───────────────────────────────────────────┐
598 │Property │ Ifcfg-rh │ Default │ Description │
599 │ │ Variable │ │ │
600 ├─────────────────────┼─────────────────────────┼──────────────────┼───────────────────────────────────────────┤
601 │id │ NAME(+) │ │ User friendly │
602 │ │ │ │ name for the │
603 │ │ │ │ connection │
604 │ │ │ │ profile. │
605 ├─────────────────────┼─────────────────────────┼──────────────────┼───────────────────────────────────────────┤
606 │uuid │ UUID(+) │ │ UUID for the │
607 │ │ │ │ connection │
608 │ │ │ │ profile. When │
609 │ │ │ │ missing, │
610 │ │ │ │ NetworkManager │
611 │ │ │ │ creates the UUID │
612 │ │ │ │ itself (by │
613 │ │ │ │ hashing the │
614 │ │ │ │ filename). │
615 ├─────────────────────┼─────────────────────────┼──────────────────┼───────────────────────────────────────────┤
616 │stable-id │ STABLE_ID(+) │ │ Token to │
617 │ │ │ │ generate stable │
618 │ │ │ │ IDs. │
619 ├─────────────────────┼─────────────────────────┼──────────────────┼───────────────────────────────────────────┤
620 │interface-name │ DEVICE │ │ Interface name │
621 │ │ │ │ of the device │
622 │ │ │ │ this profile is │
623 │ │ │ │ bound to. The │
624 │ │ │ │ variable can be │
625 │ │ │ │ left out when │
626 │ │ │ │ the profile │
627 │ │ │ │ should apply for │
628 │ │ │ │ more devices. │
629 │ │ │ │ Note that DEVICE │
630 │ │ │ │ can be required │
631 │ │ │ │ for some │
632 │ │ │ │ connection │
633 │ │ │ │ types. │
634 ├─────────────────────┼─────────────────────────┼──────────────────┼───────────────────────────────────────────┤
635 │type │ TYPE │ │ Base type of the │
636 │ │ (DEVICETYPE, │ │ connection. │
637 │ │ DEVICE) │ │ DEVICETYPE is │
638 │ │ │ │ used for teaming │
639 │ │ │ │ connections. │
640 │ │ │ │ │
641 │ │ │ │ Example: │
642 │ │ │ │ TYPE=Ethernet; │
643 │ │ │ │ TYPE=Bond; │
644 │ │ │ │ TYPE=Bridge; │
645 │ │ │ │ DEVICETYPE=TeamPort │
646 │ │ │ │ │
647 │ │ │ │ Allowed values: │
648 │ │ │ │ Ethernet, │
649 │ │ │ │ Wireless, │
650 │ │ │ │ InfiniBand, │
651 │ │ │ │ Bridge, Bond, │
652 │ │ │ │ Vlan, Team, │
653 │ │ │ │ TeamPort │
654 ├─────────────────────┼─────────────────────────┼──────────────────┼───────────────────────────────────────────┤
655 │permissions │ USERS(+) │ │ Restrict to certain │
656 │ │ │ │ users the access to │
657 │ │ │ │ this connection, │
658 │ │ │ │ and allow the │
659 │ │ │ │ connection to be │
660 │ │ │ │ active only when at │
661 │ │ │ │ least one of the │
662 │ │ │ │ specified users is │
663 │ │ │ │ logged into an │
664 │ │ │ │ active session. │
665 │ │ │ │ │
666 │ │ │ │ Example: USERS="joe │
667 │ │ │ │ bob" │
668 ├─────────────────────┼─────────────────────────┼──────────────────┼───────────────────────────────────────────┤
669 │autoconnect │ ONBOOT │ yes │ Whether the │
670 │ │ │ │ connection should │
671 │ │ │ │ be autoconnected │
672 │ │ │ │ (not only while │
673 │ │ │ │ booting). │
674 ├─────────────────────┼─────────────────────────┼──────────────────┼───────────────────────────────────────────┤
675 │autoconnect-priority │ AUTOCONNECT_PRIORITY(+) │ 0 │ Connection priority │
676 │ │ │ │ for automatic │
677 │ │ │ │ activation. │
678 │ │ │ │ Connections with │
679 │ │ │ │ higher numbers are │
680 │ │ │ │ preferred when │
681 │ │ │ │ selecting profiles │
682 │ │ │ │ for automatic │
683 │ │ │ │ activation. │
684 │ │ │ │ │
685 │ │ │ │ Example: │
686 │ │ │ │ AUTOCONNECT_PRIORITY=20 │
687 │ │ │ │ │
688 │ │ │ │ Allowed values: │
689 │ │ │ │ -999 to 999 │
690 ├─────────────────────┼─────────────────────────┼──────────────────┼───────────────────────────────────────────┤
691 │autoconnect-retries │ AUTOCONNECT_RETRIES(+) │ │ The number of times a │
692 │ │ │ │ connection should be │
693 │ │ │ │ autoactivated before │
694 │ │ │ │ giving up and switching │
695 │ │ │ │ to the next one. │
696 │ │ │ │ │
697 │ │ │ │ Example: │
698 │ │ │ │ AUTOCONNECT_RETRIES=1 │
699 │ │ │ │ │
700 │ │ │ │ Allowed values: -1 (use │
701 │ │ │ │ global default), 0 │
702 │ │ │ │ (forever) or a positive │
703 │ │ │ │ value │
704 ├─────────────────────┼─────────────────────────┼──────────────────┼───────────────────────────────────────────┤
705 │multi-connect │ MULTI_CONNECT(+) │ │ whether the profile can │
706 │ │ │ │ be active on multiple │
707 │ │ │ │ devices at a given │
708 │ │ │ │ moment. The values are │
709 │ │ │ │ numbers corresponding │
710 │ │ │ │ to │
711 │ │ │ │ #NMConnectionMultiConnect │
712 │ │ │ │ enum. │
713 │ │ │ │ │
714 │ │ │ │ Example: │
715 │ │ │ │ MULTI_CONNECT=3 │
716 ├─────────────────────┼─────────────────────────┼──────────────────┼───────────────────────────────────────────┤
717 │zone │ ZONE(+) │ │ Trust level of this │
718 │ │ │ │ connection. The string is │
719 │ │ │ │ usually used for a │
720 │ │ │ │ firewall. │
721 │ │ │ │ │
722 │ │ │ │ Example: ZONE=Work │
723 ├─────────────────────┼─────────────────────────┼──────────────────┼───────────────────────────────────────────┤
724 │master │ MASTER, MASTER_UUID, │ │ Reference to master │
725 │ │ TEAM_MASTER, │ │ connection. The variable │
726 │ │ TEAM_MASTER_UUID, │ │ used depends on the │
727 │ │ BRIDGE, BRIDGE_UUID │ │ connection type and the │
728 │ │ │ │ value. In general, if the │
729 │ │ │ │ *_UUID variant is │
730 │ │ │ │ present, the variant │
731 │ │ │ │ without *_UUID is │
732 │ │ │ │ ignored. NetworkManager │
733 │ │ │ │ attempts to write both │
734 │ │ │ │ for compatibility with │
735 │ │ │ │ legacy tooling. │
736 ├─────────────────────┼─────────────────────────┼──────────────────┼───────────────────────────────────────────┤
737 │slave-type │ MASTER, MASTER_UUID, │ │ Slave type doesn't map │
738 │ │ TEAM_MASTER, │ │ directly to a variable, │
739 │ │ TEAM_MASTER_UUID, │ │ but it is recognized │
740 │ │ DEVICETYPE, BRIDGE, │ │ using different │
741 │ │ BRIDGE_UUID │ │ variables. MASTER and │
742 │ │ │ │ MASTER_UUID for bonding, │
743 │ │ │ │ TEAM_MASTER, │
744 │ │ │ │ TEAM_MASTER_UUID and │
745 │ │ │ │ DEVICETYPE for teaming, │
746 │ │ │ │ BRIDGE and BRIDGE_UUID │
747 │ │ │ │ for bridging. │
748 ├─────────────────────┼─────────────────────────┼──────────────────┼───────────────────────────────────────────┤
749 │autoconnect-slaves │ AUTOCONNECT_SLAVES(+) │ missing variable │ Whether slaves of this │
750 │ │ │ means global │ connection should be │
751 │ │ │ default │ auto-connected when this │
752 │ │ │ │ connection is activated. │
753 ├─────────────────────┼─────────────────────────┼──────────────────┼───────────────────────────────────────────┤
754 │secondaries │ SECONDARY_UUIDS(+) │ │ UUID of VPN connections │
755 │ │ │ │ that should be activated │
756 │ │ │ │ together with this │
757 │ │ │ │ connection. │
758 ├─────────────────────┼─────────────────────────┼──────────────────┼───────────────────────────────────────────┤
759 │gateway-ping-timeout │ GATEWAY_PING_TIMEOUT(+) │ 0 │ If greater than zero, the │
760 │ │ │ │ IP connectivity will be │
761 │ │ │ │ checked by pinging the │
762 │ │ │ │ gateway and waiting for │
763 │ │ │ │ the specified timeout (in │
764 │ │ │ │ seconds). │
765 │ │ │ │ │
766 │ │ │ │ Example: │
767 │ │ │ │ GATEWAY_PING_TIMEOUT=5 │
768 ├─────────────────────┼─────────────────────────┼──────────────────┼───────────────────────────────────────────┤
769 │metered │ CONNECTION_METERED(+) │ │ Whether the device is │
770 │ │ │ │ metered │
771 │ │ │ │ │
772 │ │ │ │ Example: │
773 │ │ │ │ CONNECTION_METERED=yes │
774 │ │ │ │ │
775 │ │ │ │ Allowed values: │
776 │ │ │ │ yes,no,unknown │
777 ├─────────────────────┼─────────────────────────┼──────────────────┼───────────────────────────────────────────┤
778 │lldp │ LLDP(+) │ missing variable │ whether LLDP is enabled │
779 │ │ │ means global │ for the connection │
780 │ │ │ default │ │
781 │ │ │ │ Example: LLDP=no │
782 │ │ │ │ │
783 │ │ │ │ Allowed values: boolean │
784 │ │ │ │ value or 'rx' │
785 ├─────────────────────┼─────────────────────────┼──────────────────┼───────────────────────────────────────────┤
786 │auth-retries │ AUTH_RETRIES(+) │ 0 │ Number of retries for │
787 │ │ │ │ authentication. │
788 ├─────────────────────┼─────────────────────────┼──────────────────┼───────────────────────────────────────────┤
789 │mdns │ MDNS(+) │ missing variable │ Whether or not mDNS is │
790 │ │ │ means global │ enabled for the │
791 │ │ │ default │ connection │
792 │ │ │ │ │
793 │ │ │ │ Example: MDNS=yes │
794 │ │ │ │ │
795 │ │ │ │ Allowed values: │
796 │ │ │ │ yes,no,resolve │
797 ├─────────────────────┼─────────────────────────┼──────────────────┼───────────────────────────────────────────┤
798 │llmnr │ LLMNR(+) │ missing variable │ Whether or not LLMNR is │
799 │ │ │ means global │ enabled for the │
800 │ │ │ default │ connection │
801 │ │ │ │ │
802 │ │ │ │ Example: LLMNR=yes │
803 │ │ │ │ │
804 │ │ │ │ Allowed values: │
805 │ │ │ │ yes,no,resolve │
806 ├─────────────────────┼─────────────────────────┼──────────────────┼───────────────────────────────────────────┤
807 │wait-device-timeout │ DEVTIMEOUT(+) │ │ for initscripts │
808 │ │ │ │ compatibility, this │
809 │ │ │ │ variable must be a whole │
810 │ │ │ │ integer. If necessary, │
811 │ │ │ │ NetworkManager stores │
812 │ │ │ │ also a fractional │
813 │ │ │ │ component for the │
814 │ │ │ │ milliseconds. │
815 │ │ │ │ │
816 │ │ │ │ Example: DEVTIMEOUT=5 │
817 │ │ │ │ │
818 │ │ │ │ Allowed values: timeout │
819 │ │ │ │ in seconds. │
820 ├─────────────────────┼─────────────────────────┼──────────────────┼───────────────────────────────────────────┤
821 │mud-url │ MUD_URL │ │ MUD_URL to be sent by │
822 │ │ │ │ device (See RFC 8520). │
823 │ │ │ │ │
824 │ │ │ │ Example: │
825 │ │ │ │ https://yourdevice.example.com/model.json │
826 │ │ │ │ │
827 │ │ │ │ Allowed values: a valid │
828 │ │ │ │ URL that points to │
829 │ │ │ │ recommended policy for │
830 │ │ │ │ this device │
831 └─────────────────────┴─────────────────────────┴──────────────────┴───────────────────────────────────────────┘
832
833 Table 7. dcb setting
834 ┌────────────────────────────┬──────────────────────────┬─────────┬─────────────────────────────────────┐
835 │Property │ Ifcfg-rh │ Default │ Description │
836 │ │ Variable │ │ │
837 ├────────────────────────────┼──────────────────────────┼─────────┼─────────────────────────────────────┤
838 │app-fcoe-flags │ DCB_APP_FCOE_ENABLE, │ no │ FCOE flags. │
839 │ │ DCB_APP_FCOE_ADVERTISE, │ │ │
840 │ │ DCB_APP_FCOE_WILLING │ │ Example: │
841 │ │ │ │ DCB_APP_FCOE_ENABLE=yes │
842 │ │ │ │ DCB_APP_FCOE_ADVERTISE=yes │
843 ├────────────────────────────┼──────────────────────────┼─────────┼─────────────────────────────────────┤
844 │app-fcoe-priority │ DCB_APP_FCOE_PRIORITY │ │ Priority of FCoE frames. │
845 │ │ │ │ │
846 │ │ │ │ Allowed values: 0 - 7 │
847 ├────────────────────────────┼──────────────────────────┼─────────┼─────────────────────────────────────┤
848 │app-fcoe-mode │ DCB_APP_FCOE_MODE │ fabric │ FCoE controller mode. │
849 │ │ │ │ │
850 │ │ │ │ Allowed values: fabric, │
851 │ │ │ │ vn2vn │
852 ├────────────────────────────┼──────────────────────────┼─────────┼─────────────────────────────────────┤
853 │app-iscsi-flags │ DCB_APP_ISCSI_ENABLE, │ no │ iSCSI flags. │
854 │ │ DCB_APP_ISCSI_ADVERTISE, │ │ │
855 │ │ DCB_APP_ISCSI_WILLING │ │ │
856 ├────────────────────────────┼──────────────────────────┼─────────┼─────────────────────────────────────┤
857 │app-iscsi-priority │ DCB_APP_ISCSI_PRIORITY │ │ Priority of iSCSI frames. │
858 │ │ │ │ │
859 │ │ │ │ Allowed values: 0 - 7 │
860 ├────────────────────────────┼──────────────────────────┼─────────┼─────────────────────────────────────┤
861 │app-fip-flags │ DCB_APP_FIP_ENABLE, │ no │ FIP flags. │
862 │ │ DCB_APP_FIP_ADVERTISE, │ │ │
863 │ │ DCB_APP_FIP_WILLING │ │ │
864 ├────────────────────────────┼──────────────────────────┼─────────┼─────────────────────────────────────┤
865 │app-fip-priority │ DCB_APP_FIP_PRIORITY │ │ Priority of FIP frames. │
866 │ │ │ │ │
867 │ │ │ │ Allowed values: 0 - 7 │
868 ├────────────────────────────┼──────────────────────────┼─────────┼─────────────────────────────────────┤
869 │priority-flow-control-flags │ DCB_PFC_ENABLE, │ no │ Priority flow control │
870 │ │ DCB_PFC_ADVERTISE, │ │ flags. │
871 │ │ DCB_PFC_WILLING │ │ │
872 ├────────────────────────────┼──────────────────────────┼─────────┼─────────────────────────────────────┤
873 │priority-flow-control │ DCB_PFC_UP │ │ Priority flow control │
874 │ │ │ │ values. String of 8 "0" │
875 │ │ │ │ and "1", where "0". means │
876 │ │ │ │ "do not transmit priority │
877 │ │ │ │ pause", "1" means │
878 │ │ │ │ "transmit pause". │
879 │ │ │ │ │
880 │ │ │ │ Example: │
881 │ │ │ │ DCB_PFC_UP=01101110 │
882 ├────────────────────────────┼──────────────────────────┼─────────┼─────────────────────────────────────┤
883 │priority-group-flags │ DCB_PG_ENABLE, │ no │ Priority groups flags. │
884 │ │ DCB_PG_ADVERTISE, │ │ │
885 │ │ DCB_PG_WILLING │ │ │
886 ├────────────────────────────┼──────────────────────────┼─────────┼─────────────────────────────────────┤
887 │priority-group-id │ DCB_PG_ID │ │ Priority groups values. │
888 │ │ │ │ String of eight priorities │
889 │ │ │ │ (0 - 7) or "f" │
890 │ │ │ │ (unrestricted). │
891 │ │ │ │ │
892 │ │ │ │ Example: │
893 │ │ │ │ DCB_PG_ID=1205f173 │
894 ├────────────────────────────┼──────────────────────────┼─────────┼─────────────────────────────────────┤
895 │priority-group-bandwidth │ DCB_PG_PCT │ │ Priority groups values. │
896 │ │ │ │ Eight bandwidths (in │
897 │ │ │ │ percent), separated with │
898 │ │ │ │ commas. │
899 │ │ │ │ │
900 │ │ │ │ Example: │
901 │ │ │ │ DCB_PG_PCT=10,5,10,15,10,10,10,30 │
902 ├────────────────────────────┼──────────────────────────┼─────────┼─────────────────────────────────────┤
903 │priority-bandwidth │ DCB_PG_UPPCT │ │ Priority values. Eight bandwidths │
904 │ │ │ │ (in percent), separated with │
905 │ │ │ │ commas. The sum of the numbers │
906 │ │ │ │ must be 100. │
907 │ │ │ │ │
908 │ │ │ │ Example: │
909 │ │ │ │ DCB_PG_UPPCT=7,13,10,10,15,15,10,20 │
910 ├────────────────────────────┼──────────────────────────┼─────────┼─────────────────────────────────────┤
911 │priority-strict-bandwidth │ DCB_PG_STRICT │ │ Priority values. String of eight │
912 │ │ │ │ "0" or "1", where "0" means "may │
913 │ │ │ │ not utilize all bandwidth", "1" │
914 │ │ │ │ means "may utilize all bandwidth". │
915 │ │ │ │ │
916 │ │ │ │ Example: DCB_PG_STRICT=01101110 │
917 ├────────────────────────────┼──────────────────────────┼─────────┼─────────────────────────────────────┤
918 │priority-traffic-class │ DCB_PG_UP2TC │ │ Priority values. String of eight │
919 │ │ │ │ traffic class values (0 - 7). │
920 │ │ │ │ │
921 │ │ │ │ Example: DCB_PG_UP2TC=01623701 │
922 └────────────────────────────┴──────────────────────────┴─────────┴─────────────────────────────────────┘
923
924 All DCB related configuration is a NetworkManager extension. DCB=yes
925 must be used explicitly to enable DCB so that the rest of the DCB_*
926 variables can apply.
927
928 Table 8. ethtool setting
929 Table 9. hostname setting
930 ┌─────────────────┬───────────────────────────────┬──────────────────┬────────────────────────────────┐
931 │Property │ Ifcfg-rh │ Default │ Description │
932 │ │ Variable │ │ │
933 ├─────────────────┼───────────────────────────────┼──────────────────┼────────────────────────────────┤
934 │priority │ HOSTNAME_PRIORITY(+) │ missing variable │ hostname │
935 │ │ │ means global │ priority │
936 │ │ │ value or 100 │ │
937 │ │ │ │ Example: │
938 │ │ │ │ HOSTNAME_PRIORITY=50 │
939 ├─────────────────┼───────────────────────────────┼──────────────────┼────────────────────────────────┤
940 │from-dhcp │ HOSTNAME_FROM_DHCP(+) │ missing variable │ whether the system │
941 │ │ │ means global │ hostname can be │
942 │ │ │ default or 1 │ determined from DHCP │
943 │ │ │ │ │
944 │ │ │ │ Example: │
945 │ │ │ │ HOSTNAME_FROM_DHCP=0,1 │
946 ├─────────────────┼───────────────────────────────┼──────────────────┼────────────────────────────────┤
947 │from-dhcp │ HOSTNAME_FROM_DNS_LOOKUP(+) │ missing variable │ whether the system │
948 │ │ │ means global │ hostname can be │
949 │ │ │ default or 1 │ determined from │
950 │ │ │ │ reverse DNS lookup │
951 │ │ │ │ │
952 │ │ │ │ Example: │
953 │ │ │ │ HOSTNAME_FROM_DNS_LOOKUP=0,1 │
954 ├─────────────────┼───────────────────────────────┼──────────────────┼────────────────────────────────┤
955 │only-best-device │ HOSTNAME_ONLY_FROM_DEFAULT(+) │ missing variable │ whether the hostname can be │
956 │ │ │ means global │ determined only from devices │
957 │ │ │ default or 1 │ with the default route │
958 │ │ │ │ │
959 │ │ │ │ Example: │
960 │ │ │ │ HOSTNAME_ONLY_FROM_DEFAULT=0,1 │
961 └─────────────────┴───────────────────────────────┴──────────────────┴────────────────────────────────┘
962
963 Table 10. infiniband setting
964 ┌───────────────┬────────────────┬───────────────────┬────────────────────────────────────────────────────────────────────┐
965 │Property │ Ifcfg-rh │ Default │ Description │
966 │ │ Variable │ │ │
967 ├───────────────┼────────────────┼───────────────────┼────────────────────────────────────────────────────────────────────┤
968 │mac-address │ HWADDR │ │ IBoIP 20-byte │
969 │ │ │ │ hardware address │
970 │ │ │ │ of the device │
971 │ │ │ │ (in traditional │
972 │ │ │ │ hex-digits-and-colons │
973 │ │ │ │ notation). Note │
974 │ │ │ │ that for │
975 │ │ │ │ initscripts this │
976 │ │ │ │ is the current │
977 │ │ │ │ MAC address of │
978 │ │ │ │ the device as │
979 │ │ │ │ found during │
980 │ │ │ │ ifup. For │
981 │ │ │ │ NetworkManager │
982 │ │ │ │ this is the │
983 │ │ │ │ permanent MAC │
984 │ │ │ │ address. Or in │
985 │ │ │ │ case no │
986 │ │ │ │ permanent MAC │
987 │ │ │ │ address exists, │
988 │ │ │ │ the MAC address │
989 │ │ │ │ initially │
990 │ │ │ │ configured on │
991 │ │ │ │ the device. │
992 │ │ │ │ │
993 │ │ │ │ Example: │
994 │ │ │ │ HWADDR=01:02:03:04:05:06:07:08:09:0A:01:02:03:04:05:06:07:08:09:11 │
995 ├───────────────┼────────────────┼───────────────────┼────────────────────────────────────────────────────────────────────┤
996 │mtu │ MTU │ │ MTU of the interface. │
997 ├───────────────┼────────────────┼───────────────────┼────────────────────────────────────────────────────────────────────┤
998 │transport-mode │ CONNECTED_MODE │ CONNECTED_MODE=no │ CONNECTED_MODE=yes for "connected" mode, CONNECTED_MODE=no for │
999 │ │ │ │ "datagram" mode │
1000 ├───────────────┼────────────────┼───────────────────┼────────────────────────────────────────────────────────────────────┤
1001 │p-key │ PKEY_ID (and │ PKEY=no │ InfiniBand P_Key. The value can be a hex number prefixed with "0x" │
1002 │ │ PKEY=yes) │ │ or a decimal number. When PKEY_ID is specified, PHYSDEV and DEVICE │
1003 │ │ │ │ also must be specified. │
1004 │ │ │ │ │
1005 │ │ │ │ Example: PKEY=yes PKEY_ID=2 PHYSDEV=mlx4_ib0 DEVICE=mlx4_ib0.8002 │
1006 ├───────────────┼────────────────┼───────────────────┼────────────────────────────────────────────────────────────────────┤
1007 │parent │ PHYSDEV │ PKEY=no │ InfiniBand parent device. │
1008 │ │ (PKEY=yes) │ │ │
1009 │ │ │ │ Example: PHYSDEV=ib0 │
1010 └───────────────┴────────────────┴───────────────────┴────────────────────────────────────────────────────────────────────┘
1011
1012 Table 11. ipv4 setting
1013 ┌─────────────────────────────┬─────────────────────────────────┬──────────────────┬─────────────────────────────────────┐
1014 │Property │ Ifcfg-rh │ Default │ Description │
1015 │ │ Variable │ │ │
1016 ├─────────────────────────────┼─────────────────────────────────┼──────────────────┼─────────────────────────────────────┤
1017 │method │ BOOTPROTO │ none │ Method used for │
1018 │ │ │ │ IPv4 protocol │
1019 │ │ │ │ configuration. │
1020 │ │ │ │ │
1021 │ │ │ │ Allowed values: │
1022 │ │ │ │ none, dhcp │
1023 │ │ │ │ (bootp), static, │
1024 │ │ │ │ ibft, autoip, │
1025 │ │ │ │ shared │
1026 ├─────────────────────────────┼─────────────────────────────────┼──────────────────┼─────────────────────────────────────┤
1027 │dns │ DNS1, DNS2, ... │ │ List of DNS │
1028 │ │ │ │ servers. Even if │
1029 │ │ │ │ NetworkManager │
1030 │ │ │ │ supports many │
1031 │ │ │ │ DNS servers, │
1032 │ │ │ │ initscripts and │
1033 │ │ │ │ resolver only │
1034 │ │ │ │ care about the │
1035 │ │ │ │ first three, │
1036 │ │ │ │ usually. │
1037 │ │ │ │ │
1038 │ │ │ │ Example: │
1039 │ │ │ │ DNS1=1.2.3.4 │
1040 │ │ │ │ DNS2=10.0.0.254 │
1041 │ │ │ │ DNS3=8.8.8.8 │
1042 ├─────────────────────────────┼─────────────────────────────────┼──────────────────┼─────────────────────────────────────┤
1043 │dns-search │ DOMAIN │ │ List of DNS │
1044 │ │ │ │ search domains. │
1045 ├─────────────────────────────┼─────────────────────────────────┼──────────────────┼─────────────────────────────────────┤
1046 │addresses │ IPADDR, PREFIX │ │ List of static │
1047 │ │ (NETMASK), │ │ IP addresses. │
1048 │ │ IPADDR1, PREFIX1 │ │ │
1049 │ │ (NETMASK1), ... │ │ Example: │
1050 │ │ │ │ IPADDR=10.5.5.23 │
1051 │ │ │ │ PREFIX=24 │
1052 │ │ │ │ IPADDR1=1.1.1.2 │
1053 │ │ │ │ PREFIX1=16 │
1054 ├─────────────────────────────┼─────────────────────────────────┼──────────────────┼─────────────────────────────────────┤
1055 │gateway │ GATEWAY │ │ Gateway IP │
1056 │ │ │ │ address. │
1057 │ │ │ │ │
1058 │ │ │ │ Example: │
1059 │ │ │ │ GATEWAY=10.5.5.1 │
1060 ├─────────────────────────────┼─────────────────────────────────┼──────────────────┼─────────────────────────────────────┤
1061 │routes │ ADDRESS1, │ │ List of static │
1062 │ │ NETMASK1, │ │ routes. They are │
1063 │ │ GATEWAY1, │ │ not stored in │
1064 │ │ METRIC1, │ │ ifcfg-* file, │
1065 │ │ OPTIONS1, ... │ │ but in route-* │
1066 │ │ │ │ file instead. │
1067 ├─────────────────────────────┼─────────────────────────────────┼──────────────────┼─────────────────────────────────────┤
1068 │ignore-auto-routes │ PEERROUTES(+) │ yes │ PEERROUTES has │
1069 │ │ │ │ the opposite │
1070 │ │ │ │ meaning as │
1071 │ │ │ │ 'ignore-auto-routes' │
1072 │ │ │ │ property. │
1073 ├─────────────────────────────┼─────────────────────────────────┼──────────────────┼─────────────────────────────────────┤
1074 │ignore-auto-dns │ PEERDNS │ yes │ PEERDNS has the │
1075 │ │ │ │ opposite meaning as │
1076 │ │ │ │ 'ignore-auto-dns' │
1077 │ │ │ │ property. │
1078 ├─────────────────────────────┼─────────────────────────────────┼──────────────────┼─────────────────────────────────────┤
1079 │dhcp-send-hostname │ DHCP_SEND_HOSTNAME(+) │ yes │ Whether │
1080 │ │ │ │ DHCP_HOSTNAME should │
1081 │ │ │ │ be sent to the DHCP │
1082 │ │ │ │ server. │
1083 ├─────────────────────────────┼─────────────────────────────────┼──────────────────┼─────────────────────────────────────┤
1084 │dhcp-hostname │ DHCP_HOSTNAME │ │ Hostname to send to │
1085 │ │ │ │ the DHCP server. │
1086 │ │ │ │ When both │
1087 │ │ │ │ DHCP_HOSTNAME and │
1088 │ │ │ │ DHCP_FQDN are │
1089 │ │ │ │ specified only the │
1090 │ │ │ │ latter is used. │
1091 ├─────────────────────────────┼─────────────────────────────────┼──────────────────┼─────────────────────────────────────┤
1092 │never-default │ DEFROUTE (GATEWAYDEV │ yes │ DEFROUTE=no tells │
1093 │ │ in │ │ NetworkManager that │
1094 │ │ /etc/sysconfig/network) │ │ this connection │
1095 │ │ │ │ should not be │
1096 │ │ │ │ assigned the default │
1097 │ │ │ │ route. DEFROUTE has │
1098 │ │ │ │ the opposite meaning │
1099 │ │ │ │ as 'never-default' │
1100 │ │ │ │ property. │
1101 ├─────────────────────────────┼─────────────────────────────────┼──────────────────┼─────────────────────────────────────┤
1102 │may-fail │ IPV4_FAILURE_FATAL(+) │ no │ IPV4_FAILURE_FATAL │
1103 │ │ │ │ has the opposite │
1104 │ │ │ │ meaning as │
1105 │ │ │ │ 'may-fail' property. │
1106 ├─────────────────────────────┼─────────────────────────────────┼──────────────────┼─────────────────────────────────────┤
1107 │route-metric │ IPV4_ROUTE_METRIC(+) │ -1 │ IPV4_ROUTE_METRIC is │
1108 │ │ │ │ the default IPv4 │
1109 │ │ │ │ metric for routes on │
1110 │ │ │ │ this connection. If │
1111 │ │ │ │ set to -1, a default │
1112 │ │ │ │ metric based on the │
1113 │ │ │ │ device type is used. │
1114 ├─────────────────────────────┼─────────────────────────────────┼──────────────────┼─────────────────────────────────────┤
1115 │route-table │ IPV4_ROUTE_TABLE(+) │ 0 │ IPV4_ROUTE_TABLE │
1116 │ │ │ │ enables │
1117 │ │ │ │ policy-routing and │
1118 │ │ │ │ sets the default │
1119 │ │ │ │ routing table. │
1120 ├─────────────────────────────┼─────────────────────────────────┼──────────────────┼─────────────────────────────────────┤
1121 │dns-options │ RES_OPTIONS(+) │ │ List of DNS options │
1122 │ │ │ │ to be added to │
1123 │ │ │ │ /etc/resolv.conf │
1124 │ │ │ │ │
1125 │ │ │ │ Example: │
1126 │ │ │ │ RES_OPTIONS=ndots:2 │
1127 │ │ │ │ timeout:3 │
1128 ├─────────────────────────────┼─────────────────────────────────┼──────────────────┼─────────────────────────────────────┤
1129 │dns-priority │ IPV4_DNS_PRIORITY(+) │ 0 │ The priority for DNS │
1130 │ │ │ │ servers of this │
1131 │ │ │ │ connection. Lower │
1132 │ │ │ │ values have higher │
1133 │ │ │ │ priority. If zero, │
1134 │ │ │ │ the default value │
1135 │ │ │ │ will be used (50 for │
1136 │ │ │ │ VPNs, 100 for other │
1137 │ │ │ │ connections). A │
1138 │ │ │ │ negative value │
1139 │ │ │ │ prevents DNS from │
1140 │ │ │ │ other connections │
1141 │ │ │ │ with greater values │
1142 │ │ │ │ to be used. │
1143 │ │ │ │ │
1144 │ │ │ │ Example: │
1145 │ │ │ │ IPV4_DNS_PRIORITY=20 │
1146 ├─────────────────────────────┼─────────────────────────────────┼──────────────────┼─────────────────────────────────────┤
1147 │dhcp-client-id │ DHCP_CLIENT_ID(+) │ │ A string sent to the │
1148 │ │ │ │ DHCP server to │
1149 │ │ │ │ identify the local │
1150 │ │ │ │ machine. A binary │
1151 │ │ │ │ value can be │
1152 │ │ │ │ specified using hex │
1153 │ │ │ │ notation │
1154 │ │ │ │ ('aa:bb:cc'). │
1155 │ │ │ │ │
1156 │ │ │ │ Example: │
1157 │ │ │ │ DHCP_CLIENT_ID=ax-srv-1; │
1158 │ │ │ │ DHCP_CLIENT_ID=01:44:44:44:44:44:44 │
1159 ├─────────────────────────────┼─────────────────────────────────┼──────────────────┼─────────────────────────────────────┤
1160 │dad-timeout │ ACD_TIMEOUT(+), │ missing variable │ Timeout (in milliseconds for │
1161 │ │ ARPING_WAIT │ means global │ ACD_TIMEOUT or in seconds for │
1162 │ │ │ default (config │ ARPING_WAIT) for address conflict │
1163 │ │ │ override or │ detection before configuring IPv4 │
1164 │ │ │ zero) │ addresses. 0 turns off the ACD │
1165 │ │ │ │ completely, -1 means default value. │
1166 │ │ │ │ │
1167 │ │ │ │ Example: ACD_TIMEOUT=2000 or │
1168 │ │ │ │ ARPING_WAIT=2 │
1169 ├─────────────────────────────┼─────────────────────────────────┼──────────────────┼─────────────────────────────────────┤
1170 │dhcp-timeout │ IPV4_DHCP_TIMEOUT(+) │ │ A timeout after which the DHCP │
1171 │ │ │ │ transaction fails in case of no │
1172 │ │ │ │ response. │
1173 │ │ │ │ │
1174 │ │ │ │ Example: IPV4_DHCP_TIMEOUT=10 │
1175 ├─────────────────────────────┼─────────────────────────────────┼──────────────────┼─────────────────────────────────────┤
1176 │dhcp-fqdn │ DHCP_FQDN │ │ FQDN to send to the DHCP server. │
1177 │ │ │ │ When both DHCP_HOSTNAME and │
1178 │ │ │ │ DHCP_FQDN are specified only the │
1179 │ │ │ │ latter is used. │
1180 │ │ │ │ │
1181 │ │ │ │ Example: DHCP_FQDN=foo.bar.com │
1182 ├─────────────────────────────┼─────────────────────────────────┼──────────────────┼─────────────────────────────────────┤
1183 │dhcp-vendor-class-identifier │ DHCP_VENDOR_CLASS_IDENTIFIER(+) │ │ The Vendor Class Identifier DHCP │
1184 │ │ │ │ option (60). │
1185 │ │ │ │ │
1186 │ │ │ │ Example: │
1187 │ │ │ │ DHCP_VENDOR_CLASS_IDENTIFIER=foo │
1188 └─────────────────────────────┴─────────────────────────────────┴──────────────────┴─────────────────────────────────────┘
1189
1190 Table 12. ipv6 setting
1191 ┌────────────────────┬──────────────────────────────────┬────────────────────────────────┬─────────────────────────────────────┐
1192 │Property │ Ifcfg-rh │ Default │ Description │
1193 │ │ Variable │ │ │
1194 ├────────────────────┼──────────────────────────────────┼────────────────────────────────┼─────────────────────────────────────┤
1195 │method │ IPV6INIT, │ IPV6INIT=yes; │ Method used for │
1196 │ │ IPV6FORWARDING, │ IPV6FORWARDING=no; │ IPv6 protocol │
1197 │ │ IPV6_AUTOCONF, │ IPV6_AUTOCONF=!IPV6FORWARDING, │ configuration. │
1198 │ │ DHCPV6C, │ DHCPV6=no │ ignore ~ │
1199 │ │ IPV6_DISABLED │ │ IPV6INIT=no; │
1200 │ │ │ │ auto ~ │
1201 │ │ │ │ IPV6_AUTOCONF=yes; │
1202 │ │ │ │ dhcp ~ │
1203 │ │ │ │ IPV6_AUTOCONF=no │
1204 │ │ │ │ and DHCPV6C=yes; │
1205 │ │ │ │ disabled ~ │
1206 │ │ │ │ IPV6_DISABLED=yes │
1207 ├────────────────────┼──────────────────────────────────┼────────────────────────────────┼─────────────────────────────────────┤
1208 │dns │ DNS1, DNS2, ... │ │ List of DNS │
1209 │ │ │ │ servers. │
1210 │ │ │ │ NetworkManager │
1211 │ │ │ │ uses the variables │
1212 │ │ │ │ both for IPv4 and │
1213 │ │ │ │ IPv6. │
1214 ├────────────────────┼──────────────────────────────────┼────────────────────────────────┼─────────────────────────────────────┤
1215 │dns-search │ IPV6_DOMAIN(+) │ │ List of DNS search │
1216 │ │ │ │ domains. │
1217 ├────────────────────┼──────────────────────────────────┼────────────────────────────────┼─────────────────────────────────────┤
1218 │addresses │ IPV6ADDR, │ │ List of static IP │
1219 │ │ IPV6ADDR_SECONDARIES │ │ addresses. │
1220 │ │ │ │ │
1221 │ │ │ │ Example: │
1222 │ │ │ │ IPV6ADDR=ab12:9876::1 │
1223 │ │ │ │ IPV6ADDR_SECONDARIES="ab12:9876::2 │
1224 │ │ │ │ ab12:9876::3" │
1225 ├────────────────────┼──────────────────────────────────┼────────────────────────────────┼─────────────────────────────────────┤
1226 │gateway │ IPV6_DEFAULTGW │ │ Gateway IP address. │
1227 │ │ │ │ │
1228 │ │ │ │ Example: IPV6_DEFAULTGW=abbe::1 │
1229 ├────────────────────┼──────────────────────────────────┼────────────────────────────────┼─────────────────────────────────────┤
1230 │routes │ (none) │ │ List of static routes. They are │
1231 │ │ │ │ not stored in ifcfg-* file, but in │
1232 │ │ │ │ route6-* file instead in the form │
1233 │ │ │ │ of command line for 'ip route │
1234 │ │ │ │ add'. │
1235 ├────────────────────┼──────────────────────────────────┼────────────────────────────────┼─────────────────────────────────────┤
1236 │ignore-auto-routes │ IPV6_PEERROUTES(+) │ yes │ IPV6_PEERROUTES has the opposite │
1237 │ │ │ │ meaning as 'ignore-auto-routes' │
1238 │ │ │ │ property. │
1239 ├────────────────────┼──────────────────────────────────┼────────────────────────────────┼─────────────────────────────────────┤
1240 │ignore-auto-dns │ IPV6_PEERDNS(+) │ yes │ IPV6_PEERDNS has the opposite │
1241 │ │ │ │ meaning as 'ignore-auto-dns' │
1242 │ │ │ │ property. │
1243 ├────────────────────┼──────────────────────────────────┼────────────────────────────────┼─────────────────────────────────────┤
1244 │dhcp-hostname │ DHCPV6_HOSTNAME │ │ Hostname to send the DHCP server. │
1245 ├────────────────────┼──────────────────────────────────┼────────────────────────────────┼─────────────────────────────────────┤
1246 │dhcp-timeout │ IPV6_DHCP_TIMEOUT(+) │ │ A timeout after which the DHCP │
1247 │ │ │ │ transaction fails in case of no │
1248 │ │ │ │ response. │
1249 │ │ │ │ │
1250 │ │ │ │ Example: IPV6_DHCP_TIMEOUT=10 │
1251 ├────────────────────┼──────────────────────────────────┼────────────────────────────────┼─────────────────────────────────────┤
1252 │dhcp-hostname-flags │ DHCPV6_HOSTNAME_FLAGS │ │ flags for the DHCP hostname │
1253 │ │ │ │ property │
1254 │ │ │ │ │
1255 │ │ │ │ Example: DHCPV6_HOSTNAME_FLAGS=5 │
1256 ├────────────────────┼──────────────────────────────────┼────────────────────────────────┼─────────────────────────────────────┤
1257 │never-default │ IPV6_DEFROUTE(+), │ IPV6_DEFROUTE=yes (when no │ IPV6_DEFROUTE=no tells │
1258 │ │ (and IPV6_DEFAULTGW, │ variable specified) │ NetworkManager that this │
1259 │ │ IPV6_DEFAULTDEV in │ │ connection should not be assigned │
1260 │ │ /etc/sysconfig/network) │ │ the default IPv6 route. │
1261 │ │ │ │ IPV6_DEFROUTE has the opposite │
1262 │ │ │ │ meaning as 'never-default' │
1263 │ │ │ │ property. │
1264 ├────────────────────┼──────────────────────────────────┼────────────────────────────────┼─────────────────────────────────────┤
1265 │may-fail │ IPV6_FAILURE_FATAL(+) │ no │ IPV6_FAILURE_FATAL has the │
1266 │ │ │ │ opposite meaning as 'may-fail' │
1267 │ │ │ │ property. │
1268 ├────────────────────┼──────────────────────────────────┼────────────────────────────────┼─────────────────────────────────────┤
1269 │route-metric │ IPV6_ROUTE_METRIC(+) │ -1 │ IPV6_ROUTE_METRIC is the default │
1270 │ │ │ │ IPv6 metric for routes on this │
1271 │ │ │ │ connection. If set to -1, a │
1272 │ │ │ │ default metric based on the device │
1273 │ │ │ │ type is used. │
1274 ├────────────────────┼──────────────────────────────────┼────────────────────────────────┼─────────────────────────────────────┤
1275 │route-table │ IPV6_ROUTE_TABLE(+) │ 0 │ IPV6_ROUTE_TABLE enables │
1276 │ │ │ │ policy-routing and sets the │
1277 │ │ │ │ default routing table. │
1278 ├────────────────────┼──────────────────────────────────┼────────────────────────────────┼─────────────────────────────────────┤
1279 │dns-priority │ IPV6_DNS_PRIORITY(+) │ 0 │ The priority for DNS servers of │
1280 │ │ │ │ this connection. Lower values have │
1281 │ │ │ │ higher priority. If zero, the │
1282 │ │ │ │ default value will be used (50 for │
1283 │ │ │ │ VPNs, 100 for other connections). │
1284 │ │ │ │ A negative value prevents DNS from │
1285 │ │ │ │ other connections with greater │
1286 │ │ │ │ values to be used. │
1287 │ │ │ │ │
1288 │ │ │ │ Example: IPV6_DNS_PRIORITY=20 │
1289 ├────────────────────┼──────────────────────────────────┼────────────────────────────────┼─────────────────────────────────────┤
1290 │dns-options │ IPV6_RES_OPTIONS(+) │ │ List of DNS options to be added to │
1291 │ │ │ │ /etc/resolv.conf │
1292 │ │ │ │ │
1293 │ │ │ │ Example: IPV6_RES_OPTIONS=ndots:2 │
1294 │ │ │ │ timeout:3 │
1295 ├────────────────────┼──────────────────────────────────┼────────────────────────────────┼─────────────────────────────────────┤
1296 │ip6-privacy │ IPV6_PRIVACY, │ no │ Configure IPv6 Privacy Extensions │
1297 │ │ IPV6_PRIVACY_PREFER_PUBLIC_IP(+) │ │ for SLAAC (RFC4941). │
1298 │ │ │ │ │
1299 │ │ │ │ Example: IPV6_PRIVACY=rfc3041 │
1300 │ │ │ │ IPV6_PRIVACY_PREFER_PUBLIC_IP=yes │
1301 │ │ │ │ │
1302 │ │ │ │ Allowed values: IPV6_PRIVACY: no, │
1303 │ │ │ │ yes (rfc3041 or rfc4941); │
1304 │ │ │ │ IPV6_PRIVACY_PREFER_PUBLIC_IP: │
1305 │ │ │ │ yes, no │
1306 ├────────────────────┼──────────────────────────────────┼────────────────────────────────┼─────────────────────────────────────┤
1307 │addr-gen-mode │ IPV6_ADDR_GEN_MODE │ eui64 │ Configure IPv6 Stable Privacy │
1308 │ │ │ │ addressing for SLAAC (RFC7217). │
1309 │ │ │ │ │
1310 │ │ │ │ Example: │
1311 │ │ │ │ IPV6_ADDR_GEN_MODE=stable-privacy │
1312 │ │ │ │ │
1313 │ │ │ │ Allowed values: │
1314 │ │ │ │ IPV6_ADDR_GEN_MODE: eui64, │
1315 │ │ │ │ stable-privacy │
1316 ├────────────────────┼──────────────────────────────────┼────────────────────────────────┼─────────────────────────────────────┤
1317 │token │ IPV6_TOKEN │ │ The IPv6 tokenized interface │
1318 │ │ │ │ identifier token │
1319 │ │ │ │ │
1320 │ │ │ │ Example: IPV6_TOKEN=::53 │
1321 ├────────────────────┼──────────────────────────────────┼────────────────────────────────┼─────────────────────────────────────┤
1322 │dhcp-timeout │ IPV6_RA_TIMEOUT(+) │ │ A timeout for waiting Router │
1323 │ │ │ │ Advertisements in seconds. │
1324 │ │ │ │ │
1325 │ │ │ │ Example: IPV6_RA_TIMEOUT=10 │
1326 ├────────────────────┼──────────────────────────────────┼────────────────────────────────┼─────────────────────────────────────┤
1327 │dhcp-duid │ DHCPV6_DUID(+) │ │ A string sent to the DHCPv6 server │
1328 │ │ │ │ to identify the local machine. │
1329 │ │ │ │ Apart from the special values │
1330 │ │ │ │ "lease", "stable-llt", │
1331 │ │ │ │ "stable-ll", "stable-uuid", "llt" │
1332 │ │ │ │ and "ll" a binary value in hex │
1333 │ │ │ │ format is expected. An hex string │
1334 │ │ │ │ where each octet is separated by a │
1335 │ │ │ │ colon is also accepted. │
1336 │ │ │ │ │
1337 │ │ │ │ Example: DHCPV6_DUID=LL; │
1338 │ │ │ │ DHCPV6_DUID=0301deadbeef0001; │
1339 │ │ │ │ DHCPV6_DUID=03:01:de:ad:be:ef:00:01 │
1340 └────────────────────┴──────────────────────────────────┴────────────────────────────────┴─────────────────────────────────────┘
1341
1342 Table 13. match setting
1343 ┌─────────┬────────────┬─────────┬──────────────────────────────┐
1344 │Property │ Ifcfg-rh │ Default │ Description │
1345 │ │ Variable │ │ │
1346 ├─────────┼────────────┼─────────┼──────────────────────────────┤
1347 │path │ MATCH_PATH │ │ space-separated │
1348 │ │ │ │ list of paths to │
1349 │ │ │ │ match against │
1350 │ │ │ │ the udev │
1351 │ │ │ │ property │
1352 │ │ │ │ ID_PATHS of │
1353 │ │ │ │ devices │
1354 │ │ │ │ │
1355 │ │ │ │ Example: │
1356 │ │ │ │ MATCH_PATH="pci-0000:01:00.0 │
1357 │ │ │ │ pci-0000:0c:00.0" │
1358 └─────────┴────────────┴─────────┴──────────────────────────────┘
1359
1360 Table 14. ovs-bridge setting
1361 Table 15. ovs-dpdk setting
1362 Table 16. ovs-external-ids setting
1363 Table 17. ovs-interface setting
1364 Table 18. ovs-patch setting
1365 Table 19. ovs-port setting
1366 Table 20. proxy setting
1367 ┌─────────────┬─────────────────┬─────────┬────────────────────────────────────────────┐
1368 │Property │ Ifcfg-rh │ Default │ Description │
1369 │ │ Variable │ │ │
1370 ├─────────────┼─────────────────┼─────────┼────────────────────────────────────────────┤
1371 │method │ PROXY_METHOD(+) │ none │ Method for proxy │
1372 │ │ │ │ configuration. │
1373 │ │ │ │ For "auto", WPAD │
1374 │ │ │ │ is used for │
1375 │ │ │ │ proxy │
1376 │ │ │ │ configuration, │
1377 │ │ │ │ or set the PAC │
1378 │ │ │ │ file via PAC_URL │
1379 │ │ │ │ or PAC_SCRIPT. │
1380 │ │ │ │ │
1381 │ │ │ │ Allowed values: │
1382 │ │ │ │ none, auto │
1383 ├─────────────┼─────────────────┼─────────┼────────────────────────────────────────────┤
1384 │browser-only │ BROWSER_ONLY(+) │ no │ Whether the │
1385 │ │ │ │ proxy │
1386 │ │ │ │ configuration is │
1387 │ │ │ │ for browser │
1388 │ │ │ │ only. │
1389 ├─────────────┼─────────────────┼─────────┼────────────────────────────────────────────┤
1390 │pac-url │ PAC_URL(+) │ │ URL for PAC │
1391 │ │ │ │ file. │
1392 │ │ │ │ │
1393 │ │ │ │ Example: │
1394 │ │ │ │ PAC_URL=http://wpad.mycompany.com/wpad.dat │
1395 ├─────────────┼─────────────────┼─────────┼────────────────────────────────────────────┤
1396 │pac-script │ PAC_SCRIPT(+) │ │ Path of the PAC script. │
1397 │ │ │ │ │
1398 │ │ │ │ Example: PAC_SCRIPT=/home/joe/proxy.pac │
1399 └─────────────┴─────────────────┴─────────┴────────────────────────────────────────────┘
1400
1401 Table 21. sriov setting
1402 ┌──────────────────┬────────────────────────────┬──────────────────┬─────────────────────────────────────┐
1403 │Property │ Ifcfg-rh │ Default │ Description │
1404 │ │ Variable │ │ │
1405 ├──────────────────┼────────────────────────────┼──────────────────┼─────────────────────────────────────┤
1406 │total-vfs │ SRIOV_TOTAL_VFS(+) │ │ The total number │
1407 │ │ │ │ of virtual │
1408 │ │ │ │ functions to │
1409 │ │ │ │ create │
1410 │ │ │ │ │
1411 │ │ │ │ Example: │
1412 │ │ │ │ SRIOV_TOTAL_VFS=16 │
1413 ├──────────────────┼────────────────────────────┼──────────────────┼─────────────────────────────────────┤
1414 │vfs │ SRIOV_VF1(+), │ │ SR-IOV virtual │
1415 │ │ SRIOV_VF2(+), ... │ │ function │
1416 │ │ │ │ descriptors │
1417 │ │ │ │ │
1418 │ │ │ │ Example: │
1419 │ │ │ │ SRIOV_VF10="mac=00:11:22:33:44:55", │
1420 │ │ │ │ ... │
1421 ├──────────────────┼────────────────────────────┼──────────────────┼─────────────────────────────────────┤
1422 │autoprobe-drivers │ SRIOV_AUTOPROBE_DRIVERS(+) │ missing variable │ Whether to autoprobe virtual │
1423 │ │ │ means global │ functions by a compatible driver │
1424 │ │ │ default │ │
1425 │ │ │ │ Example: │
1426 │ │ │ │ SRIOV_AUTOPROBE_DRIVERS=0,1 │
1427 └──────────────────┴────────────────────────────┴──────────────────┴─────────────────────────────────────┘
1428
1429 Table 22. tc setting
1430 ┌─────────┬──────────────────┬─────────┬──────────────────┐
1431 │Property │ Ifcfg-rh │ Default │ Description │
1432 │ │ Variable │ │ │
1433 ├─────────┼──────────────────┼─────────┼──────────────────┤
1434 │qdiscs │ QDISC1(+), │ │ Queueing │
1435 │ │ QDISC2(+), ..., │ │ disciplines to │
1436 │ │ TC_COMMIT(+) │ │ set on the │
1437 │ │ │ │ interface. When │
1438 │ │ │ │ no QDISC1, │
1439 │ │ │ │ QDISC2, ..., │
1440 │ │ │ │ FILTER1, │
1441 │ │ │ │ FILTER2, ... │
1442 │ │ │ │ keys are │
1443 │ │ │ │ present, │
1444 │ │ │ │ NetworkManager │
1445 │ │ │ │ doesn't touch │
1446 │ │ │ │ qdiscs and │
1447 │ │ │ │ filters present │
1448 │ │ │ │ on the │
1449 │ │ │ │ interface, │
1450 │ │ │ │ unless TC_COMMIT │
1451 │ │ │ │ is set to 'yes'. │
1452 │ │ │ │ │
1453 │ │ │ │ Example: │
1454 │ │ │ │ QDISC1=ingress, │
1455 │ │ │ │ QDISC2="root │
1456 │ │ │ │ handle 1234: │
1457 │ │ │ │ fq_codel" │
1458 ├─────────┼──────────────────┼─────────┼──────────────────┤
1459 │qdiscs │ FILTER1(+), │ │ Traffic filters │
1460 │ │ FILTER2(+), ..., │ │ to set on the │
1461 │ │ TC_COMMIT(+) │ │ interface. When │
1462 │ │ │ │ no QDISC1, │
1463 │ │ │ │ QDISC2, ..., │
1464 │ │ │ │ FILTER1, │
1465 │ │ │ │ FILTER2, ... │
1466 │ │ │ │ keys are │
1467 │ │ │ │ present, │
1468 │ │ │ │ NetworkManager │
1469 │ │ │ │ doesn't touch │
1470 │ │ │ │ qdiscs and │
1471 │ │ │ │ filters present │
1472 │ │ │ │ on the │
1473 │ │ │ │ interface, │
1474 │ │ │ │ unless TC_COMMIT │
1475 │ │ │ │ is set to 'yes'. │
1476 │ │ │ │ │
1477 │ │ │ │ Example: │
1478 │ │ │ │ FILTER1="parent │
1479 │ │ │ │ ffff: matchall │
1480 │ │ │ │ action simple │
1481 │ │ │ │ sdata Input", │
1482 │ │ │ │ ... │
1483 └─────────┴──────────────────┴─────────┴──────────────────┘
1484
1485 Table 23. team-port setting
1486 ┌─────────┬──────────────────┬─────────┬──────────────────┐
1487 │Property │ Ifcfg-rh │ Default │ Description │
1488 │ │ Variable │ │ │
1489 ├─────────┼──────────────────┼─────────┼──────────────────┤
1490 │config │ TEAM_PORT_CONFIG │ │ Team port │
1491 │ │ │ │ configuration in │
1492 │ │ │ │ JSON. See man │
1493 │ │ │ │ teamd.conf for │
1494 │ │ │ │ details. │
1495 └─────────┴──────────────────┴─────────┴──────────────────┘
1496
1497 Table 24. team setting
1498 ┌─────────┬─────────────┬─────────┬──────────────────┐
1499 │Property │ Ifcfg-rh │ Default │ Description │
1500 │ │ Variable │ │ │
1501 ├─────────┼─────────────┼─────────┼──────────────────┤
1502 │config │ TEAM_CONFIG │ │ Team │
1503 │ │ │ │ configuration in │
1504 │ │ │ │ JSON. See man │
1505 │ │ │ │ teamd.conf for │
1506 │ │ │ │ details. │
1507 └─────────┴─────────────┴─────────┴──────────────────┘
1508
1509 Table 25. user setting
1510 ┌─────────┬───────────┬─────────┬────────────────────────────┐
1511 │Property │ Ifcfg-rh │ Default │ Description │
1512 │ │ Variable │ │ │
1513 ├─────────┼───────────┼─────────┼────────────────────────────┤
1514 │data │ NM_USER_* │ │ each key/value │
1515 │ │ │ │ pair is stored │
1516 │ │ │ │ as a separate │
1517 │ │ │ │ variable with │
1518 │ │ │ │ name composed by │
1519 │ │ │ │ concatenating │
1520 │ │ │ │ NM_USER_ with │
1521 │ │ │ │ the encoded key. │
1522 │ │ │ │ The key is │
1523 │ │ │ │ encoded by │
1524 │ │ │ │ substituting │
1525 │ │ │ │ lowercase │
1526 │ │ │ │ letters with │
1527 │ │ │ │ uppercase and │
1528 │ │ │ │ prepending │
1529 │ │ │ │ uppercase │
1530 │ │ │ │ letters with an │
1531 │ │ │ │ underscore. A │
1532 │ │ │ │ dot is encoded │
1533 │ │ │ │ as a double │
1534 │ │ │ │ underscore. │
1535 │ │ │ │ Remaining │
1536 │ │ │ │ characters are │
1537 │ │ │ │ encoded as │
1538 │ │ │ │ underscore │
1539 │ │ │ │ followed by a 3 │
1540 │ │ │ │ digit octal │
1541 │ │ │ │ representation │
1542 │ │ │ │ of the │
1543 │ │ │ │ character. │
1544 │ │ │ │ │
1545 │ │ │ │ Example: │
1546 │ │ │ │ NM_USER_FOO__BAR=something │
1547 └─────────┴───────────┴─────────┴────────────────────────────┘
1548
1549 Table 26. veth setting
1550 Table 27. vlan setting
1551 ┌─────────────────────┬───────────────────────────┬─────────┬──────────────────────────────────────┐
1552 │Property │ Ifcfg-rh │ Default │ Description │
1553 │ │ Variable │ │ │
1554 ├─────────────────────┼───────────────────────────┼─────────┼──────────────────────────────────────┤
1555 │parent │ DEVICE or │ │ Parent interface │
1556 │ │ PHYSDEV │ │ of the VLAN. │
1557 ├─────────────────────┼───────────────────────────┼─────────┼──────────────────────────────────────┤
1558 │id │ VLAN_ID, DEVICE. │ │ VLAN identifier. │
1559 │ │ │ │ If VLAN_ID is │
1560 │ │ │ │ not set, it is │
1561 │ │ │ │ attempted to be │
1562 │ │ │ │ detected from │
1563 │ │ │ │ the suffix of │
1564 │ │ │ │ DEVICE=. Note │
1565 │ │ │ │ that older │
1566 │ │ │ │ versions of │
1567 │ │ │ │ NetworkManager │
1568 │ │ │ │ had a bug where │
1569 │ │ │ │ they would │
1570 │ │ │ │ prefer the │
1571 │ │ │ │ detected ID from │
1572 │ │ │ │ the DEVICE over │
1573 │ │ │ │ VLAN_ID. │
1574 ├─────────────────────┼───────────────────────────┼─────────┼──────────────────────────────────────┤
1575 │flags │ GVRP, MVRP, │ │ VLAN flags. │
1576 │ │ VLAN_FLAGS │ │ │
1577 │ │ │ │ Allowed values: │
1578 │ │ │ │ "yes or "no" for │
1579 │ │ │ │ GVRP and MVRP; │
1580 │ │ │ │ "LOOSE_BINDING" │
1581 │ │ │ │ and │
1582 │ │ │ │ "NO_REORDER_HDR" │
1583 │ │ │ │ for VLAN_FLAGS │
1584 ├─────────────────────┼───────────────────────────┼─────────┼──────────────────────────────────────┤
1585 │ingress-priority-map │ VLAN_INGRESS_PRIORITY_MAP │ │ Ingress priority │
1586 │ │ │ │ mapping. │
1587 │ │ │ │ │
1588 │ │ │ │ Example: │
1589 │ │ │ │ VLAN_INGRESS_PRIORITY_MAP=4:2,3:5 │
1590 ├─────────────────────┼───────────────────────────┼─────────┼──────────────────────────────────────┤
1591 │egress-priority-map │ VLAN_EGRESS_PRIORITY_MAP │ │ Egress priority mapping. │
1592 │ │ │ │ │
1593 │ │ │ │ Example: │
1594 │ │ │ │ VLAN_EGRESS_PRIORITY_MAP=5:4,4:1,3:7 │
1595 ├─────────────────────┼───────────────────────────┼─────────┼──────────────────────────────────────┤
1596 │interface-name │ PHYSDEV and VLAN_ID, or │ │ VLAN interface name. If all │
1597 │ │ DEVICE │ │ variables are set, parent device │
1598 │ │ │ │ from PHYSDEV takes precedence over │
1599 │ │ │ │ DEVICE, but VLAN id from DEVICE │
1600 │ │ │ │ takes precedence over VLAN_ID. │
1601 │ │ │ │ │
1602 │ │ │ │ Example: PHYSDEV=eth0, VLAN_ID=12; │
1603 │ │ │ │ or DEVICE=eth0.12 │
1604 └─────────────────────┴───────────────────────────┴─────────┴──────────────────────────────────────┘
1605
1606 Table 28. vrf setting
1607 Table 29. wifi-p2p setting
1608 Table 30. 802-3-ethernet setting
1609 ┌──────────────────────────┬──────────────────────────────┬─────────┬────────────────────────────────────────┐
1610 │Property │ Ifcfg-rh │ Default │ Description │
1611 │ │ Variable │ │ │
1612 ├──────────────────────────┼──────────────────────────────┼─────────┼────────────────────────────────────────┤
1613 │port │ (none) │ │ The property is │
1614 │ │ │ │ not saved by the │
1615 │ │ │ │ plugin. │
1616 ├──────────────────────────┼──────────────────────────────┼─────────┼────────────────────────────────────────┤
1617 │speed │ ETHTOOL_OPTS │ │ Fixed speed for │
1618 │ │ │ │ the ethernet │
1619 │ │ │ │ link. It is │
1620 │ │ │ │ added as "speed" │
1621 │ │ │ │ parameter in the │
1622 │ │ │ │ ETHTOOL_OPTS │
1623 │ │ │ │ variable. │
1624 ├──────────────────────────┼──────────────────────────────┼─────────┼────────────────────────────────────────┤
1625 │duplex │ ETHTOOL_OPTS │ │ Fixed duplex │
1626 │ │ │ │ mode for the │
1627 │ │ │ │ ethernet link. │
1628 │ │ │ │ It is added as │
1629 │ │ │ │ "duplex" │
1630 │ │ │ │ parameter in the │
1631 │ │ │ │ ETHOOL_OPTS │
1632 │ │ │ │ variable. │
1633 ├──────────────────────────┼──────────────────────────────┼─────────┼────────────────────────────────────────┤
1634 │auto-negotiate │ ETHTOOL_OPTS │ │ Whether link │
1635 │ │ │ │ speed and duplex │
1636 │ │ │ │ autonegotiation │
1637 │ │ │ │ is enabled. It │
1638 │ │ │ │ is not saved │
1639 │ │ │ │ only if disabled │
1640 │ │ │ │ and no values │
1641 │ │ │ │ are provided for │
1642 │ │ │ │ the "speed" and │
1643 │ │ │ │ "duplex" │
1644 │ │ │ │ parameters │
1645 │ │ │ │ (skips link │
1646 │ │ │ │ configuration). │
1647 ├──────────────────────────┼──────────────────────────────┼─────────┼────────────────────────────────────────┤
1648 │mac-address │ HWADDR │ │ Hardware address │
1649 │ │ │ │ of the device in │
1650 │ │ │ │ traditional │
1651 │ │ │ │ hex-digits-and-colons │
1652 │ │ │ │ notation (e.g. │
1653 │ │ │ │ 00:22:68:14:5A:05). │
1654 │ │ │ │ Note that for │
1655 │ │ │ │ initscripts this │
1656 │ │ │ │ is the current │
1657 │ │ │ │ MAC address of │
1658 │ │ │ │ the device as │
1659 │ │ │ │ found during │
1660 │ │ │ │ ifup. For │
1661 │ │ │ │ NetworkManager │
1662 │ │ │ │ this is the │
1663 │ │ │ │ permanent MAC │
1664 │ │ │ │ address. Or in │
1665 │ │ │ │ case no │
1666 │ │ │ │ permanent MAC │
1667 │ │ │ │ address exists, │
1668 │ │ │ │ the MAC address │
1669 │ │ │ │ initially │
1670 │ │ │ │ configured on │
1671 │ │ │ │ the device. │
1672 ├──────────────────────────┼──────────────────────────────┼─────────┼────────────────────────────────────────┤
1673 │cloned-mac-address │ MACADDR │ │ Cloned (spoofed) MAC │
1674 │ │ │ │ address in │
1675 │ │ │ │ traditional │
1676 │ │ │ │ hex-digits-and-colons │
1677 │ │ │ │ notation (e.g. │
1678 │ │ │ │ 00:22:68:14:5A:99). │
1679 ├──────────────────────────┼──────────────────────────────┼─────────┼────────────────────────────────────────┤
1680 │generate-mac-address-mask │ GENERATE_MAC_ADDRESS_MASK(+) │ │ the MAC address mask │
1681 │ │ │ │ for generating │
1682 │ │ │ │ randomized and stable │
1683 │ │ │ │ cloned-mac-address. │
1684 ├──────────────────────────┼──────────────────────────────┼─────────┼────────────────────────────────────────┤
1685 │mac-address-blacklist │ HWADDR_BLACKLIST(+) │ │ It denies usage of │
1686 │ │ │ │ the connection for │
1687 │ │ │ │ any device whose │
1688 │ │ │ │ address is listed. │
1689 │ │ │ │ │
1690 │ │ │ │ Example: │
1691 │ │ │ │ HWADDR_BLACKLIST="00:22:68:11:69:08 │
1692 │ │ │ │ 00:11:22:11:44:55" │
1693 ├──────────────────────────┼──────────────────────────────┼─────────┼────────────────────────────────────────┤
1694 │mtu │ MTU │ │ MTU of the interface. │
1695 ├──────────────────────────┼──────────────────────────────┼─────────┼────────────────────────────────────────┤
1696 │s390-subchannels │ SUBCHANNELS │ │ Subchannels for IBM S390 hosts. │
1697 │ │ │ │ │
1698 │ │ │ │ Example: │
1699 │ │ │ │ SUBCHANNELS=0.0.b00a,0.0.b00b,0.0.b00c │
1700 ├──────────────────────────┼──────────────────────────────┼─────────┼────────────────────────────────────────┤
1701 │s390-nettype │ NETTYPE │ │ Network type of the S390 host. │
1702 │ │ │ │ │
1703 │ │ │ │ Example: NETTYPE=qeth │
1704 │ │ │ │ │
1705 │ │ │ │ Allowed values: "qeth", "lcs" or "ctc" │
1706 ├──────────────────────────┼──────────────────────────────┼─────────┼────────────────────────────────────────┤
1707 │s390-options │ OPTIONS and PORTNAME, │ │ S390 device options. All options go to │
1708 │ │ CTCPROTO, │ │ OPTIONS, except for "portname" and │
1709 │ │ │ │ "ctcprot" that have their own │
1710 │ │ │ │ variables. │
1711 ├──────────────────────────┼──────────────────────────────┼─────────┼────────────────────────────────────────┤
1712 │wake-on-lan │ ETHTOOL_OPTS, │ │ Wake on Lan mode for ethernet. The │
1713 │ │ ETHTOOL_WAKE_ON_LAN │ │ setting "ignore" is expressed with │
1714 │ │ │ │ "ETHTOOL_WAKE_ON_LAN=ignore". │
1715 │ │ │ │ Otherwise, the "ETHTOOL_OPTS" variable │
1716 │ │ │ │ is set with the value "wol" and │
1717 │ │ │ │ several of the characters │
1718 │ │ │ │ "p|u|m|b|a|g|s|f|d" as explained in │
1719 │ │ │ │ the ethtool manual page. │
1720 ├──────────────────────────┼──────────────────────────────┼─────────┼────────────────────────────────────────┤
1721 │wake-on-lan-password │ ETHTOOL_OPTS │ │ Password for secure-on based │
1722 │ │ │ │ Wake-on-Lan. It is added as "sopass" │
1723 │ │ │ │ parameter in the ETHTOOL_OPTS │
1724 │ │ │ │ variable. │
1725 │ │ │ │ │
1726 │ │ │ │ Example: ETHTOOL_OPTS="wol gs sopass │
1727 │ │ │ │ 00:11:22:33:44:55" │
1728 ├──────────────────────────┼──────────────────────────────┼─────────┼────────────────────────────────────────┤
1729 │accept-all-mac-addresses │ ACCEPT_ALL_MAC_ADDRESSES │ │ Enforce the interface to accept all │
1730 │ │ │ │ the packets. │
1731 └──────────────────────────┴──────────────────────────────┴─────────┴────────────────────────────────────────┘
1732
1733 Table 31. wireguard setting
1734 Table 32. 802-11-wireless-security setting
1735 ┌────────────────────┬──────────────────────────────┬─────────┬──────────────────────────────────┐
1736 │Property │ Ifcfg-rh │ Default │ Description │
1737 │ │ Variable │ │ │
1738 ├────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1739 │key-mgmt │ KEY_MGMT(+) │ │ Key management │
1740 │ │ │ │ method. │
1741 │ │ │ │ │
1742 │ │ │ │ Allowed values: │
1743 │ │ │ │ none, ieee8021x, │
1744 │ │ │ │ owe, wpa-psk, │
1745 │ │ │ │ sae, wpa-eap, │
1746 │ │ │ │ wpa-eap-suite-b-192 │
1747 ├────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1748 │wep-tx-keyidx │ DEFAULTKEY │ 1 │ Index of active WEP │
1749 │ │ │ │ key. │
1750 │ │ │ │ │
1751 │ │ │ │ Allowed values: 1, │
1752 │ │ │ │ 2, 3, 4 │
1753 ├────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1754 │auth-alg │ SECURITYMODE(+) │ │ Authentication │
1755 │ │ │ │ algorithm for WEP. │
1756 │ │ │ │ │
1757 │ │ │ │ Allowed values: │
1758 │ │ │ │ restricted, open, │
1759 │ │ │ │ leap │
1760 ├────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1761 │proto │ WPA_ALLOW_WPA(+), │ no │ Allowed WPA │
1762 │ │ WPA_ALLOW_WPA2(+) │ │ protocols, WPA and │
1763 │ │ │ │ WPA2 (RSN). │
1764 │ │ │ │ │
1765 │ │ │ │ Allowed values: │
1766 │ │ │ │ yes, no │
1767 ├────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1768 │pairwise │ CIPHER_PAIRWISE(+) │ │ Restrict pairwise │
1769 │ │ │ │ encryption │
1770 │ │ │ │ algorithms, │
1771 │ │ │ │ specified as a │
1772 │ │ │ │ space separated │
1773 │ │ │ │ list. │
1774 │ │ │ │ │
1775 │ │ │ │ Allowed values: │
1776 │ │ │ │ CCMP, TKIP │
1777 ├────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1778 │group │ CIPHER_GROUP(+) │ │ Restrict │
1779 │ │ │ │ group/broadcast │
1780 │ │ │ │ encryption │
1781 │ │ │ │ algorithms, │
1782 │ │ │ │ specified as a │
1783 │ │ │ │ space separated │
1784 │ │ │ │ list. │
1785 │ │ │ │ │
1786 │ │ │ │ Allowed values: │
1787 │ │ │ │ CCMP, TKIP, WEP40, │
1788 │ │ │ │ WEP104 │
1789 ├────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1790 │pmf │ PMF(+) │ │ Enables or disables │
1791 │ │ │ │ PMF (802.11w) │
1792 │ │ │ │ │
1793 │ │ │ │ Example: │
1794 │ │ │ │ PMF=required │
1795 │ │ │ │ │
1796 │ │ │ │ Allowed values: │
1797 │ │ │ │ default, disable, │
1798 │ │ │ │ optional, required │
1799 ├────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1800 │leap-username │ IEEE_8021X_IDENTITY(+) │ │ Login name for │
1801 │ │ │ │ LEAP. │
1802 ├────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1803 │wep-key0 │ KEY1, │ │ The first WEP key │
1804 │ │ KEY_PASSPHRASE1(+) │ │ (used in most │
1805 │ │ │ │ networks). See also │
1806 │ │ │ │ DEFAULTKEY for key │
1807 │ │ │ │ index. │
1808 ├────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1809 │wep-key1 │ KEY2, │ │ WEP key with index │
1810 │ │ KEY_PASSPHRASE2(+) │ │ 1. See also │
1811 │ │ │ │ DEFAULTKEY for key │
1812 │ │ │ │ index. │
1813 ├────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1814 │wep-key2 │ KEY3, │ │ WEP key with index │
1815 │ │ KEY_PASSPHRASE3(+) │ │ 2. See also │
1816 │ │ │ │ DEFAULTKEY for key │
1817 │ │ │ │ index. │
1818 ├────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1819 │wep-key3 │ KEY4, │ │ WEP key with index │
1820 │ │ KEY_PASSPHRASE4(+) │ │ 3. See also │
1821 │ │ │ │ DEFAULTKEY for key │
1822 │ │ │ │ index. │
1823 ├────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1824 │wep-key-flags │ WEP_KEY_FLAGS(+) │ │ Password flags for │
1825 │ │ │ │ KEY<i>, │
1826 │ │ │ │ KEY_PASSPHRASE<i> │
1827 │ │ │ │ password. (see the │
1828 │ │ │ │ section called │
1829 │ │ │ │ “Secret flags” for │
1830 │ │ │ │ _FLAGS values) │
1831 ├────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1832 │psk │ WPA_PSK │ │ Pre-Shared-Key for │
1833 │ │ │ │ WPA networks. │
1834 ├────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1835 │psk-flags │ WPA_PSK_FLAGS(+) │ │ Password flags for │
1836 │ │ │ │ WPA_PSK_FLAGS. (see │
1837 │ │ │ │ the section called │
1838 │ │ │ │ “Secret flags” for │
1839 │ │ │ │ _FLAGS values) │
1840 │ │ │ │ │
1841 │ │ │ │ Example: │
1842 │ │ │ │ WPA_PSK_FLAGS=user │
1843 ├────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1844 │leap-password │ IEEE_8021X_PASSWORD(+) │ │ Password for LEAP. │
1845 │ │ │ │ It can also go to │
1846 │ │ │ │ "key-" lookaside │
1847 │ │ │ │ file, or it can be │
1848 │ │ │ │ owned by a secret │
1849 │ │ │ │ agent. │
1850 ├────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1851 │leap-password-flags │ IEEE_8021X_PASSWORD_FLAGS(+) │ │ Password flags for │
1852 │ │ │ │ IEEE_8021X_PASSWORD_FLAGS. │
1853 │ │ │ │ (see the section │
1854 │ │ │ │ called “Secret │
1855 │ │ │ │ flags” for _FLAGS │
1856 │ │ │ │ values) │
1857 ├────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1858 │wep-key-type │ KEY<i> or │ │ KEY is used for "key" type │
1859 │ │ KEY_PASSPHRASE<i>(+); │ │ (10 or 26 hexadecimal │
1860 │ │ KEY_TYPE(+) │ │ characters, or 5 or 13 │
1861 │ │ │ │ character string prefixed │
1862 │ │ │ │ with "s:"). KEY_PASSPHRASE │
1863 │ │ │ │ is used for WEP │
1864 │ │ │ │ passphrases. KEY_TYPE │
1865 │ │ │ │ specifies the key type and │
1866 │ │ │ │ can be either 'key' or │
1867 │ │ │ │ 'passphrase'. KEY_TYPE is │
1868 │ │ │ │ redundant and can be │
1869 │ │ │ │ omitted. │
1870 │ │ │ │ │
1871 │ │ │ │ Example: KEY1=s:ahoj, │
1872 │ │ │ │ KEY1=0a1c45bc02, │
1873 │ │ │ │ KEY_PASSPHRASE1=mysupersecretkey │
1874 ├────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1875 │wps-method │ WPS_METHOD │ │ Used to control the WPS methods │
1876 │ │ │ │ to be used Valid values are │
1877 │ │ │ │ "default", "auto", "disabled", │
1878 │ │ │ │ "pin" and "pbc". If omitted, │
1879 │ │ │ │ whatver the AP announces is │
1880 │ │ │ │ used. │
1881 │ │ │ │ │
1882 │ │ │ │ Example: WPS_METHOD=disabled, │
1883 │ │ │ │ WPS_METHOD="pin pbc" │
1884 ├────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1885 │fils │ FILS(+) │ │ Enables or disables FILS │
1886 │ │ │ │ (802.11ai) │
1887 │ │ │ │ │
1888 │ │ │ │ Example: FILS=required │
1889 │ │ │ │ │
1890 │ │ │ │ Allowed values: default, │
1891 │ │ │ │ disable, optional, required │
1892 └────────────────────┴──────────────────────────────┴─────────┴──────────────────────────────────┘
1893
1894 Table 33. 802-11-wireless setting
1895 ┌──────────────────────────┬──────────────────────────────┬──────────────────┬──────────────────────────────────┐
1896 │Property │ Ifcfg-rh │ Default │ Description │
1897 │ │ Variable │ │ │
1898 ├──────────────────────────┼──────────────────────────────┼──────────────────┼──────────────────────────────────┤
1899 │ssid │ ESSID │ │ SSID of Wi-Fi │
1900 │ │ │ │ network. │
1901 │ │ │ │ │
1902 │ │ │ │ Example: │
1903 │ │ │ │ ESSID="Quick │
1904 │ │ │ │ Net" │
1905 ├──────────────────────────┼──────────────────────────────┼──────────────────┼──────────────────────────────────┤
1906 │mode │ MODE │ │ Wi-Fi network │
1907 │ │ │ │ mode. │
1908 │ │ │ │ │
1909 │ │ │ │ Allowed values: │
1910 │ │ │ │ Ad-Hoc, Managed │
1911 │ │ │ │ (Auto) [case │
1912 │ │ │ │ insensitive] │
1913 ├──────────────────────────┼──────────────────────────────┼──────────────────┼──────────────────────────────────┤
1914 │band │ BAND(+) │ │ BAND alone is │
1915 │ │ │ │ honored, but │
1916 │ │ │ │ CHANNEL │
1917 │ │ │ │ overrides BAND │
1918 │ │ │ │ since it implies │
1919 │ │ │ │ a band. │
1920 │ │ │ │ │
1921 │ │ │ │ Example: BAND=bg │
1922 │ │ │ │ │
1923 │ │ │ │ Allowed values: │
1924 │ │ │ │ a, bg │
1925 ├──────────────────────────┼──────────────────────────────┼──────────────────┼──────────────────────────────────┤
1926 │channel │ CHANNEL │ │ Channel used for │
1927 │ │ │ │ the Wi-Fi │
1928 │ │ │ │ communication. │
1929 │ │ │ │ Channels greater │
1930 │ │ │ │ than 14 mean "a" │
1931 │ │ │ │ band, otherwise │
1932 │ │ │ │ the band is │
1933 │ │ │ │ "bg". │
1934 │ │ │ │ │
1935 │ │ │ │ Example: │
1936 │ │ │ │ CHANNEL=6 │
1937 ├──────────────────────────┼──────────────────────────────┼──────────────────┼──────────────────────────────────┤
1938 │bssid │ BSSID(+) │ │ Restricts │
1939 │ │ │ │ association only │
1940 │ │ │ │ to a single AP. │
1941 │ │ │ │ │
1942 │ │ │ │ Example: │
1943 │ │ │ │ BSSID=00:1E:BD:64:83:21 │
1944 ├──────────────────────────┼──────────────────────────────┼──────────────────┼──────────────────────────────────┤
1945 │rate │ (none) │ │ This property is not │
1946 │ │ │ │ handled by ifcfg-rh │
1947 │ │ │ │ plugin. │
1948 ├──────────────────────────┼──────────────────────────────┼──────────────────┼──────────────────────────────────┤
1949 │tx-power │ (none) │ │ This property is not │
1950 │ │ │ │ handled by ifcfg-rh │
1951 │ │ │ │ plugin. │
1952 ├──────────────────────────┼──────────────────────────────┼──────────────────┼──────────────────────────────────┤
1953 │mac-address │ HWADDR │ │ Hardware address of the │
1954 │ │ │ │ device in traditional │
1955 │ │ │ │ hex-digits-and-colons │
1956 │ │ │ │ notation (e.g. │
1957 │ │ │ │ 00:22:68:14:5A:05). │
1958 │ │ │ │ Note that for │
1959 │ │ │ │ initscripts this is the │
1960 │ │ │ │ current MAC address of │
1961 │ │ │ │ the device as found │
1962 │ │ │ │ during ifup. For │
1963 │ │ │ │ NetworkManager this is │
1964 │ │ │ │ the permanent MAC │
1965 │ │ │ │ address. Or in case no │
1966 │ │ │ │ permanent MAC address │
1967 │ │ │ │ exists, the MAC address │
1968 │ │ │ │ initially configured on │
1969 │ │ │ │ the device. │
1970 ├──────────────────────────┼──────────────────────────────┼──────────────────┼──────────────────────────────────┤
1971 │cloned-mac-address │ MACADDR │ │ Cloned (spoofed) MAC │
1972 │ │ │ │ address in traditional │
1973 │ │ │ │ hex-digits-and-colons │
1974 │ │ │ │ notation (e.g. │
1975 │ │ │ │ 00:22:68:14:5A:99). │
1976 ├──────────────────────────┼──────────────────────────────┼──────────────────┼──────────────────────────────────┤
1977 │generate-mac-address-mask │ GENERATE_MAC_ADDRESS_MASK(+) │ │ the MAC address mask │
1978 │ │ │ │ for generating │
1979 │ │ │ │ randomized and stable │
1980 │ │ │ │ cloned-mac-address. │
1981 ├──────────────────────────┼──────────────────────────────┼──────────────────┼──────────────────────────────────┤
1982 │mac-address-blacklist │ HWADDR_BLACKLIST(+) │ │ It denies usage of the │
1983 │ │ │ │ connection for any │
1984 │ │ │ │ device whose address is │
1985 │ │ │ │ listed. │
1986 ├──────────────────────────┼──────────────────────────────┼──────────────────┼──────────────────────────────────┤
1987 │seen-bssids │ (none) │ │ This property is not │
1988 │ │ │ │ handled by ifcfg-rh │
1989 │ │ │ │ plugin. │
1990 ├──────────────────────────┼──────────────────────────────┼──────────────────┼──────────────────────────────────┤
1991 │mtu │ MTU │ │ MTU of the wireless │
1992 │ │ │ │ interface. │
1993 ├──────────────────────────┼──────────────────────────────┼──────────────────┼──────────────────────────────────┤
1994 │hidden │ SSID_HIDDEN(+) │ │ Whether the network │
1995 │ │ │ │ hides the SSID. │
1996 ├──────────────────────────┼──────────────────────────────┼──────────────────┼──────────────────────────────────┤
1997 │powersave │ POWERSAVE(+) │ │ Enables or disables │
1998 │ │ │ │ Wi-Fi power saving. │
1999 │ │ │ │ │
2000 │ │ │ │ Example: │
2001 │ │ │ │ POWERSAVE=enable │
2002 │ │ │ │ │
2003 │ │ │ │ Allowed values: │
2004 │ │ │ │ default, ignore, │
2005 │ │ │ │ enable, disable │
2006 ├──────────────────────────┼──────────────────────────────┼──────────────────┼──────────────────────────────────┤
2007 │mac-address-randomization │ MAC_ADDRESS_RANDOMIZATION(+) │ │ Enables or disables │
2008 │ │ │ │ Wi-Fi MAC address │
2009 │ │ │ │ randomization. │
2010 │ │ │ │ │
2011 │ │ │ │ Example: │
2012 │ │ │ │ MAC_ADDRESS_RANDOMIZATION=always │
2013 │ │ │ │ │
2014 │ │ │ │ Allowed values: │
2015 │ │ │ │ default, never, always │
2016 ├──────────────────────────┼──────────────────────────────┼──────────────────┼──────────────────────────────────┤
2017 │security │ (none) │ │ This property is deprecated and │
2018 │ │ │ │ not handled by ifcfg-rh-plugin. │
2019 ├──────────────────────────┼──────────────────────────────┼──────────────────┼──────────────────────────────────┤
2020 │ap-isolation │ AP_ISOLATION(+) │ missing variable │ Whether AP isolation is enabled │
2021 │ │ │ means global │ │
2022 │ │ │ default │ Allowed values: "yes", "no" │
2023 └──────────────────────────┴──────────────────────────────┴──────────────────┴──────────────────────────────────┘
2024
2025 Table 34. wpan setting
2026 The following settings are not supported by ifcfg-rh plugin:
2027
2028 802-11-olpc-mesh, adsl, bluetooth, cdma, dummy, generic, gsm,
2029 ip-tunnel, macsec, macvlan, ppp, pppoe, serial, tun, vpn, vxlan, wimax
2030
2031 Secret flags
2032 Each secret property in a NetworkManager setting has an associated
2033 flags property that describes how to handle that secret. In the fcfg-rh
2034 plugin variables for secret flags have a _FLAGS suffix. The variables
2035 contain one or more of the following values (space separated). Missing
2036 (or empty) *_FLAGS variable means that the password is owned by
2037 NetworkManager.
2038
2039 • user - a user-session secret agent is responsible for providing and
2040 storing this secret; when it is required, agents will be asked to
2041 provide it.
2042
2043 • ask - the associated password is not saved but it will be requested
2044 from the user each time it is required.
2045
2046 • unused - in some situations it cannot be automatically determined
2047 that a secret is required or not. This flag hints that the secret
2048 is not required and should not be requested from the user.
2049
2051 /etc/sysconfig/network-scripts/ifcfg-*
2052
2053 /etc/sysconfig/network-scripts/keys-*
2054
2055 /etc/sysconfig/network-scripts/route-*
2056
2057 /etc/sysconfig/network-scripts/route6-*
2058
2059 /usr/share/doc/initscripts/sysconfig.txt
2060
2062 nm-settings(5), nm-settings-keyfile(5), NetworkManager(8),
2063 NetworkManager.conf(5), nmcli(1), nmcli-examples(7)
2064
2065
2066
2067NetworkManager 1.32.12 NM-SETTINGS-IFCFG-RH(5)