I'm trying to do a simple trunk -> access port vlan split per RouterOS - RouterOS - MikroTik Documentation (really, combining examples 1 and 3); when I have vlan filtering off, the vlan ip addresses are pingable over the tagged uplink port, but not when vlan filtering is turned off. Initially, a client on one of the access ports could ping the router, but that seems to have stopped working (the router is not responding to arp requests, nor sending them out).
feb/02/1970 20:32:01 by RouterOS 6.46.7
software id = G0ZP-8CHD
model = RB760iGS
serial number = A51A0980D52F
/interface bridge
add name=uplink-bridge vlan-filtering=yes
/interface ethernet
set [ find default-name=ether1 ] comment="handoff 1" speed=100Mbps
set [ find default-name=ether2 ] comment="handoff 2" speed=100Mbps
set [ find default-name=ether3 ] speed=100Mbps
set [ find default-name=ether4 ] speed=100Mbps
set [ find default-name=ether5 ] comment="Local access port" speed=100Mbps
set [ find default-name=sfp1 ] comment=uplink
/interface vlan
add interface=uplink-bridge name=vlan200 vlan-id=200
add interface=uplink-bridge name=vlan613 vlan-id=613
/interface bridge port
add bridge=uplink-bridge interface=ether1 pvid=200
add bridge=uplink-bridge interface=ether2 pvid=613
add bridge=uplink-bridge interface=sfp1
/interface bridge vlan
add bridge=uplink-bridge tagged=sfp1 untagged=ether1 vlan-ids=200
add bridge=uplink-bridge tagged=sfp1 untagged=ether2 vlan-ids=613
/ip address
add address=192.168.88.1/24 comment=defconf interface=ether5 network=192.168.88.0
add address=207.55.110.1/30 interface=vlan200 network=207.55.110.0
add address=10.99.200.10/24 interface=vlan200 network=10.99.200.0
add address=10.99.113.10/24 interface=vlan613 network=10.99.113.0