DominoDev / unifi-cloudflare-ddns

Cloudflare DDNS (Dynamic DNS) support for UniFi OS

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Cloudflare DDNS for UniFi OS

A Cloudflare Worker script that exposes a UniFi-compatible DDNS API to dynamically update the IP address of a DNS A record.

Why?

I have a UniFi Dream Machine Pro (UDM-Pro), and I want to update my Cloudflare domain name DNS records when my public IP address changes. Unfortunately, UniFi does not come pre-configured to support Cloudflare as one of its DDNS providers.

Configuring Cloudflare

  1. Create a new Cloudflare Worker
  2. 'Quick Edit' the worker within your browser.
  3. Copy and paste the contents of index.js into the code editor for your worker. Ensure that you are replacing any boilerplate/code that is currently there.
  4. Once you have created the worker, take note of it's *.workers.dev route. More on routes for Cloudflare Workers here.
  5. Create an API token so the Worker can update your DNS records. Go to https://dash.cloudflare.com/profile/api-tokens and select "Create custom token". Enable permissions for both Zone:Read and DNS:Edit. Copy your API Key - you will need it later when configuring your UniFi OS Controller.

Configuring UniFi OS

  1. Log on to your UniFi OS Controller
  2. Navigate to Settings > Internet > WAN and scroll down to Dynamic DNS.
  3. Click Create New Dynamic DNS and enter the following information:
  • Service: choose any service from the drop-down menu
  • Hostname: the full subdomain and hostname of the record you want to update (e.g. subdomain.mydomain.com)
  • Username: the domain name containing the record (e.g. mydomain.com)
  • Password: the Cloudflare API Token you created earlier
  • Server: the Cloudflare Worker route ddns.<worker-subdomain>.workers.dev/update?hostname=%h&ip=%i

Acknowledgements

About

Cloudflare DDNS (Dynamic DNS) support for UniFi OS


Languages

Language:JavaScript 100.0%