Channel bonding with powerline and wireless adapters on Linux

From braindump
Revision as of 12:40, 3 January 2014 by Uroesch (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.


At my home network the Internet router is due to termination limitations sitting in my living room. But all the heavy gear is located at the other end of the apartment in my office. To connect the two rooms I use two power line devices. Unfortunately they are not as reliable as they should be. Especially during heavy downloading they get the panties in a not and traffic does no longer pass. To remedy the problem I thought having a backup link via wireless might be a good idea. Here is how I did it.

Prerequisites

  • A linux host with a wired (eth0) and a wireless (wlan0) interface. This example is for Debian/Ubuntu
  • ifenslave

Howto

Disable NetworkManager

This example is for a headless machine which is using only statically assigned addresses. As such NetworkManager is not required. Hence the first thing is to ensure it no longer runs. On the Ubuntu 12.04 LTS host I used for the configuration I did it this way. Your milage may vary depending on the particular flavor or version.

echo manual > /etc/init/network-manager.override

Configure /etc/network/interfaces

The assumption is made that the reader already understands the basic principles of interface bonding. So there is not a lot of detail other than the points to be considered for this type of setup.

Configuration Parameters

For the example below we take the following parameters:

  • SSID: foobar
  • PSK: YourSecretPreSharedKey
  • Primary Interface: eth0
  • Secondary Interface: wlan0
  • Bonding Interface: bond0
  • Host IP: 10.10.10.2/24
  • Default Gateway: 10.10.10.1
  • DNS Server: 10.10.10.1

Since server's wired interface eth0 (10.10.10.2/24) is connected to the one powerline adapter it usually has layer-2 connectivity. Proplems between the two powerline adapters are however not detected as they are completely encapsulated. As such the option bond-mmion commonly found in other tutorials will not work for a setup with powerline adapters. The connectity problem will simply not reach the server's eth0 interface. The bond-arp-interval in conjuction with bond-arp-ip-target ensures that the wired interface (eth0) is only the primary if the default gateway can be reached over that path. In case of the example below the bond-arp-interval is set to 1 second (1000 msec) and the bond-arp-ip-target to the default gateway 10.10.10.1 which happens to be on the far end of the powerline setup (see topology).

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5). 

# The loopback network interface
auto lo
iface lo inet loopback

auto eth0
iface eth0 inet manual
          bond-master bond0
          bond-primary eth0 wlan0 

auto wlan0 
iface wlan0 inet manual
          wpa-ssid "foobar"
          wpa-psk "YourSectretPreSharedKey"
          bond-master bond0
          bond-primary eth0 wlan0 

auto bond0 
iface bond0 inet static 
          bond_mode active-backup
          bond-arp-interval 1000
          bond-arp-ip-target 10.10.10.1
          bond-primary eth0
          slaves eth0 wlan0
          address 10.10.10.2
          netmask 255.255.255.0
          gateway 10.10.10.1
          dns-nameservers 10.10.10.1
iface bond0 inet6 static
          address xxxx:xxxx:xxxx:xxxx::1
          netmask 64
          scope global

Restarting networking

Whenever making changes to networking ensure you have a way to restore the config via serial console or being logged in on directly on the host. Not that I ever knocked myself out of a host by getting the parameters wrong ;).

/etc/init.d/networking restart 

Check if the link is working trying to log via ssh.

Network Diagram

Channel bonding.png

Final configuration as a network diagram.

Testing

Ping Test

To test the if the configuration works as expected use a device on the same network to continuously ping the IP address of the bonding address just configured. In this example that is 10.10.10.2. Walk over to the server with the bonding and rip out the Ethernet cable. The ping should display a little hick-up but continue to work.

To further check if the whole setup is working if the issue surfaces on the powerline adapter the next test is to unplug the one on closer to the router (see topology) while pinging. After a small delay the ping should continue.

Status

To be double sure check the status of the bonding interface via the proc filesystem. After ripping out the Ethernet cable the Currently Active Slave should be the wlan0 interface. After seating the Ethernet cable back into the socket it should fall back to be eth0.

cat  /proc/net/bonding/bond0
Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011)

Bonding Mode: fault-tolerance (active-backup)
Primary Slave: eth0 (primary_reselect always)
Currently Active Slave: wlan0
MII Status: up
MII Polling Interval (ms): 1000
Up Delay (ms): 0
Down Delay (ms): 0 

Slave Interface: eth0
MII Status: down
Speed: 10 Mbps
Duplex: half
Link Failure Count: 1
Permanent HW addr: 00:00:de:ad:be:ef
Slave queue ID: 0 

Slave Interface: wlan0
MII Status: up
Speed: Unknown
Duplex: Unknown
Link Failure Count: 0
Permanent HW addr: 00:00:de:ad:be:ef
Slave queue ID: 0

Different bonding algorithm

To see if the active-backup setup can be topped using another mode for the bond. I switched the configuration to balance-rr and restarted networking. I found that the performance for this topology is slower than only running on the rather slow wireless link only.

Speedtest Results

The speed was conducted with speedtest-cli a python script doing the same on the command line as the flash app on speedtest.net.

Running speedtest-cli on an balance-rr bond is like hit and miss it does seem to take genrally longer and the variation between the results are quite huge. Your milage may vary but for a similar setup I recommend an active-backup setup as it is vastly more reliable and predictable.

Powerline (active-backup)
Retrieving speedtest.net configuration...
Retrieving speedtest.net server list...
Selecting best server based on ping...
Hosted by Init 7 (Glattbrugg): 85.354ms
Testing download speed........................................
Download: 33.64 Mbit/s
Testing upload speed..................................................
Upload speed: 24.67 Mbit/s
Share results: http://www.speedtest.net/result/3181185439.png
Wireless (active-backup)
Retrieving speedtest.net configuration...
Retrieving speedtest.net server list...
Selecting best server based on ping...
Hosted by Init 7 (Glattbrugg): 116.984ms
Testing download speed........................................
Download: 11.16 Mbit/s
Testing upload speed..................................................
Upload speed: 10.65 Mbit/s
Share results: http://www.speedtest.net/result/3181228681.png
Powerline & Wireless (balance-rr)
Retrieving speedtest.net configuration...
Retrieving speedtest.net server list...
Selecting best server based on ping...
Hosted by Init 7 (Glattbrugg): 124.613ms
Testing download speed........................................
Download: 17.17 Mbit/s
Testing upload speed..................................................
Upload speed: 7.39 Mbit/s
Share results: http://www.speedtest.net/result/3181281597.png

References