So my settings are as following.
VLAN-10 is my home trusted network.
VLAN-30 is my guest network.
ether2 is a trunk port, goes to a 802.1q aware switch.
wlan1 is my home wifi network
wlan2 is guest wifi
VLAN-10 is working perfectly,
Hosts in VLAN-30 can’t ping their default gateway (10.29.30.1) - address unreachable, also no L2 connectivity with the default gateway.
What am I doing wrong here? I’ve been banging my head against the wall for two hours now.
Hardware is RB751G-2HnD, SW ver 6.42.10
############# ROUTEROS CODE ##############
### INTERFACE BRIDGE
/interface bridge
add name=br-main protocol-mode=mstp pvid=10 vlan-filtering=yes
/interface bridge msti
add bridge=br-main identifier=1 vlan-mapping=1-4094
/interface bridge port
add bridge=br-main interface=wlan1 pvid=10
add bridge=br-main interface=ether2
add bridge=br-main interface=wlan2-guest pvid=30
/interface bridge vlan
add bridge=br-main tagged=ether2 vlan-ids=10
add bridge=br-main tagged=ether2 vlan-ids=30
### INTERFACE VLAN
/interface vlan
add interface=br-main name=vlan30-guest vlan-id=30
### IP ADDRESS
/ip address
add address=10.29.30.1/24 interface=vlan30-guest
add address=10.29.10.1/24 interface=br-main