I’m using a MikroTik CRS226-24G-2S+IN running RouterOS 6.33.5 and I want to know if it is possible to create a bonded interface and have that bond be a member of another interface?
I’d like to bond together the 2 fiber ports and have that bond stay in ether1-master.
/interface ethernet
set [ find default-name=ether1 ] name=ether1-master
set [ find default-name=ether2 ] master-port=ether1-master
set [ find default-name=ether3 ] master-port=ether1-master
...
set [ find default-name=ether22 ] master-port=ether1-master
set [ find default-name=ether23 ] master-port=ether1-master
set [ find default-name=ether24 ] master-port=ether1-master
set [ find default-name=sfpplus1 ] master-port=ether1-master
set [ find default-name=sfpplus2 ] master-port=ether1-master
For my setup each ether port has a general purpose Linux machine attached to it and a NAS device is attached to sfpplus1.
Each device gets its IP address from a DHCP server running on the device attached to ether1. I’d like to connect the NAS using both of the available fiber ports but bonding the ports creates a new interface which does not get addresses from the DHCP server running on the computer attached to ether1.
Is it possible to bond the 2 fiber ports and get an address assign on the bond from the machine attached to ether1?