Guest User

wpa_supplicant.conf

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