-
Notifications
You must be signed in to change notification settings - Fork 106
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to connect to WPA2 Enterprise network. #105
Comments
@sandeepmistry Any thoughts? I see you created the WPA2 Enterprise support. |
Hi Katie, |
Hi, I'm a little confused by your question. On my laptop and smartphone the network shows up just like how any other network shows up? In testing, I was trying to connect to eduroam network as well and its' encryption was also unknown. |
I am on Apple devices so this information is not available but the security is 802.1x PEAP as per the university's website. The board does not connect to eduroam network. |
Used my smartphone on my universities eduroam, it returns WPA2/WPA3-Enterprise security. my nano-33 IOT cannot connect. Scanninng wifi returns unknown encryption. |
Hi, I also have the problem with Arduino MKR WiFi 1010 (NINA Firmware 1.4.8) and connecting to WPA2 Enterprise network.
|
I am having the exact same issue, and both the /*
This example prints the board's MAC address, and
scans for available WiFi networks using the NINA module.
Every ten seconds, it scans again. It doesn't actually
connect to any network, so no encryption scheme is specified.
...
*/ This seems to imply that no encryption will be given for any networks as the chip does not actually attempt to connect to any of them. Has anyone found any solutions to this problem? My Arduino Uno Wifi Rev2 connects just fine on my home WiFi, but I would like to have it connect to my University WiFi as well. |
Did you figure it out? My university told me that "Connecting requires the device to support WPA2-Enterprise encryption for security reasons." I'm using a nano Iot and the network scan shows my WifI but the encryption as unknown. |
I was not able to figure out how to get my Uno WiFi Rev2 to connect to any WPA2-Enterprise networks. I can potentially offer a small bit of advice, though. I thought I couldn't connect to my iPhone's hotspot because it failed when I typed out the SSID by hand. The issue, for me, was that my iPhone was using ASCII to represent all but one character, the apostrophe, which was being represented by three bytes in who knows what kind of Unicode. To solve this, I ran a modified example scan sketch, which would check if a network had a substring of my name, then wrote that string to my device's EEPROM with EEPROM.h. Then I could connect anytime by reading that string from the on-board ROM. I used these functions. |
Thank you CJacob314, Everything works fine on my home Wifi, but I still need to figure out a way to connect to my university Wifi because this is being built to be used in a greenhouse, for an automatic data logger from a couple of sensors and I'm trying to water my plants automatically. It's a complex watering and maintaining moisture levels and I'm spending three hours every other day doing this, which I feel like a waste of time. I'm not sure if nano Iot supports the encryption level that my university's wifi requires. Maybe I will need to find a better board that supports it if this doesn't work. I can't afford a wireless modem with crazy data monthly premiums. Anyways, thank you for the help, really appreciate it. |
Hi there,
My university runs a WPA2 Enterprise network and I've been trying to connect my Arduino Uno Wifi Rev2 to it using the beginEnterprise() function. The authentication of the network is PEAP/MSCHAPV2. I've updated my firmware, tried powering the Arduino with an external power source, and tried many different credentials. My board connects to regular networks using the function begin() so it's also not a hardware issue. I've been using the example code sketches provided by the library to avoid errors in my code. When I run the ScanNetwork sketch the Arduino sees the network I'm trying to connect to and it lists it's Encryption as Unknown.
Please let me know if there is something else I should try.
Thanks,
Katie
The text was updated successfully, but these errors were encountered: