Update Cloudflare DNS A and AAAA records from your current external IP addresses
Project description
cloudflare-dns-updater
Update Cloudflare DNS A and AAAA records when your external IP address changes.
Install from PyPI: pipx install cloudflare-dns-updater.
Install with pipx (recommended)
pipx installs the CLI in an isolated environment and puts cloudflare-dns-updater on your PATH (usually ~/.local/bin).
# install pipx once (Debian/Ubuntu example)
sudo apt install pipx
pipx ensurepath
# open a new shell, or: source ~/.bashrc
pipx install cloudflare-dns-updater
cloudflare-dns-updater --help
Upgrade or reinstall later:
pipx upgrade cloudflare-dns-updater
# or pin a version:
pipx install cloudflare-dns-updater==0.1.0 --force
Other installers:
uv tool install cloudflare-dns-updater
pip install --user cloudflare-dns-updater # not isolated; prefer pipx
Quick start
mkdir -p ~/.config/cloudflare-dns-updater
curl -fsSL https://raw.githubusercontent.com/the-hcma/cloudflare-dns-updater/main/config.example.json \
-o ~/.config/cloudflare-dns-updater/config.json
# edit config.json — set cloudflare_api_token, zone, and dns_entries
cloudflare-dns-updater -v -d # dry-run: discover IPs, no Cloudflare writes
cloudflare-dns-updater # update DNS when IPv4 or IPv6 changed
Create a Cloudflare API token at https://dash.cloudflare.com/profile/api-tokens with permission to edit DNS records for your zone.
Before scheduling: run a dry-run and confirm exit code 0 or 1. If config is missing, the tool may write a starter file but still exits with code 2 until you replace the placeholder token and zone settings.
Run on a schedule (cron)
Cron runs with a minimal environment: set HOME (and usually PATH) so the tool finds ~/.config/cloudflare-dns-updater/config.json and your pipx-installed binary. Create and edit config before enabling the job — do not rely on the auto-created starter file in production.
Exit codes
| Code | Meaning |
|---|---|
0 |
No update needed (addresses unchanged). |
1 |
Success — DNS records were updated (or dry-run completed). |
2 |
Hard failure — missing/invalid config, discovery error, Cloudflare API error, etc. |
Exit 1 is a successful run that changed DNS; exit 2 is what you should alert on.
Logging and alerts
Cron sends mail when a job writes to stdout or stderr, not merely when the exit code is non-zero. Redirecting all output to a log file (>>/tmp/...log 2>&1) therefore suppresses cron mail, even when the tool fails.
Recommended — log to a file, mail only on hard failure (exit 2):
PATH=/usr/bin:/bin
HOME=/home/you
*/5 * * * * /home/you/.local/bin/cloudflare-dns-updater >>/tmp/cloudflare-dns-updater.log 2>&1; r=$?; if [ "$r" -eq 2 ]; then echo "cloudflare-dns-updater failed (exit $r); see /tmp/cloudflare-dns-updater.log" >&2; fi
The final echo runs only when exit code is 2, writing to stderr so cron can mail you without spamming on every successful DNS update (exit 1).
Alternative — no log file, mail on any non-zero exit (includes exit 1 when records were updated):
HOME=/home/you
*/5 * * * * /usr/bin/chronic /home/you/.local/bin/cloudflare-dns-updater
Do not wrap chronic with >>log 2>&1 — that captures chronic's failure output into the log and cron will not mail you.
Use -f if you want to recheck Cloudflare even when local state files show no change. For non-standard home paths or multiple configs, pass -c /full/path/to/config.json explicitly.
Configuration
Settings live in config.json. Search order:
-c/--configpathCLOUDFLARE_DNS_UPDATER_CONFIGenvironment variable./config.jsonin the current working directory~/.config/cloudflare-dns-updater/config.json
Copy from config.example.json:
{
"cloudflare_api_token": "your-cloudflare-api-token",
"zone": "example.com",
"dns_entries": ["example.com", "home.example.com"],
"record_ttl": 120,
"ipv6_enabled": true
}
| Field | Required | Description |
|---|---|---|
cloudflare_api_token |
Yes | Cloudflare API token. |
zone |
Yes | Cloudflare zone name. |
dns_entries |
Yes | Hostnames to update (A and optional AAAA). |
record_ttl |
No | TTL in seconds (default 120). |
ipv6_enabled |
No | Set false to skip AAAA updates (default true). |
nest_router_url |
No | Nest / Google Wifi base URL. Omitted = http://<LAN>.1 from your default route. Set null to skip Nest. |
CLOUDFLARE_API_TOKEN in the environment overrides only the token field in the file. In cron, set HOME (and optionally CLOUDFLARE_API_TOKEN) in the crontab — cron does not load your shell profile.
IP discovery
IPv4
- Google Nest / Wifi —
GET {nest_router_url}/api/v1/status→wan.localIpAddress - Fallback —
https://checkip.amazonaws.com
IPv6
When ipv6_enabled is true, the tool reads globally addressable IPv6 addresses from local network interfaces via netifaces.
Usage
cloudflare-dns-updater # update when IPv4 or IPv6 changed
cloudflare-dns-updater -f # recheck Cloudflare even if local state is unchanged
cloudflare-dns-updater -d # dry-run (no Cloudflare calls, no state file writes)
cloudflare-dns-updater -v # verbose logging and discovery details
cloudflare-dns-updater -c /path/to/config.json
Run cloudflare-dns-updater -h for full option descriptions.
Exit codes: 0 no update needed, 1 records updated (success), 2 configuration or execution failure. See Run on a schedule (cron) for alerting patterns.
State is stored under ~/.local/state/cloudflare-dns-updater/ (override with XDG_STATE_HOME).
Run from a git checkout
./bin/cloudflare-dns-updater -v -d
The wrapper runs uv sync --group dev when .venv is missing or uv.lock has changed, then invokes the CLI. You can still use uv run cloudflare-dns-updater directly after a manual sync.
Development
uv sync --group dev
uv run ruff check .
uv run ruff format .
uv run mypy src/dns_updater
uv run pytest
uv run pytest -m integration # live network checks
Releases
Versioning and PyPI publish are documented in RELEASING.md. End users install with pipx install cloudflare-dns-updater.
Repository setup
This repo follows the-hcma conventions. Validate with:
scripts/check-repo-practices --repo the-hcma/cloudflare-dns-updater --suggest
See GRAPHITE.md for stacked PRs and the merge-it merge queue.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file cloudflare_dns_updater-0.4.1.tar.gz.
File metadata
- Download URL: cloudflare_dns_updater-0.4.1.tar.gz
- Upload date:
- Size: 73.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f0db0d5c940b6e657b12d483e4055f037ae1079f3442698798230d107e5def94
|
|
| MD5 |
9b4fb841c03a263cbe708725e26f174c
|
|
| BLAKE2b-256 |
6641dedc95f4efedba70da8a4f55a613af0a0853263d51e41fe76cc034277c4c
|
Provenance
The following attestation bundles were made for cloudflare_dns_updater-0.4.1.tar.gz:
Publisher:
release-please.yml on the-hcma/cloudflare-dns-updater
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cloudflare_dns_updater-0.4.1.tar.gz -
Subject digest:
f0db0d5c940b6e657b12d483e4055f037ae1079f3442698798230d107e5def94 - Sigstore transparency entry: 1756148975
- Sigstore integration time:
-
Permalink:
the-hcma/cloudflare-dns-updater@1ed9a2963b579e791584690bd8c7d0bc80e53db3 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/the-hcma
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-please.yml@1ed9a2963b579e791584690bd8c7d0bc80e53db3 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cloudflare_dns_updater-0.4.1-py3-none-any.whl.
File metadata
- Download URL: cloudflare_dns_updater-0.4.1-py3-none-any.whl
- Upload date:
- Size: 20.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
998c7cdbba01837666c74181903cfbfe2b3783171ad7b9edfffd09699258b3e2
|
|
| MD5 |
f892616c6fe173be66ac48f18eddf544
|
|
| BLAKE2b-256 |
0b04c2b9e3e78130dd2955356fc3f4da1733b86d8678229864c521377a5736a9
|
Provenance
The following attestation bundles were made for cloudflare_dns_updater-0.4.1-py3-none-any.whl:
Publisher:
release-please.yml on the-hcma/cloudflare-dns-updater
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cloudflare_dns_updater-0.4.1-py3-none-any.whl -
Subject digest:
998c7cdbba01837666c74181903cfbfe2b3783171ad7b9edfffd09699258b3e2 - Sigstore transparency entry: 1756148990
- Sigstore integration time:
-
Permalink:
the-hcma/cloudflare-dns-updater@1ed9a2963b579e791584690bd8c7d0bc80e53db3 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/the-hcma
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-please.yml@1ed9a2963b579e791584690bd8c7d0bc80e53db3 -
Trigger Event:
push
-
Statement type: