From 30ec5d0a41d162ebe89a5cff44e12f3153d21fe0 Mon Sep 17 00:00:00 2001 From: tv Date: Thu, 10 Nov 2011 00:35:24 +0100 Subject: //retiolum tinc-up: use iproute2 only --- retiolum/scripts/tinc_setup/tinc-up | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) (limited to 'retiolum/scripts/tinc_setup/tinc-up') diff --git a/retiolum/scripts/tinc_setup/tinc-up b/retiolum/scripts/tinc_setup/tinc-up index 44dc0516..1a04706a 100755 --- a/retiolum/scripts/tinc_setup/tinc-up +++ b/retiolum/scripts/tinc_setup/tinc-up @@ -8,14 +8,12 @@ name=`sed -n 's|^ *Name *= *\([^ ]*\) *$|\1|p' $conf` host=$dirname/hosts/$name -prefix4=8 -route4=42.0.0.0/$prefix4 -addr4=`sed -n 's|^ *Subnet *= *\(42\.[^ /]*\)\(/[^ ]*\)\? *$|\1|p' $host` +addr4=`sed -n 's|^ *Subnet *= *\(42[.][^ ]*\) *$|\1|p' $host` +ip -4 addr add $addr4 dev $INTERFACE +ip -4 route add 42.0.0.0/8 dev $INTERFACE -route6=42::/16 -addr6=`sed -n 's|^ *Subnet *= *\(42:[^ ]*\) *$|\1|p' $host` - -ifconfig $INTERFACE up $addr4/$prefix4 -route add -net $route4 dev $INTERFACE +addr6=`sed -n 's|^ *Subnet *= *\(42[:][^ ]*\) *$|\1|p' $host` ip -6 addr add $addr6 dev $INTERFACE -ip -6 route add $route6 dev $INTERFACE +ip -6 route add 42::/16 dev $INTERFACE + +ip link set $INTERFACE up -- cgit v1.2.3