Lan ports aren't accessible for WiFi client for the first 250-330 seconds after connection

Guys,
I spent some time reading all the info about DSA, and I think that short term solution will be to set different vlans on all the port to push switch move all traffic through CPU. Am I right?
Can I achieve that with following commands:

  # activate VLAN filtering
  ip link set dev br0 type bridge vlan_filtering 1

  # tag traffic on ports
  bridge vlan add dev lan0 vid 10 pvid untagged
  bridge vlan add dev lan1 vid 11 pvid untagged
  bridge vlan add dev lan2 vid 12 pvid untagged
  bridge vlan add dev lan3 vid 13 pvid untagged
  bridge vlan add dev lan4 vid 14 pvid untagged

Also I think that I need to switch from 4.0.5 to HBL/HBD, otherwise vlan filtering won’t work. Right?

P.S. Most of the info I got from DSA and 802.1Q tagging.