[Cerowrt-devel] Update 6in4 tunnel when IP address changes
Rich Brown
richb.hanover at gmail.com
Sun Dec 28 23:46:29 EST 2014
I have been having trouble re-establishing my 6-in-4 tunnel with tunnelbroker.net (Hurricane Electric) when my external IPv4 address changes. (CeroWrt 3.10.50-1 on WNDR3800)
I rummaged around the OpenWrt forums, found this hint at https://forum.openwrt.org/viewtopic.php?pid=255401#p255401 . According to the post, the problem is that the script to update the tunnel info runs immediately after the ppp link comes up, but that's before dnsmasq and other things are running.
As suggested in the post, I added a "sleep 10" before the loop that retrieves the URL with wget in /lib/netifd/proto/6in4.sh
...
# Add in sleep 10
# See https://forum.openwrt.org/viewtopic.php?pid=255401#p255401
sleep 10
while [ $((++try)) -le $max ]; do
( exec wget -qO/dev/null "$url" 2>/dev/null ) &
local pid=$!
( sleep 5; kill $pid 2>/dev/null ) &
wait $pid && break
done
...
This seems to have solved the problem: my IPv6 link has come back automatically three times since I edited the file.
Rich
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 496 bytes
Desc: Message signed with OpenPGP using GPGMail
URL: <https://lists.bufferbloat.net/pipermail/cerowrt-devel/attachments/20141228/bc14bcc8/attachment.sig>
More information about the Cerowrt-devel
mailing list