summary refs log tree commit diff
path: root/man/NetworkManager.conf.5
blob: f1d3d75fff6fa544597e61dfd7d5c6252c48230c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
'\" t
.\"     Title: NetworkManager.conf
.\"    Author: 
.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
.\"      Date: 08/24/2016
.\"    Manual: Configuration
.\"    Source: NetworkManager 1.4.0
.\"  Language: English
.\"
.TH "NETWORKMANAGER\&.CON" "5" "" "NetworkManager 1\&.4\&.0" "Configuration"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.\" http://bugs.debian.org/507673
.\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.ie \n(.g .ds Aq \(aq
.el       .ds Aq '
.\" -----------------------------------------------------------------
.\" * set default formatting
.\" -----------------------------------------------------------------
.\" disable hyphenation
.nh
.\" disable justification (adjust text to left margin only)
.ad l
.\" -----------------------------------------------------------------
.\" * MAIN CONTENT STARTS HERE *
.\" -----------------------------------------------------------------
.SH "NAME"
NetworkManager.conf \- NetworkManager configuration file
.SH "SYNOPSIS"
.PP
/etc/NetworkManager/NetworkManager\&.conf,
/etc/NetworkManager/conf\&.d/\fIname\fR\&.conf,
/usr/lib/NetworkManager/conf\&.d/\fIname\fR\&.conf,
/var/lib/NetworkManager/NetworkManager\-intern\&.conf
.SH "DESCRIPTION"
.PP
NetworkManager\&.conf
is the configuration file for NetworkManager\&. It is used to set up various aspects of NetworkManager\*(Aqs behavior\&. The location of the main file and configuration directories may be changed through use of the
\fB\-\-config\fR,
\fB\-\-config\-dir\fR,
\fB\-\-system\-config\-dir\fR, and
\fB\-\-intern\-config\fR
argument for NetworkManager, respectively\&.
.PP
If a default
NetworkManager\&.conf
is provided by your distribution\*(Aqs packages, you should not modify it, since your changes may get overwritten by package updates\&. Instead, you can add additional
\&.conf
files to the
/etc/NetworkManager/conf\&.d
directory\&. These will be read in order, with later files overriding earlier ones\&. Packages might install further configuration snippets to
/usr/lib/NetworkManager/conf\&.d\&. This directory is parsed first, even before
NetworkManager\&.conf\&. The loading of a file
/usr/lib/NetworkManager/conf\&.d/\fIname\fR\&.conf
can be prevented by adding a file
/etc/NetworkManager/conf\&.d/\fIname\fR\&.conf\&. In this case, the file from the etc configuration shadows the file from the system configuration directory\&.
.PP
NetworkManager can overwrite certain user configuration options via D\-Bus or other internal operations\&. In this case it writes those changes to
/var/lib/NetworkManager/NetworkManager\-intern\&.conf\&. This file is not intended to be modified by the user, but it is read last and can shadow user configuration from
NetworkManager\&.conf\&.
.PP
Certain settings from the configuration can be reloaded at runtime either by sending SIGHUP signal or via D\-Bus\*(Aq Reload call\&.
.SH "FILE FORMAT"
.PP
The configuration file format is so\-called key file (sort of ini\-style format)\&. It consists of sections (groups) of key\-value pairs\&. Lines beginning with a \*(Aq#\*(Aq and blank lines are considered comments\&. Sections are started by a header line containing the section enclosed in \*(Aq[\*(Aq and \*(Aq]\*(Aq, and ended implicitly by the start of the next section or the end of the file\&. Each key\-value pair must be contained in a section\&.
.PP
For keys that take a list of devices as their value, you can specify devices by their MAC addresses or interface names, or "*" to specify all devices\&. See
the section called \(lqDevice List Format\(rq
below\&.
.PP
Minimal system settings configuration file looks like this:
.sp
.if n \{\
.RS 4
.\}
.nf
[main]
plugins=keyfile
.fi
.if n \{\
.RE
.\}
.PP
As an extension to the normal keyfile format, you can also append a value to a previously\-set list\-valued key by doing:
.sp
.if n \{\
.RS 4
.\}
.nf
plugins+=another\-plugin
plugins\-=remove\-me
.fi
.if n \{\
.RE
.\}
.sp
.SH "MAIN SECTION"
.PP
\fIplugins\fR
.RS 4
Lists system settings plugin names separated by \*(Aq,\*(Aq\&. These plugins are used to read and write system\-wide connections\&. When multiple plugins are specified, the connections are read from all listed plugins\&. When writing connections, the plugins will be asked to save the connection in the order listed here; if the first plugin cannot write out that connection type (or can\*(Aqt write out any connections) the next plugin is tried, etc\&. If none of the plugins can save the connection, an error is returned to the user\&.
.sp
If NetworkManager defines a distro\-specific network\-configuration plugin for your system, then that will normally be listed here\&. (See below for the available plugins\&.) Note that the
keyfile
plugin is always appended to the end of this list (if it doesn\*(Aqt already appear earlier in the list), so if there is no distro\-specific plugin for your system then you can leave this key unset and NetworkManager will fall back to using
keyfile\&.
.RE
.PP
\fImonitor\-connection\-files\fR
.RS 4
Whether the configured settings plugin(s) should set up file monitors and immediately pick up changes made to connection files while NetworkManager is running\&. This is disabled by default; NetworkManager will only read the connection files at startup, and when explicitly requested via the ReloadConnections D\-Bus call\&. If this key is set to \*(Aqtrue\*(Aq, then NetworkManager will reload connection files any time they changed\&. Automatic reloading is not advised because there are race conditions involved and it depends on the way how the editor updates the file\&. In some situations, NetworkManager might first delete and add the connection anew, instead of updating the existing one\&. Also, NetworkManager might pick up incomplete settings while the user is still editing the files\&.
.RE
.PP
\fIauth\-polkit\fR
.RS 4
Whether the system uses PolicyKit for authorization\&. If
false, all requests will be allowed\&. If
true, non\-root requests are authorized using PolicyKit\&. The default value is
true\&.
.RE
.PP
\fIdhcp\fR
.RS 4
This key sets up what DHCP client NetworkManager will use\&. Allowed values are
dhclient,
dhcpcd, and
internal\&. The
dhclient
and
dhcpcd
options require the indicated clients to be installed\&. The
internal
option uses a built\-in DHCP client which is not currently as featureful as the external clients\&.
.sp
If this key is missing, available DHCP clients are looked for in this order:
dhclient,
dhcpcd,
internal\&.
.RE
.PP
\fIno\-auto\-default\fR
.RS 4
Specify devices for which NetworkManager shouldn\*(Aqt create default wired connection (Auto eth0)\&. By default, NetworkManager creates a temporary wired connection for any Ethernet device that is managed and doesn\*(Aqt have a connection configured\&. List a device in this option to inhibit creating the default connection for the device\&. May have the special value
*
to apply to all devices\&.
.sp
When the default wired connection is deleted or saved to a new persistent connection by a plugin, the device is added to a list in the file
/var/run/NetworkManager/no\-auto\-default\&.state
to prevent creating the default connection for that device again\&.
.sp
See
the section called \(lqDevice List Format\(rq
for the syntax how to specify a device\&.
.sp
Example:
.sp
.if n \{\
.RS 4
.\}
.nf
no\-auto\-default=00:22:68:5c:5d:c4,00:1e:65:ff:aa:ee
no\-auto\-default=eth0,eth1
no\-auto\-default=*
.fi
.if n \{\
.RE
.\}
.sp
.RE
.PP
\fIignore\-carrier\fR
.RS 4
This setting is deprecated for the per\-device setting
ignore\-carrier
which overwrites this setting if specified (See
???)\&. Otherwise, it is a list of matches to specify for which device carrier should be ignored\&. See
the section called \(lqDevice List Format\(rq
for the syntax how to specify a device\&.
.RE
.PP
\fIassume\-ipv6ll\-only\fR
.RS 4
Specify devices for which NetworkManager will try to generate a connection based on initial configuration when the device only has an IPv6 link\-local address\&.
.sp
See
the section called \(lqDevice List Format\(rq
for the syntax how to specify a device\&.
.RE
.PP
\fIconfigure\-and\-quit\fR
.RS 4
When set to \*(Aqtrue\*(Aq, NetworkManager quits after performing initial network configuration but spawns small helpers to preserve DHCP leases and IPv6 addresses\&. This is useful in environments where network setup is more or less static or it is desirable to save process time but still handle some dynamic configurations\&. When this option is
true, network configuration for WiFi, WWAN, Bluetooth, ADSL, and PPPoE interfaces cannot be preserved due to their use of external services, and these devices will be deconfigured when NetworkManager quits even though other interface\*(Aqs configuration may be preserved\&. Also, to preserve DHCP addresses the \*(Aqdhcp\*(Aq option must be set to \*(Aqinternal\*(Aq\&. The default value of the \*(Aqconfigure\-and\-quit\*(Aq option is \*(Aqfalse\*(Aq, meaning that NetworkManager will continue running after initial network configuration and continue responding to system and hardware events, D\-Bus requests, and user commands\&.
.RE
.PP
\fIdns\fR
.RS 4
Set the DNS (resolv\&.conf) processing mode\&.
.sp
default: The default if the key is not specified\&. NetworkManager will update
resolv\&.conf
to reflect the nameservers provided by currently active connections\&.
.sp
dnsmasq: NetworkManager will run dnsmasq as a local caching nameserver, using a "split DNS" configuration if you are connected to a VPN, and then update
resolv\&.conf
to point to the local nameserver\&.
.sp
unbound: NetworkManager will talk to unbound and dnssec\-triggerd, providing a "split DNS" configuration with DNSSEC support\&. The /etc/resolv\&.conf will be managed by dnssec\-trigger daemon\&.
.sp
none: NetworkManager will not modify resolv\&.conf\&. This implies
rc\-manager\ \&unmanaged
.RE
.PP
\fIrc\-manager\fR
.RS 4
Set the
resolv\&.conf
management mode\&. The default value depends on how NetworkManager was built, whereas this version of NetworkManager was build with a default of "symlink"\&. Regardless of this setting, NetworkManager will always write resolv\&.conf to its runtime state directory\&.
.sp
symlink: NetworkManager will symlink
/etc/resolv\&.conf
to its private resolv\&.conf file in the runtime state directory\&. If
/etc/resolv\&.conf
already is a symlink pointing to a different location, the file will not be modified\&. This allows the user to disable managing by pointing the link
/etc/resolv\&.conf
to somewhere else\&.
.sp
file: NetworkManager will write
/etc/resolv\&.conf
as file\&. If it finds a symlink, it will follow the symlink and update the target instead\&.
.sp
resolvconf: NetworkManager will run resolvconf to update the DNS configuration\&.
.sp
netconfig: NetworkManager will run netconfig to update the DNS configuration\&.
.sp
unmanaged: don\*(Aqt touch
/etc/resolv\&.conf\&.
.sp
none: deprecated alias for
symlink\&.
.RE
.PP
\fIdebug\fR
.RS 4
Comma separated list of options to aid debugging\&. This value will be combined with the environment variable
NM_DEBUG\&. Currently the following values are supported:
.sp
RLIMIT_CORE: set ulimit \-c unlimited to write out core dumps\&. Beware, that a core dump can contain sensitive information such as passwords or configuration settings\&.
.sp
fatal\-warnings: set g_log_set_always_fatal() to core dump on warning messages from glib\&. This is equivalent to the \-\-g\-fatal\-warnings command line option\&.
.RE
.SH "KEYFILE SECTION"
.PP
This section contains keyfile\-plugin\-specific options, and is normally only used when you are not using any other distro\-specific plugin\&.
.PP
.PP
\fIhostname\fR
.RS 4
This key is deprecated and has no effect since the hostname is now stored in /etc/hostname or other system configuration files according to build options\&.
.RE
.PP
\fIpath\fR
.RS 4
The location where keyfiles are read and stored\&. This defaults to "/etc/NetworkManager/conf\&.d"\&.
.RE
.PP
\fIunmanaged\-devices\fR
.RS 4
Set devices that should be ignored by NetworkManager\&.
.sp
See
the section called \(lqDevice List Format\(rq
for the syntax how to specify a device\&.
.sp
Example:
.sp
.if n \{\
.RS 4
.\}
.nf
unmanaged\-devices=interface\-name:em4
unmanaged\-devices=mac:00:22:68:1c:59:b1;mac:00:1E:65:30:D1:C4;interface\-name:eth2
.fi
.if n \{\
.RE
.\}
.sp
.RE
.SH "IFUPDOWN SECTION"
.PP
This section contains ifupdown\-specific options and thus only has effect when using the
ifupdown
plugin\&.
.PP
.PP
\fImanaged\fR
.RS 4
If set to
true, then interfaces listed in
/etc/network/interfaces
are managed by NetworkManager\&. If set to
false, then any interface listed in
/etc/network/interfaces
will be ignored by NetworkManager\&. Remember that NetworkManager controls the default route, so because the interface is ignored, NetworkManager may assign the default route to some other interface\&.
.sp
The default value is
false\&.
.RE
.SH "LOGGING SECTION"
.PP
This section controls NetworkManager\*(Aqs logging\&. Any settings here are overridden by the
\fB\-\-log\-level\fR
and
\fB\-\-log\-domains\fR
command\-line options\&.
.PP
.PP
\fIlevel\fR
.RS 4
The default logging verbosity level\&. One of
OFF,
ERR,
WARN,
INFO,
DEBUG,
TRACE\&. The ERR level logs only critical errors\&. WARN logs warnings that may reflect operation\&. INFO logs various informational messages that are useful for tracking state and operations\&. DEBUG enables verbose logging for debugging purposes\&. TRACE enables even more verbose logging then DEBUG level\&. Subsequent levels also log all messages from earlier levels; thus setting the log level to INFO also logs error and warning messages\&.
.RE
.PP
\fIdomains\fR
.RS 4
The following log domains are available: PLATFORM, RFKILL, ETHER, WIFI, BT, MB, DHCP4, DHCP6, PPP, WIFI_SCAN, IP4, IP6, AUTOIP4, DNS, VPN, SHARING, SUPPLICANT, AGENTS, SETTINGS, SUSPEND, CORE, DEVICE, OLPC, WIMAX, INFINIBAND, FIREWALL, ADSL, BOND, VLAN, BRIDGE, DBUS_PROPS, TEAM, CONCHECK, DCB, DISPATCH, AUDIT, SYSTEMD, VPN_PLUGIN\&.
.sp
In addition, these special domains can be used: NONE, ALL, DEFAULT, DHCP, IP\&.
.sp
You can specify per\-domain log level overrides by adding a colon and a log level to any domain\&. E\&.g\&., "WIFI:DEBUG,WIFI_SCAN:OFF"\&.
.RE
.PP
.RS 4
.PP
Domain descriptions:
.RS 4
PLATFORM    : OS (platform) operations
.RE
.RS 4
RFKILL      : RFKill subsystem operations
.RE
.RS 4
ETHER       : Ethernet device operations
.RE
.RS 4
WIFI        : Wi\-Fi device operations
.RE
.RS 4
BT          : Bluetooth operations
.RE
.RS 4
MB          : Mobile broadband operations
.RE
.RS 4
DHCP4       : DHCP for IPv4
.RE
.RS 4
DHCP6       : DHCP for IPv6
.RE
.RS 4
PPP         : Point\-to\-point protocol operations
.RE
.RS 4
WIFI_SCAN   : Wi\-Fi scanning operations
.RE
.RS 4
IP4         : IPv4\-related operations
.RE
.RS 4
IP6         : IPv6\-related operations
.RE
.RS 4
AUTOIP4     : AutoIP operations
.RE
.RS 4
DNS         : Domain Name System related operations
.RE
.RS 4
VPN         : Virtual Private Network connections and operations
.RE
.RS 4
SHARING     : Connection sharing
.RE
.RS 4
SUPPLICANT  : WPA supplicant related operations
.RE
.RS 4
AGENTS      : Secret agents operations and communication
.RE
.RS 4
SETTINGS    : Settings/config service operations
.RE
.RS 4
SUSPEND     : Suspend/resume
.RE
.RS 4
CORE        : Core daemon and policy operations
.RE
.RS 4
DEVICE      : Activation and general interface operations
.RE
.RS 4
OLPC        : OLPC Mesh device operations
.RE
.RS 4
WIMAX       : WiMAX device operations
.RE
.RS 4
INFINIBAND  : InfiniBand device operations
.RE
.RS 4
FIREWALL    : FirewallD related operations
.RE
.RS 4
ADSL        : ADSL device operations
.RE
.RS 4
BOND        : Bonding operations
.RE
.RS 4
VLAN        : VLAN operations
.RE
.RS 4
BRIDGE      : Bridging operations
.RE
.RS 4
DBUS_PROPS  : D\-Bus property changes
.RE
.RS 4
TEAM        : Teaming operations
.RE
.RS 4
CONCHECK    : Connectivity check
.RE
.RS 4
DCB         : Data Center Bridging (DCB) operations
.RE
.RS 4
DISPATCH    : Dispatcher scripts
.RE
.RS 4
AUDIT       : Audit records
.RE
.RS 4
SYSTEMD     : Messages from internal libsystemd
.RE
.RS 4
VPN_PLUGIN  : logging messages from VPN plugins
.RE
.RS 4
 
.RE
.RS 4
NONE        : when given by itself logging is disabled
.RE
.RS 4
ALL         : all log domains
.RE
.RS 4
DEFAULT     : default log domains
.RE
.RS 4
DHCP        : shortcut for "DHCP4,DHCP6"
.RE
.RS 4
IP          : shortcut for "IP4,IP6"
.RE
.RS 4
 
.RE
.RS 4
HW          : deprecated alias for "PLATFORM"
.RE
.PP
In general, the logfile should not contain passwords or private data\&. However, you are always advised to check the file before posting it online or attaching to a bug report\&.
VPN_PLUGIN
is special as it might reveal private information of the VPN plugins with verbose levels\&. Therefore this domain will be excluded when setting
ALL
or
DEFAULT
to more verbose levels then
INFO\&.
.RE
.PP
\fIbackend\fR
.RS 4
The logging backend\&. Supported values are "debug", "syslog", "journal"\&. "debug" uses syslog and logs to standard error\&. If NetworkManager is started in debug mode (\-\-debug) this option is ignored and "debug" is always used\&. Otherwise, the default is "journal"\&.
.RE
.PP
\fIaudit\fR
.RS 4
Whether the audit records are delivered to auditd, the audit daemon\&. If
false, audit records will be sent only to the NetworkManager logging system\&. If set to
true, they will be also sent to auditd\&. The default value is
true\&.
.RE
.SH "CONNECTION SECTION"
.PP
Specify default values for connections\&.
.PP
Example:
.sp
.if n \{\
.RS 4
.\}
.nf
[connection]
ipv6\&.ip6\-privacy=0
.fi
.if n \{\
.RE
.\}
.sp
.SS "Supported Properties"
.PP
Not all properties can be overwritten, only the following properties are supported to have their default values configured (see
\fBnm-settings\fR(5)
for details)\&. A default value is only consulted if the corresponding per\-connection value explicitly allows for that\&.
.PP
\fIconnection\&.autoconnect\-slaves\fR
.RS 4
.RE
.PP
\fIconnection\&.lldp\fR
.RS 4
.RE
.PP
\fIethernet\&.cloned\-mac\-address\fR
.RS 4
If left unspecified, it defaults to "permanent"\&.
.RE
.PP
\fIethernet\&.generate\-mac\-address\-mask\fR
.RS 4
.RE
.PP
\fIethernet\&.wake\-on\-lan\fR
.RS 4
.RE
.PP
\fIipv4\&.dad\-timeout\fR
.RS 4
.RE
.PP
\fIipv4\&.dhcp\-timeout\fR
.RS 4
If left unspecified, the default value for the interface type is used\&.
.RE
.PP
\fIipv4\&.route\-metric\fR
.RS 4
.RE
.PP
\fIipv6\&.ip6\-privacy\fR
.RS 4
If
ipv6\&.ip6\-privacy
is unset, use the content of "/proc/sys/net/ipv6/conf/default/use_tempaddr" as last fallback\&.
.RE
.PP
\fIipv6\&.route\-metric\fR
.RS 4
.RE
.PP
\fIvpn\&.timeout\fR
.RS 4
If left unspecified, default value of 60 seconds is used\&.
.RE
.PP
\fIwifi\&.cloned\-mac\-address\fR
.RS 4
If left unspecified, it defaults to "permanent"\&.
.RE
.PP
\fIwifi\&.generate\-mac\-address\-mask\fR
.RS 4
.RE
.PP
\fIwifi\&.mac\-address\-randomization\fR
.RS 4
If left unspecified, MAC address randomization is disabled\&. This setting is deprecated for
wifi\&.cloned\-mac\-address\&.
.RE
.PP
\fIwifi\&.powersave\fR
.RS 4
If left unspecified, the default value "ignore" will be used\&.
.RE
.SS "Sections"
.PP
You can configure multiple
connection
sections, by having different sections with a name that all start with "connection"\&. Example:
.sp
.if n \{\
.RS 4
.\}
.nf
[connection]
ipv6\&.ip6\-privacy=0
connection\&.autoconnect\-slaves=1
vpn\&.timeout=120

[connection\-wifi\-wlan0]
match\-device=interface\-name:wlan0
ipv4\&.route\-metric=50

[connection\-wifi\-other]
match\-device=type:wifi
ipv4\&.route\-metric=55
ipv6\&.ip6\-privacy=1
.fi
.if n \{\
.RE
.\}
.PP
The sections within one file are considered in order of appearance, with the exception that the
[connection]
section is always considered last\&. In the example above, this order is
[connection\-wifi\-wlan0],
[connection\-wlan\-other], and
[connection]\&. When checking for a default configuration value, the sections are searched until the requested value is found\&. In the example above, "ipv4\&.route\-metric" for wlan0 interface is set to 50, and for all other Wi\-Fi typed interfaces to 55\&. Also, Wi\-Fi devices would have IPv6 private addresses enabled by default, but other devices would have it disabled\&. Note that also "wlan0" gets "ipv6\&.ip6\-privacy=1", because although the section "[connection\-wifi\-wlan0]" matches the device, it does not contain that property and the search continues\&.
.PP
When having different sections in multiple files, sections from files that are read later have higher priority\&. So within one file the priority of the sections is top\-to\-bottom\&. Across multiple files later definitions take precedence\&.
.PP
The following properties further control how a connection section applies\&.
.PP
\fImatch\-device\fR
.RS 4
An optional device spec that restricts when the section applies\&. See
the section called \(lqDevice List Format\(rq
for the possible values\&.
.RE
.PP
\fIstop\-match\fR
.RS 4
An optional boolean value which defaults to
no\&. If the section matches (based on
match\-device), further sections will not be considered even if the property in question is not present\&. In the example above, if
[connection\-wifi\-wlan0]
would have
stop\-match
set to
yes, the device
wlan0
would have
ipv6\&.ip6\-privacy
property unspecified\&. That is, the search for the property would not continue in the connection sections
[connection\-wifi\-other]
or
[connection]\&.
.RE
.SH "DEVICE SECTION"
.PP
Contains per\-device persistent configuration\&.
.PP
Example:
.sp
.if n \{\
.RS 4
.\}
.nf
[device]
match\-device=interface\-name:eth3
unmanaged=1
.fi
.if n \{\
.RE
.\}
.sp
.SS "Supported Properties"
.PP
The following properties can be configured per\-device\&.
.PP
\fIignore\-carrier\fR
.RS 4
Specify devices for which NetworkManager will (partially) ignore the carrier state\&. Normally, for device types that support carrier\-detect, such as Ethernet and InfiniBand, NetworkManager will only allow a connection to be activated on the device if carrier is present (ie, a cable is plugged in), and it will deactivate the device if carrier drops for more than a few seconds\&.
.sp
A device with carrier ignored will allow activating connections on that device even when it does not have carrier, provided that the connection uses only statically\-configured IP addresses\&. Additionally, it will allow any active connection (whether static or dynamic) to remain active on the device when carrier is lost\&.
.sp
Note that the "carrier" property of NMDevices and device D\-Bus interfaces will still reflect the actual device state; it\*(Aqs just that NetworkManager will not make use of that information\&.
.sp
This setting overwrites the deprecated
main\&.ignore\-carrier
setting above\&.
.RE
.PP
\fIwifi\&.scan\-rand\-mac\-address\fR
.RS 4
Configures MAC address randomization of a Wi\-Fi device during scanning\&. This defaults to
yes
in which case a random, locally\-administered MAC address will be used\&. The setting
wifi\&.scan\-generate\-mac\-address\-mask
allows to influence the generated MAC address to use certain vendor OUIs\&. If disabled, the MAC address during scanning is left unchanged to whatever is configured\&. For the configured MAC address while the device is associated, see instead the per\-connection setting
wifi\&.cloned\-mac\-address\&.
.RE
.PP
\fIwifi\&.scan\-generate\-mac\-address\-mask\fR
.RS 4
Like the per\-connection settings
ethernet\&.generate\-mac\-address\-mask
and
wifi\&.generate\-mac\-address\-mask, this allows to configure the generated MAC addresses during scanning\&. See
\fBnm-settings\fR(5)
for details\&.
.RE
.SS "Sections"
.PP
The
[device]
section works the same as the
[connection]
section\&. That is, multiple sections that all start with the prefix "device" can be specified\&. The settings "match\-device" and "stop\-match" are available to match a device section on a device\&. The order of multiple sections is also top\-down within the file and later files overwrite previous settings\&. See
the section called \(lqSections\(rq
for details\&.
.SH "CONNECTIVITY SECTION"
.PP
This section controls NetworkManager\*(Aqs optional connectivity checking functionality\&. This allows NetworkManager to detect whether or not the system can actually access the internet or whether it is behind a captive portal\&.
.PP
.PP
\fIuri\fR
.RS 4
The URI of a web page to periodically request when connectivity is being checked\&. This page should return the header "X\-NetworkManager\-Status" with a value of "online"\&. Alternatively, it\*(Aqs body content should be set to "NetworkManager is online"\&. The body content check can be controlled by the
response
option\&. If this option is blank or missing, connectivity checking is disabled\&.
.RE
.PP
\fIinterval\fR
.RS 4
Specified in seconds; controls how often connectivity is checked when a network connection exists\&. If set to 0 connectivity checking is disabled\&. If missing, the default is 300 seconds\&.
.RE
.PP
\fIresponse\fR
.RS 4
If set controls what body content NetworkManager checks for when requesting the URI for connectivity checking\&. If missing, defaults to "NetworkManager is online"
.RE
.SH "GLOBAL\-DNS SECTION"
.PP
This section specifies global DNS settings that override connection\-specific configuration\&.
.PP
.PP
\fIsearches\fR
.RS 4
A list of search domains to be used during hostname lookup\&.
.RE
.PP
\fIoptions\fR
.RS 4
A list of of options to be passed to the hostname resolver\&.
.RE
.SH "GLOBAL\-DNS\-DOMAIN SECTIONS"
.PP
Sections with a name starting with the "global\-dns\-domain\-" prefix allow to define global DNS configuration for specific domains\&. The part of section name after "global\-dns\-domain\-" specifies the domain name a section applies to\&. More specific domains have the precedence over less specific ones and the default domain is represented by the wildcard "*"\&. A default domain section is mandatory\&.
.PP
.PP
\fIservers\fR
.RS 4
A list of addresses of DNS servers to be used for the given domain\&.
.RE
.PP
\fIoptions\fR
.RS 4
A list of domain\-specific DNS options\&. Not used at the moment\&.
.RE
.SH "\&.CONFIG SECTIONS"
.PP
This is a special section that contains options which apply to the configuration file that contains the option\&.
.PP
.PP
\fIenable\fR
.RS 4
Defaults to "true"\&. If "false", the configuration file will be skipped during loading\&. Note that the main configuration file
NetworkManager\&.conf
cannot be disabled\&.
.sp
.if n \{\
.RS 4
.\}
.nf
# always skip loading the config file
[\&.config]
enable=false
.fi
.if n \{\
.RE
.\}
.sp
You can also match against the version of NetworkManager\&. For example the following are valid configurations:
.sp
.if n \{\
.RS 4
.\}
.nf
# only load on version 1\&.0\&.6
[\&.config]
enable=nm\-version:1\&.0\&.6

# load on all versions 1\&.0\&.x, but not 1\&.2\&.x
[\&.config]
enable=nm\-version:1\&.0

# only load on versions >= 1\&.1\&.6\&. This does not match
# with version 1\&.2\&.0 or 1\&.4\&.4\&. Only the last digit is considered\&.
[\&.config]
enable=nm\-version\-min:1\&.1\&.6

# only load on versions >= 1\&.2\&. Contrary to the previous
# example, this also matches with 1\&.2\&.0, 1\&.2\&.10, 1\&.4\&.4, etc\&.
[\&.config]
enable=nm\-version\-min:1\&.2

# Match against the maximum allowed version\&. The example matches
# versions 1\&.2\&.0, 1\&.2\&.2, 1\&.2\&.4\&. Again, only the last version digit
# is allowed to be smaller\&. So this would not match match on 1\&.1\&.10\&.
[\&.config]
enable=nm\-version\-max:1\&.2\&.6
.fi
.if n \{\
.RE
.\}
.sp
You can also match against the value of the environment variable
NM_CONFIG_ENABLE_TAG, like:
.sp
.if n \{\
.RS 4
.\}
.nf
# always skip loading the file when running NetworkManager with
# environment variable "NM_CONFIG_ENABLE_TAG=TAG1"
[\&.config]
enable=env:TAG1
.fi
.if n \{\
.RE
.\}
.sp
More then one match can be specified\&. The configuration will be enabled if one of the predicates matches ("or")\&. The special prefix "except:" can be used to negate the match\&. Note that if one except\-predicate matches, the entire configuration will be disabled\&. In other words, a except predicate always wins over other predicates\&.
.sp
.if n \{\
.RS 4
.\}
.nf
# enable the configuration either when the environment variable
# is present or the version is at least 1\&.2\&.0\&.
[\&.config]
enable=env:TAG2,nm\-version\-min:1\&.2

# enable the configuration for version >= 1\&.2\&.0, but disable
# it when the environment variable is set to "TAG3"
[\&.config]
enable=except:env:TAG3,nm\-version\-min:1\&.2

# enable the configuration on >= 1\&.3, >= 1\&.2\&.6, and >= 1\&.0\&.16\&.
# Useful if a certain feature is only present since those releases\&.
[\&.config]
enable=nm\-version\-min:1\&.3,nm\-version\-min:1\&.2\&.6,nm\-version\-min:1\&.0\&.16
.fi
.if n \{\
.RE
.\}
.sp
.RE
.SH "PLUGINS"
.PP
\fIkeyfile\fR
.RS 4
The
keyfile
plugin is the generic plugin that supports all the connection types and capabilities that NetworkManager has\&. It writes files out in an \&.ini\-style format in /etc/NetworkManager/system\-connections\&.
.sp
The stored connection file may contain passwords and private keys, so it will be made readable only to root, and the plugin will ignore files that are readable or writable by any user or group other than root\&.
.sp
This plugin is always active, and will automatically be used to store any connections that aren\*(Aqt supported by any other active plugin\&.
.RE
.PP
\fIifcfg\-rh\fR
.RS 4
This plugin is used on the Fedora and Red Hat Enterprise Linux distributions to read and write configuration from the standard
/etc/sysconfig/network\-scripts/ifcfg\-*
files\&. It currently supports reading Ethernet, Wi\-Fi, InfiniBand, VLAN, Bond, Bridge, and Team connections\&. Enabling
ifcfg\-rh
implicitly enables
ibft
plugin, if it is available\&. This can be disabled by adding
no\-ibft\&.
.RE
.PP
\fIifcfg\-suse\fR
.RS 4
This plugin is deprecated and its selection has no effect\&. The
keyfile
plugin should be used instead\&.
.RE
.PP
\fIifupdown\fR
.RS 4
This plugin is used on the Debian and Ubuntu distributions, and reads Ethernet and Wi\-Fi connections from
/etc/network/interfaces\&.
.sp
This plugin is read\-only; any connections (of any type) added from within NetworkManager when you are using this plugin will be saved using the
keyfile
plugin instead\&.
.RE
.PP
\fIibft\fR, \fIno\-ibft\fR
.RS 4
This plugin allows to read iBFT configuration (iSCSI Boot Firmware Table)\&. The configuration is read using /sbin/iscsiadm\&. Users are expected to configure iBFT connections via the firmware interfaces\&. If ibft support is available, it is automatically enabled after
ifcfg\-rh\&. This can be disabled by
no\-ibft\&. You can also explicitly specify
ibft
to load the plugin without
ifcfg\-rh
or to change the plugin order\&.
.RE
.SH "APPENDIX"
.SS "Device List Format"
.PP
The configuration options
main\&.no\-auto\-default,
main\&.ignore\-carrier,
keyfile\&.unmanaged\-devices,
connection*\&.match\-device
and
device*\&.match\-device
select devices based on a list of matchings\&. Devices can be specified using the following format:
.PP
.PP
*
.RS 4
Matches every device\&.
.RE
.PP
IFNAME
.RS 4
Case sensitive match of interface name of the device\&. Globbing is not supported\&.
.RE
.PP
HWADDR
.RS 4
Match the permanent MAC address of the device\&. Globbing is not supported
.RE
.PP
interface\-name:IFNAME, interface\-name:~IFNAME
.RS 4
Case sensitive match of interface name of the device\&. Simple globbing is supported with
*
and
?\&. Ranges and escaping is not supported\&.
.RE
.PP
interface\-name:=IFNAME
.RS 4
Case sensitive match of interface name of the device\&. Globbing is disabled and
IFNAME
is taken literally\&.
.RE
.PP
mac:HWADDR
.RS 4
Match the permanent MAC address of the device\&. Globbing is not supported
.RE
.PP
s390\-subchannels:HWADDR
.RS 4
Match the device based on the subchannel address\&. Globbing is not supported
.RE
.PP
type:TYPE
.RS 4
Match the device type\&. Valid type names are as reported by "nmcli \-f GENERAL\&.TYPE device show"\&. Globbing is not supported\&.
.RE
.PP
except:SPEC
.RS 4
Negative match of a device\&.
SPEC
must be explicitly qualified with a prefix such as
interface\-name:\&. A negative match has higher priority then the positive matches above\&.
.RE
.PP
SPEC[,;]SPEC
.RS 4
Multiple specs can be concatenated with commas or semicolons\&. The order does not matter as matches are either inclusive or negative (except:), with negative matches having higher priority\&.
.sp
Backslash is supported to escape the separators \*(Aq;\*(Aq and \*(Aq,\*(Aq, and to express special characters such as newline (\*(Aq\en\*(Aq), tabulator (\*(Aq\et\*(Aq), whitespace (\*(Aq\es\*(Aq) and backslash (\*(Aq\e\e\*(Aq)\&. The globbing of interface names cannot be escaped\&. Whitespace is not a separator but will be trimmed between two specs (unless escaped as \*(Aq\es\*(Aq)\&.
.RE
.PP
Example:
.sp
.if n \{\
.RS 4
.\}
.nf
interface\-name:em4
mac:00:22:68:1c:59:b1;mac:00:1E:65:30:D1:C4;interface\-name:eth2
interface\-name:vboxnet*,except:interface\-name:vboxnet2
*,except:mac:00:22:68:1c:59:b1
.fi
.if n \{\
.RE
.\}
.sp
.SH "SEE ALSO"
.PP
\fBNetworkManager\fR(8),
\fBnmcli\fR(1),
\fBnmcli-examples\fR(7),
\fBnm-online\fR(1),
\fBnm-settings\fR(5),
\fBnm-applet\fR(1),
\fBnm-connection-editor\fR(1)