]> git.immae.eu Git - perso/Immae/Config/tinc/hosts.git/commitdiff
Android scripts
authorIsmaël Bouya <ismael.bouya@normalesup.org>
Wed, 17 Jun 2015 16:51:07 +0000 (18:51 +0200)
committerIsmaël Bouya <ismael.bouya@normalesup.org>
Wed, 17 Jun 2015 16:51:07 +0000 (18:51 +0200)
ImmaeEu-down [changed mode: 0755->0644]
ImmaeEu-up [changed mode: 0755->0644]

old mode 100755 (executable)
new mode 100644 (file)
index 8e562a4..db41301
@@ -1,11 +1,12 @@
-#!/bin/sh
+#!/bin/sh
 # This file closes down the tap device.
 
-source /tmp/tinc_$NETNAME
-rm -f /tmp/tinc_$NETNAME
+source /sdcard/.tinc/vars
+rm /sdcard/.tinc/vars
+
 ip -6 route del default via $GWIP
 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
 
old mode 100755 (executable)
new mode 100644 (file)
index 00eb60f..95004f3
@@ -1,23 +1,13 @@
-#!/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 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 vpn.immae.eu |sed -n "/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