Announcement: Public Wireguard server for testing
Jörg Thalheim
joerg at thalheim.io
Sun Feb 26 19:25:02 CET 2017
In this context, I found the following rules useful to bypass the vpn for some routes:
#!/usr/bin/env bash
# /etc/wireguard/<profile>.sh
if [ "${1:-down}" = "up" ]; then
action="add"
else
action="del"
fi
ip rule $action priority 32763 to 192.168.0.0/16 lookup main
ip rule $action priority 32763 to 172.16.0.0/12 lookup main
ip rule $action priority 32763 to 10.0.0.0/8 lookup main
ip -6 rule $action priority 32763 to fd::/8 lookup main
ip -6 rule $action priority 32763 to 2000::/3 unreachable
#/etc/wireguard/<profile>.conf
[Interface]
#....
PostUp=/etc/wireguard/<profile>.sh up
PostDown=/etc/wireguard/<profile>.sh down
On 2017-02-25 14:28, Fredrik Strömberg wrote:
> Hi all,
>
> I'm one of the co-founders of Mullvad, as well as a long time lurker
> of this list. I guess I haven't engaged in public discussion until now
> though.
>
> Mullvad is trying out Wireguard, and in that spirit we've set up a
> server for public use. Just follow the instructions at the link below
> and email your pubkey to support at mullvad.net.
>
> https://mullvad.net/guides/wireguard-and-mullvad-vpn/
>
> We're doing this so that people might try Wireguard more easily, as
> well as for us so that we can learn. We're supporting it on a purely
> experimental basis, so no guarantees on uptime or anything. Sometime
> soon we'll install a 10 Gbit card to see where things break first.
> Enjoy :)
>
> Cheers,
> Fredrik Strömberg
> _______________________________________________
> WireGuard mailing list
> WireGuard at lists.zx2c4.com
> https://lists.zx2c4.com/mailman/listinfo/wireguard
More information about the WireGuard
mailing list