Doubt vlan, ssid from AP

Hello, first of all, sorry for my bad English.

I have a RB-Groove A-2HN, but I have problems.
My goal was that the AP had two SSID’s, (virtualAP’s), each associated with a different VLAN, then according to a pc be connected ssid, would have access to a network or to another.

I created the vlan’s, I created the bridge, I created the VirtualAP, but I connect with the PC and I have ssid ping the network.

Any help please?
esquema.jpg

Post the configuration, I’ll fix it.

There you go, I hope you can help me.
conf.rsc (17 KB)

I found, you have nearby the default config. Do reset to default and paste following lines.

Create VLAN sub interfaces:

interface vlan add arp=enabled disabled=no interface=ether1 name=ether1.10 use-service-tag=no vlan-id=10 disabled=no
interface vlan add arp=enabled disabled=no interface=ether1 name=ether1.20 use-service-tag=no vlan-id=20 disabled=no

Configure Wireless and add second one:

interface wireless set 0 ssid=wlan10 security-profile=default mode=ap-bridge wireless-protocol=802.11 disabled=no
interface wireless add name=wlan20 master-interface=wlan1 ssid=wlan100 security-profile=default disabled=no

Create bridges for each VLAN:

interface bridge add name=bridge10 disabled=no
interface bridge add name=bridge20 disabled=no

Connect ethernets with wireless ports:

interface bridge port add bridge=bridge10 interface=ether1.10 disabled=no
interface bridge port add bridge=bridge10 interface=wlan10 disabled=no
interface bridge port add bridge=bridge10 interface=ether1.20 disabled=no
interface bridge port add bridge=bridge10 interface=wlan20 disabled=no

You can change security on WiFi
Add some address for management and assign it to the bridge10 or bridge20.
When you finished, remove ether1 from default bridge-local and you lost connection to the MKT. If you didn’t do it, VLANs not work.

I think you meant to use “bridge20” in the last two lines. Also, there is no interface named “wlan10”; the interface with that SSID is named “wlan1”:

interface bridge port add bridge=bridge10 interface=ether1.10 disabled=no
interface bridge port add bridge=bridge10 interface=wlan1 disabled=no
interface bridge port add bridge=bridge20 interface=ether1.20 disabled=no
interface bridge port add bridge=bridge20 interface=wlan20 disabled=no

Yes, you are right. Sorry.

Thank you all, it is working properly