#cloudflare #ddns #client #configuration

app dynaflare

Simple DDNS client for Cloudflare

2 stable releases

new 1.0.1 Nov 20, 2024
1.0.0 Nov 17, 2024

#579 in Command line utilities

Download history 85/week @ 2024-11-13

85 downloads per month

GPL-3.0-only

26KB
336 lines

DynaFlare

Simple IPv4 DDNS client for Cloudflare. Works on the Raspberry Pi!

1. Obtaining DynaFlare

Build from source

git clone https://github.com/Yzen90/dynaflare.git
cd dynaflare
cargo build --release

Install crate

cargo install dynaflare

Download a pre-built binary

2. Configuration

DynaFlare looks in the current working directory for a configuration.toml file with the following fields:

  • interval (Optional): String with one or more pairs of a positive integer immediately followed by 'days', 'h', 'min', 's', 'ms', 'μs' or 'ns'. If not provided, dynaflare will check and update de provided records only once and then exit. Otherwise dynaflare will keep runing and continuously check at this interval for public ip changes and update the dns records when necessary.

  • zone_id (Required): ID of the Clouldflare Zone that contains the provided dns records.

  • api_token (Required): Cloudflare API token with DNS read and edit permissions for the provided zone.

  • records (Required): DNS records to set to the current public IP address.

Example configuration.toml

interval = "1min 30s"
zone_id = "cloudflare zone id here"
api_token = "cloudflare api token here"
records = ["dynamic.example.com"]

3. systemd service

A systemd service unit file template for DynaFlare is provided in the repository that can be used as follows to install a systemd service:

export DYNAFLARE_USER=dynaflare # User that the process will be executed as
export DYNAFLARE_WDIR=/usr/local/etc/dynaflare # Directory where configuration.toml is located
export DYNAFLARE_EXEC=/usr/local/bin/dynaflare # Path of dynaflare executable file

envsubst < dynaflare.service | sudo tee /etc/systemd/system/dynaflare.service

sudo systemctl start dynaflare
sudo systemctl status dynaflare
sudo systemctl enable dynaflare

Example systemd unit file

[Unit]
Description=DynaFlare, a simple DDNS client for Cloudflare
After=network-online.target
Wants=network-online.target

[Service]
Type=simple
User=dynaflare
WorkingDirectory=/usr/local/etc/dynaflare
ExecStart=/usr/local/bin/dynaflare

[Install]
WantedBy=multi-user.target

Dependencies

~18–28MB
~561K SLoC