Fix test-sha256 build
[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 # If not configured, UUID will be generated based on the local MAC address.
154 #uuid=12345678-9abc-def0-1234-56789abcdef0
155
156 # Device Name
157 # User-friendly description of device; up to 32 octets encoded in UTF-8
158 #device_name=Wireless Client
159
160 # Manufacturer
161 # The manufacturer of the device (up to 64 ASCII characters)
162 #manufacturer=Company
163
164 # Model Name
165 # Model of the device (up to 32 ASCII characters)
166 #model_name=cmodel
167
168 # Model Number
169 # Additional device description (up to 32 ASCII characters)
170 #model_number=123
171
172 # Serial Number
173 # Serial number of the device (up to 32 characters)
174 #serial_number=12345
175
176 # Primary Device Type
177 # Used format: <categ>-<OUI>-<subcateg>
178 # categ = Category as an integer value
179 # OUI = OUI and type octet as a 4-octet hex-encoded value; 0050F204 for
180 #       default WPS OUI
181 # subcateg = OUI-specific Sub Category as an integer value
182 # Examples:
183 #   1-0050F204-1 (Computer / PC)
184 #   1-0050F204-2 (Computer / Server)
185 #   5-0050F204-1 (Storage / NAS)
186 #   6-0050F204-1 (Network Infrastructure / AP)
187 #device_type=1-0050F204-1
188
189 # OS Version
190 # 4-octet operating system version number (hex string)
191 #os_version=01020300
192
193 # Credential processing
194 #   0 = process received credentials internally (default)
195 #   1 = do not process received credentials; just pass them over ctrl_iface to
196 #       external program(s)
197 #   2 = process received credentials internally and pass them over ctrl_iface
198 #       to external program(s)
199 #wps_cred_processing=0
200
201 # network block
202 #
203 # Each network (usually AP's sharing the same SSID) is configured as a separate
204 # block in this configuration file. The network blocks are in preference order
205 # (the first match is used).
206 #
207 # network block fields:
208 #
209 # disabled:
210 #       0 = this network can be used (default)
211 #       1 = this network block is disabled (can be enabled through ctrl_iface,
212 #           e.g., with wpa_cli or wpa_gui)
213 #
214 # id_str: Network identifier string for external scripts. This value is passed
215 #       to external action script through wpa_cli as WPA_ID_STR environment
216 #       variable to make it easier to do network specific configuration.
217 #
218 # ssid: SSID (mandatory); either as an ASCII string with double quotation or
219 #       as hex string; network name
220 #
221 # scan_ssid:
222 #       0 = do not scan this SSID with specific Probe Request frames (default)
223 #       1 = scan with SSID-specific Probe Request frames (this can be used to
224 #           find APs that do not accept broadcast SSID or use multiple SSIDs;
225 #           this will add latency to scanning, so enable this only when needed)
226 #
227 # bssid: BSSID (optional); if set, this network block is used only when
228 #       associating with the AP using the configured BSSID
229 #
230 # priority: priority group (integer)
231 # By default, all networks will get same priority group (0). If some of the
232 # networks are more desirable, this field can be used to change the order in
233 # which wpa_supplicant goes through the networks when selecting a BSS. The
234 # priority groups will be iterated in decreasing priority (i.e., the larger the
235 # priority value, the sooner the network is matched against the scan results).
236 # Within each priority group, networks will be selected based on security
237 # policy, signal strength, etc.
238 # Please note that AP scanning with scan_ssid=1 and ap_scan=2 mode are not
239 # using this priority to select the order for scanning. Instead, they try the
240 # networks in the order that used in the configuration file.
241 #
242 # mode: IEEE 802.11 operation mode
243 # 0 = infrastructure (Managed) mode, i.e., associate with an AP (default)
244 # 1 = IBSS (ad-hoc, peer-to-peer)
245 # Note: IBSS can only be used with key_mgmt NONE (plaintext and static WEP)
246 # and key_mgmt=WPA-NONE (fixed group key TKIP/CCMP). In addition, ap_scan has
247 # to be set to 2 for IBSS. WPA-None requires following network block options:
248 # proto=WPA, key_mgmt=WPA-NONE, pairwise=NONE, group=TKIP (or CCMP, but not
249 # both), and psk must also be set.
250 #
251 # frequency: Channel frequency in megahertz (MHz) for IBSS, e.g.,
252 # 2412 = IEEE 802.11b/g channel 1. This value is used to configure the initial
253 # channel for IBSS (adhoc) networks. It is ignored in the infrastructure mode.
254 # In addition, this value is only used by the station that creates the IBSS. If
255 # an IBSS network with the configured SSID is already present, the frequency of
256 # the network will be used instead of this configured value.
257 #
258 # proto: list of accepted protocols
259 # WPA = WPA/IEEE 802.11i/D3.0
260 # RSN = WPA2/IEEE 802.11i (also WPA2 can be used as an alias for RSN)
261 # If not set, this defaults to: WPA RSN
262 #
263 # key_mgmt: list of accepted authenticated key management protocols
264 # WPA-PSK = WPA pre-shared key (this requires 'psk' field)
265 # WPA-EAP = WPA using EAP authentication (this can use an external
266 #       program, e.g., Xsupplicant, for IEEE 802.1X EAP Authentication
267 # IEEE8021X = IEEE 802.1X using EAP authentication and (optionally) dynamically
268 #       generated WEP keys
269 # NONE = WPA is not used; plaintext or static WEP could be used
270 # WPA-PSK-SHA256 = Like WPA-PSK but using stronger SHA256-based algorithms
271 # WPA-EAP-SHA256 = Like WPA-EAP but using stronger SHA256-based algorithms
272 # If not set, this defaults to: WPA-PSK WPA-EAP
273 #
274 # auth_alg: list of allowed IEEE 802.11 authentication algorithms
275 # OPEN = Open System authentication (required for WPA/WPA2)
276 # SHARED = Shared Key authentication (requires static WEP keys)
277 # LEAP = LEAP/Network EAP (only used with LEAP)
278 # If not set, automatic selection is used (Open System with LEAP enabled if
279 # LEAP is allowed as one of the EAP methods).
280 #
281 # pairwise: list of accepted pairwise (unicast) ciphers for WPA
282 # CCMP = AES in Counter mode with CBC-MAC [RFC 3610, IEEE 802.11i/D7.0]
283 # TKIP = Temporal Key Integrity Protocol [IEEE 802.11i/D7.0]
284 # NONE = Use only Group Keys (deprecated, should not be included if APs support
285 #       pairwise keys)
286 # If not set, this defaults to: CCMP TKIP
287 #
288 # group: list of accepted group (broadcast/multicast) ciphers for WPA
289 # CCMP = AES in Counter mode with CBC-MAC [RFC 3610, IEEE 802.11i/D7.0]
290 # TKIP = Temporal Key Integrity Protocol [IEEE 802.11i/D7.0]
291 # WEP104 = WEP (Wired Equivalent Privacy) with 104-bit key
292 # WEP40 = WEP (Wired Equivalent Privacy) with 40-bit key [IEEE 802.11]
293 # If not set, this defaults to: CCMP TKIP WEP104 WEP40
294 #
295 # psk: WPA preshared key; 256-bit pre-shared key
296 # The key used in WPA-PSK mode can be entered either as 64 hex-digits, i.e.,
297 # 32 bytes or as an ASCII passphrase (in which case, the real PSK will be
298 # generated using the passphrase and SSID). ASCII passphrase must be between
299 # 8 and 63 characters (inclusive).
300 # This field is not needed, if WPA-EAP is used.
301 # Note: Separate tool, wpa_passphrase, can be used to generate 256-bit keys
302 # from ASCII passphrase. This process uses lot of CPU and wpa_supplicant
303 # startup and reconfiguration time can be optimized by generating the PSK only
304 # only when the passphrase or SSID has actually changed.
305 #
306 # eapol_flags: IEEE 802.1X/EAPOL options (bit field)
307 # Dynamic WEP key required for non-WPA mode
308 # bit0 (1): require dynamically generated unicast WEP key
309 # bit1 (2): require dynamically generated broadcast WEP key
310 #       (3 = require both keys; default)
311 # Note: When using wired authentication, eapol_flags must be set to 0 for the
312 # authentication to be completed successfully.
313 #
314 # mixed_cell: This option can be used to configure whether so called mixed
315 # cells, i.e., networks that use both plaintext and encryption in the same
316 # SSID, are allowed when selecting a BSS form scan results.
317 # 0 = disabled (default)
318 # 1 = enabled
319 #
320 # proactive_key_caching:
321 # Enable/disable opportunistic PMKSA caching for WPA2.
322 # 0 = disabled (default)
323 # 1 = enabled
324 #
325 # wep_key0..3: Static WEP key (ASCII in double quotation, e.g. "abcde" or
326 # hex without quotation, e.g., 0102030405)
327 # wep_tx_keyidx: Default WEP key index (TX) (0..3)
328 #
329 # peerkey: Whether PeerKey negotiation for direct links (IEEE 802.11e DLS) is
330 # allowed. This is only used with RSN/WPA2.
331 # 0 = disabled (default)
332 # 1 = enabled
333 #peerkey=1
334 #
335 # wpa_ptk_rekey: Maximum lifetime for PTK in seconds. This can be used to
336 # enforce rekeying of PTK to mitigate some attacks against TKIP deficiencies.
337 #
338 # Following fields are only used with internal EAP implementation.
339 # eap: space-separated list of accepted EAP methods
340 #       MD5 = EAP-MD5 (unsecure and does not generate keying material ->
341 #                       cannot be used with WPA; to be used as a Phase 2 method
342 #                       with EAP-PEAP or EAP-TTLS)
343 #       MSCHAPV2 = EAP-MSCHAPv2 (cannot be used separately with WPA; to be used
344 #               as a Phase 2 method with EAP-PEAP or EAP-TTLS)
345 #       OTP = EAP-OTP (cannot be used separately with WPA; to be used
346 #               as a Phase 2 method with EAP-PEAP or EAP-TTLS)
347 #       GTC = EAP-GTC (cannot be used separately with WPA; to be used
348 #               as a Phase 2 method with EAP-PEAP or EAP-TTLS)
349 #       TLS = EAP-TLS (client and server certificate)
350 #       PEAP = EAP-PEAP (with tunnelled EAP authentication)
351 #       TTLS = EAP-TTLS (with tunnelled EAP or PAP/CHAP/MSCHAP/MSCHAPV2
352 #                        authentication)
353 #       If not set, all compiled in methods are allowed.
354 #
355 # identity: Identity string for EAP
356 #       This field is also used to configure user NAI for
357 #       EAP-PSK/PAX/SAKE/GPSK.
358 # anonymous_identity: Anonymous identity string for EAP (to be used as the
359 #       unencrypted identity with EAP types that support different tunnelled
360 #       identity, e.g., EAP-TTLS)
361 # password: Password string for EAP. This field can include either the
362 #       plaintext password (using ASCII or hex string) or a NtPasswordHash
363 #       (16-byte MD4 hash of password) in hash:<32 hex digits> format.
364 #       NtPasswordHash can only be used when the password is for MSCHAPv2 or
365 #       MSCHAP (EAP-MSCHAPv2, EAP-TTLS/MSCHAPv2, EAP-TTLS/MSCHAP, LEAP).
366 #       EAP-PSK (128-bit PSK), EAP-PAX (128-bit PSK), and EAP-SAKE (256-bit
367 #       PSK) is also configured using this field. For EAP-GPSK, this is a
368 #       variable length PSK.
369 # ca_cert: File path to CA certificate file (PEM/DER). This file can have one
370 #       or more trusted CA certificates. If ca_cert and ca_path are not
371 #       included, server certificate will not be verified. This is insecure and
372 #       a trusted CA certificate should always be configured when using
373 #       EAP-TLS/TTLS/PEAP. Full path should be used since working directory may
374 #       change when wpa_supplicant is run in the background.
375 #       On Windows, trusted CA certificates can be loaded from the system
376 #       certificate store by setting this to cert_store://<name>, e.g.,
377 #       ca_cert="cert_store://CA" or ca_cert="cert_store://ROOT".
378 #       Note that when running wpa_supplicant as an application, the user
379 #       certificate store (My user account) is used, whereas computer store
380 #       (Computer account) is used when running wpasvc as a service.
381 # ca_path: Directory path for CA certificate files (PEM). This path may
382 #       contain multiple CA certificates in OpenSSL format. Common use for this
383 #       is to point to system trusted CA list which is often installed into
384 #       directory like /etc/ssl/certs. If configured, these certificates are
385 #       added to the list of trusted CAs. ca_cert may also be included in that
386 #       case, but it is not required.
387 # client_cert: File path to client certificate file (PEM/DER)
388 #       Full path should be used since working directory may change when
389 #       wpa_supplicant is run in the background.
390 #       Alternatively, a named configuration blob can be used by setting this
391 #       to blob://<blob name>.
392 # private_key: File path to client private key file (PEM/DER/PFX)
393 #       When PKCS#12/PFX file (.p12/.pfx) is used, client_cert should be
394 #       commented out. Both the private key and certificate will be read from
395 #       the PKCS#12 file in this case. Full path should be used since working
396 #       directory may change when wpa_supplicant is run in the background.
397 #       Windows certificate store can be used by leaving client_cert out and
398 #       configuring private_key in one of the following formats:
399 #       cert://substring_to_match
400 #       hash://certificate_thumbprint_in_hex
401 #       for example: private_key="hash://63093aa9c47f56ae88334c7b65a4"
402 #       Note that when running wpa_supplicant as an application, the user
403 #       certificate store (My user account) is used, whereas computer store
404 #       (Computer account) is used when running wpasvc as a service.
405 #       Alternatively, a named configuration blob can be used by setting this
406 #       to blob://<blob name>.
407 # private_key_passwd: Password for private key file (if left out, this will be
408 #       asked through control interface)
409 # dh_file: File path to DH/DSA parameters file (in PEM format)
410 #       This is an optional configuration file for setting parameters for an
411 #       ephemeral DH key exchange. In most cases, the default RSA
412 #       authentication does not use this configuration. However, it is possible
413 #       setup RSA to use ephemeral DH key exchange. In addition, ciphers with
414 #       DSA keys always use ephemeral DH keys. This can be used to achieve
415 #       forward secrecy. If the file is in DSA parameters format, it will be
416 #       automatically converted into DH params.
417 # subject_match: Substring to be matched against the subject of the
418 #       authentication server certificate. If this string is set, the server
419 #       sertificate is only accepted if it contains this string in the subject.
420 #       The subject string is in following format:
421 #       /C=US/ST=CA/L=San Francisco/CN=Test AS/emailAddress=as@example.com
422 # altsubject_match: Semicolon separated string of entries to be matched against
423 #       the alternative subject name of the authentication server certificate.
424 #       If this string is set, the server sertificate is only accepted if it
425 #       contains one of the entries in an alternative subject name extension.
426 #       altSubjectName string is in following format: TYPE:VALUE
427 #       Example: EMAIL:server@example.com
428 #       Example: DNS:server.example.com;DNS:server2.example.com
429 #       Following types are supported: EMAIL, DNS, URI
430 # phase1: Phase1 (outer authentication, i.e., TLS tunnel) parameters
431 #       (string with field-value pairs, e.g., "peapver=0" or
432 #       "peapver=1 peaplabel=1")
433 #       'peapver' can be used to force which PEAP version (0 or 1) is used.
434 #       'peaplabel=1' can be used to force new label, "client PEAP encryption",
435 #       to be used during key derivation when PEAPv1 or newer. Most existing
436 #       PEAPv1 implementation seem to be using the old label, "client EAP
437 #       encryption", and wpa_supplicant is now using that as the default value.
438 #       Some servers, e.g., Radiator, may require peaplabel=1 configuration to
439 #       interoperate with PEAPv1; see eap_testing.txt for more details.
440 #       'peap_outer_success=0' can be used to terminate PEAP authentication on
441 #       tunneled EAP-Success. This is required with some RADIUS servers that
442 #       implement draft-josefsson-pppext-eap-tls-eap-05.txt (e.g.,
443 #       Lucent NavisRadius v4.4.0 with PEAP in "IETF Draft 5" mode)
444 #       include_tls_length=1 can be used to force wpa_supplicant to include
445 #       TLS Message Length field in all TLS messages even if they are not
446 #       fragmented.
447 #       sim_min_num_chal=3 can be used to configure EAP-SIM to require three
448 #       challenges (by default, it accepts 2 or 3)
449 #       result_ind=1 can be used to enable EAP-SIM and EAP-AKA to use
450 #       protected result indication.
451 #       'crypto_binding' option can be used to control PEAPv0 cryptobinding
452 #       behavior:
453 #        * 0 = do not use cryptobinding (default)
454 #        * 1 = use cryptobinding if server supports it
455 #        * 2 = require cryptobinding
456 #       EAP-WSC (WPS) uses following options: pin=<Device Password> or
457 #       pbc=1.
458 # phase2: Phase2 (inner authentication with TLS tunnel) parameters
459 #       (string with field-value pairs, e.g., "auth=MSCHAPV2" for EAP-PEAP or
460 #       "autheap=MSCHAPV2 autheap=MD5" for EAP-TTLS)
461 # Following certificate/private key fields are used in inner Phase2
462 # authentication when using EAP-TTLS or EAP-PEAP.
463 # ca_cert2: File path to CA certificate file. This file can have one or more
464 #       trusted CA certificates. If ca_cert2 and ca_path2 are not included,
465 #       server certificate will not be verified. This is insecure and a trusted
466 #       CA certificate should always be configured.
467 # ca_path2: Directory path for CA certificate files (PEM)
468 # client_cert2: File path to client certificate file
469 # private_key2: File path to client private key file
470 # private_key2_passwd: Password for private key file
471 # dh_file2: File path to DH/DSA parameters file (in PEM format)
472 # subject_match2: Substring to be matched against the subject of the
473 #       authentication server certificate.
474 # altsubject_match2: Substring to be matched against the alternative subject
475 #       name of the authentication server certificate.
476 #
477 # fragment_size: Maximum EAP fragment size in bytes (default 1398).
478 #       This value limits the fragment size for EAP methods that support
479 #       fragmentation (e.g., EAP-TLS and EAP-PEAP). This value should be set
480 #       small enough to make the EAP messages fit in MTU of the network
481 #       interface used for EAPOL. The default value is suitable for most
482 #       cases.
483 #
484 # EAP-FAST variables:
485 # pac_file: File path for the PAC entries. wpa_supplicant will need to be able
486 #       to create this file and write updates to it when PAC is being
487 #       provisioned or refreshed. Full path to the file should be used since
488 #       working directory may change when wpa_supplicant is run in the
489 #       background. Alternatively, a named configuration blob can be used by
490 #       setting this to blob://<blob name>
491 # phase1: fast_provisioning option can be used to enable in-line provisioning
492 #         of EAP-FAST credentials (PAC):
493 #         0 = disabled,
494 #         1 = allow unauthenticated provisioning,
495 #         2 = allow authenticated provisioning,
496 #         3 = allow both unauthenticated and authenticated provisioning
497 #       fast_max_pac_list_len=<num> option can be used to set the maximum
498 #               number of PAC entries to store in a PAC list (default: 10)
499 #       fast_pac_format=binary option can be used to select binary format for
500 #               storing PAC entries in order to save some space (the default
501 #               text format uses about 2.5 times the size of minimal binary
502 #               format)
503 #
504 # wpa_supplicant supports number of "EAP workarounds" to work around
505 # interoperability issues with incorrectly behaving authentication servers.
506 # These are enabled by default because some of the issues are present in large
507 # number of authentication servers. Strict EAP conformance mode can be
508 # configured by disabling workarounds with eap_workaround=0.
509
510 # Example blocks:
511
512 # Simple case: WPA-PSK, PSK as an ASCII passphrase, allow all valid ciphers
513 network={
514         ssid="simple"
515         psk="very secret passphrase"
516         priority=5
517 }
518
519 # Same as previous, but request SSID-specific scanning (for APs that reject
520 # broadcast SSID)
521 network={
522         ssid="second ssid"
523         scan_ssid=1
524         psk="very secret passphrase"
525         priority=2
526 }
527
528 # Only WPA-PSK is used. Any valid cipher combination is accepted.
529 network={
530         ssid="example"
531         proto=WPA
532         key_mgmt=WPA-PSK
533         pairwise=CCMP TKIP
534         group=CCMP TKIP WEP104 WEP40
535         psk=06b4be19da289f475aa46a33cb793029d4ab3db7a23ee92382eb0106c72ac7bb
536         priority=2
537 }
538
539 # WPA-Personal(PSK) with TKIP and enforcement for frequent PTK rekeying
540 network={
541         ssid="example"
542         proto=WPA
543         key_mgmt=WPA-PSK
544         pairwise=TKIP
545         group=TKIP
546         psk="not so secure passphrase"
547         wpa_ptk_rekey=600
548 }
549
550 # Only WPA-EAP is used. Both CCMP and TKIP is accepted. An AP that used WEP104
551 # or WEP40 as the group cipher will not be accepted.
552 network={
553         ssid="example"
554         proto=RSN
555         key_mgmt=WPA-EAP
556         pairwise=CCMP TKIP
557         group=CCMP TKIP
558         eap=TLS
559         identity="user@example.com"
560         ca_cert="/etc/cert/ca.pem"
561         client_cert="/etc/cert/user.pem"
562         private_key="/etc/cert/user.prv"
563         private_key_passwd="password"
564         priority=1
565 }
566
567 # EAP-PEAP/MSCHAPv2 configuration for RADIUS servers that use the new peaplabel
568 # (e.g., Radiator)
569 network={
570         ssid="example"
571         key_mgmt=WPA-EAP
572         eap=PEAP
573         identity="user@example.com"
574         password="foobar"
575         ca_cert="/etc/cert/ca.pem"
576         phase1="peaplabel=1"
577         phase2="auth=MSCHAPV2"
578         priority=10
579 }
580
581 # EAP-TTLS/EAP-MD5-Challenge configuration with anonymous identity for the
582 # unencrypted use. Real identity is sent only within an encrypted TLS tunnel.
583 network={
584         ssid="example"
585         key_mgmt=WPA-EAP
586         eap=TTLS
587         identity="user@example.com"
588         anonymous_identity="anonymous@example.com"
589         password="foobar"
590         ca_cert="/etc/cert/ca.pem"
591         priority=2
592 }
593
594 # EAP-TTLS/MSCHAPv2 configuration with anonymous identity for the unencrypted
595 # use. Real identity is sent only within an encrypted TLS tunnel.
596 network={
597         ssid="example"
598         key_mgmt=WPA-EAP
599         eap=TTLS
600         identity="user@example.com"
601         anonymous_identity="anonymous@example.com"
602         password="foobar"
603         ca_cert="/etc/cert/ca.pem"
604         phase2="auth=MSCHAPV2"
605 }
606
607 # WPA-EAP, EAP-TTLS with different CA certificate used for outer and inner
608 # authentication.
609 network={
610         ssid="example"
611         key_mgmt=WPA-EAP
612         eap=TTLS
613         # Phase1 / outer authentication
614         anonymous_identity="anonymous@example.com"
615         ca_cert="/etc/cert/ca.pem"
616         # Phase 2 / inner authentication
617         phase2="autheap=TLS"
618         ca_cert2="/etc/cert/ca2.pem"
619         client_cert2="/etc/cer/user.pem"
620         private_key2="/etc/cer/user.prv"
621         private_key2_passwd="password"
622         priority=2
623 }
624
625 # Both WPA-PSK and WPA-EAP is accepted. Only CCMP is accepted as pairwise and
626 # group cipher.
627 network={
628         ssid="example"
629         bssid=00:11:22:33:44:55
630         proto=WPA RSN
631         key_mgmt=WPA-PSK WPA-EAP
632         pairwise=CCMP
633         group=CCMP
634         psk=06b4be19da289f475aa46a33cb793029d4ab3db7a23ee92382eb0106c72ac7bb
635 }
636
637 # Special characters in SSID, so use hex string. Default to WPA-PSK, WPA-EAP
638 # and all valid ciphers.
639 network={
640         ssid=00010203
641         psk=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
642 }
643
644
645 # EAP-SIM with a GSM SIM or USIM
646 network={
647         ssid="eap-sim-test"
648         key_mgmt=WPA-EAP
649         eap=SIM
650         pin="1234"
651         pcsc=""
652 }
653
654
655 # EAP-PSK
656 network={
657         ssid="eap-psk-test"
658         key_mgmt=WPA-EAP
659         eap=PSK
660         anonymous_identity="eap_psk_user"
661         password=06b4be19da289f475aa46a33cb793029
662         identity="eap_psk_user@example.com"
663 }
664
665
666 # IEEE 802.1X/EAPOL with dynamically generated WEP keys (i.e., no WPA) using
667 # EAP-TLS for authentication and key generation; require both unicast and
668 # broadcast WEP keys.
669 network={
670         ssid="1x-test"
671         key_mgmt=IEEE8021X
672         eap=TLS
673         identity="user@example.com"
674         ca_cert="/etc/cert/ca.pem"
675         client_cert="/etc/cert/user.pem"
676         private_key="/etc/cert/user.prv"
677         private_key_passwd="password"
678         eapol_flags=3
679 }
680
681
682 # LEAP with dynamic WEP keys
683 network={
684         ssid="leap-example"
685         key_mgmt=IEEE8021X
686         eap=LEAP
687         identity="user"
688         password="foobar"
689 }
690
691 # EAP-IKEv2 using shared secrets for both server and peer authentication
692 network={
693         ssid="ikev2-example"
694         key_mgmt=WPA-EAP
695         eap=IKEV2
696         identity="user"
697         password="foobar"
698 }
699
700 # EAP-FAST with WPA (WPA or WPA2)
701 network={
702         ssid="eap-fast-test"
703         key_mgmt=WPA-EAP
704         eap=FAST
705         anonymous_identity="FAST-000102030405"
706         identity="username"
707         password="password"
708         phase1="fast_provisioning=1"
709         pac_file="/etc/wpa_supplicant.eap-fast-pac"
710 }
711
712 network={
713         ssid="eap-fast-test"
714         key_mgmt=WPA-EAP
715         eap=FAST
716         anonymous_identity="FAST-000102030405"
717         identity="username"
718         password="password"
719         phase1="fast_provisioning=1"
720         pac_file="blob://eap-fast-pac"
721 }
722
723 # Plaintext connection (no WPA, no IEEE 802.1X)
724 network={
725         ssid="plaintext-test"
726         key_mgmt=NONE
727 }
728
729
730 # Shared WEP key connection (no WPA, no IEEE 802.1X)
731 network={
732         ssid="static-wep-test"
733         key_mgmt=NONE
734         wep_key0="abcde"
735         wep_key1=0102030405
736         wep_key2="1234567890123"
737         wep_tx_keyidx=0
738         priority=5
739 }
740
741
742 # Shared WEP key connection (no WPA, no IEEE 802.1X) using Shared Key
743 # IEEE 802.11 authentication
744 network={
745         ssid="static-wep-test2"
746         key_mgmt=NONE
747         wep_key0="abcde"
748         wep_key1=0102030405
749         wep_key2="1234567890123"
750         wep_tx_keyidx=0
751         priority=5
752         auth_alg=SHARED
753 }
754
755
756 # IBSS/ad-hoc network with WPA-None/TKIP.
757 network={
758         ssid="test adhoc"
759         mode=1
760         frequency=2412
761         proto=WPA
762         key_mgmt=WPA-NONE
763         pairwise=NONE
764         group=TKIP
765         psk="secret passphrase"
766 }
767
768
769 # Catch all example that allows more or less all configuration modes
770 network={
771         ssid="example"
772         scan_ssid=1
773         key_mgmt=WPA-EAP WPA-PSK IEEE8021X NONE
774         pairwise=CCMP TKIP
775         group=CCMP TKIP WEP104 WEP40
776         psk="very secret passphrase"
777         eap=TTLS PEAP TLS
778         identity="user@example.com"
779         password="foobar"
780         ca_cert="/etc/cert/ca.pem"
781         client_cert="/etc/cert/user.pem"
782         private_key="/etc/cert/user.prv"
783         private_key_passwd="password"
784         phase1="peaplabel=0"
785 }
786
787 # Example of EAP-TLS with smartcard (openssl engine)
788 network={
789         ssid="example"
790         key_mgmt=WPA-EAP
791         eap=TLS
792         proto=RSN
793         pairwise=CCMP TKIP
794         group=CCMP TKIP
795         identity="user@example.com"
796         ca_cert="/etc/cert/ca.pem"
797         client_cert="/etc/cert/user.pem"
798
799         engine=1
800
801         # The engine configured here must be available. Look at
802         # OpenSSL engine support in the global section.
803         # The key available through the engine must be the private key
804         # matching the client certificate configured above.
805
806         # use the opensc engine
807         #engine_id="opensc"
808         #key_id="45"
809
810         # use the pkcs11 engine
811         engine_id="pkcs11"
812         key_id="id_45"
813
814         # Optional PIN configuration; this can be left out and PIN will be
815         # asked through the control interface
816         pin="1234"
817 }
818
819 # Example configuration showing how to use an inlined blob as a CA certificate
820 # data instead of using external file
821 network={
822         ssid="example"
823         key_mgmt=WPA-EAP
824         eap=TTLS
825         identity="user@example.com"
826         anonymous_identity="anonymous@example.com"
827         password="foobar"
828         ca_cert="blob://exampleblob"
829         priority=20
830 }
831
832 blob-base64-exampleblob={
833 SGVsbG8gV29ybGQhCg==
834 }
835
836
837 # Wildcard match for SSID (plaintext APs only). This example select any
838 # open AP regardless of its SSID.
839 network={
840         key_mgmt=NONE
841 }