Created
September 13, 2015 06:03
-
-
Save gnilchee/67224a8e0572e8153e00 to your computer and use it in GitHub Desktop.
example bonding config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DEVICE=bond0 | |
TYPE=Ethernet | |
BOOTPROTO=none | |
DEFROUTE=yes | |
IPV4_FAILURE_FATAL=no | |
BONDING_MASTER=yes | |
NM_CONTROLLED=no | |
ONBOOT=yes | |
IPADDR=[public ip] | |
PREFIX=[subnet, i.e. 24] | |
GATEWAY=[gateway ip] | |
DOMAIN=[domain] | |
BONDING_OPTS="mode=1 miimon=100" # this sets polling at 100ms and fault-tolerance |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DEVICE=eth0 | |
TYPE=Ethernet | |
BOOTPROTO=none | |
DEFROUTE=yes | |
IPV4_FAILURE_FATAL=no | |
ONBOOT=yes | |
MASTER=bond0 | |
SLAVE=yes | |
NM_CONTROLLED=no |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DEVICE=eth1 | |
TYPE=Ethernet | |
BOOTPROTO=none | |
DEFROUTE=yes | |
IPV4_FAILURE_FATAL=no | |
ONBOOT=yes | |
MASTER=bond0 | |
SLAVE=yes | |
NM_CONTROLLED=no |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment