Cloudflare DNS Updater written in Rust. Works for IPv4 and IPv6 alike.
Find a file
2023-12-28 23:21:10 +01:00
.forgejo/workflows Fix tr command in Actions 2023-12-28 23:21:10 +01:00
src Rename RELOAD_INTERVAL_SECONDS to CHECK_INTERVAL_SECONDS 2023-12-28 22:26:59 +01:00
.gitignore Add config files to .gitignore 2023-12-25 15:19:44 +01:00
Cargo.lock Release Candidate 1.1.1-rc.3 2023-12-28 23:04:00 +01:00
Cargo.toml Release Candidate 1.1.1-rc.3 2023-12-28 23:04:00 +01:00
cloudflare.json Workaround for #2 did not work 2022-11-27 16:10:55 +01:00
config.json Disable IPv4 in Default Config 2023-03-02 15:44:06 +01:00
README.md Updated README 2023-12-28 22:27:08 +01:00

Cloudflare DNS Updater

Using the application

The application necessarily requires a valid Cloudflare API Token. Further the application must be located in the same network as the configured zones.

Environment Variable Required Usage
CF_API_TOKEN x Cloudflare API Token
STATUS_POST_URL Post Endpoint for a Uptime Monitor
Note: Variables can be stored in a .env file

The actual configuration happens in two or more files:
interfaces.toml contains all IPv6 interfaces available/used by the zone config files.
.toml files in zone.d contain settings for individual zones.

Example:

.env

CF_API_TOKEN=0123456789abcdef0123456789abcdef01234
CHECK_INTERVAL_SECONDS=30                   // Defaults to 60 if missing
UPTIME_URL=https://example.org/uptime/id12  // Entirely optional

interfaces.toml

host_address = "::edcb:a098:7654:3210"

[interfaces]
example-interface = "::0123:4567:890a:bcde"   # static part of the IP, the rest will be dynamically generated using the host

zone.d/example.org.toml

email = "owner@example.org"             # Email of User owning the Zone
zone = "example.org"                    # Zone Name
id = "01234567890abcdefghijklmnopqrstu" # Zone ID

[[entry]]
name = "example.org"                # "@" Symbol is not currently supported 
type = ["AAAA", "A"]                # Options are: "A" (IPv4/A Record) and/or "AAAA" (IPv6/AAAA Record) 
interface = "example-interface"     # Only required on type values 6 and 10

Debian Repository

TODO!