X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/53d65a1c4a68c4b00d0d8f65b7578042c03ff280..4cd49acd61e7810eca89b87971c568417cb701e7:/package/6in4/files/6in4.hotplug diff --git a/package/6in4/files/6in4.hotplug b/package/6in4/files/6in4.hotplug index 9df993498..3d9def448 100644 --- a/package/6in4/files/6in4.hotplug +++ b/package/6in4/files/6in4.hotplug @@ -37,12 +37,12 @@ if [ "$ACTION" = ifup ]; then uci_set_state network "$cfg" ipaddr "$wanip" [ -n "$tunnelid" ] && [ -n "$username" ] && [ -n "$password" ] && { - [ "${#password}" == 32 -a -z "${password//[a-f0-9]/}" ] || { + [ "${#password}" == 32 -a -z "${password//[a-fA-F0-9]/}" ] || { password="$(echo -n "$password" | md5sum)"; password="${password%% *}" } ( - local url="http://ipv4.tunnelbroker.net/ipv4_end.php?ipv4b=AUTO&user_id=$username&pass=$password&tunnel_id=$tunnelid" + local url="http://ipv4.tunnelbroker.net/ipv4_end.php?ip=AUTO&apikey=$username&pass=$password&tid=$tunnelid" local try=0 local max=3