Hey everyone,
I wanted to set up a second guest-style wifi with its own SSID, subnet, and VPN tunnel on my Flint 3 (GL-BE9300, firmware 4.9.0). The main wifi and the existing guest wifi (xyz) were already running fine through the GL.iNet GUI.
I created the new wireless interface through LuCI (Network → Wireless → Add), set up the SSID, encryption, and assigned it to a new network/bridge. Everything looked correct in LuCI, but after saving and applying, the interface just wouldn't come up. No errors in LuCI, it just silently didn't work.
After digging through the logs, I found that GL.iNet's qsdk-wifi configurator was crashing on the new interface with errors like attempt to concatenate local 'ifname' (a nil value) and table index is nil. Turns out qsdk-wifi needs a few properties that LuCI doesn't set and that aren't part of standard OpenWrt:
uci set wireless.<iface>.init='1'
uci set wireless.<iface>.guest='1'
uci set wireless.<iface>.ifname='wlan03'
uci commit wireless
wifi reload
Without ifname, qsdk-wifi crashes. Without init and guest, it silently skips the interface during setup. Once all three are set, the VAP comes up fine and gets confirmed stable after 3 rounds.
Just posting this in case anyone else tries to add a custom wifi through LuCI on these devices. Would be nice if qsdk-wifi could handle missing ifname more gracefully instead of crashing, or if LuCI could auto-populate these fields.
Matthias