#!/usr/bin/env bash | |
# Step 1: Fill in EMAIL, TOKEN, DOMAIN and SUBDOMAIN. Your API token is here: https://www.cloudflare.com/a/account/my-account | |
# Make sure the token is the Global token, or has these permissions: #zone:read, #dns_record:read, #dns_records:edit | |
# If you want to set the root domain instead of a subdomain, set SUBDOMAIN to "@" | |
# Step 2: Create an A record on Cloudflare with the subdomain you chose | |
# Step 3: Run "./ddns.sh -l" to get the zone_id and rec_id of the record you created. | |
# Fill in ZONE_ID and REC_ID below | |
# This step is optional, but will save you 2 requests every time you run this script | |
# Step 4: Run "./ddns.sh". It should tell you that record was updated or that it didn't need updating. | |
# Step 5: Run it every hour with cron. Use the '-s' flag to silence normal output | |
# 0 * * * * /path/to/ddns.sh -s | |
EMAIL='' | |
TOKEN='' | |
DOMAIN='' | |
SUBDOMAIN='' | |
ZONE_ID='' | |
REC_ID='' | |
set -euo pipefail | |
VERBOSE="true" | |
LOOKUP="false" | |
while getopts ":lsd" opt; do | |
case ${opt} in | |
l ) LOOKUP="true" ;; | |
s ) VERBOSE="false" ;; | |
d ) set -x ;; # for debugging | |
\? ) echo -e "Usage: $(basename "$0") [-l] [-s] [-d]\nRead the script source for detailed instructions" && exit 1 ;; | |
esac | |
done | |
[[ "$SUBDOMAIN" = "@" ]] && FULL_DOMAIN="$DOMAIN" || FULL_DOMAIN="$SUBDOMAIN.$DOMAIN" | |
API_URL="https://api.cloudflare.com/client/v4" | |
CURL="curl -s \ | |
-H Content-Type:application/json \ | |
-H X-Auth-Key:$TOKEN \ | |
-H X-Auth-Email:$EMAIL " | |
if [ -z "$ZONE_ID" ] || $LOOKUP; then | |
ZONE_ID="$($CURL "$API_URL/zones?name=$DOMAIN" | sed -e 's/[{}]/\n/g' | grep '"name":"'"$DOMAIN"'"' | sed -e 's/,/\n/g' | grep '"id":"' | cut -d'"' -f4)" | |
$VERBOSE && echo "ZONE_ID='$ZONE_ID'" | |
fi | |
if [ -z "$REC_ID" ] || $LOOKUP; then | |
#REC_ID="$($CURL "$API_URL/zones/$ZONE_ID/dns_records" | grep -C 5 '"name": "'"$FULL_DOMAIN"'"' | grep '"id": "' | cut -d'"' -f4)" | |
REC_ID="$($CURL "$API_URL/zones/$ZONE_ID/dns_records" | sed -e 's/[{}]/\n/g' | grep '"name":"'"$FULL_DOMAIN"'"' | sed -e 's/,/\n/g' | grep '"id":"' | cut -d'"' -f4)" | |
$VERBOSE && echo "REC_ID='$REC_ID'" | |
fi | |
$LOOKUP && exit 0 | |
IP="$(curl -s http://ipv4.icanhazip.com)" | |
RECORD_IP="$($CURL "$API_URL/zones/$ZONE_ID/dns_records/$REC_ID" | grep -o '"content":"[^"]\+' | cut -d '"' -f4)" | |
if [ "$IP" == "$RECORD_IP" ]; then | |
$VERBOSE && echo "IP Unchanged" | |
exit 0 | |
fi | |
$VERBOSE && echo "Setting IP to $IP" | |
$CURL -X PUT "$API_URL/zones/$ZONE_ID/dns_records/$REC_ID" --data '{"type":"A","name":"'"$SUBDOMAIN"'","content":"'"$IP"'","proxied":false}' 1>/dev/null | |
exit 0 |
This comment has been minimized.
This comment has been minimized.
@davidcastellani just updated it. give it a try and let me know if you see any issues |
This comment has been minimized.
This comment has been minimized.
How would you change a wildcard record or the root domain? What would you set in the subdomain variable for those records? I tried putting in * and (mydomain).net and it does not work. @lyoshenka |
This comment has been minimized.
This comment has been minimized.
Have you found any solution? Still looking for a fix... |
This comment has been minimized.
This comment has been minimized.
For anyone interested, I wrote a similar script in bash for use with multiple Cloudflare accounts, zones, records, and a proxy option: here |
This comment has been minimized.
This comment has been minimized.
reaplace L42 |
This comment has been minimized.
This comment has been minimized.
replace l37 ZONE_ID="$($CURL "$API_URL/zones?name=$DOMAIN" | jq '.result[0].id' |
This comment has been minimized.
This comment has been minimized.
@waiyanwh that works but i'd like to avoid dependence on extra things like |
This comment has been minimized.
This comment has been minimized.
cloudflare has changed its response format, so this line |
This comment has been minimized.
This comment has been minimized.
Thanks @frankang. I updated the grep commands so it finds the correct record. Should work now |
This comment has been minimized.
This comment has been minimized.
Wondering the same as Agazed did years ago. Is it at all possible to set the root domain using this script? |
This comment has been minimized.
This comment has been minimized.
@ImmortalScientist @Agazed - I just updated the script to support root domains. Set |
This comment has been minimized.
@lyoshenka , Cloudflare is deprecating API v1 in favor of v4.
Email I received just this morning.
They then link to https://www.cloudflare.com/migrating-to-v4/
Any chance you would convert this script to API v4?