-->
Page 1 of 3

Is it possible to connect to Eduroam?

PostPosted: Thu May 14, 2015 3:52 am
by funny
Hi Everyone,

Is it possible to connect eps8266 to Eduroam?

Re: Is it possible to connect to Eduroam?

PostPosted: Thu May 14, 2015 12:59 pm
by lethe
No. Eduroam is using 802.1x authentication, which is not implemented in the ESP8266 SDK.

Re: Is it possible to connect to Eduroam?

PostPosted: Tue Nov 24, 2015 5:26 am
by turksami3
I found something about this chip. ESP8266EX chip has a Wi-Fi certificate and inside this certificate
its support WPA2™ – Enterprise, Personal :) :)
http://www.wi-fi.org/content/search-page?keys=esp8266

Re: Is it possible to connect to Eduroam?

PostPosted: Tue Dec 08, 2015 8:24 am
by Joost van Dijk
This situation may have changed recently, with the release of SDK v1.5:
http://bbs.espressif.com/viewtopic.php?f=46&t=1442

Which is on the milestone of the next version of ESP8266 core for Arduino:
https://github.com/esp8266/Arduino/milestones/2.1.0

Poking around in the SDK, I see:

$ grep 802 esp_iot_sdk_v1/esp_iot_sdk_v1.5.0/include/*.h
esp_iot_sdk_v1/esp_iot_sdk_v1.5.0/include/user_interface.h: REASON_802_1X_AUTH_FAILED = 23, /* 11i */

$ ar -t esp_iot_sdk_v1/esp_iot_sdk_v1.5.0/lib/libwpa2.a
/
//
asn1.o/
base64.o/
bignum.o/
eap_common.o/
eap.o/
/0
eap_tls.o/
ext_password.o/
pkcs1.o/
pkcs5.o/
pkcs8.o/
rsa.o/
tls_internal.o/
tlsv1_client.o/
/18
/39
tlsv1_common.o/
tlsv1_cred.o/
tlsv1_record.o/
tlsv1_server.o/
/61
/82
x509v3.o/


-Joost van Dijk