Imported Upstream version 1.40
[platform/upstream/connman.git] / src / main.conf
1 [General]
2
3 # Set input request timeout. Default is 120 seconds
4 # The request for inputs like passphrase will timeout
5 # after certain amount of time. Use this setting to
6 # increase the value in case of different user
7 # interface designs.
8 # InputRequestTimeout = 120
9
10 # Set browser launch timeout. Default is 300 seconds
11 # The request for launching a browser for portal pages
12 # will timeout after certain amount of time. Use this
13 # setting to increase the value in case of different
14 # user interface designs.
15 # BrowserLaunchTimeout = 300
16
17 # If wifi is disconnected, the background scanning will follow a simple
18 # backoff mechanism from 3s up to 5 minutes. Then, it will stay in 5
19 # minutes unless user specifically asks for scanning through a D-Bus
20 # call. If so, the mechanism will start again from 3s. This feature
21 # activates also the background scanning while being connected, which
22 # is required for roaming on wifi.
23 # When BackgroundScanning is false, ConnMan will not perform any scan
24 # regardless of wifi is connected or not, unless it is requested by
25 # the user through a D-Bus call.
26 # BackgroundScanning = true
27
28 # Assume that service gateways also function as timeservers.
29 # UseGatewaysAsTimeservers = false
30
31 # List of Fallback timeservers separated by ",".
32 # These timeservers are used for NTP sync when there are
33 # no timeservers set by the user or by the service, and
34 # when UseGatewaysAsTimeservers = false. These can contain
35 # mixed combination of fully qualified domain names, IPv4
36 # and IPv6 addresses.
37 # FallbackTimeservers =
38
39 # List of fallback nameservers separated by "," used if no
40 # nameservers are otherwise provided by the service. The
41 # nameserver entries must be in numeric format, host
42 # names are ignored.
43 # FallbackNameservers =
44
45 # List of technologies that are marked autoconnectable
46 # by default, separated by commas ",". The default value
47 # for this entry when empty is ethernet,wifi,cellular.
48 # Services that are automatically connected must have been
49 # set up and saved to storage beforehand.
50 # DefaultAutoConnectTechnologies =
51
52 # List of preferred technologies from the most preferred
53 # one to the least preferred one separated by commas ",".
54 # Services of the listed technology type will be tried one
55 # by one in the order given, until one of them gets connected
56 # or they are all tried. A service of a preferred technology
57 # type in state 'ready' will get the default route when
58 # compared to another preferred type further down the list
59 # with state 'ready' or with a non-preferred type; a service
60 # of a preferred technology type in state 'online' will get
61 # the default route when compared to either a non-preferred
62 # type or a preferred type further down in the list.
63 # PreferredTechnologies =
64
65 # List of blacklisted network interfaces separated by ",".
66 # Found interfaces will be compared to the list and will
67 # not be handled by ConnMan, if their first characters
68 # match any of the list entries. Default value is
69 # vmnet,vboxnet,virbr,ifb,ve-,vb-.
70 # NetworkInterfaceBlacklist = vmnet,vboxnet,virbr,ifb,ve-,vb-
71
72 # Allow ConnMan to change the system hostname. This can
73 # happen for example if we receive DHCP hostname option.
74 # Default value is true.
75 # AllowHostnameUpdates = true
76
77 # Allow ConnMan to change the system domainname. This can
78 # happen for example if we receive DHCP domainname option.
79 # Default value is true.
80 # AllowDomainnameUpdates = true
81
82 # Keep only a single connected technology at any time. When a new
83 # service is connected by the user or a better one is found according
84 # to PreferredTechnologies, the new service is kept connected and all
85 # the other previously connected services are disconnected. With this
86 # setting it does not matter whether the previously connected services
87 # are in 'online' or 'ready' states, the newly connected service is
88 # the only one that will be kept connected. A service connected by the
89 # user will be used until going out of network coverage. With this
90 # setting enabled applications will notice more network breaks than
91 # normal. Default value is false.
92 # SingleConnectedTechnology = false
93
94 # List of technologies for which tethering is allowed separated by ",".
95 # The default value is wifi,bluetooth,gadget. Only those technologies
96 # listed here are used for tethering. If ethernet tethering is desired,
97 # then ethernet should be added to the list. The technologies listed here
98 # have to support tethering, currently tethering is implemented for wifi,
99 # bluetooth, gadget and ethernet.
100 # NOTE that if ethernet tethering is enabled, then a DHCP server is
101 # started on all ethernet interfaces. Tethered ethernet should
102 # never be connected to corporate or home network as it will disrupt
103 # normal operation of these networks. Due to this ethernet is not
104 # tethered by default. Do not activate ethernet tethering unless you
105 # really know what you are doing.
106 # TetheringTechnologies = wifi,bluetooth,gadget
107
108 # Restore earlier tethering status when returning from offline mode,
109 # re-enabling a technology, and after restarts and reboots.
110 # Default value is false.
111 # PersistentTetheringMode = false
112
113 # Automatically enable Anycast 6to4 if possible. This is not recommended, as
114 # the use of 6to4 will generally lead to a severe degradation of connection
115 # quality. See RFC6343. Default value is false (as recommended by RFC6343
116 # section 4.1).
117 # Enable6to4 = false
118
119 # Enable use of http get as on online status check.
120 # When a service is in a READY state, and is selected as default,
121 # ConnMan will issue an HTTP GET request to verify that end-to-end
122 # connectivity is successful. Only then the service will be
123 # transitioned to ONLINE state.
124 # If this setting is false, the default service will remain in READY state.
125 # Default value is true.
126 # EnableOnlineCheck = false
127
128 # Range of intervals between two online check requests.
129 # When an online check request fails, another one is triggered after a
130 # longer interval. The intervals follow the power of two series of numbers
131 # between OnlineCheckInitialInterval and OnlineCheckMaxInterval.
132 # Default range is [1, 12], corresponding to the following intervals, in
133 # seconds: 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121 and 144.
134 # OnlineCheckInitialInterval = 1
135 # OnlineCheckMaxInterval = 12
136
137 # WARNING: Experimental feature!!!
138 # In addition to EnableOnlineCheck setting, enable or disable use of HTTP GET
139 # to detect the loss of end-to-end connectivity.
140 # If this setting is false, when the default service transitions to ONLINE
141 # state, the HTTP GET request is no more called until next cycle, initiated
142 # by a transition of the default service to DISCONNECT state.
143 # If this setting is true, the HTTP GET request keeps beeing called to guarantee
144 # that end-to-end connectivity is still successful. If not, the default service
145 # will transition to READY state, enabling another service to become the
146 # default one, in replacement.
147 # EnableOnlineToReadyTransition = false
148
149 # List of technologies with AutoConnect = true which are always connected
150 # regardless of PreferredTechnologies setting. Default value is empty and
151 # will connect a technology only if it is at a higher preference than any
152 # other which is already connected.
153 # This setting has no effect if SingleConnectedTechnologies is enabled.
154 # AlwaysConnectedTechnologies =
155
156 # Enable auto connection of services in roaming.
157 # If this setting is false, roaming services are not auto-connected by ConnMan.
158 # Default value is false.
159 # AutoConnectRoamingServices = false
160
161 # Enable address conflict detection
162 # If this setting is true, ConnMan will send probe ARP packets to see
163 # if an IPv4 address is already in use before assigning the address
164 # to an interface (in accordance with RFC 5227).
165 # Default value is false.
166 # AddressConflictDetection = false