On 2021-03-01 16:02, Michael Biebl wrote: > Am 01.03.21 um 13:59 schrieb Michel Meyers: > >> # /etc/network/interfaces -- configuration file for ifup(8), ifdown(8) >> >> # The loopback interface >> auto lo >> iface lo inet loopback >> >> # The first network card - this entry was created during the Debian >> installation >> # (network, broadcast and gateway are optional) >> #auto eth0 >> auto bond0 >> iface bond0 inet static >> address 192.168.1.2 >> netmask 255.255.255.0 >> gateway 192.168.1.1 >> mtu 9000 >> slaves ens6 eth1 > > > > Reading https://www.commandlinux.com/man-page/man5/interfaces.5.html , > it appears "slave" is no native ifupdown config stanza. > I suppose it is implemented by a third party package?
Guessing its Debian specific? I got it from here: https://wiki.debian.org/Bonding#Configuration_-_Example_1 - Michel