ESP32-eduroam
ESP32-eduroam copied to clipboard
Unable to connect with username@fqdn syntax
Heads up that I was unable to connect to our enterprise Wi-Fi using the format [email protected]
; what worked for me instead was the domain\\username
format (AD-authenticated) like this:
static const char* SECRET_EAP_ID = "my-Enterprise-ID" // EAP_ID (typically the same as EAP_USERNAME, e.g. domain\\my-Enterprise-UserName)
static const char* SECRET_EAP_USERNAME = "domain\\my-Enterprise-UserName"; // Username for authentification (typically the same as EAP_ID); consider trying also [email protected]
static const char* SECRET_EAP_PASSWORD = "my-Enterprise-Password"; // Password for authentication