This script will update the A
DNS record (and optionally, the AAAA
records) for a domain/subdomain at NearlyFreeSpeech.NET
with the public IP address for the machine the script runs on. Run this script on a server in which the public IP
address is dynamic and changes so your domain is always up to date.
There are two steps to this script. First, it retrieves the configured IP address for the domain/subdomain, the current public
IP address of the server, and then compares the two. If the public IP address is different, it updates the A
(and, if configured, the AAAA
) record(s) of
the domain/subdomain with the new IP address.
python-dotenv
requests
Both can be downloaded from pip using pip install -r requirements.txt
Configurations are set by providing the script with environment variables or command line arguments.
Env Variable | Command Line Argument | Required | Description |
---|---|---|---|
USERNAME | Y | Your NFSN username | |
API_KEY | Y | API key for using NFSN's APIs. This can be obtained via the Member Interface > "Profile" tab > "Actions" > "Manage API Key" | |
DOMAIN | Y | Domain that the subdomain belongs to | |
SUBDOMAIN | N | Subdomain to update with the script. Leave blank for the bare domain name | |
IP_PROVIDER | N | Use a different IP providing service than the default: http://ipinfo.io/ip This might be useful if the default provider is unavailable or is blocked. The alternate provider MUST be served over http (please open an issue if this is ever a problem) and MUST return ONLY the IP in the response body |
|
IPV6_PROVIDER | N | Use a different IP providing service than the default: http://v6.ipinfo.io/ip This might be useful if the default provider is unavailable or is blocked. The alternate provider MUST be served over http (please open an issue if this is ever a problem) and MUST return ONLY the IP in the response body |
|
ENABLE_IPV6 | --ipv6 or -6 |
N | Set this to any value to also cause the script to check for and update AAAA records on the specified domain. |
IP_USE_DIG | --useDig or -d |
N | Use the system's dig command and Google's DNS server to determine the IP address instead of an IP providing service over HTTP |
It is as easy as running: python3 ./nfsn-ddns.py
(after installing the dependencies listed above)
To include all of the environmental variables inline when running, you can do something like this:
$ export USERNAME=username API_KEY=api_key DOMAIN=domain.com SUBDOMAIN=subdomain && python3 ./nfsn-ddns.py
or with optional command line arguments like this:
$ export USERNAME=username API_KEY=api_key DOMAIN=domain.com SUBDOMAIN=subdomain && python3 ./nfsn-ddns.py --useDig
or you can put your variables in a .env
file:
API_KEY=
USERNAME=
DOMAIN=
SUBDOMAIN=
-
Set the configuration values in the script the way you want them (or create a file containing the environment variables)
-
Build the image with
docker build -t nfs-dynamic-dns .
-
Run the image (production) with
docker run -d --name nfsn-dynamic-dns nfs-dynamic-dns
(add the--env-file <file>
argument before the lastnfsn-dynamic-dns
if you want to use your environment variable file)Ex:
docker run -d --name nfsn-dynamic-dns --env-file .env nfs-dynamic-dns
You can use the following config to run this with docker compose.
version: "3"
services:
nfs-dynamic-dns:
image: nfs-dynamic-dns
build: ./nfs-dynamic-dns
container_name: nfs-dynamic-dns
network_mode: host
environment:
- USERNAME=username
- API_KEY=api_key
- DOMAIN=domain.com
- SUBDOMAIN=subdomain
restart: unless-stopped
To run the container locally (and let it run its cronjobs), use this command:
docker run -it --rm --init nfs-dynamic-dns
to run the container locally and be put into a shell where you can run python3 ./nfsn-ddns.py
yourself use this:
docker run -it --rm --init nfs-dynamic-dns sh
If your setup uses environment variables, you will also need to add the --env-file
argument (or specify variables individually with the -e
docker flag). The --env-file
option is for docker run and the env file format can be found here.
When using the Docker file, it's by default scheduled to run every 30 minutes. However, this is configurable when building the
container. The CRON_SCHEDULE
build arg can be overriden.
With docker, the build step (step 2) can be done like this:
$ docker build --build-arg CRON_SCHEDULE="*/5 * * * *" -t nfs-dynamic-dns .
With docker compose, it can be done like this:
version: "3"
services:
nfs-dynamic-dns:
image: nfs-dynamic-dns
build:
context: ./nfs-dynamic-dns
args:
- CRON_SCHEDULE=*/5 * * * *
container_name: nfs-dynamic-dns
...
The script communicates with NearlyFreeSpeech.NET via its RESTful API. Specifics about the API can be found here.