{"id":20261090,"url":"https://github.com/jellyterra/cloudflare-ddns","last_synced_at":"2026-02-19T18:03:17.456Z","repository":{"id":249835766,"uuid":"822390789","full_name":"jellyterra/cloudflare-ddns","owner":"jellyterra","description":"Dynamic DNS records updater implemented via Cloudflare API.","archived":false,"fork":false,"pushed_at":"2024-11-05T12:07:48.000Z","size":22,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-22T07:35:41.545Z","etag":null,"topics":["cloudflare","ddns","dns","website"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jellyterra.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-07-01T04:14:51.000Z","updated_at":"2024-11-05T12:07:52.000Z","dependencies_parsed_at":"2024-11-14T11:29:16.294Z","dependency_job_id":"147bbb00-1833-490c-af93-ad0f97147665","html_url":"https://github.com/jellyterra/cloudflare-ddns","commit_stats":null,"previous_names":["jellyterra/cloudflare-ddns"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/jellyterra/cloudflare-ddns","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jellyterra%2Fcloudflare-ddns","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jellyterra%2Fcloudflare-ddns/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jellyterra%2Fcloudflare-ddns/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jellyterra%2Fcloudflare-ddns/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jellyterra","download_url":"https://codeload.github.com/jellyterra/cloudflare-ddns/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jellyterra%2Fcloudflare-ddns/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29626621,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-19T18:02:07.722Z","status":"ssl_error","status_checked_at":"2026-02-19T18:01:46.144Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cloudflare","ddns","dns","website"],"created_at":"2024-11-14T11:23:51.997Z","updated_at":"2026-02-19T18:03:17.439Z","avatar_url":"https://github.com/jellyterra.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Cloudflare Dynamic DNS\n\nDynamic DNS records updater implemented via Cloudflare API.\n\n## Features\n\n- Manage multiple zones.\n- Update specified DNS records on event received from `netlink`.\n- Address filter based on glob.\n\n## Install\n\n### Binary\n\nDownload from [releases](https://github.com/jellyterra/cloudflare-ddns/releases).\n\n### Install via Go mod\n\n```shell\n$ go install github.com/jellyterra/cloudflare-ddns/cmd/cloudflare-ddns@latest\n```\n\n## Configure\n\n### Zone\n\n`[zones.(zoneName)]`\n\n| Key          | Value  | Description                                        |\n|--------------|--------|----------------------------------------------------|\n| `zone_id`    | String | Zone ID of the Cloudflare Site.                    |\n| `api_token`  | String | Cloudflare API token with accesses to the zone.    |\n| `machine_id` | String | Machine ID, will be shown as comment on dashboard. |\n\n### Record\n\n`[zones.(zoneName).records.(domainName)]`\n\n| Key       | Value  | Description         |\n|-----------|--------|---------------------|\n| `name`    | String | Domain name.        |\n| `ttl`     | Int    | Record TTL seconds. |\n| `proxied` | Bool   | Use Cloudflare CDN. |\n\n### Network interface \u0026 Address filter\n\n`[zones.(zoneName).records.(domainName).addr.(netifName).ip6]`\n\n| Key      | Value    | Description                  |\n|----------|----------|------------------------------|\n| `ignore` | []String | Glob rules for IP addresses. |\n\nYou may have to filter reserved or internal IP sections via this feature.\n\nGlob specification can be found [here](https://pkg.go.dev/regexp/syntax).\n\n### Example\n\nExample: `/etc/cloudflare-ddns.yaml`\n\n```yaml\nzones:\n  jellyterra: # Alias for identification.\n    zone_id: \"\"\n    api_token: \"\"\n    machine_id: \"spacemit-k1\" # Tagging the records. The program does not change record with mismatched tag.\n    records:\n      - name: \"k1.jellyterra.com\"\n        ttl: 60\n        proxied: true\n        netif:\n          wlp1s0: # Network interface name\n            addr:\n              ip4:\n                ignore:\n                  - \"192.*\"\n              ip6:\n                ignore:\n                  - \"fe.*\"\n          enp1s0:\n            addr:\n              ip4:\n                ignore:\n                  - \"192.*\"\n              ip6:\n                ignore:\n                  - \"fe.*\"\n  symboltics:\n    zone_id: \"\"\n    api_token: \"\"\n    # ...\n```\n\n## Run\n\n```shell\n$ cloudflare-ddns -c /etc/cloudflare-ddns.yaml\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjellyterra%2Fcloudflare-ddns","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjellyterra%2Fcloudflare-ddns","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjellyterra%2Fcloudflare-ddns/lists"}