I am trying to set up WPA-EAP (Enterprise) authentication using an existing RADIUS server on my Flint 3 router.
Given the Flint 3's default GUI does not support this feature, I am configuring it directly through the underlying OpenWrt LuCI interface.
Here's what I've tried:
WPA3-EAP: The configuration reverts to default authentication settings immediately after saving in LuCI.
WPA-EAP: The settings save correctly, but the new Wi-Fi interface remains disabled/inactive. Even after editing the `/etc/config/wireless` file via SSH to explicitly set `option disabled '0'`, the interface will not activate.
Questions:
Is WPA-EAP/RADIUS configuration truly functional and supported on the Flint 3, even when configured through LuCI and not the GL.iNet GUI?
Does GL.iNet officially support this advanced use case, given it bypasses their custom firmware interface?
If WPA-EAP is not directly supported, are there any known workarounds or modifications I can apply to make it work?
Please SSH into the router and use the commands below to configure.
Note to modify the RADIUS-related information.
uci set wireless.wifi5g.auth_server='192.168.28.129'
uci set wireless.wifi5g.auth_port='1812'
uci set wireless.wifi5g.auth_secret='testing123'
uci set wireless.wifi5g.encryption='wpa2'
uci set wireless.wifi1.htmode='HT160'
uci set wireless.wifi5g.ieee8021x='1'
uci set wireless.wifi5g.ieee80211w='1'
uci delete wireless.wifi5g.sae
uci delete wireless.wifi5g.key
uci set wireless.wifi2g.auth_server='192.168.28.129'
uci set wireless.wifi2g.auth_port='1812'
uci set wireless.wifi2g.auth_secret='testing123'
uci set wireless.wifi2g.encryption='wpa2'
uci set wireless.wifi0.htmode='HT40'
uci set wireless.wifi2g.ieee8021x='1'
uci set wireless.wifi2g.ieee80211w='1'
uci delete wireless.wifi2g.sae
uci delete wireless.wifi2g.key
uci commit wireless
wifi