Line 20: | Line 20: | ||
TODO: Test the configuration. | TODO: Test the configuration. | ||
/etc/NetworkManager/system-connections/Bond | /etc/NetworkManager/system-connections/Bond: | ||
<pre> | <pre> | ||
Line 27: | Line 27: | ||
uuid=f77ad31a-5b83-4b70-a355-5a76220b2fb6 | uuid=f77ad31a-5b83-4b70-a355-5a76220b2fb6 | ||
type=bond | type=bond | ||
interface-name=testbond | |||
autoconnect=false | |||
[bond] | [bond] | ||
interface-name= | interface-name=testbond | ||
</pre> | </pre> | ||
/etc/NetworkManager/system-connections/BondSlave | /etc/NetworkManager/system-connections/BondSlave: | ||
<pre> | <pre> | ||
Line 41: | Line 42: | ||
master=f77ad31a-5b83-4b70-a355-5a76220b2fb6 | master=f77ad31a-5b83-4b70-a355-5a76220b2fb6 | ||
slave-type=bond | slave-type=bond | ||
[802-3-ethernet] | [802-3-ethernet] | ||
mac-address=02:aa:bb:cc:dd:ee | mac-address=02:aa:bb:cc:dd:ee |
Revision as of 15:20, 4 April 2013
Plase wait for NetworkManager 0.9.8 before considering this feature fully working. I have prepared a feature page for this.
I haven't yet tested this and the following configuration is reported to be broken through the mailing list. But, eventually, this page will include a working and tested configuration.
Using iproute2
Bridge devices can be easily adding using the ip
command. This way is suitable for testing.
name=my-bridge ip link add $name type bridge
Using NetworkManager (native configuration)
TODO: Test the configuration.
/etc/NetworkManager/system-connections/Bond:
[connection] id=Bond uuid=f77ad31a-5b83-4b70-a355-5a76220b2fb6 type=bond interface-name=testbond autoconnect=false [bond] interface-name=testbond
/etc/NetworkManager/system-connections/BondSlave:
[connection] id=BondSlave uuid=6c8ca7ff-7e45-4ace-88e7-67f0e9b1b149 type=802-3-ethernet master=f77ad31a-5b83-4b70-a355-5a76220b2fb6 slave-type=bond [802-3-ethernet] mac-address=02:aa:bb:cc:dd:ee
Note that you have to set up the correct MAC for to match BondSlave to the right Ethernet interface. You should generate one uuid for Bond and but it to BondSlave's master option and one uuid for BondSlave.
Using NetworkManager (ifcfg-rh configuration plugin)
TODO: Fix and simplify the following configuration.
# cat ifcfg-bond0 DEVICE=bond0 BOOTPROTO=dhcp ONBOOT=yes NM_CONTROLLED="yes" BONDING_MASTER="yes" BONDING_OPTS="miimon=50 mode=balance-tlb" # cat ifcfg-em3 BOOTPROTO="none" DEVICE="em3" ONBOOT="yes" MASTER="bond0" SLAVE="yes" TYPE=Ethernet NM_CONTROLLED="yes"