Flint 3: 2nd SSID in AP mode

[sorry, about mention of slate in previous version of this, I bought the bundle and had the wrong one in mind :expressionless: ]

Hi,

I am running a Flint 3 in AP mode.

I would like to add an additional SSID on 5Ghz radio for some older device with:

  • A different PSK
  • Different auth method (WPA2-PSK, the main uses WPA3-PSK))

So it will use the same network bridge as the main SSID.

I am comfortable on the CLI.

Thanks,

-Allen

Hi

Here you are:

uci set wireless.obsolete5g=wifi-iface
uci set wireless.obsolete5g.device='wifi1'
uci set wireless.obsolete5g.network='lan'
uci set wireless.obsolete5g.mode='ap'
uci set wireless.obsolete5g.ssid='GL-BE9300-obsolete-5G'
uci set wireless.obsolete5g.encryption='psk2+ccmp'
uci set wireless.obsolete5g.key='goodlife'
uci set wireless.obsolete5g.wds='1'
uci set wireless.obsolete5g.isolate='0'
uci set wireless.obsolete5g.hidden='0'
uci set wireless.obsolete5g.ifname='wlan15'
uci set wireless.obsolete5g.ieee80211k='1'
uci set wireless.obsolete5g.bss_transition='1'
uci set wireless.obsolete5g.sae='0'
uci set wireless.obsolete5g.no_beacon_rsnxe='0'

uci commit 
reboot

Worked great, I think the above was the key for me.

Thanks!