2010-05-29 01:03:30 +03:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
if [ "$ACTION" = ifup ]; then
|
|
|
|
. /etc/functions.sh
|
|
|
|
|
|
|
|
include /lib/network
|
|
|
|
scan_interfaces
|
|
|
|
|
|
|
|
update_tunnel() {
|
|
|
|
local cfg="$1"
|
|
|
|
|
|
|
|
local proto
|
|
|
|
config_get proto "$cfg" proto
|
|
|
|
[ "$proto" = 6in4 ] || return 0
|
|
|
|
|
|
|
|
local wandev
|
2010-07-09 03:17:31 +03:00
|
|
|
config_get wandev "$cfg" wan_device "$(find_6in4_wanif)"
|
2010-05-29 01:03:30 +03:00
|
|
|
[ "$wandev" = "$DEVICE" ] || return 0
|
|
|
|
|
|
|
|
local wanip=$(find_6in4_wanip "$wandev")
|
|
|
|
|
2010-10-19 05:07:29 +03:00
|
|
|
[ -n "$wanip" ] && {
|
2011-07-05 03:52:10 +03:00
|
|
|
lsmod | grep -q ^sit || {
|
|
|
|
logger -t 6in4-update "Tunneling driver not loaded yet, deferring action"
|
|
|
|
exit 0
|
|
|
|
}
|
|
|
|
|
2010-05-29 01:03:30 +03:00
|
|
|
local tunnelid
|
|
|
|
config_get tunnelid "$cfg" tunnelid
|
|
|
|
|
|
|
|
local username
|
|
|
|
config_get username "$cfg" username
|
|
|
|
|
|
|
|
local password
|
|
|
|
config_get password "$cfg" password
|
|
|
|
|
2011-02-20 20:27:19 +02:00
|
|
|
uci_set_state network "$cfg" ipaddr "$wanip"
|
|
|
|
|
2010-05-29 01:03:30 +03:00
|
|
|
[ -n "$tunnelid" ] && [ -n "$username" ] && [ -n "$password" ] && {
|
2011-10-17 15:45:07 +03:00
|
|
|
[ "${#password}" == 32 -a -z "${password//[a-fA-F0-9]/}" ] || {
|
2010-09-04 19:03:14 +03:00
|
|
|
password="$(echo -n "$password" | md5sum)"; password="${password%% *}"
|
|
|
|
}
|
2010-05-29 01:03:30 +03:00
|
|
|
|
2010-10-19 05:07:29 +03:00
|
|
|
(
|
2011-10-17 15:45:07 +03:00
|
|
|
local url="http://ipv4.tunnelbroker.net/ipv4_end.php?ip=AUTO&apikey=$username&pass=$password&tid=$tunnelid"
|
2010-10-19 05:07:29 +03:00
|
|
|
local try=0
|
|
|
|
local max=3
|
|
|
|
|
|
|
|
while [ $((++try)) -le $max ]; do
|
|
|
|
wget -qO/dev/null "$url" 2>/dev/null && {
|
|
|
|
logger -t 6in4-update "Updated tunnel #$tunnelid endpoint to $wanip"
|
|
|
|
ifup "$cfg"
|
|
|
|
break
|
|
|
|
} || {
|
|
|
|
logger -t 6in4-update "Try $try/$max failed, retrying"
|
|
|
|
sleep 1
|
|
|
|
}
|
|
|
|
done
|
|
|
|
)&
|
2011-02-20 20:27:19 +02:00
|
|
|
} || {
|
|
|
|
logger -t 6in4-update "Re-establishing tunnel due to change on $INTERFACE ($DEVICE)"
|
|
|
|
ifup "$cfg" &
|
2010-05-29 01:03:30 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
config_foreach update_tunnel interface
|
|
|
|
fi
|