]> git.ipfire.org Git - thirdparty/hostap.git/blob - wpa_supplicant/wpa_supplicant.conf
Add support for using random local MAC address
[thirdparty/hostap.git] / 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 existence 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 # Note: When using MACsec, eapol_version shall be set to 3, which is
85 # defined in IEEE Std 802.1X-2010.
86 eapol_version=1
87
88 # AP scanning/selection
89 # By default, wpa_supplicant requests driver to perform AP scanning and then
90 # uses the scan results to select a suitable AP. Another alternative is to
91 # allow the driver to take care of AP scanning and selection and use
92 # wpa_supplicant just to process EAPOL frames based on IEEE 802.11 association
93 # information from the driver.
94 # 1: wpa_supplicant initiates scanning and AP selection; if no APs matching to
95 # the currently enabled networks are found, a new network (IBSS or AP mode
96 # operation) may be initialized (if configured) (default)
97 # 0: driver takes care of scanning, AP selection, and IEEE 802.11 association
98 # parameters (e.g., WPA IE generation); this mode can also be used with
99 # non-WPA drivers when using IEEE 802.1X mode; do not try to associate with
100 # APs (i.e., external program needs to control association). This mode must
101 # also be used when using wired Ethernet drivers.
102 # Note: macsec_qca driver is one type of Ethernet driver which implements
103 # macsec feature.
104 # 2: like 0, but associate with APs using security policy and SSID (but not
105 # BSSID); this can be used, e.g., with ndiswrapper and NDIS drivers to
106 # enable operation with hidden SSIDs and optimized roaming; in this mode,
107 # the network blocks in the configuration file are tried one by one until
108 # the driver reports successful association; each network block should have
109 # explicit security policy (i.e., only one option in the lists) for
110 # key_mgmt, pairwise, group, proto variables
111 # When using IBSS or AP mode, ap_scan=2 mode can force the new network to be
112 # created immediately regardless of scan results. ap_scan=1 mode will first try
113 # to scan for existing networks and only if no matches with the enabled
114 # networks are found, a new IBSS or AP mode network is created.
115 ap_scan=1
116
117 # EAP fast re-authentication
118 # By default, fast re-authentication is enabled for all EAP methods that
119 # support it. This variable can be used to disable fast re-authentication.
120 # Normally, there is no need to disable this.
121 fast_reauth=1
122
123 # OpenSSL Engine support
124 # These options can be used to load OpenSSL engines.
125 # The two engines that are supported currently are shown below:
126 # They are both from the opensc project (http://www.opensc.org/)
127 # By default no engines are loaded.
128 # make the opensc engine available
129 #opensc_engine_path=/usr/lib/opensc/engine_opensc.so
130 # make the pkcs11 engine available
131 #pkcs11_engine_path=/usr/lib/opensc/engine_pkcs11.so
132 # configure the path to the pkcs11 module required by the pkcs11 engine
133 #pkcs11_module_path=/usr/lib/pkcs11/opensc-pkcs11.so
134
135 # Dynamic EAP methods
136 # If EAP methods were built dynamically as shared object files, they need to be
137 # loaded here before being used in the network blocks. By default, EAP methods
138 # are included statically in the build, so these lines are not needed
139 #load_dynamic_eap=/usr/lib/wpa_supplicant/eap_tls.so
140 #load_dynamic_eap=/usr/lib/wpa_supplicant/eap_md5.so
141
142 # Driver interface parameters
143 # This field can be used to configure arbitrary driver interace parameters. The
144 # format is specific to the selected driver interface. This field is not used
145 # in most cases.
146 #driver_param="field=value"
147
148 # Country code
149 # The ISO/IEC alpha2 country code for the country in which this device is
150 # currently operating.
151 #country=US
152
153 # Maximum lifetime for PMKSA in seconds; default 43200
154 #dot11RSNAConfigPMKLifetime=43200
155 # Threshold for reauthentication (percentage of PMK lifetime); default 70
156 #dot11RSNAConfigPMKReauthThreshold=70
157 # Timeout for security association negotiation in seconds; default 60
158 #dot11RSNAConfigSATimeout=60
159
160 # Wi-Fi Protected Setup (WPS) parameters
161
162 # Universally Unique IDentifier (UUID; see RFC 4122) of the device
163 # If not configured, UUID will be generated based on the local MAC address.
164 #uuid=12345678-9abc-def0-1234-56789abcdef0
165
166 # Device Name
167 # User-friendly description of device; up to 32 octets encoded in UTF-8
168 #device_name=Wireless Client
169
170 # Manufacturer
171 # The manufacturer of the device (up to 64 ASCII characters)
172 #manufacturer=Company
173
174 # Model Name
175 # Model of the device (up to 32 ASCII characters)
176 #model_name=cmodel
177
178 # Model Number
179 # Additional device description (up to 32 ASCII characters)
180 #model_number=123
181
182 # Serial Number
183 # Serial number of the device (up to 32 characters)
184 #serial_number=12345
185
186 # Primary Device Type
187 # Used format: <categ>-<OUI>-<subcateg>
188 # categ = Category as an integer value
189 # OUI = OUI and type octet as a 4-octet hex-encoded value; 0050F204 for
190 # default WPS OUI
191 # subcateg = OUI-specific Sub Category as an integer value
192 # Examples:
193 # 1-0050F204-1 (Computer / PC)
194 # 1-0050F204-2 (Computer / Server)
195 # 5-0050F204-1 (Storage / NAS)
196 # 6-0050F204-1 (Network Infrastructure / AP)
197 #device_type=1-0050F204-1
198
199 # OS Version
200 # 4-octet operating system version number (hex string)
201 #os_version=01020300
202
203 # Config Methods
204 # List of the supported configuration methods
205 # Available methods: usba ethernet label display ext_nfc_token int_nfc_token
206 # nfc_interface push_button keypad virtual_display physical_display
207 # virtual_push_button physical_push_button
208 # For WSC 1.0:
209 #config_methods=label display push_button keypad
210 # For WSC 2.0:
211 #config_methods=label virtual_display virtual_push_button keypad
212
213 # Credential processing
214 # 0 = process received credentials internally (default)
215 # 1 = do not process received credentials; just pass them over ctrl_iface to
216 # external program(s)
217 # 2 = process received credentials internally and pass them over ctrl_iface
218 # to external program(s)
219 #wps_cred_processing=0
220
221 # Vendor attribute in WPS M1, e.g., Windows 7 Vertical Pairing
222 # The vendor attribute contents to be added in M1 (hex string)
223 #wps_vendor_ext_m1=000137100100020001
224
225 # NFC password token for WPS
226 # These parameters can be used to configure a fixed NFC password token for the
227 # station. This can be generated, e.g., with nfc_pw_token. When these
228 # parameters are used, the station is assumed to be deployed with a NFC tag
229 # that includes the matching NFC password token (e.g., written based on the
230 # NDEF record from nfc_pw_token).
231 #
232 #wps_nfc_dev_pw_id: Device Password ID (16..65535)
233 #wps_nfc_dh_pubkey: Hexdump of DH Public Key
234 #wps_nfc_dh_privkey: Hexdump of DH Private Key
235 #wps_nfc_dev_pw: Hexdump of Device Password
236
237 # Maximum number of BSS entries to keep in memory
238 # Default: 200
239 # This can be used to limit memory use on the BSS entries (cached scan
240 # results). A larger value may be needed in environments that have huge number
241 # of APs when using ap_scan=1 mode.
242 #bss_max_count=200
243
244 # Automatic scan
245 # This is an optional set of parameters for automatic scanning
246 # within an interface in following format:
247 #autoscan=<autoscan module name>:<module parameters>
248 # autoscan is like bgscan but on disconnected or inactive state.
249 # For instance, on exponential module parameters would be <base>:<limit>
250 #autoscan=exponential:3:300
251 # Which means a delay between scans on a base exponential of 3,
252 # up to the limit of 300 seconds (3, 9, 27 ... 300)
253 # For periodic module, parameters would be <fixed interval>
254 #autoscan=periodic:30
255 # So a delay of 30 seconds will be applied between each scan
256
257 # filter_ssids - SSID-based scan result filtering
258 # 0 = do not filter scan results (default)
259 # 1 = only include configured SSIDs in scan results/BSS table
260 #filter_ssids=0
261
262 # Password (and passphrase, etc.) backend for external storage
263 # format: <backend name>[:<optional backend parameters>]
264 #ext_password_backend=test:pw1=password|pw2=testing
265
266 # Timeout in seconds to detect STA inactivity (default: 300 seconds)
267 #
268 # This timeout value is used in P2P GO mode to clean up
269 # inactive stations.
270 #p2p_go_max_inactivity=300
271
272 # Passphrase length (8..63) for P2P GO
273 #
274 # This parameter controls the length of the random passphrase that is
275 # generated at the GO. Default: 8.
276 #p2p_passphrase_len=8
277
278 # Extra delay between concurrent P2P search iterations
279 #
280 # This value adds extra delay in milliseconds between concurrent search
281 # iterations to make p2p_find friendlier to concurrent operations by avoiding
282 # it from taking 100% of radio resources. The default value is 500 ms.
283 #p2p_search_delay=500
284
285 # Opportunistic Key Caching (also known as Proactive Key Caching) default
286 # This parameter can be used to set the default behavior for the
287 # proactive_key_caching parameter. By default, OKC is disabled unless enabled
288 # with the global okc=1 parameter or with the per-network
289 # proactive_key_caching=1 parameter. With okc=1, OKC is enabled by default, but
290 # can be disabled with per-network proactive_key_caching=0 parameter.
291 #okc=0
292
293 # Protected Management Frames default
294 # This parameter can be used to set the default behavior for the ieee80211w
295 # parameter. By default, PMF is disabled unless enabled with the global pmf=1/2
296 # parameter or with the per-network ieee80211w=1/2 parameter. With pmf=1/2, PMF
297 # is enabled/required by default, but can be disabled with the per-network
298 # ieee80211w parameter.
299 #pmf=0
300
301 # Enabled SAE finite cyclic groups in preference order
302 # By default (if this parameter is not set), the mandatory group 19 (ECC group
303 # defined over a 256-bit prime order field) is preferred, but other groups are
304 # also enabled. If this parameter is set, the groups will be tried in the
305 # indicated order. The group values are listed in the IANA registry:
306 # http://www.iana.org/assignments/ipsec-registry/ipsec-registry.xml#ipsec-registry-9
307 #sae_groups=21 20 19 26 25
308
309 # Default value for DTIM period (if not overridden in network block)
310 #dtim_period=2
311
312 # Default value for Beacon interval (if not overridden in network block)
313 #beacon_int=100
314
315 # Additional vendor specific elements for Beacon and Probe Response frames
316 # This parameter can be used to add additional vendor specific element(s) into
317 # the end of the Beacon and Probe Response frames. The format for these
318 # element(s) is a hexdump of the raw information elements (id+len+payload for
319 # one or more elements). This is used in AP and P2P GO modes.
320 #ap_vendor_elements=dd0411223301
321
322 # Ignore scan results older than request
323 #
324 # The driver may have a cache of scan results that makes it return
325 # information that is older than our scan trigger. This parameter can
326 # be used to configure such old information to be ignored instead of
327 # allowing it to update the internal BSS table.
328 #ignore_old_scan_res=0
329
330 # scan_cur_freq: Whether to scan only the current frequency
331 # 0: Scan all available frequencies. (Default)
332 # 1: Scan current operating frequency if another VIF on the same radio
333 # is already associated.
334
335 # MAC address policy default
336 # 0 = use permanent MAC address
337 # 1 = use random MAC address for each ESS connection
338 #
339 # By default, permanent MAC address is used unless policy is changed by
340 # the per-network mac_addr parameter. Global mac_addr=1 can be used to
341 # change this default behavior.
342 #mac_addr=0
343
344 # Lifetime of random MAC address in seconds (default: 60)
345 #rand_addr_lifetime=60
346
347 # MAC address policy for pre-association operations (scanning, ANQP)
348 # 0 = use permanent MAC address
349 # 1 = use random MAC address
350 #preassoc_mac_addr=0
351
352 # Interworking (IEEE 802.11u)
353
354 # Enable Interworking
355 # interworking=1
356
357 # Homogenous ESS identifier
358 # If this is set, scans will be used to request response only from BSSes
359 # belonging to the specified Homogeneous ESS. This is used only if interworking
360 # is enabled.
361 # hessid=00:11:22:33:44:55
362
363 # Automatic network selection behavior
364 # 0 = do not automatically go through Interworking network selection
365 # (i.e., require explicit interworking_select command for this; default)
366 # 1 = perform Interworking network selection if one or more
367 # credentials have been configured and scan did not find a
368 # matching network block
369 #auto_interworking=0
370
371 # credential block
372 #
373 # Each credential used for automatic network selection is configured as a set
374 # of parameters that are compared to the information advertised by the APs when
375 # interworking_select and interworking_connect commands are used.
376 #
377 # credential fields:
378 #
379 # temporary: Whether this credential is temporary and not to be saved
380 #
381 # priority: Priority group
382 # By default, all networks and credentials get the same priority group
383 # (0). This field can be used to give higher priority for credentials
384 # (and similarly in struct wpa_ssid for network blocks) to change the
385 # Interworking automatic networking selection behavior. The matching
386 # network (based on either an enabled network block or a credential)
387 # with the highest priority value will be selected.
388 #
389 # pcsc: Use PC/SC and SIM/USIM card
390 #
391 # realm: Home Realm for Interworking
392 #
393 # username: Username for Interworking network selection
394 #
395 # password: Password for Interworking network selection
396 #
397 # ca_cert: CA certificate for Interworking network selection
398 #
399 # client_cert: File path to client certificate file (PEM/DER)
400 # This field is used with Interworking networking selection for a case
401 # where client certificate/private key is used for authentication
402 # (EAP-TLS). Full path to the file should be used since working
403 # directory may change when wpa_supplicant is run in the background.
404 #
405 # Alternatively, a named configuration blob can be used by setting
406 # this to blob://blob_name.
407 #
408 # private_key: File path to client private key file (PEM/DER/PFX)
409 # When PKCS#12/PFX file (.p12/.pfx) is used, client_cert should be
410 # commented out. Both the private key and certificate will be read
411 # from the PKCS#12 file in this case. Full path to the file should be
412 # used since working directory may change when wpa_supplicant is run
413 # in the background.
414 #
415 # Windows certificate store can be used by leaving client_cert out and
416 # configuring private_key in one of the following formats:
417 #
418 # cert://substring_to_match
419 #
420 # hash://certificate_thumbprint_in_hex
421 #
422 # For example: private_key="hash://63093aa9c47f56ae88334c7b65a4"
423 #
424 # Note that when running wpa_supplicant as an application, the user
425 # certificate store (My user account) is used, whereas computer store
426 # (Computer account) is used when running wpasvc as a service.
427 #
428 # Alternatively, a named configuration blob can be used by setting
429 # this to blob://blob_name.
430 #
431 # private_key_passwd: Password for private key file
432 #
433 # imsi: IMSI in <MCC> | <MNC> | '-' | <MSIN> format
434 #
435 # milenage: Milenage parameters for SIM/USIM simulator in <Ki>:<OPc>:<SQN>
436 # format
437 #
438 # domain: Home service provider FQDN(s)
439 # This is used to compare against the Domain Name List to figure out
440 # whether the AP is operated by the Home SP. Multiple domain entries can
441 # be used to configure alternative FQDNs that will be considered home
442 # networks.
443 #
444 # roaming_consortium: Roaming Consortium OI
445 # If roaming_consortium_len is non-zero, this field contains the
446 # Roaming Consortium OI that can be used to determine which access
447 # points support authentication with this credential. This is an
448 # alternative to the use of the realm parameter. When using Roaming
449 # Consortium to match the network, the EAP parameters need to be
450 # pre-configured with the credential since the NAI Realm information
451 # may not be available or fetched.
452 #
453 # eap: Pre-configured EAP method
454 # This optional field can be used to specify which EAP method will be
455 # used with this credential. If not set, the EAP method is selected
456 # automatically based on ANQP information (e.g., NAI Realm).
457 #
458 # phase1: Pre-configure Phase 1 (outer authentication) parameters
459 # This optional field is used with like the 'eap' parameter.
460 #
461 # phase2: Pre-configure Phase 2 (inner authentication) parameters
462 # This optional field is used with like the 'eap' parameter.
463 #
464 # excluded_ssid: Excluded SSID
465 # This optional field can be used to excluded specific SSID(s) from
466 # matching with the network. Multiple entries can be used to specify more
467 # than one SSID.
468 #
469 # roaming_partner: Roaming partner information
470 # This optional field can be used to configure preferences between roaming
471 # partners. The field is a string in following format:
472 # <FQDN>,<0/1 exact match>,<priority>,<* or country code>
473 # (non-exact match means any subdomain matches the entry; priority is in
474 # 0..255 range with 0 being the highest priority)
475 #
476 # update_identifier: PPS MO ID
477 # (Hotspot 2.0 PerProviderSubscription/UpdateIdentifier)
478 #
479 # provisioning_sp: FQDN of the SP that provisioned the credential
480 # This optional field can be used to keep track of the SP that provisioned
481 # the credential to find the PPS MO (./Wi-Fi/<provisioning_sp>).
482 #
483 # Minimum backhaul threshold (PPS/<X+>/Policy/MinBackhauldThreshold/*)
484 # These fields can be used to specify minimum download/upload backhaul
485 # bandwidth that is preferred for the credential. This constraint is
486 # ignored if the AP does not advertise WAN Metrics information or if the
487 # limit would prevent any connection. Values are in kilobits per second.
488 # min_dl_bandwidth_home
489 # min_ul_bandwidth_home
490 # min_dl_bandwidth_roaming
491 # min_ul_bandwidth_roaming
492 #
493 # max_bss_load: Maximum BSS Load Channel Utilization (1..255)
494 # (PPS/<X+>/Policy/MaximumBSSLoadValue)
495 # This value is used as the maximum channel utilization for network
496 # selection purposes for home networks. If the AP does not advertise
497 # BSS Load or if the limit would prevent any connection, this constraint
498 # will be ignored.
499 #
500 # req_conn_capab: Required connection capability
501 # (PPS/<X+>/Policy/RequiredProtoPortTuple)
502 # This value is used to configure set of required protocol/port pairs that
503 # a roaming network shall support (include explicitly in Connection
504 # Capability ANQP element). This constraint is ignored if the AP does not
505 # advertise Connection Capability or if this constraint would prevent any
506 # network connection. This policy is not used in home networks.
507 # Format: <protocol>[:<comma-separated list of ports]
508 # Multiple entries can be used to list multiple requirements.
509 # For example, number of common TCP protocols:
510 # req_conn_capab=6,22,80,443
511 # For example, IPSec/IKE:
512 # req_conn_capab=17:500
513 # req_conn_capab=50
514 #
515 # ocsp: Whether to use/require OCSP to check server certificate
516 # 0 = do not use OCSP stapling (TLS certificate status extension)
517 # 1 = try to use OCSP stapling, but not require response
518 # 2 = require valid OCSP stapling response
519 #
520 # sim_num: Identifier for which SIM to use in multi-SIM devices
521 #
522 # for example:
523 #
524 #cred={
525 # realm="example.com"
526 # username="user@example.com"
527 # password="password"
528 # ca_cert="/etc/wpa_supplicant/ca.pem"
529 # domain="example.com"
530 #}
531 #
532 #cred={
533 # imsi="310026-000000000"
534 # milenage="90dca4eda45b53cf0f12d7c9c3bc6a89:cb9cccc4b9258e6dca4760379fb82"
535 #}
536 #
537 #cred={
538 # realm="example.com"
539 # username="user"
540 # password="password"
541 # ca_cert="/etc/wpa_supplicant/ca.pem"
542 # domain="example.com"
543 # roaming_consortium=223344
544 # eap=TTLS
545 # phase2="auth=MSCHAPV2"
546 #}
547
548 # Hotspot 2.0
549 # hs20=1
550
551 # network block
552 #
553 # Each network (usually AP's sharing the same SSID) is configured as a separate
554 # block in this configuration file. The network blocks are in preference order
555 # (the first match is used).
556 #
557 # network block fields:
558 #
559 # disabled:
560 # 0 = this network can be used (default)
561 # 1 = this network block is disabled (can be enabled through ctrl_iface,
562 # e.g., with wpa_cli or wpa_gui)
563 #
564 # id_str: Network identifier string for external scripts. This value is passed
565 # to external action script through wpa_cli as WPA_ID_STR environment
566 # variable to make it easier to do network specific configuration.
567 #
568 # ssid: SSID (mandatory); network name in one of the optional formats:
569 # - an ASCII string with double quotation
570 # - a hex string (two characters per octet of SSID)
571 # - a printf-escaped ASCII string P"<escaped string>"
572 #
573 # scan_ssid:
574 # 0 = do not scan this SSID with specific Probe Request frames (default)
575 # 1 = scan with SSID-specific Probe Request frames (this can be used to
576 # find APs that do not accept broadcast SSID or use multiple SSIDs;
577 # this will add latency to scanning, so enable this only when needed)
578 #
579 # bssid: BSSID (optional); if set, this network block is used only when
580 # associating with the AP using the configured BSSID
581 #
582 # priority: priority group (integer)
583 # By default, all networks will get same priority group (0). If some of the
584 # networks are more desirable, this field can be used to change the order in
585 # which wpa_supplicant goes through the networks when selecting a BSS. The
586 # priority groups will be iterated in decreasing priority (i.e., the larger the
587 # priority value, the sooner the network is matched against the scan results).
588 # Within each priority group, networks will be selected based on security
589 # policy, signal strength, etc.
590 # Please note that AP scanning with scan_ssid=1 and ap_scan=2 mode are not
591 # using this priority to select the order for scanning. Instead, they try the
592 # networks in the order that used in the configuration file.
593 #
594 # mode: IEEE 802.11 operation mode
595 # 0 = infrastructure (Managed) mode, i.e., associate with an AP (default)
596 # 1 = IBSS (ad-hoc, peer-to-peer)
597 # 2 = AP (access point)
598 # Note: IBSS can only be used with key_mgmt NONE (plaintext and static WEP) and
599 # WPA-PSK (with proto=RSN). In addition, key_mgmt=WPA-NONE (fixed group key
600 # TKIP/CCMP) is available for backwards compatibility, but its use is
601 # deprecated. WPA-None requires following network block options:
602 # proto=WPA, key_mgmt=WPA-NONE, pairwise=NONE, group=TKIP (or CCMP, but not
603 # both), and psk must also be set.
604 #
605 # frequency: Channel frequency in megahertz (MHz) for IBSS, e.g.,
606 # 2412 = IEEE 802.11b/g channel 1. This value is used to configure the initial
607 # channel for IBSS (adhoc) networks. It is ignored in the infrastructure mode.
608 # In addition, this value is only used by the station that creates the IBSS. If
609 # an IBSS network with the configured SSID is already present, the frequency of
610 # the network will be used instead of this configured value.
611 #
612 # scan_freq: List of frequencies to scan
613 # Space-separated list of frequencies in MHz to scan when searching for this
614 # BSS. If the subset of channels used by the network is known, this option can
615 # be used to optimize scanning to not occur on channels that the network does
616 # not use. Example: scan_freq=2412 2437 2462
617 #
618 # freq_list: Array of allowed frequencies
619 # Space-separated list of frequencies in MHz to allow for selecting the BSS. If
620 # set, scan results that do not match any of the specified frequencies are not
621 # considered when selecting a BSS.
622 #
623 # This can also be set on the outside of the network block. In this case,
624 # it limits the frequencies that will be scanned.
625 #
626 # bgscan: Background scanning
627 # wpa_supplicant behavior for background scanning can be specified by
628 # configuring a bgscan module. These modules are responsible for requesting
629 # background scans for the purpose of roaming within an ESS (i.e., within a
630 # single network block with all the APs using the same SSID). The bgscan
631 # parameter uses following format: "<bgscan module name>:<module parameters>"
632 # Following bgscan modules are available:
633 # simple - Periodic background scans based on signal strength
634 # bgscan="simple:<short bgscan interval in seconds>:<signal strength threshold>:
635 # <long interval>"
636 # bgscan="simple:30:-45:300"
637 # learn - Learn channels used by the network and try to avoid bgscans on other
638 # channels (experimental)
639 # bgscan="learn:<short bgscan interval in seconds>:<signal strength threshold>:
640 # <long interval>[:<database file name>]"
641 # bgscan="learn:30:-45:300:/etc/wpa_supplicant/network1.bgscan"
642 # Explicitly disable bgscan by setting
643 # bgscan=""
644 #
645 # This option can also be set outside of all network blocks for the bgscan
646 # parameter to apply for all the networks that have no specific bgscan
647 # parameter.
648 #
649 # proto: list of accepted protocols
650 # WPA = WPA/IEEE 802.11i/D3.0
651 # RSN = WPA2/IEEE 802.11i (also WPA2 can be used as an alias for RSN)
652 # If not set, this defaults to: WPA RSN
653 #
654 # key_mgmt: list of accepted authenticated key management protocols
655 # WPA-PSK = WPA pre-shared key (this requires 'psk' field)
656 # WPA-EAP = WPA using EAP authentication
657 # IEEE8021X = IEEE 802.1X using EAP authentication and (optionally) dynamically
658 # generated WEP keys
659 # NONE = WPA is not used; plaintext or static WEP could be used
660 # WPA-PSK-SHA256 = Like WPA-PSK but using stronger SHA256-based algorithms
661 # WPA-EAP-SHA256 = Like WPA-EAP but using stronger SHA256-based algorithms
662 # If not set, this defaults to: WPA-PSK WPA-EAP
663 #
664 # ieee80211w: whether management frame protection is enabled
665 # 0 = disabled (default unless changed with the global pmf parameter)
666 # 1 = optional
667 # 2 = required
668 # The most common configuration options for this based on the PMF (protected
669 # management frames) certification program are:
670 # PMF enabled: ieee80211w=1 and key_mgmt=WPA-EAP WPA-EAP-SHA256
671 # PMF required: ieee80211w=2 and key_mgmt=WPA-EAP-SHA256
672 # (and similarly for WPA-PSK and WPA-WPSK-SHA256 if WPA2-Personal is used)
673 #
674 # auth_alg: list of allowed IEEE 802.11 authentication algorithms
675 # OPEN = Open System authentication (required for WPA/WPA2)
676 # SHARED = Shared Key authentication (requires static WEP keys)
677 # LEAP = LEAP/Network EAP (only used with LEAP)
678 # If not set, automatic selection is used (Open System with LEAP enabled if
679 # LEAP is allowed as one of the EAP methods).
680 #
681 # pairwise: list of accepted pairwise (unicast) ciphers for WPA
682 # CCMP = AES in Counter mode with CBC-MAC [RFC 3610, IEEE 802.11i/D7.0]
683 # TKIP = Temporal Key Integrity Protocol [IEEE 802.11i/D7.0]
684 # NONE = Use only Group Keys (deprecated, should not be included if APs support
685 # pairwise keys)
686 # If not set, this defaults to: CCMP TKIP
687 #
688 # group: list of accepted group (broadcast/multicast) ciphers for WPA
689 # CCMP = AES in Counter mode with CBC-MAC [RFC 3610, IEEE 802.11i/D7.0]
690 # TKIP = Temporal Key Integrity Protocol [IEEE 802.11i/D7.0]
691 # WEP104 = WEP (Wired Equivalent Privacy) with 104-bit key
692 # WEP40 = WEP (Wired Equivalent Privacy) with 40-bit key [IEEE 802.11]
693 # If not set, this defaults to: CCMP TKIP WEP104 WEP40
694 #
695 # psk: WPA preshared key; 256-bit pre-shared key
696 # The key used in WPA-PSK mode can be entered either as 64 hex-digits, i.e.,
697 # 32 bytes or as an ASCII passphrase (in which case, the real PSK will be
698 # generated using the passphrase and SSID). ASCII passphrase must be between
699 # 8 and 63 characters (inclusive). ext:<name of external PSK field> format can
700 # be used to indicate that the PSK/passphrase is stored in external storage.
701 # This field is not needed, if WPA-EAP is used.
702 # Note: Separate tool, wpa_passphrase, can be used to generate 256-bit keys
703 # from ASCII passphrase. This process uses lot of CPU and wpa_supplicant
704 # startup and reconfiguration time can be optimized by generating the PSK only
705 # only when the passphrase or SSID has actually changed.
706 #
707 # eapol_flags: IEEE 802.1X/EAPOL options (bit field)
708 # Dynamic WEP key required for non-WPA mode
709 # bit0 (1): require dynamically generated unicast WEP key
710 # bit1 (2): require dynamically generated broadcast WEP key
711 # (3 = require both keys; default)
712 # Note: When using wired authentication (including macsec_qca driver),
713 # eapol_flags must be set to 0 for the authentication to be completed
714 # successfully.
715 #
716 # macsec_policy: IEEE 802.1X/MACsec options
717 # This determines how sessions are secured with MACsec. It is currently
718 # applicable only when using the macsec_qca driver interface.
719 # 0: MACsec not in use (default)
720 # 1: MACsec enabled - Should secure, accept key server's advice to
721 # determine whether to use a secure session or not.
722 #
723 # mixed_cell: This option can be used to configure whether so called mixed
724 # cells, i.e., networks that use both plaintext and encryption in the same
725 # SSID, are allowed when selecting a BSS from scan results.
726 # 0 = disabled (default)
727 # 1 = enabled
728 #
729 # proactive_key_caching:
730 # Enable/disable opportunistic PMKSA caching for WPA2.
731 # 0 = disabled (default unless changed with the global okc parameter)
732 # 1 = enabled
733 #
734 # wep_key0..3: Static WEP key (ASCII in double quotation, e.g. "abcde" or
735 # hex without quotation, e.g., 0102030405)
736 # wep_tx_keyidx: Default WEP key index (TX) (0..3)
737 #
738 # peerkey: Whether PeerKey negotiation for direct links (IEEE 802.11e DLS) is
739 # allowed. This is only used with RSN/WPA2.
740 # 0 = disabled (default)
741 # 1 = enabled
742 #peerkey=1
743 #
744 # wpa_ptk_rekey: Maximum lifetime for PTK in seconds. This can be used to
745 # enforce rekeying of PTK to mitigate some attacks against TKIP deficiencies.
746 #
747 # Following fields are only used with internal EAP implementation.
748 # eap: space-separated list of accepted EAP methods
749 # MD5 = EAP-MD5 (unsecure and does not generate keying material ->
750 # cannot be used with WPA; to be used as a Phase 2 method
751 # with EAP-PEAP or EAP-TTLS)
752 # MSCHAPV2 = EAP-MSCHAPv2 (cannot be used separately with WPA; to be used
753 # as a Phase 2 method with EAP-PEAP or EAP-TTLS)
754 # OTP = EAP-OTP (cannot be used separately with WPA; to be used
755 # as a Phase 2 method with EAP-PEAP or EAP-TTLS)
756 # GTC = EAP-GTC (cannot be used separately with WPA; to be used
757 # as a Phase 2 method with EAP-PEAP or EAP-TTLS)
758 # TLS = EAP-TLS (client and server certificate)
759 # PEAP = EAP-PEAP (with tunnelled EAP authentication)
760 # TTLS = EAP-TTLS (with tunnelled EAP or PAP/CHAP/MSCHAP/MSCHAPV2
761 # authentication)
762 # If not set, all compiled in methods are allowed.
763 #
764 # identity: Identity string for EAP
765 # This field is also used to configure user NAI for
766 # EAP-PSK/PAX/SAKE/GPSK.
767 # anonymous_identity: Anonymous identity string for EAP (to be used as the
768 # unencrypted identity with EAP types that support different tunnelled
769 # identity, e.g., EAP-TTLS). This field can also be used with
770 # EAP-SIM/AKA/AKA' to store the pseudonym identity.
771 # password: Password string for EAP. This field can include either the
772 # plaintext password (using ASCII or hex string) or a NtPasswordHash
773 # (16-byte MD4 hash of password) in hash:<32 hex digits> format.
774 # NtPasswordHash can only be used when the password is for MSCHAPv2 or
775 # MSCHAP (EAP-MSCHAPv2, EAP-TTLS/MSCHAPv2, EAP-TTLS/MSCHAP, LEAP).
776 # EAP-PSK (128-bit PSK), EAP-PAX (128-bit PSK), and EAP-SAKE (256-bit
777 # PSK) is also configured using this field. For EAP-GPSK, this is a
778 # variable length PSK. ext:<name of external password field> format can
779 # be used to indicate that the password is stored in external storage.
780 # ca_cert: File path to CA certificate file (PEM/DER). This file can have one
781 # or more trusted CA certificates. If ca_cert and ca_path are not
782 # included, server certificate will not be verified. This is insecure and
783 # a trusted CA certificate should always be configured when using
784 # EAP-TLS/TTLS/PEAP. Full path should be used since working directory may
785 # change when wpa_supplicant is run in the background.
786 #
787 # Alternatively, this can be used to only perform matching of the server
788 # certificate (SHA-256 hash of the DER encoded X.509 certificate). In
789 # this case, the possible CA certificates in the server certificate chain
790 # are ignored and only the server certificate is verified. This is
791 # configured with the following format:
792 # hash:://server/sha256/cert_hash_in_hex
793 # For example: "hash://server/sha256/
794 # 5a1bc1296205e6fdbe3979728efe3920798885c1c4590b5f90f43222d239ca6a"
795 #
796 # On Windows, trusted CA certificates can be loaded from the system
797 # certificate store by setting this to cert_store://<name>, e.g.,
798 # ca_cert="cert_store://CA" or ca_cert="cert_store://ROOT".
799 # Note that when running wpa_supplicant as an application, the user
800 # certificate store (My user account) is used, whereas computer store
801 # (Computer account) is used when running wpasvc as a service.
802 # ca_path: Directory path for CA certificate files (PEM). This path may
803 # contain multiple CA certificates in OpenSSL format. Common use for this
804 # is to point to system trusted CA list which is often installed into
805 # directory like /etc/ssl/certs. If configured, these certificates are
806 # added to the list of trusted CAs. ca_cert may also be included in that
807 # case, but it is not required.
808 # client_cert: File path to client certificate file (PEM/DER)
809 # Full path should be used since working directory may change when
810 # wpa_supplicant is run in the background.
811 # Alternatively, a named configuration blob can be used by setting this
812 # to blob://<blob name>.
813 # private_key: File path to client private key file (PEM/DER/PFX)
814 # When PKCS#12/PFX file (.p12/.pfx) is used, client_cert should be
815 # commented out. Both the private key and certificate will be read from
816 # the PKCS#12 file in this case. Full path should be used since working
817 # directory may change when wpa_supplicant is run in the background.
818 # Windows certificate store can be used by leaving client_cert out and
819 # configuring private_key in one of the following formats:
820 # cert://substring_to_match
821 # hash://certificate_thumbprint_in_hex
822 # for example: private_key="hash://63093aa9c47f56ae88334c7b65a4"
823 # Note that when running wpa_supplicant as an application, the user
824 # certificate store (My user account) is used, whereas computer store
825 # (Computer account) is used when running wpasvc as a service.
826 # Alternatively, a named configuration blob can be used by setting this
827 # to blob://<blob name>.
828 # private_key_passwd: Password for private key file (if left out, this will be
829 # asked through control interface)
830 # dh_file: File path to DH/DSA parameters file (in PEM format)
831 # This is an optional configuration file for setting parameters for an
832 # ephemeral DH key exchange. In most cases, the default RSA
833 # authentication does not use this configuration. However, it is possible
834 # setup RSA to use ephemeral DH key exchange. In addition, ciphers with
835 # DSA keys always use ephemeral DH keys. This can be used to achieve
836 # forward secrecy. If the file is in DSA parameters format, it will be
837 # automatically converted into DH params.
838 # subject_match: Substring to be matched against the subject of the
839 # authentication server certificate. If this string is set, the server
840 # sertificate is only accepted if it contains this string in the subject.
841 # The subject string is in following format:
842 # /C=US/ST=CA/L=San Francisco/CN=Test AS/emailAddress=as@example.com
843 # altsubject_match: Semicolon separated string of entries to be matched against
844 # the alternative subject name of the authentication server certificate.
845 # If this string is set, the server sertificate is only accepted if it
846 # contains one of the entries in an alternative subject name extension.
847 # altSubjectName string is in following format: TYPE:VALUE
848 # Example: EMAIL:server@example.com
849 # Example: DNS:server.example.com;DNS:server2.example.com
850 # Following types are supported: EMAIL, DNS, URI
851 # phase1: Phase1 (outer authentication, i.e., TLS tunnel) parameters
852 # (string with field-value pairs, e.g., "peapver=0" or
853 # "peapver=1 peaplabel=1")
854 # 'peapver' can be used to force which PEAP version (0 or 1) is used.
855 # 'peaplabel=1' can be used to force new label, "client PEAP encryption",
856 # to be used during key derivation when PEAPv1 or newer. Most existing
857 # PEAPv1 implementation seem to be using the old label, "client EAP
858 # encryption", and wpa_supplicant is now using that as the default value.
859 # Some servers, e.g., Radiator, may require peaplabel=1 configuration to
860 # interoperate with PEAPv1; see eap_testing.txt for more details.
861 # 'peap_outer_success=0' can be used to terminate PEAP authentication on
862 # tunneled EAP-Success. This is required with some RADIUS servers that
863 # implement draft-josefsson-pppext-eap-tls-eap-05.txt (e.g.,
864 # Lucent NavisRadius v4.4.0 with PEAP in "IETF Draft 5" mode)
865 # include_tls_length=1 can be used to force wpa_supplicant to include
866 # TLS Message Length field in all TLS messages even if they are not
867 # fragmented.
868 # sim_min_num_chal=3 can be used to configure EAP-SIM to require three
869 # challenges (by default, it accepts 2 or 3)
870 # result_ind=1 can be used to enable EAP-SIM and EAP-AKA to use
871 # protected result indication.
872 # 'crypto_binding' option can be used to control PEAPv0 cryptobinding
873 # behavior:
874 # * 0 = do not use cryptobinding (default)
875 # * 1 = use cryptobinding if server supports it
876 # * 2 = require cryptobinding
877 # EAP-WSC (WPS) uses following options: pin=<Device Password> or
878 # pbc=1.
879 # phase2: Phase2 (inner authentication with TLS tunnel) parameters
880 # (string with field-value pairs, e.g., "auth=MSCHAPV2" for EAP-PEAP or
881 # "autheap=MSCHAPV2 autheap=MD5" for EAP-TTLS)
882 #
883 # TLS-based methods can use the following parameters to control TLS behavior
884 # (these are normally in the phase1 parameter, but can be used also in the
885 # phase2 parameter when EAP-TLS is used within the inner tunnel):
886 # tls_allow_md5=1 - allow MD5-based certificate signatures (depending on the
887 # TLS library, these may be disabled by default to enforce stronger
888 # security)
889 # tls_disable_time_checks=1 - ignore certificate validity time (this requests
890 # the TLS library to accept certificates even if they are not currently
891 # valid, i.e., have expired or have not yet become valid; this should be
892 # used only for testing purposes)
893 # tls_disable_session_ticket=1 - disable TLS Session Ticket extension
894 # tls_disable_session_ticket=0 - allow TLS Session Ticket extension to be used
895 # Note: If not set, this is automatically set to 1 for EAP-TLS/PEAP/TTLS
896 # as a workaround for broken authentication server implementations unless
897 # EAP workarounds are disabled with eap_workarounds=0.
898 # For EAP-FAST, this must be set to 0 (or left unconfigured for the
899 # default value to be used automatically).
900 # tls_disable_tlsv1_1=1 - disable use of TLSv1.1 (a workaround for AAA servers
901 # that have issues interoperating with updated TLS version)
902 # tls_disable_tlsv1_2=1 - disable use of TLSv1.2 (a workaround for AAA servers
903 # that have issues interoperating with updated TLS version)
904 #
905 # Following certificate/private key fields are used in inner Phase2
906 # authentication when using EAP-TTLS or EAP-PEAP.
907 # ca_cert2: File path to CA certificate file. This file can have one or more
908 # trusted CA certificates. If ca_cert2 and ca_path2 are not included,
909 # server certificate will not be verified. This is insecure and a trusted
910 # CA certificate should always be configured.
911 # ca_path2: Directory path for CA certificate files (PEM)
912 # client_cert2: File path to client certificate file
913 # private_key2: File path to client private key file
914 # private_key2_passwd: Password for private key file
915 # dh_file2: File path to DH/DSA parameters file (in PEM format)
916 # subject_match2: Substring to be matched against the subject of the
917 # authentication server certificate.
918 # altsubject_match2: Substring to be matched against the alternative subject
919 # name of the authentication server certificate.
920 #
921 # fragment_size: Maximum EAP fragment size in bytes (default 1398).
922 # This value limits the fragment size for EAP methods that support
923 # fragmentation (e.g., EAP-TLS and EAP-PEAP). This value should be set
924 # small enough to make the EAP messages fit in MTU of the network
925 # interface used for EAPOL. The default value is suitable for most
926 # cases.
927 #
928 # ocsp: Whether to use/require OCSP to check server certificate
929 # 0 = do not use OCSP stapling (TLS certificate status extension)
930 # 1 = try to use OCSP stapling, but not require response
931 # 2 = require valid OCSP stapling response
932 #
933 # EAP-FAST variables:
934 # pac_file: File path for the PAC entries. wpa_supplicant will need to be able
935 # to create this file and write updates to it when PAC is being
936 # provisioned or refreshed. Full path to the file should be used since
937 # working directory may change when wpa_supplicant is run in the
938 # background. Alternatively, a named configuration blob can be used by
939 # setting this to blob://<blob name>
940 # phase1: fast_provisioning option can be used to enable in-line provisioning
941 # of EAP-FAST credentials (PAC):
942 # 0 = disabled,
943 # 1 = allow unauthenticated provisioning,
944 # 2 = allow authenticated provisioning,
945 # 3 = allow both unauthenticated and authenticated provisioning
946 # fast_max_pac_list_len=<num> option can be used to set the maximum
947 # number of PAC entries to store in a PAC list (default: 10)
948 # fast_pac_format=binary option can be used to select binary format for
949 # storing PAC entries in order to save some space (the default
950 # text format uses about 2.5 times the size of minimal binary
951 # format)
952 #
953 # wpa_supplicant supports number of "EAP workarounds" to work around
954 # interoperability issues with incorrectly behaving authentication servers.
955 # These are enabled by default because some of the issues are present in large
956 # number of authentication servers. Strict EAP conformance mode can be
957 # configured by disabling workarounds with eap_workaround=0.
958
959 # Station inactivity limit
960 #
961 # If a station does not send anything in ap_max_inactivity seconds, an
962 # empty data frame is sent to it in order to verify whether it is
963 # still in range. If this frame is not ACKed, the station will be
964 # disassociated and then deauthenticated. This feature is used to
965 # clear station table of old entries when the STAs move out of the
966 # range.
967 #
968 # The station can associate again with the AP if it is still in range;
969 # this inactivity poll is just used as a nicer way of verifying
970 # inactivity; i.e., client will not report broken connection because
971 # disassociation frame is not sent immediately without first polling
972 # the STA with a data frame.
973 # default: 300 (i.e., 5 minutes)
974 #ap_max_inactivity=300
975
976 # DTIM period in Beacon intervals for AP mode (default: 2)
977 #dtim_period=2
978
979 # Beacon interval (default: 100 TU)
980 #beacon_int=100
981
982 # MAC address policy
983 # 0 = use permanent MAC address
984 # 1 = use random MAC address for each ESS connection
985 #mac_addr=0
986
987 # disable_ht: Whether HT (802.11n) should be disabled.
988 # 0 = HT enabled (if AP supports it)
989 # 1 = HT disabled
990 #
991 # disable_ht40: Whether HT-40 (802.11n) should be disabled.
992 # 0 = HT-40 enabled (if AP supports it)
993 # 1 = HT-40 disabled
994 #
995 # disable_sgi: Whether SGI (short guard interval) should be disabled.
996 # 0 = SGI enabled (if AP supports it)
997 # 1 = SGI disabled
998 #
999 # disable_ldpc: Whether LDPC should be disabled.
1000 # 0 = LDPC enabled (if AP supports it)
1001 # 1 = LDPC disabled
1002 #
1003 # ht40_intolerant: Whether 40 MHz intolerant should be indicated.
1004 # 0 = 40 MHz tolerant (default)
1005 # 1 = 40 MHz intolerant
1006 #
1007 # ht_mcs: Configure allowed MCS rates.
1008 # Parsed as an array of bytes, in base-16 (ascii-hex)
1009 # ht_mcs="" // Use all available (default)
1010 # ht_mcs="0xff 00 00 00 00 00 00 00 00 00 " // Use MCS 0-7 only
1011 # ht_mcs="0xff ff 00 00 00 00 00 00 00 00 " // Use MCS 0-15 only
1012 #
1013 # disable_max_amsdu: Whether MAX_AMSDU should be disabled.
1014 # -1 = Do not make any changes.
1015 # 0 = Enable MAX-AMSDU if hardware supports it.
1016 # 1 = Disable AMSDU
1017 #
1018 # ampdu_factor: Maximum A-MPDU Length Exponent
1019 # Value: 0-3, see 7.3.2.56.3 in IEEE Std 802.11n-2009.
1020 #
1021 # ampdu_density: Allow overriding AMPDU density configuration.
1022 # Treated as hint by the kernel.
1023 # -1 = Do not make any changes.
1024 # 0-3 = Set AMPDU density (aka factor) to specified value.
1025
1026 # disable_vht: Whether VHT should be disabled.
1027 # 0 = VHT enabled (if AP supports it)
1028 # 1 = VHT disabled
1029 #
1030 # vht_capa: VHT capabilities to set in the override
1031 # vht_capa_mask: mask of VHT capabilities
1032 #
1033 # vht_rx_mcs_nss_1/2/3/4/5/6/7/8: override the MCS set for RX NSS 1-8
1034 # vht_tx_mcs_nss_1/2/3/4/5/6/7/8: override the MCS set for TX NSS 1-8
1035 # 0: MCS 0-7
1036 # 1: MCS 0-8
1037 # 2: MCS 0-9
1038 # 3: not supported
1039
1040 # Example blocks:
1041
1042 # Simple case: WPA-PSK, PSK as an ASCII passphrase, allow all valid ciphers
1043 network={
1044 ssid="simple"
1045 psk="very secret passphrase"
1046 priority=5
1047 }
1048
1049 # Same as previous, but request SSID-specific scanning (for APs that reject
1050 # broadcast SSID)
1051 network={
1052 ssid="second ssid"
1053 scan_ssid=1
1054 psk="very secret passphrase"
1055 priority=2
1056 }
1057
1058 # Only WPA-PSK is used. Any valid cipher combination is accepted.
1059 network={
1060 ssid="example"
1061 proto=WPA
1062 key_mgmt=WPA-PSK
1063 pairwise=CCMP TKIP
1064 group=CCMP TKIP WEP104 WEP40
1065 psk=06b4be19da289f475aa46a33cb793029d4ab3db7a23ee92382eb0106c72ac7bb
1066 priority=2
1067 }
1068
1069 # WPA-Personal(PSK) with TKIP and enforcement for frequent PTK rekeying
1070 network={
1071 ssid="example"
1072 proto=WPA
1073 key_mgmt=WPA-PSK
1074 pairwise=TKIP
1075 group=TKIP
1076 psk="not so secure passphrase"
1077 wpa_ptk_rekey=600
1078 }
1079
1080 # Only WPA-EAP is used. Both CCMP and TKIP is accepted. An AP that used WEP104
1081 # or WEP40 as the group cipher will not be accepted.
1082 network={
1083 ssid="example"
1084 proto=RSN
1085 key_mgmt=WPA-EAP
1086 pairwise=CCMP TKIP
1087 group=CCMP TKIP
1088 eap=TLS
1089 identity="user@example.com"
1090 ca_cert="/etc/cert/ca.pem"
1091 client_cert="/etc/cert/user.pem"
1092 private_key="/etc/cert/user.prv"
1093 private_key_passwd="password"
1094 priority=1
1095 }
1096
1097 # EAP-PEAP/MSCHAPv2 configuration for RADIUS servers that use the new peaplabel
1098 # (e.g., Radiator)
1099 network={
1100 ssid="example"
1101 key_mgmt=WPA-EAP
1102 eap=PEAP
1103 identity="user@example.com"
1104 password="foobar"
1105 ca_cert="/etc/cert/ca.pem"
1106 phase1="peaplabel=1"
1107 phase2="auth=MSCHAPV2"
1108 priority=10
1109 }
1110
1111 # EAP-TTLS/EAP-MD5-Challenge configuration with anonymous identity for the
1112 # unencrypted use. Real identity is sent only within an encrypted TLS tunnel.
1113 network={
1114 ssid="example"
1115 key_mgmt=WPA-EAP
1116 eap=TTLS
1117 identity="user@example.com"
1118 anonymous_identity="anonymous@example.com"
1119 password="foobar"
1120 ca_cert="/etc/cert/ca.pem"
1121 priority=2
1122 }
1123
1124 # EAP-TTLS/MSCHAPv2 configuration with anonymous identity for the unencrypted
1125 # use. Real identity is sent only within an encrypted TLS tunnel.
1126 network={
1127 ssid="example"
1128 key_mgmt=WPA-EAP
1129 eap=TTLS
1130 identity="user@example.com"
1131 anonymous_identity="anonymous@example.com"
1132 password="foobar"
1133 ca_cert="/etc/cert/ca.pem"
1134 phase2="auth=MSCHAPV2"
1135 }
1136
1137 # WPA-EAP, EAP-TTLS with different CA certificate used for outer and inner
1138 # authentication.
1139 network={
1140 ssid="example"
1141 key_mgmt=WPA-EAP
1142 eap=TTLS
1143 # Phase1 / outer authentication
1144 anonymous_identity="anonymous@example.com"
1145 ca_cert="/etc/cert/ca.pem"
1146 # Phase 2 / inner authentication
1147 phase2="autheap=TLS"
1148 ca_cert2="/etc/cert/ca2.pem"
1149 client_cert2="/etc/cer/user.pem"
1150 private_key2="/etc/cer/user.prv"
1151 private_key2_passwd="password"
1152 priority=2
1153 }
1154
1155 # Both WPA-PSK and WPA-EAP is accepted. Only CCMP is accepted as pairwise and
1156 # group cipher.
1157 network={
1158 ssid="example"
1159 bssid=00:11:22:33:44:55
1160 proto=WPA RSN
1161 key_mgmt=WPA-PSK WPA-EAP
1162 pairwise=CCMP
1163 group=CCMP
1164 psk=06b4be19da289f475aa46a33cb793029d4ab3db7a23ee92382eb0106c72ac7bb
1165 }
1166
1167 # Special characters in SSID, so use hex string. Default to WPA-PSK, WPA-EAP
1168 # and all valid ciphers.
1169 network={
1170 ssid=00010203
1171 psk=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
1172 }
1173
1174
1175 # EAP-SIM with a GSM SIM or USIM
1176 network={
1177 ssid="eap-sim-test"
1178 key_mgmt=WPA-EAP
1179 eap=SIM
1180 pin="1234"
1181 pcsc=""
1182 }
1183
1184
1185 # EAP-PSK
1186 network={
1187 ssid="eap-psk-test"
1188 key_mgmt=WPA-EAP
1189 eap=PSK
1190 anonymous_identity="eap_psk_user"
1191 password=06b4be19da289f475aa46a33cb793029
1192 identity="eap_psk_user@example.com"
1193 }
1194
1195
1196 # IEEE 802.1X/EAPOL with dynamically generated WEP keys (i.e., no WPA) using
1197 # EAP-TLS for authentication and key generation; require both unicast and
1198 # broadcast WEP keys.
1199 network={
1200 ssid="1x-test"
1201 key_mgmt=IEEE8021X
1202 eap=TLS
1203 identity="user@example.com"
1204 ca_cert="/etc/cert/ca.pem"
1205 client_cert="/etc/cert/user.pem"
1206 private_key="/etc/cert/user.prv"
1207 private_key_passwd="password"
1208 eapol_flags=3
1209 }
1210
1211
1212 # LEAP with dynamic WEP keys
1213 network={
1214 ssid="leap-example"
1215 key_mgmt=IEEE8021X
1216 eap=LEAP
1217 identity="user"
1218 password="foobar"
1219 }
1220
1221 # EAP-IKEv2 using shared secrets for both server and peer authentication
1222 network={
1223 ssid="ikev2-example"
1224 key_mgmt=WPA-EAP
1225 eap=IKEV2
1226 identity="user"
1227 password="foobar"
1228 }
1229
1230 # EAP-FAST with WPA (WPA or WPA2)
1231 network={
1232 ssid="eap-fast-test"
1233 key_mgmt=WPA-EAP
1234 eap=FAST
1235 anonymous_identity="FAST-000102030405"
1236 identity="username"
1237 password="password"
1238 phase1="fast_provisioning=1"
1239 pac_file="/etc/wpa_supplicant.eap-fast-pac"
1240 }
1241
1242 network={
1243 ssid="eap-fast-test"
1244 key_mgmt=WPA-EAP
1245 eap=FAST
1246 anonymous_identity="FAST-000102030405"
1247 identity="username"
1248 password="password"
1249 phase1="fast_provisioning=1"
1250 pac_file="blob://eap-fast-pac"
1251 }
1252
1253 # Plaintext connection (no WPA, no IEEE 802.1X)
1254 network={
1255 ssid="plaintext-test"
1256 key_mgmt=NONE
1257 }
1258
1259
1260 # Shared WEP key connection (no WPA, no IEEE 802.1X)
1261 network={
1262 ssid="static-wep-test"
1263 key_mgmt=NONE
1264 wep_key0="abcde"
1265 wep_key1=0102030405
1266 wep_key2="1234567890123"
1267 wep_tx_keyidx=0
1268 priority=5
1269 }
1270
1271
1272 # Shared WEP key connection (no WPA, no IEEE 802.1X) using Shared Key
1273 # IEEE 802.11 authentication
1274 network={
1275 ssid="static-wep-test2"
1276 key_mgmt=NONE
1277 wep_key0="abcde"
1278 wep_key1=0102030405
1279 wep_key2="1234567890123"
1280 wep_tx_keyidx=0
1281 priority=5
1282 auth_alg=SHARED
1283 }
1284
1285
1286 # IBSS/ad-hoc network with RSN
1287 network={
1288 ssid="ibss-rsn"
1289 key_mgmt=WPA-PSK
1290 proto=RSN
1291 psk="12345678"
1292 mode=1
1293 frequency=2412
1294 pairwise=CCMP
1295 group=CCMP
1296 }
1297
1298 # IBSS/ad-hoc network with WPA-None/TKIP (deprecated)
1299 network={
1300 ssid="test adhoc"
1301 mode=1
1302 frequency=2412
1303 proto=WPA
1304 key_mgmt=WPA-NONE
1305 pairwise=NONE
1306 group=TKIP
1307 psk="secret passphrase"
1308 }
1309
1310
1311 # Catch all example that allows more or less all configuration modes
1312 network={
1313 ssid="example"
1314 scan_ssid=1
1315 key_mgmt=WPA-EAP WPA-PSK IEEE8021X NONE
1316 pairwise=CCMP TKIP
1317 group=CCMP TKIP WEP104 WEP40
1318 psk="very secret passphrase"
1319 eap=TTLS PEAP TLS
1320 identity="user@example.com"
1321 password="foobar"
1322 ca_cert="/etc/cert/ca.pem"
1323 client_cert="/etc/cert/user.pem"
1324 private_key="/etc/cert/user.prv"
1325 private_key_passwd="password"
1326 phase1="peaplabel=0"
1327 }
1328
1329 # Example of EAP-TLS with smartcard (openssl engine)
1330 network={
1331 ssid="example"
1332 key_mgmt=WPA-EAP
1333 eap=TLS
1334 proto=RSN
1335 pairwise=CCMP TKIP
1336 group=CCMP TKIP
1337 identity="user@example.com"
1338 ca_cert="/etc/cert/ca.pem"
1339 client_cert="/etc/cert/user.pem"
1340
1341 engine=1
1342
1343 # The engine configured here must be available. Look at
1344 # OpenSSL engine support in the global section.
1345 # The key available through the engine must be the private key
1346 # matching the client certificate configured above.
1347
1348 # use the opensc engine
1349 #engine_id="opensc"
1350 #key_id="45"
1351
1352 # use the pkcs11 engine
1353 engine_id="pkcs11"
1354 key_id="id_45"
1355
1356 # Optional PIN configuration; this can be left out and PIN will be
1357 # asked through the control interface
1358 pin="1234"
1359 }
1360
1361 # Example configuration showing how to use an inlined blob as a CA certificate
1362 # data instead of using external file
1363 network={
1364 ssid="example"
1365 key_mgmt=WPA-EAP
1366 eap=TTLS
1367 identity="user@example.com"
1368 anonymous_identity="anonymous@example.com"
1369 password="foobar"
1370 ca_cert="blob://exampleblob"
1371 priority=20
1372 }
1373
1374 blob-base64-exampleblob={
1375 SGVsbG8gV29ybGQhCg==
1376 }
1377
1378
1379 # Wildcard match for SSID (plaintext APs only). This example select any
1380 # open AP regardless of its SSID.
1381 network={
1382 key_mgmt=NONE
1383 }
1384
1385
1386 # Example config file that will only scan on channel 36.
1387 freq_list=5180
1388 network={
1389 key_mgmt=NONE
1390 }
1391
1392
1393 # Example MACsec configuration
1394 #network={
1395 # key_mgmt=IEEE8021X
1396 # eap=TTLS
1397 # phase2="auth=PAP"
1398 # anonymous_identity="anonymous@example.com"
1399 # identity="user@example.com"
1400 # password="secretr"
1401 # ca_cert="/etc/cert/ca.pem"
1402 # eapol_flags=0
1403 # macsec_policy=1
1404 #}