Flint 3 as AP MultiSSID/VLAN not getting IP via WIFI

The issue was that needed to add Firewall Rule, so as a high level steps are:

  1. Change the Router to AP mode.

  2. Activate Luci

  3. in Switch create the VLAN in Switch 1, the Device eth1.XX will be create automatically
    config switch_vlan
    option device 'switch1'
    option ports '3t 4t 5t 6t 7t'
    option vlan '65'
    option description 'Display'

  4. Create a Brigde device to bridge eth1.xx with eth0, here you have to associate the FW rule (ex:lan or guest)
    config device
    option type 'bridge'
    option name 'br-vlan65'
    list ports 'eth0'
    list ports 'eth1.65'

    config zone
    option name 'lan'
    option input 'ACCEPT'
    option output 'ACCEPT'
    option forward 'ACCEPT'
    list network 'lan'
    list network 'VLAN60'
    list network 'VLAN61'
    list network 'VLAN64'
    list network 'VLAN65'

  5. Create the Vlan interface:
    config interface 'VLAN65'
    option proto 'dhcp'
    option device 'br-vlan65'

  6. Create the Wifi
    config wifi-iface 'wifinet12'
    option device 'wifi0'
    option mode 'ap'
    option ssid 'Wifi-Home'
    option encryption 'sae-mixed'
    option key 'xxxxxxxxxxx'
    option network 'VLAN65'
    option macaddr 'XXxxxx'