Created
March 18, 2013 19:04
-
-
Save vigeek/5189855 to your computer and use it in GitHub Desktop.
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
| /etc/modprobe.d/bonding.conf | |
| alias bond0 bonding | |
| options bonding mode=4 miimon=100 lacp_rate=1 | |
| # The loopback network interface | |
| auto lo | |
| iface lo inet loopback | |
| # The primary network interface | |
| auto bond0 | |
| iface bond0 inet static | |
| address 10.10.1.65 | |
| netmask 255.255.255.0 | |
| network 10.10.1.0 | |
| broadcast 10.10.1.255 | |
| gateway 10.10.1.1 | |
| # dns-* options are implemented by the resolvconf package, if installed | |
| dns-nameservers 10.10.1.25 10.10.1.22 | |
| dns-search wildbit.com | |
| bond-slaves none | |
| bond-mode 802.3ad | |
| bond-miimon 100 | |
| bond-downdelay 200 | |
| bond-updelay 200 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment