Hi.
For a school project we need to connect an arduino to our schools wifi. We were wondering if the EPS32 development board would allow us to connect to a WPA2-Enterprise network with AES Encryption. If anyone knows if this is possible or has done it before please let me know!
Thanks
Connecting to WPA2-Enterprise with AES Encryption
Re: Connecting to WPA2-Enterprise with AES Encryption
ESP has native hardware encryption for AES
this will connect just fine
this will connect just fine
Code: Select all
const char* rssiSSID = "YourSSID";
const char* password = "PassPhrase";
WiFi.begin( rssiSSID , password );
while (WiFi.status() != WL_CONNECTED )
{
delay( 80 );
Serial.print(".");
}
Re: Connecting to WPA2-Enterprise with AES Encryption
According to this link ...
http://esp-idf.readthedocs.io/en/latest ... uth_mode_t
WIFI_AUTH_WPA2_ENTERPRISE
is one of the supported authentication types.
http://esp-idf.readthedocs.io/en/latest ... uth_mode_t
WIFI_AUTH_WPA2_ENTERPRISE
is one of the supported authentication types.
Free book on ESP32 available here: https://leanpub.com/kolban-ESP32
Who is online
Users browsing this forum: No registered users and 34 guests