-
-
Save dvliman/8e66cca8a96158c54ced to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#!/bin/sh | |
# modified by jfro from http://www.cnysupport.com/index.php/linode-dynamic-dns-ddns-update-script | |
# Update: changed because the old IP-service wasn't working anymore | |
# Uses curl to be compatible with machines that don't have wget by default | |
# modified by Ross Hosman for use with cloudflare. | |
# | |
# Place at: | |
# /usr/local/bin/cf-ddns.sh | |
# run `crontab -e` and add next line: | |
# 0 */5 * * * * /usr/local/bin/cf-ddns.sh >/dev/null 2>&1 | |
cfkey=API-key | |
cfuser=username(email) | |
cfhost=host-you-want-to-change | |
WAN_IP=`curl -s http://icanhazip.com` | |
if [ -f $HOME/.wan_ip-cf.txt ]; then | |
OLD_WAN_IP=`cat $HOME/.wan_ip-cf.txt` | |
else | |
echo "No file, need IP" | |
OLD_WAN_IP="" | |
fi | |
if [ "$WAN_IP" = "$OLD_WAN_IP" ]; then | |
echo "IP Unchanged" | |
else | |
echo $WAN_IP > $HOME/.wan_ip-cf.txt | |
echo "Updating DNS to $WAN_IP" | |
curl -s https://www.cloudflare.com/api.html?a=DIUP\&hosts="$cfhost"\&u="$cfuser"\&tkn="$cfkey"\&ip="$WAN_IP" > /dev/null | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment