1NM-SETTINGS-IFCFG-RH(5)          Configuration         NM-SETTINGS-IFCFG-RH(5)
2
3
4

NAME

6       nm-settings-ifcfg-rh - Description of ifcfg-rh settings plugin
7

DESCRIPTION

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

FILE FORMAT

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

DIFFERENCES AGAINST INITSCRIPTS

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

DETAILS

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       ┌──────────────────────────────────┬────────────────────────────────────────────────┬─────────┬───────────────────────────────────────────────────┐
212Property                          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       ┌─────────┬──────────────┬─────────┬──────────────────────────┐
389Property 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       ┌─────────────┬────────────────┬─────────┬──────────────────┐
401Property     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       ┌───────────────────┬─────────────────────┬─────────┬──────────────────┐
420Property           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       ┌─────────────────────┬─────────────────────────┬──────────────────┬───────────────────────────┐
478Property             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       ┌────────────────────────────┬──────────────────────────┬─────────┬─────────────────────────────────────┐
689Property                    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       │                            │                          │         │ trafic 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       ┌───────────────┬────────────────┬───────────────────┬────────────────────────────────────────────────────────────────────┐
785Property       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       ┌───────────────────┬─────────────────────────┬──────────────────┬─────────────────────────────────────┐
834Property           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       ┌───────────────────┬──────────────────────────────────┬────────────────────────────────┬─────────────────────────────────────┐
1006Property           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       ┌─────────────┬─────────────────┬─────────┬────────────────────────────────────────────┐
1145Property     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       ┌──────────────────┬────────────────────────────┬──────────────────┬─────────────────────────────────────┐
1180Property          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       ┌─────────┬─────────────────┬─────────┬─────────────────┐
1208Property 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       ┌─────────┬──────────────────┬─────────┬──────────────────┐
1232Property 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       ┌─────────┬─────────────┬─────────┬──────────────────┐
1244Property 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       ┌─────────┬───────────┬─────────┬────────────────────────────┐
1256Property 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       ┌─────────────────────┬───────────────────────────┬─────────┬──────────────────────────────────────┐
1296Property             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. 802-3-ethernet setting
1337       ┌──────────────────────────┬──────────────────────────────┬─────────┬────────────────────────────────────────┐
1338Property                  Ifcfg-rh                     Default Description                            
1339       │                          │ Variable                     │         │                                        │
1340       ├──────────────────────────┼──────────────────────────────┼─────────┼────────────────────────────────────────┤
1341       │port                      │ (none)                       │         │ The property is                        │
1342       │                          │                              │         │ not saved by the                       │
1343       │                          │                              │         │ plugin.                                │
1344       ├──────────────────────────┼──────────────────────────────┼─────────┼────────────────────────────────────────┤
1345       │speed                     │ ETHTOOL_OPTS                 │         │ Fixed speed for                        │
1346       │                          │                              │         │ the ethernet                           │
1347       │                          │                              │         │ link. It is                            │
1348       │                          │                              │         │ added as "speed"                       │
1349       │                          │                              │         │ parameter in the                       │
1350       │                          │                              │         │ ETHTOOL_OPTS                           │
1351       │                          │                              │         │ variable.                              │
1352       ├──────────────────────────┼──────────────────────────────┼─────────┼────────────────────────────────────────┤
1353       │duplex                    │ ETHTOOL_OPTS                 │         │ Fixed duplex                           │
1354       │                          │                              │         │ mode for the                           │
1355       │                          │                              │         │ ethernet link.                         │
1356       │                          │                              │         │ It is added as                         │
1357       │                          │                              │         │ "duplex"                               │
1358       │                          │                              │         │ parameter in the                       │
1359       │                          │                              │         │ ETHOOL_OPTS                            │
1360       │                          │                              │         │ variable.                              │
1361       ├──────────────────────────┼──────────────────────────────┼─────────┼────────────────────────────────────────┤
1362       │auto-negotiate            │ ETHTOOL_OPTS                 │         │ Whether link                           │
1363       │                          │                              │         │ speed and duplex                       │
1364       │                          │                              │         │ autonegotiation                        │
1365       │                          │                              │         │ is enabled. It                         │
1366       │                          │                              │         │ is not saved                           │
1367       │                          │                              │         │ only if disabled                       │
1368       │                          │                              │         │ and no values                          │
1369       │                          │                              │         │ are provided for                       │
1370       │                          │                              │         │ the "speed" and                        │
1371       │                          │                              │         │ "duplex"                               │
1372       │                          │                              │         │ parameters                             │
1373       │                          │                              │         │ (skips link                            │
1374       │                          │                              │         │ configuration).                        │
1375       ├──────────────────────────┼──────────────────────────────┼─────────┼────────────────────────────────────────┤
1376       │mac-address               │ HWADDR                       │         │ Hardware address                       │
1377       │                          │                              │         │ of the device in                       │
1378       │                          │                              │         │ traditional                            │
1379       │                          │                              │         │ hex-digits-and-colons                  │
1380       │                          │                              │         │ notation (e.g.                         │
1381       │                          │                              │         │ 00:22:68:14:5A:05).                    │
1382       │                          │                              │         │ Note that for                          │
1383       │                          │                              │         │ initscripts this                       │
1384       │                          │                              │         │ is the current                         │
1385       │                          │                              │         │ MAC address of                         │
1386       │                          │                              │         │ the device as                          │
1387       │                          │                              │         │ found during                           │
1388       │                          │                              │         │ ifup. For                              │
1389       │                          │                              │         │ NetworkManager                         │
1390       │                          │                              │         │ this is the                            │
1391       │                          │                              │         │ permanent MAC                          │
1392       │                          │                              │         │ address. Or in                         │
1393       │                          │                              │         │ case no                                │
1394       │                          │                              │         │ permanent MAC                          │
1395       │                          │                              │         │ address exists,                        │
1396       │                          │                              │         │ the MAC address                        │
1397       │                          │                              │         │ initially                              │
1398       │                          │                              │         │ configured on                          │
1399       │                          │                              │         │ the device.                            │
1400       ├──────────────────────────┼──────────────────────────────┼─────────┼────────────────────────────────────────┤
1401       │cloned-mac-address        │ MACADDR                      │         │ Cloned (spoofed) MAC                   │
1402       │                          │                              │         │ address in                             │
1403       │                          │                              │         │ traditional                            │
1404       │                          │                              │         │ hex-digits-and-colons                  │
1405       │                          │                              │         │ notation (e.g.                         │
1406       │                          │                              │         │ 00:22:68:14:5A:99).                    │
1407       ├──────────────────────────┼──────────────────────────────┼─────────┼────────────────────────────────────────┤
1408       │generate-mac-address-mask │ GENERATE_MAC_ADDRESS_MASK(+) │         │ the MAC address mask                   │
1409       │                          │                              │         │ for generating                         │
1410       │                          │                              │         │ randomized and stable                  │
1411       │                          │                              │         │ cloned-mac-address.                    │
1412       ├──────────────────────────┼──────────────────────────────┼─────────┼────────────────────────────────────────┤
1413       │mac-address-blacklist     │ HWADDR_BLACKLIST(+)          │         │ It denies usage of                     │
1414       │                          │                              │         │ the connection for                     │
1415       │                          │                              │         │ any device whose                       │
1416       │                          │                              │         │ address is listed.                     │
1417       │                          │                              │         │                                        │
1418       │                          │                              │         │ Example:                               
1419       │                          │                              │         │ HWADDR_BLACKLIST="00:22:68:11:69:08    │
1420       │                          │                              │         │ 00:11:22:11:44:55"                     │
1421       ├──────────────────────────┼──────────────────────────────┼─────────┼────────────────────────────────────────┤
1422       │mtu                       │ MTU                          │         │ MTU of the interface.                  │
1423       ├──────────────────────────┼──────────────────────────────┼─────────┼────────────────────────────────────────┤
1424       │s390-subchannels          │ SUBCHANNELS                  │         │ Subchannels for IBM S390 hosts.        │
1425       │                          │                              │         │                                        │
1426       │                          │                              │         │ Example:                               
1427       │                          │                              │         │ SUBCHANNELS=0.0.b00a,0.0.b00b,0.0.b00c │
1428       ├──────────────────────────┼──────────────────────────────┼─────────┼────────────────────────────────────────┤
1429       │s390-nettype              │ NETTYPE                      │         │ Network type of the S390 host.         │
1430       │                          │                              │         │                                        │
1431       │                          │                              │         │ Example: NETTYPE=qeth                  │
1432       │                          │                              │         │                                        │
1433       │                          │                              │         │ Allowed values: "qeth", "lcs" or "ctc" │
1434       ├──────────────────────────┼──────────────────────────────┼─────────┼────────────────────────────────────────┤
1435       │s390-options              │ OPTIONS and PORTNAME,        │         │ S390 device options. All options go to │
1436       │                          │ CTCPROTO,                    │         │ OPTIONS, except for "portname" and     │
1437       │                          │                              │         │ "ctcprot" that have their own          │
1438       │                          │                              │         │ variables.                             │
1439       └──────────────────────────┴──────────────────────────────┴─────────┴────────────────────────────────────────┘
1440
1441       Table 25. 802-11-wireless-security setting
1442       ┌────────────────────┬──────────────────────────────┬─────────┬──────────────────────────────────┐
1443Property            Ifcfg-rh                     Default Description                      
1444       │                    │ Variable                     │         │                                  │
1445       ├────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1446       │key-mgmt            │ KEY_MGMT(+)                  │         │ Key management                   │
1447       │                    │                              │         │ menthod.                         │
1448       │                    │                              │         │                                  │
1449       │                    │                              │         │ Allowed values:                  
1450       │                    │                              │         │ IEEE8021X,                       │
1451       │                    │                              │         │ WPA-PSK, WPA-EAP                 │
1452       ├────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1453       │wep-tx-keyidx       │ DEFAULTKEY                   │ 1       │ Index of active                  │
1454       │                    │                              │         │ WEP key.                         │
1455       │                    │                              │         │                                  │
1456       │                    │                              │         │ Allowed values:                  
1457       │                    │                              │         │ 1, 2, 3, 4                       │
1458       ├────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1459       │auth-alg            │ SECURITYMODE(+)              │         │ Authentication                   │
1460       │                    │                              │         │ algorithm for                    │
1461       │                    │                              │         │ WEP.                             │
1462       │                    │                              │         │                                  │
1463       │                    │                              │         │ Allowed values:                  
1464       │                    │                              │         │ restricted,                      │
1465       │                    │                              │         │ open, leap                       │
1466       ├────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1467       │proto               │ WPA_ALLOW_WPA(+),            │ no      │ Allowed WPA                      │
1468       │                    │ WPA_ALLOW_WPA2(+)            │         │ protocols, WPA                   │
1469       │                    │                              │         │ and WPA2 (RSN).                  │
1470       │                    │                              │         │                                  │
1471       │                    │                              │         │ Allowed values:                  
1472       │                    │                              │         │ yes, no                          │
1473       ├────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1474       │pairwise            │ CIPHER_PAIRWISE(+)           │         │ Restrict                         │
1475       │                    │                              │         │ pairwise                         │
1476       │                    │                              │         │ encryption                       │
1477       │                    │                              │         │ algorithms,                      │
1478       │                    │                              │         │ specified as a                   │
1479       │                    │                              │         │ space separated                  │
1480       │                    │                              │         │ list.                            │
1481       │                    │                              │         │                                  │
1482       │                    │                              │         │ Allowed values:                  
1483       │                    │                              │         │ CCMP, TKIP                       │
1484       ├────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1485       │group               │ CIPHER_GROUP(+)              │         │ Restrict                         │
1486       │                    │                              │         │ group/broadcast                  │
1487       │                    │                              │         │ encryption                       │
1488       │                    │                              │         │ algorithms,                      │
1489       │                    │                              │         │ specified as a                   │
1490       │                    │                              │         │ space separated                  │
1491       │                    │                              │         │ list.                            │
1492       │                    │                              │         │                                  │
1493       │                    │                              │         │ Allowed values:                  
1494       │                    │                              │         │ CCMP, TKIP,                      │
1495       │                    │                              │         │ WEP40, WEP104                    │
1496       ├────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1497       │pmf                 │ PMF(+)                       │         │ Enables or                       │
1498       │                    │                              │         │ disables PMF                     │
1499       │                    │                              │         │ (802.11w)                        │
1500       │                    │                              │         │                                  │
1501       │                    │                              │         │ Example:                         
1502       │                    │                              │         │ PMF=required                     │
1503       │                    │                              │         │                                  │
1504       │                    │                              │         │ Allowed values:                  
1505       │                    │                              │         │ default,                         │
1506       │                    │                              │         │ disable,                         │
1507       │                    │                              │         │ optional,                        │
1508       │                    │                              │         │ required                         │
1509       ├────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1510       │leap-username       │ IEEE_8021X_IDENTITY(+)       │         │ Login name for                   │
1511       │                    │                              │         │ LEAP.                            │
1512       ├────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1513       │wep-key0            │ KEY1,                        │         │ The first WEP                    │
1514       │                    │ KEY_PASSPHRASE1(+)           │         │ key (used in                     │
1515       │                    │                              │         │ most networks).                  │
1516       │                    │                              │         │ See also                         │
1517       │                    │                              │         │ DEFAULTKEY for                   │
1518       │                    │                              │         │ key index.                       │
1519       ├────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1520       │wep-key1            │ KEY2,                        │         │ WEP key with                     │
1521       │                    │ KEY_PASSPHRASE2(+)           │         │ index 1. See                     │
1522       │                    │                              │         │ also DEFAULTKEY                  │
1523       │                    │                              │         │ for key index.                   │
1524       ├────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1525       │wep-key2            │ KEY3,                        │         │ WEP key with                     │
1526       │                    │ KEY_PASSPHRASE3(+)           │         │ index 2. See                     │
1527       │                    │                              │         │ also DEFAULTKEY                  │
1528       │                    │                              │         │ for key index.                   │
1529       ├────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1530       │wep-key3            │ KEY4,                        │         │ WEP key with                     │
1531       │                    │ KEY_PASSPHRASE4(+)           │         │ index 3. See                     │
1532       │                    │                              │         │ also DEFAULTKEY                  │
1533       │                    │                              │         │ for key index.                   │
1534       ├────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1535       │wep-key-flags       │ WEP_KEY_FLAGS(+)             │         │ Password flags                   │
1536       │                    │                              │         │ for KEY<i>,                      │
1537       │                    │                              │         │ KEY_PASSPHRASE<i>                │
1538       │                    │                              │         │ password. (see                   │
1539       │                    │                              │         │ the section                      │
1540       │                    │                              │         │ called “Secret                   │
1541       │                    │                              │         │ flags” for                       │
1542       │                    │                              │         │ _FLAGS values)                   │
1543       ├────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1544       │psk                 │ WPA_PSK                      │         │ Pre-Shared-Key                   │
1545       │                    │                              │         │ for WPA networks.                │
1546       ├────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1547       │psk-flags           │ WPA_PSK_FLAGS(+)             │         │ Password flags                   │
1548       │                    │                              │         │ for                              │
1549       │                    │                              │         │ WPA_PSK_FLAGS.                   │
1550       │                    │                              │         │ (see the section                 │
1551       │                    │                              │         │ called “Secret                   │
1552       │                    │                              │         │ flags” for _FLAGS                │
1553       │                    │                              │         │ values)                          │
1554       │                    │                              │         │                                  │
1555       │                    │                              │         │ Example:                         
1556       │                    │                              │         │ WPA_PSK_FLAGS=user               │
1557       ├────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1558       │leap-password       │ IEEE_8021X_PASSWORD(+)       │         │ Password for LEAP.               │
1559       │                    │                              │         │ It can also go to                │
1560       │                    │                              │         │ "key-" lookaside                 │
1561       │                    │                              │         │ file, or it can be               │
1562       │                    │                              │         │ owned by a secret                │
1563       │                    │                              │         │ agent.                           │
1564       ├────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1565       │leap-password-flags │ IEEE_8021X_PASSWORD_FLAGS(+) │         │ Password flags for               │
1566       │                    │                              │         │ IEEE_8021X_PASSWORD_FLAGS.       │
1567       │                    │                              │         │ (see the section                 │
1568       │                    │                              │         │ called “Secret                   │
1569       │                    │                              │         │ flags” for _FLAGS                │
1570       │                    │                              │         │ values)                          │
1571       ├────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1572       │wep-key-type        │ KEY<i> or                    │         │ KEY is used for "key" type       │
1573       │                    │ KEY_PASSPHRASE<i>(+);        │         │ (10 or 26 hexadecimal            │
1574       │                    │ KEY_TYPE(+)                  │         │ characters, or 5 or 13           │
1575       │                    │                              │         │ character string prefixed        │
1576       │                    │                              │         │ with "s:"). KEY_PASSPHRASE       │
1577       │                    │                              │         │ is used for WEP                  │
1578       │                    │                              │         │ passphrases. KEY_TYPE            │
1579       │                    │                              │         │ specifies the key type and       │
1580       │                    │                              │         │ can be either 'key' or           │
1581       │                    │                              │         │ 'passphrase'. KEY_TYPE is        │
1582       │                    │                              │         │ redundant and can be             │
1583       │                    │                              │         │ omitted.                         │
1584       │                    │                              │         │                                  │
1585       │                    │                              │         │ Example: KEY1=s:ahoj,            │
1586       │                    │                              │         │ KEY1=0a1c45bc02,                 │
1587       │                    │                              │         │ KEY_PASSPHRASE1=mysupersecretkey │
1588       ├────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1589       │wps-method          │ WPS_METHOD                   │         │ Used to control the WPS methods  │
1590       │                    │                              │         │ to be used Valid values are      │
1591       │                    │                              │         │ "default", "auto", "disabled",   │
1592       │                    │                              │         │ "pin" and "pbc". If omitted,     │
1593       │                    │                              │         │ whatver the AP announces is      │
1594       │                    │                              │         │ used.                            │
1595       │                    │                              │         │                                  │
1596       │                    │                              │         │ Example: WPS_METHOD=disabled,    │
1597       │                    │                              │         │ WPS_METHOD="pin pbc"             │
1598       ├────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1599       │fils                │ FILS(+)                      │         │ Enables or disables FILS         │
1600       │                    │                              │         │ (802.11ai)                       │
1601       │                    │                              │         │                                  │
1602       │                    │                              │         │ Example: FILS=required           │
1603       │                    │                              │         │                                  │
1604       │                    │                              │         │ Allowed values: default,         │
1605       │                    │                              │         │ disable, optional, required      │
1606       └────────────────────┴──────────────────────────────┴─────────┴──────────────────────────────────┘
1607
1608       Table 26. 802-11-wireless setting
1609       ┌──────────────────────────┬──────────────────────────────┬─────────┬──────────────────────────────────┐
1610Property                  Ifcfg-rh                     Default Description                      
1611       │                          │ Variable                     │         │                                  │
1612       ├──────────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1613       │ssid                      │ ESSID                        │         │ SSID of Wi-Fi                    │
1614       │                          │                              │         │ network.                         │
1615       │                          │                              │         │                                  │
1616       │                          │                              │         │ Example:                         
1617       │                          │                              │         │ ESSID="Quick                     │
1618       │                          │                              │         │ Net"                             │
1619       ├──────────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1620       │mode                      │ MODE                         │         │ Wi-Fi network                    │
1621       │                          │                              │         │ mode.                            │
1622       │                          │                              │         │                                  │
1623       │                          │                              │         │ Allowed values:                  
1624       │                          │                              │         │ Ad-Hoc, Managed                  │
1625       │                          │                              │         │ (Auto)  [case                    │
1626       │                          │                              │         │ insensitive]                     │
1627       ├──────────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1628       │band                      │ BAND(+)                      │         │ BAND alone is                    │
1629       │                          │                              │         │ honored, but                     │
1630       │                          │                              │         │ CHANNEL                          │
1631       │                          │                              │         │ overrides BAND                   │
1632       │                          │                              │         │ since it implies                 │
1633       │                          │                              │         │ a band.                          │
1634       │                          │                              │         │                                  │
1635       │                          │                              │         │ Example: BAND=bg                 │
1636       │                          │                              │         │                                  │
1637       │                          │                              │         │ Allowed values:                  
1638       │                          │                              │         │ a, bg                            │
1639       ├──────────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1640       │channel                   │ CHANNEL                      │         │ Channel used for                 │
1641       │                          │                              │         │ the Wi-Fi                        │
1642       │                          │                              │         │ communication.                   │
1643       │                          │                              │         │ Channels greater                 │
1644       │                          │                              │         │ than 14 mean "a"                 │
1645       │                          │                              │         │ band, otherwise                  │
1646       │                          │                              │         │ the band is                      │
1647       │                          │                              │         │ "bg".                            │
1648       │                          │                              │         │                                  │
1649       │                          │                              │         │ Example:                         
1650       │                          │                              │         │ CHANNEL=6                        │
1651       ├──────────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1652       │bssid                     │ BSSID(+)                     │         │ Restricts                        │
1653       │                          │                              │         │ association only                 │
1654       │                          │                              │         │ to a single AP.                  │
1655       │                          │                              │         │                                  │
1656       │                          │                              │         │ Example:                         
1657       │                          │                              │         │ BSSID=00:1E:BD:64:83:21          │
1658       ├──────────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1659       │rate                      │ (none)                       │         │ This property is not             │
1660       │                          │                              │         │ handled by ifcfg-rh              │
1661       │                          │                              │         │ plugin.                          │
1662       ├──────────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1663       │tx-power                  │ (none)                       │         │ This property is not             │
1664       │                          │                              │         │ handled by ifcfg-rh              │
1665       │                          │                              │         │ plugin.                          │
1666       ├──────────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1667       │mac-address               │ HWADDR                       │         │ Hardware address of the          │
1668       │                          │                              │         │ device in traditional            │
1669       │                          │                              │         │ hex-digits-and-colons            │
1670       │                          │                              │         │ notation (e.g.                   │
1671       │                          │                              │         │ 00:22:68:14:5A:05).              │
1672       │                          │                              │         │ Note that for                    │
1673       │                          │                              │         │ initscripts this is the          │
1674       │                          │                              │         │ current MAC address of           │
1675       │                          │                              │         │ the device as found              │
1676       │                          │                              │         │ during ifup. For                 │
1677       │                          │                              │         │ NetworkManager this is           │
1678       │                          │                              │         │ the permanent MAC                │
1679       │                          │                              │         │ address. Or in case no           │
1680       │                          │                              │         │ permanent MAC address            │
1681       │                          │                              │         │ exists, the MAC address          │
1682       │                          │                              │         │ initially configured on          │
1683       │                          │                              │         │ the device.                      │
1684       ├──────────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1685       │cloned-mac-address        │ MACADDR                      │         │ Cloned (spoofed) MAC             │
1686       │                          │                              │         │ address in traditional           │
1687       │                          │                              │         │ hex-digits-and-colons            │
1688       │                          │                              │         │ notation (e.g.                   │
1689       │                          │                              │         │ 00:22:68:14:5A:99).              │
1690       ├──────────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1691       │generate-mac-address-mask │ GENERATE_MAC_ADDRESS_MASK(+) │         │ the MAC address mask             │
1692       │                          │                              │         │ for generating                   │
1693       │                          │                              │         │ randomized and stable            │
1694       │                          │                              │         │ cloned-mac-address.              │
1695       ├──────────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1696       │mac-address-blacklist     │ HWADDR_BLACKLIST(+)          │         │ It denies usage of the           │
1697       │                          │                              │         │ connection for any               │
1698       │                          │                              │         │ device whose address is          │
1699       │                          │                              │         │ listed.                          │
1700       ├──────────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1701       │seen-bssids               │ (none)                       │         │ This property is not             │
1702       │                          │                              │         │ handled by ifcfg-rh              │
1703       │                          │                              │         │ plugin.                          │
1704       ├──────────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1705       │mtu                       │ MTU                          │         │ MTU of the wireless              │
1706       │                          │                              │         │ interface.                       │
1707       ├──────────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1708       │hidden                    │ SSID_HIDDEN(+)               │         │ Whether the network              │
1709       │                          │                              │         │ hides the SSID.                  │
1710       ├──────────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1711       │powersave                 │ POWERSAVE(+)                 │         │ Enables or disables              │
1712       │                          │                              │         │ Wi-Fi power saving.              │
1713       │                          │                              │         │                                  │
1714       │                          │                              │         │ Example:                         
1715       │                          │                              │         │ POWERSAVE=enable                 │
1716       │                          │                              │         │                                  │
1717       │                          │                              │         │ Allowed values:                  
1718       │                          │                              │         │ default, ignore,                 │
1719       │                          │                              │         │ enable, disable                  │
1720       ├──────────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1721       │mac-address-randomization │ MAC_ADDRESS_RANDOMIZATION(+) │         │ Enables or disables              │
1722       │                          │                              │         │ Wi-Fi MAC address                │
1723       │                          │                              │         │ randomization.                   │
1724       │                          │                              │         │                                  │
1725       │                          │                              │         │ Example:                         
1726       │                          │                              │         │ MAC_ADDRESS_RANDOMIZATION=always │
1727       │                          │                              │         │                                  │
1728       │                          │                              │         │ Allowed values:                  
1729       │                          │                              │         │ default, never, always           │
1730       ├──────────────────────────┼──────────────────────────────┼─────────┼──────────────────────────────────┤
1731       │security                  │ (none)                       │         │ This property is deprecated and  │
1732       │                          │                              │         │ not handled by ifcfg-rh-plugin.  │
1733       └──────────────────────────┴──────────────────────────────┴─────────┴──────────────────────────────────┘
1734
1735       Table 27. wpan setting
1736       The following settings are not supported by ifcfg-rh plugin:
1737
1738       802-11-olpc-mesh, adsl, bluetooth, cdma, dummy, generic, gsm,
1739       ip-tunnel, macsec, macvlan, ppp, pppoe, serial, tun, vpn, vxlan, wimax
1740
1741   Secret flags
1742       Each secret property in a NetworkManager setting has an associated
1743       flags property that describes how to handle that secret. In the fcfg-rh
1744       plugin variables for secret flags have a _FLAGS suffix. The variables
1745       contain one or more of the following values (space separated). Missing
1746       (or empty) *_FLAGS variable means that the password is owned by
1747       NetworkManager.
1748
1749       ·   user - a user-session secret agent is responsible for providing and
1750           storing this secret; when it is required, agents will be asked to
1751           provide it.
1752
1753       ·   ask - the associated password is not saved but it will be requested
1754           from the user each time it is required.
1755
1756       ·   unused - in some situations it cannot be automatically determined
1757           that a secret is required or not. This flag hints that the secret
1758           is not required and should not be requested from the user.
1759

FILES

1761       /etc/sysconfig/network-scripts/ifcfg-*
1762
1763       /etc/sysconfig/network-scripts/keys-*
1764
1765       /etc/sysconfig/network-scripts/route-*
1766
1767       /etc/sysconfig/network-scripts/route6-*
1768
1769       /usr/share/doc/initscripts/sysconfig.txt
1770

SEE ALSO

1772       nm-settings(5), nm-settings-keyfile(5), NetworkManager(8),
1773       NetworkManager.conf(5), nmcli(1), nmcli-examples(7)
1774
1775
1776
1777NetworkManager 1.14.0                                  NM-SETTINGS-IFCFG-RH(5)
Impressum