I find some similar threads, but so far can't tell what issue my config really has.
For example this one looks similar, but is closed already: DHCP Requests not working in Wifi with VLAN
At a customer we run 3 D-Link DAP 2610 appliances. Around 2 years ago I spent quite a lot of time figuring out how to configure VLAN-based Wifi on these boxes. I built our own images (Gitlab CI/CD) with 22.02 back then, added some Packages ... and the stuff worked great since then.
Around 2 weeks ago something happened, since then we couldn't get DHCP into Wifi anymore. Checked the switches, the VLANs, the WRT-conf ... we see requests, but no replies.
I flashed recent upstream images etc etc
Here the config that worked so far, could anyone tell me if there are mistakes or something that should be done differently?
The main issue back then with the hardware was that I had to tag the VLANs on the internal switch as well. This seems to be my thread from 2021: D-Link DAP 2160: vlans and wifi ... (newbie) - #11 by sgw
config interface 'loopback'
option proto 'static'
option ipaddr '127.0.0.1'
option netmask '255.0.0.0'
option device 'lo'
config globals 'globals'
config interface 'lan'
option delegate '0'
option proto 'dhcp'
option stp '1'
option device 'br-lan'
config switch 'switch0'
option enable_vlan '1'
option name 'switch0'
option reset '1'
config switch_vlan 'switch0_vlan10'
option device 'switch0'
option ports '0t 5t'
option vid '10'
option vlan '10'
config switch_vlan 'switch0_vlan11'
option device 'switch0'
option ports '0t 5t'
option vid '11'
option vlan '11'
config switch_vlan 'switch0_vlan12'
option device 'switch0'
option ports '0t 5t'
option vid '12'
option vlan '12'
config interface 'vlan10'
option stp '1'
option delegate '0'
option proto 'dhcp'
option device 'br-vlan10'
config interface 'vlan11'
option stp '1'
option delegate '0'
option proto 'none'
option device 'br-vlan11'
config interface 'vlan12'
option stp '1'
option delegate '0'
option proto 'none'
option device 'br-vlan12'
config device
option name 'br-lan'
option type 'bridge'
list ports 'eth0'
config device
option name 'br-vlan10'
option type 'bridge'
list ports 'eth0.10'
config device
option name 'br-vlan11'
option type 'bridge'
list ports 'eth0.11'
config device
option name 'br-vlan12'
option type 'bridge'
list ports 'eth0.12'