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