Community discussions

MikroTik App
 
blingblouw
Member
Member
Topic Author
Posts: 345
Joined: Wed Aug 25, 2010 9:43 am

WIFI Wave2 WPA2/WPA3

Thu Apr 14, 2022 11:39 am

Not sure if anyone else has this issue.

Running wpa2-psk/wpa3-psk on a SSID causes constant disconnects +- 10 - 15 minutes. (tested ROS7.3)

Tested clients are iphone13, iphone13 pro and two macbooks (everything on latest software updates), unfortunately no other devices to test with

config is very simple
/interface wifiwave2
set [ find default-name=wifi1 ] configuration.country="South Africa" .mode=ap \
    .ssid="i dont know" disabled=no security.authentication-types=\
    wpa2-psk,wpa3-psk
set [ find default-name=wifi2 ] configuration.country="South Africa" .mode=ap \
    .ssid="i dont know" disabled=no security.authentication-types=\
    wpa2-psk,wpa3-psk
 
Ovic
just joined
Posts: 10
Joined: Thu Jan 14, 2021 4:34 pm

Re: WIFI Wave2 WPA2/WPA3

Sat Apr 16, 2022 1:04 pm

I have an Samsung Galaxy A52s 5G who doesn't connect at all when using WPA2/WPA3-PSK with wifiwave2. Also pretty simple config.
Last edited by Ovic on Sat Apr 16, 2022 1:06 pm, edited 1 time in total.
 
vkp
just joined
Posts: 2
Joined: Fri May 20, 2022 2:00 pm

Re: WIFI Wave2 WPA2/WPA3

Fri May 20, 2022 2:10 pm

I also have a Samsung Galaxy A52s 5G which can only connect with wifiwave2 when only WPA2 is enabled. With WPA2/WPA3 or WPA3 only it will result in "Incorrect password".
All other WPA2 clients are able to connect (older iphone, Windows, Linux laptops) and a single Windows WPA3 compliant laptop can connect without problems.
Older 2.4GHz only devices connect fine with WPA2 even when WPA2/WPA3 is enabled.

I don't have any other devices nor access points to test whether its a problem with the phone's drivers or Mikrotik, but for now I'm forced to turn WPA3 off.
If anyone has wifiwave2-capable mikrotik (or other vendor) equipment and Samsung (or other) phones with Android 12, they could test to see whether the issue is with Samsung, Android, Mikrotik or some kind of combination between them.

My equipment: hap ac3 with RouterOS 7.2.3 and wifiwave2 package - working as an access point and a bridge (no routing)
Phone: Samsung A52s 5G Android 12 (May 2022 security update)
 
Ovic
just joined
Posts: 10
Joined: Thu Jan 14, 2021 4:34 pm

Re: WIFI Wave2 WPA2/WPA3

Fri May 20, 2022 4:00 pm

My phone runs fine with WPA3 enabled on other AP i have from Unifi. So must be something with the drivers from Mikrotik and Samsung. Incorrect password is what I also get on HAP AC3. Other devices I have, such as an OPPO Reno 5 5G phone with Android 12 and some HP & Lenovo laptops work fine with Mikrotik's wifiwave2 and WPA3. So for the moment there is nothing we can do, but just to wait for an updated version from Mikrotik and/or Samsung.
 
vkp
just joined
Posts: 2
Joined: Fri May 20, 2022 2:00 pm

Re: WIFI Wave2 WPA2/WPA3

Fri Jun 10, 2022 11:50 am

I reported the bug to Mikrotik Support with various logs and it seems they have posted some kind of fix for it in 7.3.1.
I won't have time to check it out today, just letting you know.
 
Ovic
just joined
Posts: 10
Joined: Thu Jan 14, 2021 4:34 pm

Re: WIFI Wave2 WPA2/WPA3

Fri Jun 10, 2022 6:49 pm

Hi. I've just installed it on the router and everything works as expected. Kudos to Mikrotik for the fix-up.
 
twinsen
just joined
Posts: 2
Joined: Thu Aug 31, 2023 8:31 pm
Location: Poland

Re: WIFI Wave2 WPA2/WPA3

Fri Sep 08, 2023 7:12 pm

I have two devices: Samsung Galaxy S20+ and S23 Ultra. WiFi has WPA2/WPA3 enabled only, and it's dual-band setup (same SSID). Works like a charm, but _sometimes_ when I enter home I see no WiFi on the phones, after checking it shows 'incorrect password'. But if I tap on the network, it immediately connects, proving that password in fact is OK.
This behaviour is on wifiwave2, cAP ax is the AP and RB5009UPr+S+ is the main unit ruling AP via CAPsMAN. RoS is 7.11.2, and all packages as well.
Does anyone has the same issue?

EDIT: I turned off WPA3, issue vanished.
 
Stibila
just joined
Posts: 4
Joined: Thu Jun 07, 2018 3:46 pm

Re: WIFI Wave2 WPA2/WPA3

Tue Apr 09, 2024 4:08 pm

I have similar problems with WPA3 on new cAP AX with the latest ROS 7.14.2 usinf Wifi menu (wifi-qcom package on AP). I have CRS112-8P-4S as CAPsMAN.

When WPA3 is enabled I am unable to connect from Android device, Apple devices have also problems and Linux was mostly unable to connect, but sometimes it connected. It felt random with maybe 20% probability of connecting. Windows did not have any problems.

After some troubleshooting I was able to determine that problem is not WPA3-PSK per se, but it is somehow connected to SAE Anti Clogging Threshold.
If I disable this option, I am able to connect without problems even with WPA3-PSK enabled:
/interface wifi security
add authentication-types=wpa2-psk,wpa3-psk disabled=no ft=yes ft-over-ds=yes \
ft-preserve-vlanid=yes group-key-update=5m name=t_Test-psk \
sae-anti-clogging-threshold=disabled
Also if I keep this enabled, but increase sae-max-failure-rate to something like 300, it works:
/interface wifi security
add authentication-types=wpa2-psk,wpa3-psk disabled=no ft=yes ft-over-ds=yes \
ft-preserve-vlanid=yes group-key-update=5m name=t_Test-psk \
sae-max-failure-rate=300
I do not understand WPA3 or SAE very well and documentation is not detailed on those two parameters. It would be great if someone from Mikrotik could look at this. Also for those who have similar problems please provide ROS version. And those, who have WPA3 working correctly, also provide ROS version and configuration, so we can pinpoint root cause of this problem.


Changelog for 7.8 states:
*) wifiwave2 - fixed SAE authentication for interfaces in station mode when trying to connect to APs which require an anti-clogging token (introduced in RouterOS 7.4);
That would indicate, that problematic functionality was introduced in 7.4, but changelog for 7.4 does not include any mention of anything like anti-clogging, SAE or anything similar.

Also on one network I use WPA2-EAP and WPA3-EAP with Radius server does work correctly so far (on Linux, other devices will be tested in near future). So far it seems to be limited to WPA3-PSK only.
 
User avatar
robmaltsystems
Long time Member
Long time Member
Posts: 574
Joined: Fri Jun 21, 2019 12:04 pm

Re: WIFI Wave2 WPA2/WPA3

Wed Apr 10, 2024 2:28 am

Just a "me too" having problems with disconnects on hAP ax2. Just my home network with the usual stuff. Laptop struggles to maintain a connection and my mobile often can't see the 5GHz network at all. There are several topics on the same/similar subject.

Who is online

Users browsing this forum: Bing [Bot], nizce and 20 guests