VLAN on Switch Chip Mikrotik rb951g-2hnd

Hi,

I have the following set up below and it seems to work ok, I would like to do this on the switch chip
to spare the CPU does anyone know how I go about doing this? I Am using a Mikrotik RB951g-2hnd - V6.28

Thanks

/interface bridge
add comment=“VLAN 100 Bridge” name=bridge-vlan100 protocol-mode=none
add comment=“VLAN 200 Bridge” name=bridge-vlan200 protocol-mode=none

/interface ethernet
set [ find default-name=ether1 ] name=ether01-gateway-wan
set [ find default-name=ether2 ] name=ether02-master-local
set [ find default-name=ether3 ] master-port=none name=ether03-vlan100
set [ find default-name=ether4 ] master-port=none name=ether04-vlan200
set [ find default-name=ether5 ] master-port=none name=ether05-trunk

/interface vlan
add interface=ether5-trunk name=vlan100-ether5-trunk vlan-id=100
add interface=ether5-trunk name=vlan200-ether5-trunk vlan-id=200

/interface bridge port
add bridge=bridge-vlan100 interface=ether3-vlan100
add bridge=bridge-vlan100 interface=vlan100-ether5-trunk
add bridge=bridge-vlan200 interface=ether4-vlan200
add bridge=bridge-vlan200 interface=vlan200-ether5-trunk

I’m wondering the same thing. Did you ever get the answer to this?