Added documentation for the new 'country' configuration option
[wpasupplicant] / wpa_supplicant / wpa_supplicant.conf
1 ##### Example wpa_supplicant configuration file ###############################
2 #
3 # This file describes configuration file format and lists all available option.
4 # Please also take a look at simpler configuration examples in 'examples'
5 # subdirectory.
6 #
7 # Empty lines and lines starting with # are ignored
8
9 # NOTE! This file may contain password information and should probably be made
10 # readable only by root user on multiuser systems.
11
12 # Note: All file paths in this configuration file should use full (absolute,
13 # not relative to working directory) path in order to allow working directory
14 # to be changed. This can happen if wpa_supplicant is run in the background.
15
16 # Whether to allow wpa_supplicant to update (overwrite) configuration
17 #
18 # This option can be used to allow wpa_supplicant to overwrite configuration
19 # file whenever configuration is changed (e.g., new network block is added with
20 # wpa_cli or wpa_gui, or a password is changed). This is required for
21 # wpa_cli/wpa_gui to be able to store the configuration changes permanently.
22 # Please note that overwriting configuration file will remove the comments from
23 # it.
24 #update_config=1
25
26 # global configuration (shared by all network blocks)
27 #
28 # Parameters for the control interface. If this is specified, wpa_supplicant
29 # will open a control interface that is available for external programs to
30 # manage wpa_supplicant. The meaning of this string depends on which control
31 # interface mechanism is used. For all cases, the existance of this parameter
32 # in configuration is used to determine whether the control interface is
33 # enabled.
34 #
35 # For UNIX domain sockets (default on Linux and BSD): This is a directory that
36 # will be created for UNIX domain sockets for listening to requests from
37 # external programs (CLI/GUI, etc.) for status information and configuration.
38 # The socket file will be named based on the interface name, so multiple
39 # wpa_supplicant processes can be run at the same time if more than one
40 # interface is used.
41 # /var/run/wpa_supplicant is the recommended directory for sockets and by
42 # default, wpa_cli will use it when trying to connect with wpa_supplicant.
43 #
44 # Access control for the control interface can be configured by setting the
45 # directory to allow only members of a group to use sockets. This way, it is
46 # possible to run wpa_supplicant as root (since it needs to change network
47 # configuration and open raw sockets) and still allow GUI/CLI components to be
48 # run as non-root users. However, since the control interface can be used to
49 # change the network configuration, this access needs to be protected in many
50 # cases. By default, wpa_supplicant is configured to use gid 0 (root). If you
51 # want to allow non-root users to use the control interface, add a new group
52 # and change this value to match with that group. Add users that should have
53 # control interface access to this group. If this variable is commented out or
54 # not included in the configuration file, group will not be changed from the
55 # value it got by default when the directory or socket was created.
56 #
57 # When configuring both the directory and group, use following format:
58 # DIR=/var/run/wpa_supplicant GROUP=wheel
59 # DIR=/var/run/wpa_supplicant GROUP=0
60 # (group can be either group name or gid)
61 #
62 # For UDP connections (default on Windows): The value will be ignored. This
63 # variable is just used to select that the control interface is to be created.
64 # The value can be set to, e.g., udp (ctrl_interface=udp)
65 #
66 # For Windows Named Pipe: This value can be used to set the security descriptor
67 # for controlling access to the control interface. Security descriptor can be
68 # set using Security Descriptor String Format (see http://msdn.microsoft.com/
69 # library/default.asp?url=/library/en-us/secauthz/security/
70 # security_descriptor_string_format.asp). The descriptor string needs to be
71 # prefixed with SDDL=. For example, ctrl_interface=SDDL=D: would set an empty
72 # DACL (which will reject all connections). See README-Windows.txt for more
73 # information about SDDL string format.
74 #
75 ctrl_interface=/var/run/wpa_supplicant
76
77 # IEEE 802.1X/EAPOL version
78 # wpa_supplicant is implemented based on IEEE Std 802.1X-2004 which defines
79 # EAPOL version 2. However, there are many APs that do not handle the new
80 # version number correctly (they seem to drop the frames completely). In order
81 # to make wpa_supplicant interoperate with these APs, the version number is set
82 # to 1 by default. This configuration value can be used to set it to the new
83 # version (2).
84 eapol_version=1
85
86 # AP scanning/selection
87 # By default, wpa_supplicant requests driver to perform AP scanning and then
88 # uses the scan results to select a suitable AP. Another alternative is to
89 # allow the driver to take care of AP scanning and selection and use
90 # wpa_supplicant just to process EAPOL frames based on IEEE 802.11 association
91 # information from the driver.
92 # 1: wpa_supplicant initiates scanning and AP selection
93 # 0: driver takes care of scanning, AP selection, and IEEE 802.11 association
94 #    parameters (e.g., WPA IE generation); this mode can also be used with
95 #    non-WPA drivers when using IEEE 802.1X mode; do not try to associate with
96 #    APs (i.e., external program needs to control association). This mode must
97 #    also be used when using wired Ethernet drivers.
98 # 2: like 0, but associate with APs using security policy and SSID (but not
99 #    BSSID); this can be used, e.g., with ndiswrapper and NDIS drivers to
100 #    enable operation with hidden SSIDs and optimized roaming; in this mode,
101 #    the network blocks in the configuration file are tried one by one until
102 #    the driver reports successful association; each network block should have
103 #    explicit security policy (i.e., only one option in the lists) for
104 #    key_mgmt, pairwise, group, proto variables
105 ap_scan=1
106
107 # EAP fast re-authentication
108 # By default, fast re-authentication is enabled for all EAP methods that
109 # support it. This variable can be used to disable fast re-authentication.
110 # Normally, there is no need to disable this.
111 fast_reauth=1
112
113 # OpenSSL Engine support
114 # These options can be used to load OpenSSL engines.
115 # The two engines that are supported currently are shown below:
116 # They are both from the opensc project (http://www.opensc.org/)
117 # By default no engines are loaded.
118 # make the opensc engine available
119 #opensc_engine_path=/usr/lib/opensc/engine_opensc.so
120 # make the pkcs11 engine available
121 #pkcs11_engine_path=/usr/lib/opensc/engine_pkcs11.so
122 # configure the path to the pkcs11 module required by the pkcs11 engine
123 #pkcs11_module_path=/usr/lib/pkcs11/opensc-pkcs11.so
124
125 # Dynamic EAP methods
126 # If EAP methods were built dynamically as shared object files, they need to be
127 # loaded here before being used in the network blocks. By default, EAP methods
128 # are included statically in the build, so these lines are not needed
129 #load_dynamic_eap=/usr/lib/wpa_supplicant/eap_tls.so
130 #load_dynamic_eap=/usr/lib/wpa_supplicant/eap_md5.so
131
132 # Driver interface parameters
133 # This field can be used to configure arbitrary driver interace parameters. The
134 # format is specific to the selected driver interface. This field is not used
135 # in most cases.
136 #driver_param="field=value"
137
138 # Country code
139 # The ISO/IEC alpha2 country code for the country in which this device is
140 # currently operating.
141 #country=US
142
143 # Maximum lifetime for PMKSA in seconds; default 43200
144 #dot11RSNAConfigPMKLifetime=43200
145 # Threshold for reauthentication (percentage of PMK lifetime); default 70
146 #dot11RSNAConfigPMKReauthThreshold=70
147 # Timeout for security association negotiation in seconds; default 60
148 #dot11RSNAConfigSATimeout=60
149
150 # Wi-Fi Protected Setup (WPS) parameters
151
152 # Universally Unique IDentifier (UUID; see RFC 4122) of the device
153 #uuid=12345678-9abc-def0-1234-56789abcdef0
154
155
156 # network block
157 #
158 # Each network (usually AP's sharing the same SSID) is configured as a separate
159 # block in this configuration file. The network blocks are in preference order
160 # (the first match is used).
161 #
162 # network block fields:
163 #
164 # disabled:
165 #       0 = this network can be used (default)
166 #       1 = this network block is disabled (can be enabled through ctrl_iface,
167 #           e.g., with wpa_cli or wpa_gui)
168 #
169 # id_str: Network identifier string for external scripts. This value is passed
170 #       to external action script through wpa_cli as WPA_ID_STR environment
171 #       variable to make it easier to do network specific configuration.
172 #
173 # ssid: SSID (mandatory); either as an ASCII string with double quotation or
174 #       as hex string; network name
175 #
176 # scan_ssid:
177 #       0 = do not scan this SSID with specific Probe Request frames (default)
178 #       1 = scan with SSID-specific Probe Request frames (this can be used to
179 #           find APs that do not accept broadcast SSID or use multiple SSIDs;
180 #           this will add latency to scanning, so enable this only when needed)
181 #
182 # bssid: BSSID (optional); if set, this network block is used only when
183 #       associating with the AP using the configured BSSID
184 #
185 # priority: priority group (integer)
186 # By default, all networks will get same priority group (0). If some of the
187 # networks are more desirable, this field can be used to change the order in
188 # which wpa_supplicant goes through the networks when selecting a BSS. The
189 # priority groups will be iterated in decreasing priority (i.e., the larger the
190 # priority value, the sooner the network is matched against the scan results).
191 # Within each priority group, networks will be selected based on security
192 # policy, signal strength, etc.
193 # Please note that AP scanning with scan_ssid=1 and ap_scan=2 mode are not
194 # using this priority to select the order for scanning. Instead, they try the
195 # networks in the order that used in the configuration file.
196 #
197 # mode: IEEE 802.11 operation mode
198 # 0 = infrastructure (Managed) mode, i.e., associate with an AP (default)
199 # 1 = IBSS (ad-hoc, peer-to-peer)
200 # Note: IBSS can only be used with key_mgmt NONE (plaintext and static WEP)
201 # and key_mgmt=WPA-NONE (fixed group key TKIP/CCMP). In addition, ap_scan has
202 # to be set to 2 for IBSS. WPA-None requires following network block options:
203 # proto=WPA, key_mgmt=WPA-NONE, pairwise=NONE, group=TKIP (or CCMP, but not
204 # both), and psk must also be set.
205 #
206 # frequency: Channel frequency in megahertz (MHz) for IBSS, e.g.,
207 # 2412 = IEEE 802.11b/g channel 1. This value is used to configure the initial
208 # channel for IBSS (adhoc) networks. It is ignored in the infrastructure mode.
209 # In addition, this value is only used by the station that creates the IBSS. If
210 # an IBSS network with the configured SSID is already present, the frequency of
211 # the network will be used instead of this configured value.
212 #
213 # proto: list of accepted protocols
214 # WPA = WPA/IEEE 802.11i/D3.0
215 # RSN = WPA2/IEEE 802.11i (also WPA2 can be used as an alias for RSN)
216 # If not set, this defaults to: WPA RSN
217 #
218 # key_mgmt: list of accepted authenticated key management protocols
219 # WPA-PSK = WPA pre-shared key (this requires 'psk' field)
220 # WPA-EAP = WPA using EAP authentication (this can use an external
221 #       program, e.g., Xsupplicant, for IEEE 802.1X EAP Authentication
222 # IEEE8021X = IEEE 802.1X using EAP authentication and (optionally) dynamically
223 #       generated WEP keys
224 # NONE = WPA is not used; plaintext or static WEP could be used
225 # WPA-PSK-SHA256 = Like WPA-PSK but using stronger SHA256-based algorithms
226 # WPA-EAP-SHA256 = Like WPA-EAP but using stronger SHA256-based algorithms
227 # If not set, this defaults to: WPA-PSK WPA-EAP
228 #
229 # auth_alg: list of allowed IEEE 802.11 authentication algorithms
230 # OPEN = Open System authentication (required for WPA/WPA2)
231 # SHARED = Shared Key authentication (requires static WEP keys)
232 # LEAP = LEAP/Network EAP (only used with LEAP)
233 # If not set, automatic selection is used (Open System with LEAP enabled if
234 # LEAP is allowed as one of the EAP methods).
235 #
236 # pairwise: list of accepted pairwise (unicast) ciphers for WPA
237 # CCMP = AES in Counter mode with CBC-MAC [RFC 3610, IEEE 802.11i/D7.0]
238 # TKIP = Temporal Key Integrity Protocol [IEEE 802.11i/D7.0]
239 # NONE = Use only Group Keys (deprecated, should not be included if APs support
240 #       pairwise keys)
241 # If not set, this defaults to: CCMP TKIP
242 #
243 # group: list of accepted group (broadcast/multicast) ciphers for WPA
244 # CCMP = AES in Counter mode with CBC-MAC [RFC 3610, IEEE 802.11i/D7.0]
245 # TKIP = Temporal Key Integrity Protocol [IEEE 802.11i/D7.0]
246 # WEP104 = WEP (Wired Equivalent Privacy) with 104-bit key
247 # WEP40 = WEP (Wired Equivalent Privacy) with 40-bit key [IEEE 802.11]
248 # If not set, this defaults to: CCMP TKIP WEP104 WEP40
249 #
250 # psk: WPA preshared key; 256-bit pre-shared key
251 # The key used in WPA-PSK mode can be entered either as 64 hex-digits, i.e.,
252 # 32 bytes or as an ASCII passphrase (in which case, the real PSK will be
253 # generated using the passphrase and SSID). ASCII passphrase must be between
254 # 8 and 63 characters (inclusive).
255 # This field is not needed, if WPA-EAP is used.
256 # Note: Separate tool, wpa_passphrase, can be used to generate 256-bit keys
257 # from ASCII passphrase. This process uses lot of CPU and wpa_supplicant
258 # startup and reconfiguration time can be optimized by generating the PSK only
259 # only when the passphrase or SSID has actually changed.
260 #
261 # eapol_flags: IEEE 802.1X/EAPOL options (bit field)
262 # Dynamic WEP key required for non-WPA mode
263 # bit0 (1): require dynamically generated unicast WEP key
264 # bit1 (2): require dynamically generated broadcast WEP key
265 #       (3 = require both keys; default)
266 # Note: When using wired authentication, eapol_flags must be set to 0 for the
267 # authentication to be completed successfully.
268 #
269 # mixed_cell: This option can be used to configure whether so called mixed
270 # cells, i.e., networks that use both plaintext and encryption in the same
271 # SSID, are allowed when selecting a BSS form scan results.
272 # 0 = disabled (default)
273 # 1 = enabled
274 #
275 # proactive_key_caching:
276 # Enable/disable opportunistic PMKSA caching for WPA2.
277 # 0 = disabled (default)
278 # 1 = enabled
279 #
280 # wep_key0..3: Static WEP key (ASCII in double quotation, e.g. "abcde" or
281 # hex without quotation, e.g., 0102030405)
282 # wep_tx_keyidx: Default WEP key index (TX) (0..3)
283 #
284 # peerkey: Whether PeerKey negotiation for direct links (IEEE 802.11e DLS) is
285 # allowed. This is only used with RSN/WPA2.
286 # 0 = disabled (default)
287 # 1 = enabled
288 #peerkey=1
289 #
290 # wpa_ptk_rekey: Maximum lifetime for PTK in seconds. This can be used to
291 # enforce rekeying of PTK to mitigate some attacks against TKIP deficiencies.
292 #
293 # Following fields are only used with internal EAP implementation.
294 # eap: space-separated list of accepted EAP methods
295 #       MD5 = EAP-MD5 (unsecure and does not generate keying material ->
296 #                       cannot be used with WPA; to be used as a Phase 2 method
297 #                       with EAP-PEAP or EAP-TTLS)
298 #       MSCHAPV2 = EAP-MSCHAPv2 (cannot be used separately with WPA; to be used
299 #               as a Phase 2 method with EAP-PEAP or EAP-TTLS)
300 #       OTP = EAP-OTP (cannot be used separately with WPA; to be used
301 #               as a Phase 2 method with EAP-PEAP or EAP-TTLS)
302 #       GTC = EAP-GTC (cannot be used separately with WPA; to be used
303 #               as a Phase 2 method with EAP-PEAP or EAP-TTLS)
304 #       TLS = EAP-TLS (client and server certificate)
305 #       PEAP = EAP-PEAP (with tunnelled EAP authentication)
306 #       TTLS = EAP-TTLS (with tunnelled EAP or PAP/CHAP/MSCHAP/MSCHAPV2
307 #                        authentication)
308 #       If not set, all compiled in methods are allowed.
309 #
310 # identity: Identity string for EAP
311 #       This field is also used to configure user NAI for
312 #       EAP-PSK/PAX/SAKE/GPSK.
313 # anonymous_identity: Anonymous identity string for EAP (to be used as the
314 #       unencrypted identity with EAP types that support different tunnelled
315 #       identity, e.g., EAP-TTLS)
316 # password: Password string for EAP. This field can include either the
317 #       plaintext password (using ASCII or hex string) or a NtPasswordHash
318 #       (16-byte MD4 hash of password) in hash:<32 hex digits> format.
319 #       NtPasswordHash can only be used when the password is for MSCHAPv2 or
320 #       MSCHAP (EAP-MSCHAPv2, EAP-TTLS/MSCHAPv2, EAP-TTLS/MSCHAP, LEAP).
321 #       EAP-PSK (128-bit PSK), EAP-PAX (128-bit PSK), and EAP-SAKE (256-bit
322 #       PSK) is also configured using this field. For EAP-GPSK, this is a
323 #       variable length PSK.
324 # ca_cert: File path to CA certificate file (PEM/DER). This file can have one
325 #       or more trusted CA certificates. If ca_cert and ca_path are not
326 #       included, server certificate will not be verified. This is insecure and
327 #       a trusted CA certificate should always be configured when using
328 #       EAP-TLS/TTLS/PEAP. Full path should be used since working directory may
329 #       change when wpa_supplicant is run in the background.
330 #       On Windows, trusted CA certificates can be loaded from the system
331 #       certificate store by setting this to cert_store://<name>, e.g.,
332 #       ca_cert="cert_store://CA" or ca_cert="cert_store://ROOT".
333 #       Note that when running wpa_supplicant as an application, the user
334 #       certificate store (My user account) is used, whereas computer store
335 #       (Computer account) is used when running wpasvc as a service.
336 # ca_path: Directory path for CA certificate files (PEM). This path may
337 #       contain multiple CA certificates in OpenSSL format. Common use for this
338 #       is to point to system trusted CA list which is often installed into
339 #       directory like /etc/ssl/certs. If configured, these certificates are
340 #       added to the list of trusted CAs. ca_cert may also be included in that
341 #       case, but it is not required.
342 # client_cert: File path to client certificate file (PEM/DER)
343 #       Full path should be used since working directory may change when
344 #       wpa_supplicant is run in the background.
345 #       Alternatively, a named configuration blob can be used by setting this
346 #       to blob://<blob name>.
347 # private_key: File path to client private key file (PEM/DER/PFX)
348 #       When PKCS#12/PFX file (.p12/.pfx) is used, client_cert should be
349 #       commented out. Both the private key and certificate will be read from
350 #       the PKCS#12 file in this case. Full path should be used since working
351 #       directory may change when wpa_supplicant is run in the background.
352 #       Windows certificate store can be used by leaving client_cert out and
353 #       configuring private_key in one of the following formats:
354 #       cert://substring_to_match
355 #       hash://certificate_thumbprint_in_hex
356 #       for example: private_key="hash://63093aa9c47f56ae88334c7b65a4"
357 #       Note that when running wpa_supplicant as an application, the user
358 #       certificate store (My user account) is used, whereas computer store
359 #       (Computer account) is used when running wpasvc as a service.
360 #       Alternatively, a named configuration blob can be used by setting this
361 #       to blob://<blob name>.
362 # private_key_passwd: Password for private key file (if left out, this will be
363 #       asked through control interface)
364 # dh_file: File path to DH/DSA parameters file (in PEM format)
365 #       This is an optional configuration file for setting parameters for an
366 #       ephemeral DH key exchange. In most cases, the default RSA
367 #       authentication does not use this configuration. However, it is possible
368 #       setup RSA to use ephemeral DH key exchange. In addition, ciphers with
369 #       DSA keys always use ephemeral DH keys. This can be used to achieve
370 #       forward secrecy. If the file is in DSA parameters format, it will be
371 #       automatically converted into DH params.
372 # subject_match: Substring to be matched against the subject of the
373 #       authentication server certificate. If this string is set, the server
374 #       sertificate is only accepted if it contains this string in the subject.
375 #       The subject string is in following format:
376 #       /C=US/ST=CA/L=San Francisco/CN=Test AS/emailAddress=as@example.com
377 # altsubject_match: Semicolon separated string of entries to be matched against
378 #       the alternative subject name of the authentication server certificate.
379 #       If this string is set, the server sertificate is only accepted if it
380 #       contains one of the entries in an alternative subject name extension.
381 #       altSubjectName string is in following format: TYPE:VALUE
382 #       Example: EMAIL:server@example.com
383 #       Example: DNS:server.example.com;DNS:server2.example.com
384 #       Following types are supported: EMAIL, DNS, URI
385 # phase1: Phase1 (outer authentication, i.e., TLS tunnel) parameters
386 #       (string with field-value pairs, e.g., "peapver=0" or
387 #       "peapver=1 peaplabel=1")
388 #       'peapver' can be used to force which PEAP version (0 or 1) is used.
389 #       'peaplabel=1' can be used to force new label, "client PEAP encryption",
390 #       to be used during key derivation when PEAPv1 or newer. Most existing
391 #       PEAPv1 implementation seem to be using the old label, "client EAP
392 #       encryption", and wpa_supplicant is now using that as the default value.
393 #       Some servers, e.g., Radiator, may require peaplabel=1 configuration to
394 #       interoperate with PEAPv1; see eap_testing.txt for more details.
395 #       'peap_outer_success=0' can be used to terminate PEAP authentication on
396 #       tunneled EAP-Success. This is required with some RADIUS servers that
397 #       implement draft-josefsson-pppext-eap-tls-eap-05.txt (e.g.,
398 #       Lucent NavisRadius v4.4.0 with PEAP in "IETF Draft 5" mode)
399 #       include_tls_length=1 can be used to force wpa_supplicant to include
400 #       TLS Message Length field in all TLS messages even if they are not
401 #       fragmented.
402 #       sim_min_num_chal=3 can be used to configure EAP-SIM to require three
403 #       challenges (by default, it accepts 2 or 3)
404 #       result_ind=1 can be used to enable EAP-SIM and EAP-AKA to use
405 #       protected result indication.
406 #       'crypto_binding' option can be used to control PEAPv0 cryptobinding
407 #       behavior:
408 #        * 0 = do not use cryptobinding (default)
409 #        * 1 = use cryptobinding if server supports it
410 #        * 2 = require cryptobinding
411 #       EAP-WSC (WPS) uses following options: pin=<Device Password> or
412 #       pbc=1.
413 # phase2: Phase2 (inner authentication with TLS tunnel) parameters
414 #       (string with field-value pairs, e.g., "auth=MSCHAPV2" for EAP-PEAP or
415 #       "autheap=MSCHAPV2 autheap=MD5" for EAP-TTLS)
416 # Following certificate/private key fields are used in inner Phase2
417 # authentication when using EAP-TTLS or EAP-PEAP.
418 # ca_cert2: File path to CA certificate file. This file can have one or more
419 #       trusted CA certificates. If ca_cert2 and ca_path2 are not included,
420 #       server certificate will not be verified. This is insecure and a trusted
421 #       CA certificate should always be configured.
422 # ca_path2: Directory path for CA certificate files (PEM)
423 # client_cert2: File path to client certificate file
424 # private_key2: File path to client private key file
425 # private_key2_passwd: Password for private key file
426 # dh_file2: File path to DH/DSA parameters file (in PEM format)
427 # subject_match2: Substring to be matched against the subject of the
428 #       authentication server certificate.
429 # altsubject_match2: Substring to be matched against the alternative subject
430 #       name of the authentication server certificate.
431 #
432 # fragment_size: Maximum EAP fragment size in bytes (default 1398).
433 #       This value limits the fragment size for EAP methods that support
434 #       fragmentation (e.g., EAP-TLS and EAP-PEAP). This value should be set
435 #       small enough to make the EAP messages fit in MTU of the network
436 #       interface used for EAPOL. The default value is suitable for most
437 #       cases.
438 #
439 # EAP-FAST variables:
440 # pac_file: File path for the PAC entries. wpa_supplicant will need to be able
441 #       to create this file and write updates to it when PAC is being
442 #       provisioned or refreshed. Full path to the file should be used since
443 #       working directory may change when wpa_supplicant is run in the
444 #       background. Alternatively, a named configuration blob can be used by
445 #       setting this to blob://<blob name>
446 # phase1: fast_provisioning option can be used to enable in-line provisioning
447 #         of EAP-FAST credentials (PAC):
448 #         0 = disabled,
449 #         1 = allow unauthenticated provisioning,
450 #         2 = allow authenticated provisioning,
451 #         3 = allow both unauthenticated and authenticated provisioning
452 #       fast_max_pac_list_len=<num> option can be used to set the maximum
453 #               number of PAC entries to store in a PAC list (default: 10)
454 #       fast_pac_format=binary option can be used to select binary format for
455 #               storing PAC entries in order to save some space (the default
456 #               text format uses about 2.5 times the size of minimal binary
457 #               format)
458 #
459 # wpa_supplicant supports number of "EAP workarounds" to work around
460 # interoperability issues with incorrectly behaving authentication servers.
461 # These are enabled by default because some of the issues are present in large
462 # number of authentication servers. Strict EAP conformance mode can be
463 # configured by disabling workarounds with eap_workaround=0.
464
465 # Example blocks:
466
467 # Simple case: WPA-PSK, PSK as an ASCII passphrase, allow all valid ciphers
468 network={
469         ssid="simple"
470         psk="very secret passphrase"
471         priority=5
472 }
473
474 # Same as previous, but request SSID-specific scanning (for APs that reject
475 # broadcast SSID)
476 network={
477         ssid="second ssid"
478         scan_ssid=1
479         psk="very secret passphrase"
480         priority=2
481 }
482
483 # Only WPA-PSK is used. Any valid cipher combination is accepted.
484 network={
485         ssid="example"
486         proto=WPA
487         key_mgmt=WPA-PSK
488         pairwise=CCMP TKIP
489         group=CCMP TKIP WEP104 WEP40
490         psk=06b4be19da289f475aa46a33cb793029d4ab3db7a23ee92382eb0106c72ac7bb
491         priority=2
492 }
493
494 # WPA-Personal(PSK) with TKIP and enforcement for frequent PTK rekeying
495 network={
496         ssid="example"
497         proto=WPA
498         key_mgmt=WPA-PSK
499         pairwise=TKIP
500         group=TKIP
501         psk="not so secure passphrase"
502         wpa_ptk_rekey=600
503 }
504
505 # Only WPA-EAP is used. Both CCMP and TKIP is accepted. An AP that used WEP104
506 # or WEP40 as the group cipher will not be accepted.
507 network={
508         ssid="example"
509         proto=RSN
510         key_mgmt=WPA-EAP
511         pairwise=CCMP TKIP
512         group=CCMP TKIP
513         eap=TLS
514         identity="user@example.com"
515         ca_cert="/etc/cert/ca.pem"
516         client_cert="/etc/cert/user.pem"
517         private_key="/etc/cert/user.prv"
518         private_key_passwd="password"
519         priority=1
520 }
521
522 # EAP-PEAP/MSCHAPv2 configuration for RADIUS servers that use the new peaplabel
523 # (e.g., Radiator)
524 network={
525         ssid="example"
526         key_mgmt=WPA-EAP
527         eap=PEAP
528         identity="user@example.com"
529         password="foobar"
530         ca_cert="/etc/cert/ca.pem"
531         phase1="peaplabel=1"
532         phase2="auth=MSCHAPV2"
533         priority=10
534 }
535
536 # EAP-TTLS/EAP-MD5-Challenge configuration with anonymous identity for the
537 # unencrypted use. Real identity is sent only within an encrypted TLS tunnel.
538 network={
539         ssid="example"
540         key_mgmt=WPA-EAP
541         eap=TTLS
542         identity="user@example.com"
543         anonymous_identity="anonymous@example.com"
544         password="foobar"
545         ca_cert="/etc/cert/ca.pem"
546         priority=2
547 }
548
549 # EAP-TTLS/MSCHAPv2 configuration with anonymous identity for the unencrypted
550 # use. Real identity is sent only within an encrypted TLS tunnel.
551 network={
552         ssid="example"
553         key_mgmt=WPA-EAP
554         eap=TTLS
555         identity="user@example.com"
556         anonymous_identity="anonymous@example.com"
557         password="foobar"
558         ca_cert="/etc/cert/ca.pem"
559         phase2="auth=MSCHAPV2"
560 }
561
562 # WPA-EAP, EAP-TTLS with different CA certificate used for outer and inner
563 # authentication.
564 network={
565         ssid="example"
566         key_mgmt=WPA-EAP
567         eap=TTLS
568         # Phase1 / outer authentication
569         anonymous_identity="anonymous@example.com"
570         ca_cert="/etc/cert/ca.pem"
571         # Phase 2 / inner authentication
572         phase2="autheap=TLS"
573         ca_cert2="/etc/cert/ca2.pem"
574         client_cert2="/etc/cer/user.pem"
575         private_key2="/etc/cer/user.prv"
576         private_key2_passwd="password"
577         priority=2
578 }
579
580 # Both WPA-PSK and WPA-EAP is accepted. Only CCMP is accepted as pairwise and
581 # group cipher.
582 network={
583         ssid="example"
584         bssid=00:11:22:33:44:55
585         proto=WPA RSN
586         key_mgmt=WPA-PSK WPA-EAP
587         pairwise=CCMP
588         group=CCMP
589         psk=06b4be19da289f475aa46a33cb793029d4ab3db7a23ee92382eb0106c72ac7bb
590 }
591
592 # Special characters in SSID, so use hex string. Default to WPA-PSK, WPA-EAP
593 # and all valid ciphers.
594 network={
595         ssid=00010203
596         psk=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
597 }
598
599
600 # EAP-SIM with a GSM SIM or USIM
601 network={
602         ssid="eap-sim-test"
603         key_mgmt=WPA-EAP
604         eap=SIM
605         pin="1234"
606         pcsc=""
607 }
608
609
610 # EAP-PSK
611 network={
612         ssid="eap-psk-test"
613         key_mgmt=WPA-EAP
614         eap=PSK
615         anonymous_identity="eap_psk_user"
616         password=06b4be19da289f475aa46a33cb793029
617         identity="eap_psk_user@example.com"
618 }
619
620
621 # IEEE 802.1X/EAPOL with dynamically generated WEP keys (i.e., no WPA) using
622 # EAP-TLS for authentication and key generation; require both unicast and
623 # broadcast WEP keys.
624 network={
625         ssid="1x-test"
626         key_mgmt=IEEE8021X
627         eap=TLS
628         identity="user@example.com"
629         ca_cert="/etc/cert/ca.pem"
630         client_cert="/etc/cert/user.pem"
631         private_key="/etc/cert/user.prv"
632         private_key_passwd="password"
633         eapol_flags=3
634 }
635
636
637 # LEAP with dynamic WEP keys
638 network={
639         ssid="leap-example"
640         key_mgmt=IEEE8021X
641         eap=LEAP
642         identity="user"
643         password="foobar"
644 }
645
646 # EAP-IKEv2 using shared secrets for both server and peer authentication
647 network={
648         ssid="ikev2-example"
649         key_mgmt=WPA-EAP
650         eap=IKEV2
651         identity="user"
652         password="foobar"
653 }
654
655 # EAP-FAST with WPA (WPA or WPA2)
656 network={
657         ssid="eap-fast-test"
658         key_mgmt=WPA-EAP
659         eap=FAST
660         anonymous_identity="FAST-000102030405"
661         identity="username"
662         password="password"
663         phase1="fast_provisioning=1"
664         pac_file="/etc/wpa_supplicant.eap-fast-pac"
665 }
666
667 network={
668         ssid="eap-fast-test"
669         key_mgmt=WPA-EAP
670         eap=FAST
671         anonymous_identity="FAST-000102030405"
672         identity="username"
673         password="password"
674         phase1="fast_provisioning=1"
675         pac_file="blob://eap-fast-pac"
676 }
677
678 # Plaintext connection (no WPA, no IEEE 802.1X)
679 network={
680         ssid="plaintext-test"
681         key_mgmt=NONE
682 }
683
684
685 # Shared WEP key connection (no WPA, no IEEE 802.1X)
686 network={
687         ssid="static-wep-test"
688         key_mgmt=NONE
689         wep_key0="abcde"
690         wep_key1=0102030405
691         wep_key2="1234567890123"
692         wep_tx_keyidx=0
693         priority=5
694 }
695
696
697 # Shared WEP key connection (no WPA, no IEEE 802.1X) using Shared Key
698 # IEEE 802.11 authentication
699 network={
700         ssid="static-wep-test2"
701         key_mgmt=NONE
702         wep_key0="abcde"
703         wep_key1=0102030405
704         wep_key2="1234567890123"
705         wep_tx_keyidx=0
706         priority=5
707         auth_alg=SHARED
708 }
709
710
711 # IBSS/ad-hoc network with WPA-None/TKIP.
712 network={
713         ssid="test adhoc"
714         mode=1
715         frequency=2412
716         proto=WPA
717         key_mgmt=WPA-NONE
718         pairwise=NONE
719         group=TKIP
720         psk="secret passphrase"
721 }
722
723
724 # Catch all example that allows more or less all configuration modes
725 network={
726         ssid="example"
727         scan_ssid=1
728         key_mgmt=WPA-EAP WPA-PSK IEEE8021X NONE
729         pairwise=CCMP TKIP
730         group=CCMP TKIP WEP104 WEP40
731         psk="very secret passphrase"
732         eap=TTLS PEAP TLS
733         identity="user@example.com"
734         password="foobar"
735         ca_cert="/etc/cert/ca.pem"
736         client_cert="/etc/cert/user.pem"
737         private_key="/etc/cert/user.prv"
738         private_key_passwd="password"
739         phase1="peaplabel=0"
740 }
741
742 # Example of EAP-TLS with smartcard (openssl engine)
743 network={
744         ssid="example"
745         key_mgmt=WPA-EAP
746         eap=TLS
747         proto=RSN
748         pairwise=CCMP TKIP
749         group=CCMP TKIP
750         identity="user@example.com"
751         ca_cert="/etc/cert/ca.pem"
752         client_cert="/etc/cert/user.pem"
753
754         engine=1
755
756         # The engine configured here must be available. Look at
757         # OpenSSL engine support in the global section.
758         # The key available through the engine must be the private key
759         # matching the client certificate configured above.
760
761         # use the opensc engine
762         #engine_id="opensc"
763         #key_id="45"
764
765         # use the pkcs11 engine
766         engine_id="pkcs11"
767         key_id="id_45"
768
769         # Optional PIN configuration; this can be left out and PIN will be
770         # asked through the control interface
771         pin="1234"
772 }
773
774 # Example configuration showing how to use an inlined blob as a CA certificate
775 # data instead of using external file
776 network={
777         ssid="example"
778         key_mgmt=WPA-EAP
779         eap=TTLS
780         identity="user@example.com"
781         anonymous_identity="anonymous@example.com"
782         password="foobar"
783         ca_cert="blob://exampleblob"
784         priority=20
785 }
786
787 blob-base64-exampleblob={
788 SGVsbG8gV29ybGQhCg==
789 }
790
791
792 # Wildcard match for SSID (plaintext APs only). This example select any
793 # open AP regardless of its SSID.
794 network={
795         key_mgmt=NONE
796 }