On 2016-11-15 21:44, Jason A. Donenfeld wrote: > Hey folks, > > Looks like there are various Ubuntu PPAs for WireGuard floating > around. I'd like to officially endorse one on the install section of > the website. Is anybody interested in being the Ubuntu downstream for > WireGuard? > > Thanks, > Jason > _______________________________________________ > WireGuard mailing list > WireGuard@lists.zx2c4.com > http://lists.zx2c4.com/mailman/listinfo/wireguard Hey Jason, I'm trying to maintain one now, but it is my first one and trying to keep it up to date. https://launchpad.net/~eggiecode/+archive/ubuntu/wireguard Testing it constantly on 4 of my servers and works it great! Even added a patch for ifupdown to setup WireGuard in /etc/network/interfaces The only downside is that I disabled AVX2 cpu extention in the code, because of kernel panics on VPS's by a hosting company (https://eggiecode.org/wg-kernel-panic.png). Greetz, Egbert Verhage Below example config of wireguard in network/interfaces iface wg0 inet wireguard netmask 255.255.255.0 address 192.168.2.254 wg_config /etc/network/wg0.ini up ip -4 route add 10.20.1.0/24 dev wg0 pre-down ip -4 route del 10.20.1.0/24 dev wg0 up ip -4 route add 10.20.3.0/24 dev wg0 pre-down ip -4 route del 10.20.3.0/24 dev wg0 up ip -4 route add 10.20.2.0/24 dev wg0 pre-down ip -4 route del 10.20.2.0/24 dev wg0 iface wg0 inet6 wireguard netmask 64 address fd4a:2831:fc20:f528:fe::1 up ip -6 route add 2001:41d0:2:5c39::/64 dev wg0 pre-down ip -6 route del 2001:41d0:2:5c39::/64 dev wg0 up ip -6 route add 2a00:f10:700:5f::/60 dev wg0 pre-down ip -6 route del 2a00:f10:700:5f::/60 dev wg0 up ip -6 route add 2001:41d0:d:2a83::/64 dev wg0 pre-down ip -6 route del 2001:41d0:d:2a83::/64 dev wg0 (Forgot to send it to the mailinglist.)