From Fedora Project Wiki
Line 5: | Line 5: | ||
== The 'keyfile' way == | == The 'keyfile' way == | ||
TODO: | TODO: Test the configuration. | ||
bonding interface: | |||
<pre> | |||
[connection] | |||
id=... | |||
uuid=... | |||
type=bond | |||
[bond] | |||
interface-name=bond0 | |||
</pre> | |||
slave interface: | |||
<pre> | |||
[connection] | |||
id=... | |||
uuid=... | |||
master=bond0 | |||
slave-type=bond | |||
</pre> | |||
== The 'ifcfg-rh' way == | == The 'ifcfg-rh' way == |
Revision as of 23:59, 16 August 2012
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.
The 'keyfile' way
TODO: Test the configuration.
bonding interface:
[connection] id=... uuid=... type=bond [bond] interface-name=bond0
slave interface:
[connection] id=... uuid=... master=bond0 slave-type=bond
The 'ifcfg-rh' way
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"