From: Ismaël Bouya Date: Wed, 12 Feb 2020 00:12:02 +0000 (+0100) Subject: Merge branch 'master' into android X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=e97c5917f6bd6690282f1df59916ab038e0ad9fd;hp=e9be45fa1cc955ff8a0e497f8fd3ed7521d0b5a1;p=perso%2FImmae%2FConfig%2Ftinc%2Fhosts.git Merge branch 'master' into android --- diff --git a/ImmaeEu-down b/ImmaeEu-down old mode 100755 new mode 100644 index d5e9ccf..8a0ef22 --- a/ImmaeEu-down +++ b/ImmaeEu-down @@ -1,11 +1,16 @@ -#!/bin/sh +#!/system/xbin/sh # This file closes down the tap device. -. /tmp/tinc_$NETNAME -rm -f /tmp/tinc_$NETNAME -ip -6 route del default via $GWIP +source /sdcard/.tinc/vars +rm /sdcard/.tinc/vars + +ip -6 rule del from all lookup 100 +ip route del table 100 $REMOTEADDRESS +ip -6 route del table 100 $GWIP dev vpn6 +ip -6 route del table 100 ::/1 via $GWIP dev vpn6 for MYIP in $MYIPS; do - ip -6 addr del $MYIP/96 dev $INTERFACE + ip -6 addr del $MYIP/96 dev vpn6 done -ip -6 link set $INTERFACE down +ip -6 link set vpn6 down + diff --git a/ImmaeEu-up b/ImmaeEu-up old mode 100755 new mode 100644 index 56710a1..0921046 --- a/ImmaeEu-up +++ b/ImmaeEu-up @@ -1,24 +1,18 @@ -#!/bin/sh -# This file sets up the tap device. -# It gives you the freedom to do anything you want with it. -# Use the correct name for the tap device: -# The environment variable $INTERFACE is set to the right name -# on most platforms, but if it doesn't work try to set it manually. +#!/system/xbin/sh -# Give it the right ip and netmask. Remember, the subnet of the -# tap device must be larger than that of the individual Subnets -# as defined in the host configuration file! -SUBDOMAIN=`cat /etc/tinc/$NETNAME/tinc_domaine` -while [ -z "$MYIPS" -o -z "$GWIP" ]; do - MYIPS=`getent hosts ${SUBDOMAIN}.immae.eu | cut -d' ' -f1 | tr "\\n" ' '` - GWIP=`getent hosts gw.vpn.immae.eu | head -n1 | cut -d' ' -f1` - sleep 5 -done -rm -f /tmp/tinc_$NETNAME -echo -e "MYIPS=\"$MYIPS\"\nGWIP=\"$GWIP\"" > /tmp/tinc_$NETNAME -ip -6 link set $INTERFACE up mtu 1280 +SUBDOMAIN=$(cat /sdcard/.tinc/tinc_domaine | tr -c -d "[a-zA-Z0-9.]") + +MYIPS=$(nslookup $SUBDOMAIN.immae.eu |sed -n "/$SUBDOMAIN.immae.eu/"',$p' | grep ^Address | sed -e "s/^[^:]*:[^0-9]*//" | tr '\n' ' ') +GWIP=$(nslookup gw.vpn.immae.eu |sed -n "/gw.vpn.immae.eu/"',$p' | grep ^Address | head -n1 | sed -e "s/^[^:]*:[^0-9]*//" | tr '\n' ' ') + +echo -e "MYIPS=\"$MYIPS\"\nGWIP=\"$GWIP\"" > /sdcard/.tinc/vars +ip -6 link set vpn6 up mtu 1280 for MYIP in $MYIPS; do - ip -6 addr add $MYIP/96 dev $INTERFACE + ip -6 addr add $MYIP/96 dev vpn6 done -ip -6 route add default via $GWIP -(cd /etc/tinc/$NETNAME/hosts && git pull -q origin master) || true +ORIGINAL_GATEWAY=$(for a in $(ip rule show | grep lookup | sed -r 's/.* lookup ([^ ]+).*/\1/'); do ip route show table $a | grep ^default | cut -d ' ' -f 2-5; done | head -1) + +ip -6 rule add prio 100 from all lookup 100 +ip route add table 100 $REMOTEADDRESS $ORIGINAL_GATEWAY +ip -6 route add table 100 $GWIP dev vpn6 +ip -6 route add table 100 ::/1 via $GWIP dev vpn6