Greetings folks. New to OpenWRT and struggling to accomplish my goal of adding a single Guest SSID on VLAN 3 via a trunk port on lan2 on my Flint 2 router with a backened OPNSense router (OPNSense is setup with VLAN 3 and DHCP). My flint 2 is linked to OPNSense via a TL-SG108E and I've read that this switch isn't the best. I did configure the ports for vlan 3, so it should allow traffic? I've used youtube videos and guides, but those instructions usually results in one of the following:
-Enabling VLAN filtering on br-lan and adding a vlan results in lockout.
-When I select save after configuring a new SSID on Luci, the save button does nothing.
-When I add an SSID by configuring /etc/config/wireless, it broadcasts but I'm unable to connect to it.
root@OpenWrt-Pri:~# ubus call system board
{
"kernel": "6.6.86",
"hostname": "OpenWrt-Pri",
"system": "ARMv8 Processor rev 4",
"model": "GL.iNet GL-MT6000",
"board_name": "glinet,gl-mt6000",
"rootfs_type": "squashfs",
"release": {
"distribution": "OpenWrt",
"version": "24.10.1",
"revision": "r28597-0425664679",
"target": "mediatek/filogic",
"description": "OpenWrt 24.10.1 r28597-0425664679",
"builddate": "1744562312"
}
}
root@OpenWrt-Pri:~# cat /etc/config/network
config interface 'loopback'
option device 'lo'
option proto 'static'
option ipaddr '127.0.0.1'
option netmask '255.0.0.0'
config globals 'globals'
option ula_prefix 'fd94:d51c:93c7::/48'
option packet_steering '1'
config device
option name 'br-lan'
option type 'bridge'
list ports 'lan1'
list ports 'lan2'
list ports 'lan3'
list ports 'lan4'
list ports 'lan5'
option vlan_filtering '1'
config interface 'lan'
option device 'br-lan'
option proto 'static'
option ipaddr '10.153.211.200'
option netmask '255.255.255.0'
option ip6assign '60'
option gateway '10.153.211.1'
list dns '10.153.211.1'
root@OpenWrt-Pri:~# cat /etc/config/wireless
config wifi-device 'radio0'
option type 'mac80211'
option path 'platform/soc/18000000.wifi'
option band '2g'
option channel '6'
option htmode 'HE40'
option txpower '20'
option country 'US'
option cell_density '0'
config wifi-iface 'default_radio0_lan'
option device 'radio0'
option network 'lan'
option mode 'ap'
option ssid 'MAINSSID'
option encryption 'psk2'
option key 'PASSWORD'
config wifi-iface 'guest_radio0'
option device 'radio0'
option mode 'ap'
option ssid 'Guest'
option encryption 'psk2'
option key 'PASSWORD'
option isolate '1'
config wifi-device 'radio1'
option type 'mac80211'
option path 'platform/soc/18000000.wifi+1'
option band '5g'
option channel '36'
option htmode 'HE80'
option country 'US'
option cell_density '0'
config wifi-iface 'default_radio1'
option device 'radio1'
option network 'lan'
option mode 'ap'
option ssid 'MAINSSID5G'
option encryption 'sae-mixed'
option key 'PASSWORD'
option ocv '0'