AlwaysOn
Setup
We are currently working on installation instructions using an OpenWrt router and setting up proxy on PlantLab. Below contains the steps we followed for compiling and configuring MPTCP on Arch Linux.
Hardware requirements
Access Point: We sugest that your access point should have three network interfaces:
- A wired interface for connecting to your modem.
- A wireless interface to act as your Access Point. This device must support running in AP mode. To check this, you can check the output of iw list. Make sure that "AP" is listed under "Supported interface modes".
- A second wired or wireless interface to setup as your secondary connection (for multihoming).
Proxy: This device only needs a single network interface, but we suggest using a well-provisioned server with a fast connection that is close to the Access Point. This limits the performance impact of routing all traffic through your proxy.
MPTCP kernel installation instructions
For this project, we used Arch Linux on our prototype router and proxy. Below are the list of steps we followed to compile and boot an MPTCP kernel on both our Access Point and Proxy devices. Alternatively, the MPTCP project page contains compilation and installation instructions for a number of Linux Operating Systems and devices
Note: Arch currently uses GCC version 6, which is not yet supported by the MPTCP project (requires GCC 3, 4, or 5). Check Arch's Downgrading packages wiki for instructions on how to install GCC version 5.
Below are the steps we followed to get the MPTCP-enabled kernel running on Arch.
curl -L -O https://aur.archlinux.org/cgit/aur.git/snapshot/linux-mptcp.tar.gz tar vfxz linux-mptcp.tar.gz cd linux-mptcp
Before continuing with the next command, you should use your favorite text editor to review the contents of the PKGBUILD and linux.install files, ensuring that each does not contain any malicious code. Then run the following:
makepkg -sri
This will prompt for a sudo password and will then install the MPTCP initramfs and vmlinuz files to /boot. The final step is to add the MPTCP option to your boot loader configuration. Instructions for this depend on what type of bootloader you are using (e.g., systemd-boot for EFI or GRUB for BIOS).
Proxy configuration
After booting into the MPTCP kernel, install, configure, and enable your IP tunneling software of choice. Arch Linux supports a number of options, such as GRE, OpenVPN, or VPN over SSH.
Access point configuration
After making a bootable MPTCP kernel, you need to enable IP tunneling, configure MPTCP routing, and enable the Access Point. Examples of how to configure MPTCP routing can be found on the MPTCP configuration instructions page.
If your secondary connection is using WiFi to connect to your secondary connection, you will need to install and configure WPA supplicant if the network uses WPA security.
To set up the router's Access Point, we followed the instructions on the Arch wiki's Software access point configuration page. You will want to make sure that traffic from this interface is routed via your IP tunnel. Instructions for this depend on the IP tunneling software you are using.