diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2011-10-17 12:45:07 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2011-10-17 12:45:07 +0000 |
commit | b656b87d136d7038aa045a221fd2ce5b9a903ef1 (patch) | |
tree | 665db170fd234907fc0e916fb78704de7ab76954 /package/6in4/files | |
parent | d8d9130e45862d330e55110c12ca51cd59955a1c (diff) | |
download | upstream-b656b87d136d7038aa045a221fd2ce5b9a903ef1.tar.gz upstream-b656b87d136d7038aa045a221fd2ce5b9a903ef1.tar.bz2 upstream-b656b87d136d7038aa045a221fd2ce5b9a903ef1.zip |
6in4: sync with HE.net endpoint update changes
SVN-Revision: 28475
Diffstat (limited to 'package/6in4/files')
-rw-r--r-- | package/6in4/files/6in4.hotplug | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/6in4/files/6in4.hotplug b/package/6in4/files/6in4.hotplug index 9df993498a..3d9def448e 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 |