aboutsummaryrefslogtreecommitdiff
path: root/modules/private/vpn/tinc/tinc-up
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2020-02-13 13:05:40 +0100
committerIsmaël Bouya <ismael.bouya@normalesup.org>2020-02-13 13:05:40 +0100
commitea9c6fe8041faab128391a0c03ec3bde25e29fa3 (patch)
tree065d038b07b39c031139830378f3d55224096648 /modules/private/vpn/tinc/tinc-up
parent8a304ef46e1ad221253f883a8a296a12018e3d30 (diff)
downloadNix-ea9c6fe8041faab128391a0c03ec3bde25e29fa3.tar.gz
Nix-ea9c6fe8041faab128391a0c03ec3bde25e29fa3.tar.zst
Nix-ea9c6fe8041faab128391a0c03ec3bde25e29fa3.zip
Add Tinc VPN
Diffstat (limited to 'modules/private/vpn/tinc/tinc-up')
-rwxr-xr-xmodules/private/vpn/tinc/tinc-up14
1 files changed, 14 insertions, 0 deletions
diff --git a/modules/private/vpn/tinc/tinc-up b/modules/private/vpn/tinc/tinc-up
new file mode 100755
index 0000000..26c1ec3
--- /dev/null
+++ b/modules/private/vpn/tinc/tinc-up
@@ -0,0 +1,14 @@
1#!/usr/bin/env bash
2
3echo 1 > /proc/sys/net/ipv6/conf/@mainInterface@/proxy_ndp
4echo 1 > /proc/sys/net/ipv6/conf/all/forwarding
5
6SUBNET=`getent hosts sn.vpn.immae.eu | head -n1 | cut -d' ' -f1`
7GWIP=`getent hosts gw.vpn.immae.eu | head -n1 | cut -d' ' -f1`
8
9ip -6 link set $INTERFACE up mtu 1280 txqueuelen 1000
10
11ip -6 addr add $GWIP/96 dev $INTERFACE
12ip -6 route add $SUBNET/80 dev $INTERFACE
13
14ip neigh add proxy $GWIP dev @mainInterface@