-
-
Save ohmcodes/163912bc8fac303aa1f1ff0aa95f1d08 to your computer and use it in GitHub Desktop.
dyndns - update namecheap dynamic dns using crontab
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# hourly | |
@hourly curl "https://dynamicdns.park-your-domain.com/update?host=HOST_NAME_HERE&domain=YOUR_DOMAIN_HERE&password=YOUR_PASSWORD_HERE&ip=`curl -s echoip.com`" | |
# every 30 min | |
0,30 * * * * curl "https://dynamicdns.park-your-domain.com/update?host=@&domain=YOUR_DOMAIN_HERE&password=YOUR_PASSWORD_HERE" | |
# ddclient (dns client alternative) | |
http://sourceforge.net/p/ddclient/wiki/Home/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment