summaryrefslogtreecommitdiffstats
path: root/retiolum/scripts/tinc_setup/tinc-up
blob: ae7c68e684c06431e7b66c232d96c081609be14c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# source: krebscode/painload/retiolum/scripts/tinc_setup/tinc-up

dirname="`dirname "$0"`"

conf=$dirname/tinc.conf

name=`sed -rn 's|^ *Name *= *([^ ]*) *$|\1|p' $conf`

host=$dirname/hosts/$name

route4=10.7.7.0/24
addr4=`sed -rn 's|^ *Subnet *= *(10\.[^ ]*) *$|\1|p' $host`

route6=42::/16
addr6=`sed -rn 's|^ *Subnet *= *(42:[^ ]*) *$|\1|p' $host`

ifconfig $INTERFACE up $addr4
route add -net $route4 dev $INTERFACE
ip -6 addr add $addr6 dev $INTERFACE
ip -6 route add $route6 dev $INTERFACE