diff options
author | Felix Richter <Felix.Richter@syntax-fehler.de> | 2011-05-29 15:48:47 +0200 |
---|---|---|
committer | Felix Richter <Felix.Richter@syntax-fehler.de> | 2011-05-29 15:48:47 +0200 |
commit | 590f55d10dd4ce2e00ecf422e38385d3c7bace29 (patch) | |
tree | a4e07d12b5763bd667438dce18ad092127ec4233 /retiolum/scripts/tinc_setup/tinc-up | |
parent | 427bdf4e2093217f967384f785e3907930a74a21 (diff) | |
parent | e0ec5d2e8560ae433ee677622b24ba82dbe7630b (diff) |
Merge branch 'master' of github.com:krebscode/painload
Diffstat (limited to 'retiolum/scripts/tinc_setup/tinc-up')
-rwxr-xr-x | retiolum/scripts/tinc_setup/tinc-up | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/retiolum/scripts/tinc_setup/tinc-up b/retiolum/scripts/tinc_setup/tinc-up new file mode 100755 index 00000000..ae7c68e6 --- /dev/null +++ b/retiolum/scripts/tinc_setup/tinc-up @@ -0,0 +1,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 |