Multiple Trunk ports on CLoud router

HI all,
can you advice me how to setup cloud router switch 24p, to have multiple Trunk ports?
I have setup one as follow:
/interface vlan add name=vlan40 vlan-id=1 interface=ether9 disabled=no
/interface vlan add name=vlan44 vlan-id=2 interface=ether9 disabled=no

/interface bridge add name=br-vlan1
/interface bridge add name=br-vlan2
/interface bridge port add interface=vlan1 bridge=br-vlan1 disabled=no
/interface bridge port add interface=ether2 bridge=br-vlan1 disabled=no

my question is how do I add another port as Trunk for the same vlans?

Mikrotik is different in the way vlans are used, at least from Cisco.

You will create a new name for every vlan/port combo and apply the appropriate vlan-id. For instance, let’s say you were going to have vlan 2 on ports 1 and 3.


/interface vlan
add name=vlan1-trunk-eth1 interface=ether1 vlan-id=1
add name=vlan2-trunk-eth1 interface=ether1 vlan-id=2
add name=vlan2-trunk-eth3 interface=ether3 vlan-id=2

So in short, you need a unique name for each vlan instance / assignment.

ok thanks for update, I will check and try it with this configuration

worked like charm, vlans were defined and assigned to master port. Since there only switch port should be configured.

Thanks for all help.