I'm new to Mikrotik devices and tried to get a working configuration for days.
I would like to use two CRS309-1G-8S+IN as Switches behind a router.
The switches should be in a HA setup with MLAG.
The connection to the router should be with with LACP as the connection to the client. The best description is probably this drawing:
At the moment I would like to use it without different VLANs.
The configuration I've tried is like this (I've tried a lot of small changes to that):
Code: Select all
# BASE
/system identity
set name=switchy1
/interface bridge
add igmp-snooping=yes name=bridge pvid=1 priority=0x2000 vlan-filtering=no
/ip address
add address=192.168.1.222/24 interface=vlan1
# REST
/interface bonding
add mlag-id=12 mode=802.3ad name=client-bond1 slaves=sfp-sfpplus2
add mlag-id=13 mode=802.3ad name=client-bond2 slaves=sfp-sfpplus3
add mlag-id=14 mode=802.3ad name=client-bond3 slaves=sfp-sfpplus4
add mlag-id=15 mode=802.3ad name=client-bond4 slaves=sfp-sfpplus5
add mlag-id=16 mode=802.3ad name=client-bond5 slaves=sfp-sfpplus6
add mlag-id=17 mode=802.3ad name=client-bond6 slaves=sfp-sfpplus7
/interface bridge mlag
set bridge=bridge peer-port=sfp-sfpplus8
/interface bridge port
add bridge=bridge interface=sfp-sfpplus8 pvid=99
add bridge=bridge interface=client-bond1
add bridge=bridge interface=client-bond2
add bridge=bridge interface=client-bond3
add bridge=bridge interface=client-bond4
add bridge=bridge interface=client-bond5
add bridge=bridge interface=client-bond6
/interface bridge vlan
add bridge=bridge tagged=sfp-sfpplus8 vlan-ids=1
# UPSTREAM
/interface bonding
add mlag-id=11 mode=802.3ad name=upstream-bond slaves=sfp-sfpplus1
/interface bridge port
add bridge=bridge interface=upstream-bond
I would be nice if someone could help me or point me in the right direction.