How to Configure Network (NIC) Bonding/Teaming on Debian Linux - Part 2

Channel: Debian Linux
Abstract: Check NIC Bonding FailOver The red highlighting shows the messages reported by the kernel about the status of the bond0 link. Originally the bond was
Testing the Bond Configuration

Once all the changes to this file have been made, be sure to save those changes. At this point all of the network interfaces should be brought down and then the bond interface should be brought up.

PLEASE NOTE: if the device is being configured vis SSH/telnet or some other remote network protocol, these commands will likely terminate the session. If the interfaces file isn’t configured properly, the administrator may not be able to remote back into the system to fix the issue! The task of bringing up the bond is easily accomplished with a series of commands; ‘ifdown‘ and ‘ifup‘.

  1. ifdown eth0 eth1 – This will bring both network interfaces down.
  2. ifup bond0 – This will tell the system to bring the bond0 interface on-line and subsequently also bring up eth0 and eth1 as slaves to the bond0 interfaces

If all goes according to plan the system should bring eth0 and eth1 down and then bring up bond0. By bringing up bond0, eth0 and eth1 will be reactivated and made to be members of the active-backup NIC team created in the interfaces file earlier. This can be confirmed one of two ways:

1. ifconfig – This utility will show all of the currently active network interfaces

# ifconfig
Check Active Network Interfaces

2. This will show pertinent information about the bond mode and the associated interfaces.

# cat /proc/net/bonding/bond0 
Check NIC Bonding Status

From the output here, it can be determined that this bonded interface is indeed up an running and working in the appropriate mode as configured in the network interfaces file. At this point the bond will have an IP address and be accessible across the network. It is always a good idea however to verify that fail-over does happen in the event that one of the links in the bond goes down.

The easiest way to see if this happens is to watch the syslog file when the currently active interface is disconnected.

# tail -f /var/log/syslog
Check NIC Bonding FailOver

The red highlighting shows the messages reported by the kernel about the status of the bond0 link. Originally the bond was using eth0 as the primary interface but when the network cable was disconnected, the bond had to determine the link was indeed down, then wait the configured 400 ms to completely disable the interface, and then bring one of the other slave interfaces up to handle traffic (eth1 in this example). This can be confirmed again by viewing the status of the bond with the following command:

# cat /proc/net/bonding/bond0
Verify NIC Bonding Failover Status

This output shows that eth0 has had a link failure and the bonding module corrected the problem by bringing the eth1 slaved interface on-line to continue handling the traffic for the bond.

At this point the bond is functioning in an active-backup state as was configured! While this particular guide only went through active-backup teaming, the other methods are very simple to configure as well but will require different parameters depending on which bonding method is chosen. Remember though that of the six bond options available, bond mode 4 will require special configuration on the switches that the particular system is connected.

For more information about the other bond modes please feel free to ask questions below or reference Kernel.org’s bonding documentation at the following URL:

Reference Links: https://www.kernel.org/doc/Documentation/networking/bonding.txt

Pages: 1 2

Ref From: tecmint
Channels: network

Related articles