diff options
Diffstat (limited to 'networking')
-rw-r--r-- | networking/ipv6vpn.page | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/networking/ipv6vpn.page b/networking/ipv6vpn.page index 2f82b8e..6a49230 100644 --- a/networking/ipv6vpn.page +++ b/networking/ipv6vpn.page @@ -69,6 +69,11 @@ Then copy the following to /etc/openvpn/server.conf: up /usr/local/bin/ipv6_tunnel_up.sh Create /usr/local/bin/ipv6_tunnel_up.sh: + + #!/usr/bin/env sh + ip link set tun0 up + ip addr add fec0::1/96 dev tun0 + ip route add 2600:3c03:e001:1301::/64 via fec0::2 dev tun0 Then make it executable: |