Skip to content

Instantly share code, notes, and snippets.

@foobarhl
Forked from Tras2/cloudflare-ddns-update.sh
Last active January 2, 2024 14:37
Show Gist options
  • Star 19 You must be signed in to star a gist
  • Fork 10 You must be signed in to fork a gist
  • Save foobarhl/2480f956d26d49b035bf03ea1b01b40f to your computer and use it in GitHub Desktop.
Save foobarhl/2480f956d26d49b035bf03ea1b01b40f to your computer and use it in GitHub Desktop.
A bash script to update a Cloudflare DNS A record with the external IP of the source machine
#!/bin/bash
# A bash script to update a Cloudflare DNS A record with the external IP of the source machine
# Used to provide DDNS service for my home
# Needs the DNS record pre-creating on Cloudflare
## Based on https://gist.github.com/Tras2/cba88201b17d765ec065ccbedfb16d9a with updates to use
## per-zone configurable access tokens available in the API sections of your Cloudflare profile
## - info@foo-games.com
# Proxy - uncomment and provide details if using a proxy
#export https_proxy=http://<proxyuser>:<proxypassword>@<proxyip>:<proxyport>
# Cloudflare zone is the zone which holds the record
dnsrecord=example.com
zoneid=examplezoneidhashfromdomainoverviewpage
## Cloudflare authentication details
## keep these private
cloudflare_auth_key=authkeycreatedthroughnewbetaapitokeninterface
# Get the current external IP address
ip=$(curl -s -X GET https://checkip.amazonaws.com)
#echo "Current IP is $ip"
if host $dnsrecord 1.1.1.1 | grep "has address" | grep "$ip"; then
# echo "$dnsrecord is currently set to $ip; no changes needed"
exit
fi
# if here, the dns record needs updating
# get the dns record id
dnsrecordid=$(curl -v -s -X GET "https://api.cloudflare.com/client/v4/zones/$zoneid/dns_records?type=A&name=$dnsrecord" \
-H "Authorization: Bearer $cloudflare_auth_key" \
-H "Content-Type: application/json" | jq -r '{"result"}[] | .[0] | .id')
# update the record
curl -s -X PUT "https://api.cloudflare.com/client/v4/zones/$zoneid/dns_records/$dnsrecordid" \
-H "Authorization: Bearer $cloudflare_auth_key" \
-H "Content-Type: application/json" \
--data "{\"type\":\"A\",\"name\":\"$dnsrecord\",\"content\":\"$ip\",\"ttl\":1,\"proxied\":false}" | jq
@carsten-re
Copy link

Thanks, this one is working, because the Headers (Authorization: Bearer) are now valid.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment