I would like to use a rb450 as a layer2 switch by creating a bridge and add all the ports to the bridge. In a cisco switch I would just use one port as a trunk
example:
interface FastEthernet0/1
description Customer 1
switchport access vlan 164
switchport mode access
!
interface FastEthernet0/3
description Customer 2
switchport access vlan 165
switchport mode access
!
interface GigabitEthernet0/1
description Trunk to Core Router
switchport trunk encapsulation dot1q
switchport mode trunk
!
Can I do the same thing with a mikrotik
use ether1 as Trunk, ether2 = vlan200, ether3 = vlan201
I have not been able to change the mikrotik’s interface’s default vlan.
Thanks,