Anyone for duckdns,org to work. I am running asus-rt n66u with 378.51.
I created ddns-start and have custom jffs scripts enabled. Ddns-start is updated by the logs just fine, but when I test it out not working. I have static the dns to opendns and went to opendns.com/welcome to test whether; it was using opendns or not. It was still using the opendns. Any help be appreciated. I tried the wan-start but that didnt work either.
This is my script:
<code>
#!/bin/sh
touch /tmp/000wanstarted
sleep 45
curl -k -s "https://www.duckdns.org/update?domains=domainname&token=XXXXXXX&ip="
if [ $? -eq 0 ]; then
/sbin/ddns_custom_updated 1
else
/sbin/ddns_custom_updated 0
fi
</code>
Your URL has an "ip" argument at the end but you don't provide any IP. Maybe that's causing the problem. Try appending the IP, contained in $1 (if using within a ddns-custom script).