diff options
-rwxr-xr-x | ImmaeEu-down | 11 | ||||
-rwxr-xr-x | ImmaeEu-up | 14 |
2 files changed, 13 insertions, 12 deletions
diff --git a/ImmaeEu-down b/ImmaeEu-down index d5e9ccf..8dc9fc4 100755 --- a/ImmaeEu-down +++ b/ImmaeEu-down | |||
@@ -1,11 +1,12 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | # This file closes down the tap device. | 2 | # This file closes down the tap device. |
3 | 3 | ||
4 | . /tmp/tinc_$NETNAME | 4 | [ -e /tmp/tinc_$NETNAME ] && . /tmp/tinc_$NETNAME |
5 | rm -f /tmp/tinc_$NETNAME | 5 | [ -e /run/tinc_$NETNAME.vars ] && . /run/tinc_$NETNAME.vars |
6 | ip -6 route del default via $GWIP | 6 | rm -f /tmp/tinc_$NETNAME /run/tinc_$NETNAME.vars |
7 | for MYIP in $MYIPS; do | 7 | [ -n "$GWIP" ] && ip -6 route del default via $GWIP |
8 | ip -6 addr del $MYIP/96 dev $INTERFACE | 8 | for MYIP in "$MYIPS"; do |
9 | ip -6 addr del $MYIP/96 dev $INTERFACE | ||
9 | done | 10 | done |
10 | ip -6 link set $INTERFACE down | 11 | ip -6 link set $INTERFACE down |
11 | 12 | ||
@@ -8,17 +8,17 @@ | |||
8 | # Give it the right ip and netmask. Remember, the subnet of the | 8 | # Give it the right ip and netmask. Remember, the subnet of the |
9 | # tap device must be larger than that of the individual Subnets | 9 | # tap device must be larger than that of the individual Subnets |
10 | # as defined in the host configuration file! | 10 | # as defined in the host configuration file! |
11 | SUBDOMAIN=`cat /etc/tinc/$NETNAME/tinc_domaine` | 11 | SUBDOMAIN=$(echo "$NAME" | sed -e "s/\([A-Z][a-z0-9]*\)/\L\1 /g;" | awk '{ for (i=NF; i>1; i--) printf("%s.",$i); print $1; }') |
12 | while [ -z "$MYIPS" -o -z "$GWIP" ]; do | 12 | while [ -z "$MYIPS" -o -z "$GWIP" ]; do |
13 | MYIPS=`getent hosts ${SUBDOMAIN}.immae.eu | cut -d' ' -f1 | tr "\\n" ' '` | 13 | MYIPS=`getent hosts ${SUBDOMAIN}.immae.eu | cut -d' ' -f1 | tr "\\n" ' '` |
14 | GWIP=`getent hosts gw.vpn.immae.eu | head -n1 | cut -d' ' -f1` | 14 | GWIP=`getent hosts gw.vpn.immae.eu | head -n1 | cut -d' ' -f1` |
15 | sleep 5 | 15 | sleep 5 |
16 | done | 16 | done |
17 | rm -f /tmp/tinc_$NETNAME | 17 | rm -f /run/tinc_$NETNAME.vars |
18 | echo -e "MYIPS=\"$MYIPS\"\nGWIP=\"$GWIP\"" > /tmp/tinc_$NETNAME | 18 | echo -e "MYIPS=\"$MYIPS\"\nGWIP=\"$GWIP\"" > /run/tinc_$NETNAME.vars |
19 | ip -6 link set $INTERFACE up mtu 1280 | 19 | ip -6 link set $INTERFACE up mtu 1280 |
20 | for MYIP in $MYIPS; do | 20 | for MYIP in $MYIPS; do |
21 | ip -6 addr add $MYIP/96 dev $INTERFACE | 21 | ip -6 addr add $MYIP/96 dev $INTERFACE |
22 | done | 22 | done |
23 | ip -6 route add default via $GWIP | 23 | ip -6 route add default via $GWIP |
24 | (cd /etc/tinc/$NETNAME/hosts && git pull -q origin master) || true | 24 | (cd /etc/tinc/$NETNAME/hosts && git pull -q origin master) || true |