Flint 3 (GL-BE9300) WiFi supports 802.11r, it requires to SSH to the router and enabled by executing commands.
We found that 802.11r does not work on Luci, like say if manually enabled the "802.11r Fast Transition" in Luci, WiFi (AP) will disappear (no broadcast).
In order to enable 802.11r for Flint 3, we need to SSH to the router, and execute the following uci commands to enable 802.11r, WiFi works without issue in this way.
Kindly note:
Before executing these commands, recommended to archive backup first in Luci, to restore to the original state without restore the factory settings if encounter some errors during configuration.
Enable 802.11r for 6GHz WiFi:
uci set wireless.wifi6g.ieee80211r='1'
uci set wireless.wifi6g.mobility_domain='4f57'
uci set wireless.wifi6g.ft_over_ds='1'
uci set wireless.wifi6g.nasid='ap1'
uci commit wireless
/etc/init.d/network restart
Enable 802.11r for 5GHz WiFi:
uci set wireless.wifi5g.ieee80211r='1'
uci set wireless.wifi5g.mobility_domain='4f57'
uci set wireless.wifi5g.ft_over_ds='1'
uci set wireless.wifi5g.nasid='ap1'
uci commit wireless
ubus call network restart
Enable 802.11r for 2.4GHz WiFi:
uci set wireless.wifi2g.ieee80211r='1'
uci set wireless.wifi2g.mobility_domain='4f57'
uci set wireless.wifi2g.ft_over_ds='1'
uci set wireless.wifi2g.nasid='ap1'
uci commit wireless
ubus call network restart
In addition, if your WiFi encryption is included "WPA2 PSK", it is required to further execute these commands:
6GHz WiFi:
uci set wireless.wifi6g.ft_psk_generate_local='1'
uci commit wireless
ubus call network restart
5GHz WiFi:
uci set wireless.wifi5g.ft_psk_generate_local='1'
uci commit wireless
ubus call network restart
2.4GHz WiFi:
uci set wireless.wifi2g.ft_psk_generate_local='1'
uci commit wireless
ubus call network restart
Command ubus call network restart will reinitialize the network configuration, causing a temporary short interruption of wired and wireless clients. You can execute commands other than that, and then execute ubus call network restart in the end.
This configuration is only valid for Flint 3, and it does not lose if router restarts or upgrade firmware. Only reconfigure if reset the firmware settings.
If encounter configuration errors, please restore the previous backup and reconfigure again or brand-new configure.

