2021-10-28 13:01:43 -04:00
|
|
|
menu "Example Configuration"
|
|
|
|
|
2023-08-07 06:13:43 -04:00
|
|
|
config EXAMPLE_WIFI_SSID
|
|
|
|
string "WiFi SSID"
|
|
|
|
default "ESP_EAP_FAST_AP"
|
|
|
|
help
|
|
|
|
SSID (network name) for the example to connect to.
|
|
|
|
|
2021-10-28 13:01:43 -04:00
|
|
|
choice
|
|
|
|
prompt "Enterprise configuration to be used"
|
2023-08-07 06:13:43 -04:00
|
|
|
default EXAMPLE_WPA3_ENTERPRISE
|
|
|
|
config EXAMPLE_WPA2_ENTERPRISE
|
|
|
|
bool "WPA2_ENT"
|
2021-10-28 13:01:43 -04:00
|
|
|
config EXAMPLE_WPA3_ENTERPRISE
|
|
|
|
bool "WPA3_ENT"
|
|
|
|
endchoice
|
|
|
|
|
2023-08-07 06:13:43 -04:00
|
|
|
if EXAMPLE_WPA2_ENTERPRISE
|
2021-10-28 13:01:43 -04:00
|
|
|
config EXAMPLE_VALIDATE_SERVER_CERT
|
|
|
|
bool "Validate server"
|
|
|
|
default y
|
|
|
|
help
|
|
|
|
Validate the servers' certificate using CA cert.
|
|
|
|
endif
|
|
|
|
|
2023-08-07 06:13:43 -04:00
|
|
|
if !EXAMPLE_WPA2_ENTERPRISE
|
2021-10-28 13:01:43 -04:00
|
|
|
config EXAMPLE_VALIDATE_SERVER_CERT
|
|
|
|
default y
|
|
|
|
endif
|
|
|
|
|
|
|
|
config EXAMPLE_EAP_ID
|
|
|
|
string "EAP ID"
|
|
|
|
default "example@espressif.com"
|
|
|
|
help
|
|
|
|
Identity in phase 1 of EAP procedure.
|
|
|
|
|
|
|
|
config EXAMPLE_EAP_USERNAME
|
|
|
|
string "EAP USERNAME"
|
|
|
|
default "espressif"
|
|
|
|
help
|
|
|
|
Username for EAP method.
|
|
|
|
|
|
|
|
config EXAMPLE_EAP_PASSWORD
|
|
|
|
string "EAP PASSWORD"
|
|
|
|
default "test11"
|
|
|
|
help
|
|
|
|
Password for EAP method.
|
|
|
|
|
|
|
|
endmenu
|