Closed rtmistler closed 5 years ago
HI @rtmistler, the configuration of SSID/PASSWORD is same for WEP/WPA.
I think the simplest way is run the station example:
Then the ESP32 can connect to the router. You can refer to the implementation in the example.
Thank you for the inputs.
I've been informed that WEP is deprecated, and therefore the requirement to have it working is not so pressing.
Meanwhile for WPA2 Enterprise there are additional attributes beyond SSID and password which are required, such as the address of the RADIUS server.
WPA2 Personal mode does work.
My original question had to do with where the attributes would be placed for the RADIUS server. I do not see any location in the data structures or any arguments in API functions which would allow me to pass the RADIUS server hostname or address.
I am familiar with the cited example and have used to to complete our existing code application.
Best Regards,
On Fri, Feb 22, 2019 at 10:05 PM liuzfesp notifications@github.com wrote:
HI @rtmistler https://github.com/rtmistler, the configuration of SSID/PASSWORD is same for WEP/WPA.
I think the simplest way is run the station example:
- Configure the router to WEP mode
- cd $IDF_PATH/examples/wifi/getting_started/station
- run make menuconfig => Example Configuration to configure the SSID/PASSWORD of the AP
- build and run
Then the ESP32 can connect to the router. You can refer to the implementation in the example.
— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/espressif/esp-idf/issues/3083#issuecomment-466610500, or mute the thread https://github.com/notifications/unsubscribe-auth/ATThM6uPVfXBZOCsm38-zAplXc181-_eks5vQLAGgaJpZM4bHvpm .
@ rtmistler currently WPA2 enterprise doesn't support to configure RADIUS server hostname/address.
Hi,
Thank you for the reply.
Correct me if I'm wrong, however I feel that a more accurate statement would be that you presently do support WPA-Personal, but presently do not support WPA-Enterprise, https://en.wikipedia.org/wiki/Wi-Fi_Protected_Access#WPA_terminology.
Best,
On Mon, Feb 25, 2019 at 10:10 AM liuzfesp notifications@github.com wrote:
@ rtmistler currently WPA2 enterprise doesn't support to configure RADIUS server hostname/address.
— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/espressif/esp-idf/issues/3083#issuecomment-467047239, or mute the thread https://github.com/notifications/unsubscribe-auth/ATThM8eqANlU3ymGydKaRSn9_M2Ys7Whks5vQ_zvgaJpZM4bHvpm .
Hi @rtmistler, ESP32 supports WPA-Enterprise, but it can only support TLS, PEAP-MSCHAPv2 and TTLS-MSCHAPv2 method. Moreover, we doesn't provide API to configure all attributes of RADIUS. Maybe you can try WPA2-Enterprise example: $IDF_PATH/examples/wifi/wpa2_enterprise
I'll give it a try. -RT
On Mon, Feb 25, 2019, 8:27 PM liuzfesp notifications@github.com wrote:
Hi @rtmistler https://github.com/rtmistler, ESP32 supports WPA-Enterprise, but it can only support TLS, PEAP-MSCHAPv2 and TTLS-MSCHAPv2 method. Moreover, we doesn't provide API to configure all attributes of RADIUS. Maybe you can try WPA2-Enterprise example: $IDF_PATH/examples/wifi/wpa2_enterprise
— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/espressif/esp-idf/issues/3083#issuecomment-467254428, or mute the thread https://github.com/notifications/unsubscribe-auth/ATThMxFWXLN0Y2HxvoT1OZ3JbO8GIlz8ks5vRI2UgaJpZM4bHvpm .
Thank you. That example does explain what is supported versus not. Best,
On Mon, Feb 25, 2019 at 8:27 PM liuzfesp notifications@github.com wrote:
Hi @rtmistler https://github.com/rtmistler, ESP32 supports WPA-Enterprise, but it can only support TLS, PEAP-MSCHAPv2 and TTLS-MSCHAPv2 method. Moreover, we doesn't provide API to configure all attributes of RADIUS. Maybe you can try WPA2-Enterprise example: $IDF_PATH/examples/wifi/wpa2_enterprise
— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/espressif/esp-idf/issues/3083#issuecomment-467254428, or mute the thread https://github.com/notifications/unsubscribe-auth/ATThMxFWXLN0Y2HxvoT1OZ3JbO8GIlz8ks5vRI2UgaJpZM4bHvpm .
@rtmistler Hi, could you help share if any updates? Thanks.
Feel free to reopen, thanks. @rtmistler
I have ESP32 and am using the esp-idf code.
I am attaching to WIFI as a station.
I can use Open, some of WPA, but I cannot use WEP or certain WPA configurations.
For WEP: There is no place in any structures where I can give a key.
For WPA: When it uses Enterprise, there is a Radius server required to configure and there is no way in the structures to specify this.
Are these modes supported for Station Mode?
Best Regards,