So, starting with the simplest configuration (ether1 is a real Intel I210 NIC connected via PCI-passthrough):
Code: Select all
# jan/01/2022 19:56:49 by RouterOS 7.2rc1
#
/interface vlan
add interface=ether1 name=vlan1 vlan-id=40
/interface wireless security-profiles
set [ find default=yes ] supplicant-identity=MikroTik
/port
set 0 name=serial0
/ip cloud
set update-time=no
After that I'm doing
Code: Select all
/interface/pppoe-client/scan vlan1
OK, instead of a simple VLAN let's try a bridge VLAN filtering config:
Code: Select all
/interface bridge
add name=bridge1 pvid=40 vlan-filtering=yes
/interface bridge port
add bridge=bridge1 interface=ether1
/interface bridge vlan
add bridge=bridge1 tagged=ether1 vlan-ids=40
Code: Select all
/interface/pppoe-client/scan bridge1
Let's try a configuration with a tagged vlan on the bridge interface:
Code: Select all
/interface bridge
add name=bridge1 vlan-filtering=yes
/interface vlan
add interface=bridge1 name=vlan2 vlan-id=40
/interface bridge port
add bridge=bridge1 interface=ether1
/interface bridge vlan
add bridge=bridge1 tagged=ether1,bridge1 vlan-ids=40
Code: Select all
/interface/pppoe-client/scan vlan2
So, why untagged bridge VLAN filtering works, but nothing else does? I need to set up multiple VLANs, so the working config with the untagged bridge is not an option.