ESP32-eduroam icon indicating copy to clipboard operation
ESP32-eduroam copied to clipboard

Unable to connect with username@fqdn syntax

Open gojimmypi opened this issue 4 years ago • 0 comments

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

gojimmypi avatar Jun 06 '20 17:06 gojimmypi