Created
November 5, 2012 13:29
-
-
Save sdoro/4017181 to your computer and use it in GitHub Desktop.
bonding in Debian Squeeze
This file contains 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
echo "alias bond0 bonding | |
options bonding mode=4 miimon=100 max_bonds=1" > /etc/modprobe.d/bonding.conf | |
# modprobe -v bonding | |
insmod /lib/modules/2.6.32-5-686/kernel/drivers/net/bonding/bonding.ko | |
# dmesg| tail -n 2 | |
[1724922.513994] Ethernet Channel Bonding Driver: v3.5.0 (November 4, 2008) | |
[1724922.514005] bonding: MII link monitoring set to 100 ms | |
# cat /proc/net/bonding/bond0 | |
Ethernet Channel Bonding Driver: v3.5.0 (November 4, 2008) | |
Bonding Mode: IEEE 802.3ad Dynamic link aggregation | |
Transmit Hash Policy: layer2 (0) | |
MII Status: down | |
MII Polling Interval (ms): 100 | |
Up Delay (ms): 0 | |
Down Delay (ms): 0 | |
802.3ad info | |
LACP rate: slow | |
Aggregator selection policy (ad_select): stable | |
bond bond0 has no active aggregator | |
# echo "bonding" >> /etc/modules |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment