How can I create on Trunk mikrotik with Bridge

Hello
I have a router Mikrotik CCR1036
And vlan 10, vlan 20, vlan 30, vlan 40, ether8
All in Bridge1
I want to create Trunk to Contact with cisco

dont use a bridge!
Just add vlans to the interface connected to Cisco.

Example

/interface vlan
add interface=eth3 name=vlan15-Management vlan-id=15
add interface=eth3 l2mtu=1594 name=vlan35-private.net vlan-id=35
add interface=eth3 l2mtu=1594 name=vlan36-VoIP-CCTV vlan-id=36
add interface=eth3 l2mtu=1594 name=vlan37-guests vlan-id=37

Alternative you could use Switch VLAN http://wiki.mikrotik.com/wiki/Manual:Switch_Chip_Features

ccr1036 do not have integrated switch chip

Thank you
Is ether3 is now Trunk Port ??

That’s right

  1. Set eth8 master port–>none
  2. /interface bridge add name=bridge10 comment=toCisco
  3. /interface bridge port add interface=ether8-slave-local bridge=bridge10 comment=toCisco disabled=no
  4. /interface vlan add vlan-id=30 name=vlan30 interface=ether8
    /interface vlan add vlan-id=40 name=vlan40 interface=ether8
    …add vlans…
  5. /interface bridge port add interface=vlan20 bridge=bridge10 comment=toCisco
    /interface bridge port add interface=vlan30 bridge=bridge30 comment=toCisco
    …add vlans to bridge…

Thank you
Is now Bridge10 is Trunk Port ??

yes, but eth8 is trunk port

OK , Thank

Yes ether3 is Trunk Port.. change eth3 to ether8 for your need and you have trunk port on ether8
I dont see the need to use bridge .. but I dont know what your exact need is..

Sorry I didnt know that CCR1036 does not have integrated Switch chip (ccr1009 has..)…