A small, lightweight and extensible DynDNS server written with Ruby and Rack.
Go to file
depfu[bot] d51937c68b gems: update rubocop to version 1.61.0 2024-03-01 16:13:13 +01:00
.github gem: support Ruby 3.3 2024-01-18 23:14:41 +01:00
docker docker: update alpine Docker tag to v3.19.1 2024-02-01 10:19:22 +01:00
docs docker: add image release on tag and periodic vulnerability scan 2020-08-18 22:22:41 +02:00
e2e ci: add Docker E2E tests 2021-12-13 00:51:28 +01:00
exe gem: adopt frozen string literals 2020-03-06 21:48:17 +01:00
lib release: 3.9.2 2023-08-10 08:58:45 +02:00
spec gem: allow config to contain users without any hosts 2022-09-20 19:31:46 +02:00
.editorconfig gem: add editorconfig 2020-08-12 07:55:37 +02:00
.gitignore ci: use rake to build Docker image 2021-12-11 22:14:25 +01:00
.rubocop.yml gem: drop support for Rubies < 3 2023-06-08 09:47:40 +02:00
.solargraph.yml gem: add solargraph support 2020-02-29 20:21:50 +01:00
CHANGELOG.md gem: support Ruby 3.3 2024-01-18 23:14:41 +01:00
Gemfile gems: revert back to upstream solargraph now with rubocop 1.0 compat 2020-12-25 16:25:45 +01:00
LICENSE Fiat lux 2013-04-27 14:07:14 +02:00
README.md tracing: migrate from OpenTracing to OpenTelemetry 2021-06-07 13:39:35 +02:00
Rakefile project: update aquasecurity/trivy to v0.49.1 2024-02-08 10:49:32 +01:00
dyndnsd.gemspec gems: update rubocop to version 1.61.0 2024-03-01 16:13:13 +01:00
upgrade-version.sh docs: improve release process 2021-04-16 23:16:58 +02:00

README.md

dyndnsd.rb

ci Dependencies

A small, lightweight and extensible DynDNS server written with Ruby and Rack.

Description

dyndnsd.rb aims to implement a small DynDNS-compliant server in Ruby supporting IPv4 and IPv6 addresses. It has an integrated user and hostname database in its configuration file that is used for authentication and authorization. Besides talking the DynDNS protocol it is able to invoke a so-called updater, a small Ruby module that takes care of supplying the current hostname => ip mapping to a DNS server.

There are currently two updaters shipped with dyndnsd.rb:

  • zone_transfer_server that uses DNS zone transfers via AXFR (RFC5936) to allow any secondary nameserver(s) to fetch the zone contents after (optionally) receiving a DNS NOTIFY (RFC1996) request
  • command_with_bind_zone that writes out a zone file in BIND syntax onto the current system and invokes a user-supplied command afterwards that is assumed to trigger the DNS server (not necessarily BIND since its zone files are read by other DNS servers, too) to reload its zone configuration

Because of the mechanisms used, dyndnsd.rb is known to work only on *nix systems.

See the changelog before upgrading. The older version 1.x of dyndnsd.rb is still available on branch dyndnsd-1.x.

General Usage

Install the gem:

gem install dyndnsd

Create a configuration file in YAML format somewhere:

# listen address and port
host: "0.0.0.0"
port: 80
# optional: drop privileges in case you want to but you may need sudo for external commands
user: "nobody"
group: "nogroup"
# logfile is optional, logs to STDOUT otherwise
logfile: "dyndnsd.log"
# internal database file
db: "db.json"
# enable debug mode?
debug: false
# all hostnames are required to be cool-name.example.org
domain: "example.org"
# configure the updater, here we use command_with_bind_zone, params are updater-specific
updater:
  name: "command_with_bind_zone"
  params:
    zone_file: "dyn.zone"
    command: "echo 'Hello'"
    ttl: "5m"
    dns: "dns.example.org."
    email_addr: "admin.example.org."
# user database with hostnames a user is allowed to update
users:
  # 'foo' is username, 'secret' the password
  foo:
    password: "secret"
    hosts:
      - foo.example.org
      - bar.example.org
  test:
    password: "ihavenohosts"

Run dyndnsd.rb by:

dyndnsd /path/to/config.yml

Docker image

There is an officially maintained Docker image for dyndnsd available at Dockerhub. The goal is to have a minimal secured image available (currently based on Alpine) that works well for the zone_transfer_server updater use case.

Users can make extensions by deriving from the official Docker image or building their own.

The Docker image consumes the same configuration file in YAML format as the gem, inside the container it needs to be mounted/available as /etc/dyndnsd/config.yml. The following YAML should be used as a base and extended with user's settings:

host: "0.0.0.0"
port: 8080
# omit the logfile: option so logging to STDOUT will happen automatically
db: "/var/lib/dyndnsd/db.json"

# User's settings for updater and permissions follow here!

more ports might be needed depending on if DNS zone transfer is needed

Run the Docker image exposing the DynDNS-API on host port 8080 via:

docker run -d --name dyndnsd \
           -p 8080:8080 \
           -v /host/path/to/dyndnsd/config.yml:/etc/dyndnsd/config.yml \
           -v /host/ptherpath/to/dyndnsd/datadir:/var/lib/dyndnsd \
           cmur2/dyndnsd:vX.Y.Z

Note: You may need to expose more than just port 8080 e.g. if you use the zone_transfer_server which can be done by appending additional -p 5353:5353 flags to the docker run command.

Using dyndnsd.rb with any nameserver via DNS zone transfers (AXFR)

By using DNS zone transfers via AXFR (RFC5936) any secondary nameserver can retrieve the DNS zone contents from dyndnsd.rb and serve them to clients. To speedup propagation after changes dyndnsd.rb can issue a DNS NOTIFY (RFC1996) to inform the nameserver that the DNS zone contents changed and should be fetched even before the time indicated in the SOA record is up. Currently, dyndnsd.rb does not support any authentication for incoming DNS zone transfer request, so it should be isolated from the internet on these ports.

This approach has several advantages:

  • dyndnsd.rb can be used in hidden primary fashion isolated from client's DNS traffic and does not need to implement full nameserver features
  • any existing, production-grade, caching, geo-replicated nameserver setup can be used to pull DNS zone contents from the hidden primary dyndnsd.rb and serve it to clients
  • any nameserver(s) and dyndnsd.rb do not need to be located on the same host

Example dyndnsd.rb configuration:

host: "0.0.0.0"
port: 8245 # the DynDNS.com alternative HTTP port
db: "/opt/dyndnsd/db.json"
domain: "dyn.example.org"
updater:
  name: "zone_transfer_server"
  params:
    # endpoint(s) to listen for incoming zone transfer (AXFR) requests, default 0.0.0.0@53
    server_listens:
    - 127.0.0.1@5300
    # where to send DNS NOTIFY request(s) to on zone content change
    send_notifies:
    - '127.0.0.1'
    # TTL for all records in the zone (in seconds)
    zone_ttl: 300  # 5m
    # zone's NS record(s) (at least one)
    zone_nameservers:
    - "dns.example.org."
    # info for zone's SOA record
    zone_email_address: "admin.example.org."
    # zone's additional A/AAAA records
    zone_additional_ips:
    - "127.0.0.1"
users:
  foo:
    password: "secret"
    hosts:
      - foo.example.org

Using dyndnsd.rb with NSD

NSD is a nice, open source, authoritative-only, low-memory DNS server that reads BIND-style zone files (and converts them into its own database) and has a simple configuration file.

A feature NSD is lacking is the Dynamic DNS update (RFC2136) functionality BIND offers, but one can fake it using the following dyndnsd.rb configuration:

host: "0.0.0.0"
port: 8245 # the DynDNS.com alternative HTTP port
db: "/opt/dyndnsd/db.json"
domain: "dyn.example.org"
updater:
  name: "command_with_bind_zone"
  params:
    # make sure to register zone file in your nsd.conf
    zone_file: "/etc/nsd3/dyn.example.org.zone"
    # fake DNS update (discards NSD stats)
    command: "nsdc rebuild; nsdc reload"
    ttl: "5m"
    dns: "dns.example.org."
    email_addr: "admin.example.org."
    # specify additional raw BIND-style zone content
    # here: an A record for dyn.example.org itself
    additional_zone_content: "@ IN A 1.2.3.4"
users:
  foo:
    password: "secret"
    hosts:
      - foo.example.org

Start dyndnsd.rb before NSD to make sure the zone file exists else NSD complains.

Using dyndnsd.rb with X

Please provide ideas if you are using dyndnsd.rb with other DNS servers :)

Advanced topics

Update URL

The update URL you want to tell your clients (humans or scripts ^^) consists of the following

http[s]://[USER]:[PASSWORD]@[DOMAIN]:[PORT]/nic/update?hostname=[HOSTNAMES]&myip=[MYIP]&myip6=[MYIP6]

where:

  • the protocol depends on your (web server/proxy) settings
  • USER and PASSWORD are needed for HTTP Basic Auth and valid combinations are defined in your config.yaml
  • DOMAIN should match what you defined in your config.yaml as domain but may be anything else when using a web server as proxy
  • PORT depends on your (web server/proxy) settings
  • HOSTNAMES is a required list of comma-separated FQDNs (they all have to end with your config.yaml domain) the user wants to update
  • MYIP is optional and the HTTP client's IP address will be used if missing
  • MYIP6 is optional but if present also requires presence of MYIP

IP address determination

The following rules apply:

  • use any IP address provided via the myip parameter when present, or
  • use any IP address provided via the X-Real-IP header e.g. when used behind HTTP reverse proxy such as nginx, or
  • use any IP address used by the connecting HTTP client

If you want to provide an additional IPv6 address as myip6 parameter, the myip parameter containing an IPv4 address has to be present, too! No automatism is applied then.

SSL, multiple listen ports

Use a web server as a proxy to handle SSL and/or multiple listen addresses and ports. DynDNS.com provides HTTP on port 80 and 8245 and HTTPS on port 443.

Startup

There is a Dockerfile that can be used to build a Docker image for running dyndnsd.rb.

The Debian 6 init.d script assumes that dyndnsd.rb is installed into the system ruby (no RVM support) and the config.yaml is at /opt/dyndnsd/config.yaml. Modify to your needs.

Monitoring

For monitoring dyndnsd.rb uses the metriks framework and exposes several metrics like the number of unauthenticated requests, requests that did (not) update a hostname, etc. By default, the most important metrics are shown in the [proctitle](https://github.com/eric/metriks#proc-title-reporter, butt you can also configure a Graphite backend for central monitoring or the textfile_reporter which outputs Graphite-style metrics that are also compatible with Prometheus to a file.

host: "0.0.0.0"
port: 8245 # the DynDNS.com alternative HTTP port
db: "/opt/dyndnsd/db.json"
domain: "dyn.example.org"
# configure the Graphite backend to be used instead of proctitle
graphite:
  host: localhost # defaults for host and port of a carbon server
  port: 2003
  prefix: "my.graphite.metrics.naming.structure.dyndnsd"
# OR configure the textfile reporter instead of Graphite/proctitle
textfile:
  file: /path/to/file.prom
  prefix: "my.graphite.metrics.naming.structure.dyndnsd"
# configure the updater, here we use command_with_bind_zone, params are updater-specific
updater:
  name: "command_with_bind_zone"
  params:
    zone_file: "dyn.zone"
    command: "echo 'Hello'"
    ttl: "5m"
    dns: "dns.example.org."
    email_addr: "admin.example.org."
# user database with hostnames a user is allowed to update
users:
  # 'foo' is username, 'secret' the password
  foo:
    password: "secret"
    hosts:
      - foo.example.org
      - bar.example.org
  test:
    password: "ihavenohosts"

Tracing (experimental)

For tracing, dyndnsd.rb is instrumented using the OpenTelemetry framework and will emit span tracing data for the most important operations happening during the request/response cycle. Using an instrumentation for Rack allows handling incoming OpenTelemetry parent span information properly (when desired, turned off by default to reduce attack surface).

Currently, the OpenTelemetry trace exporter for CNCF Jaeger can be enabled via dyndnsd.rb configuration. Alternatively, you can also enable other exporters via the environment variable OTEL_TRACES_EXPORTER, e.g. OTEL_TRACES_EXPORTER=console.

host: "0.0.0.0"
port: 8245 # the DynDNS.com alternative HTTP port
db: "/opt/dyndnsd/db.json"
domain: "dyn.example.org"
# enable and configure tracing using the (currently only) tracer jaeger
tracing:
  trust_incoming_span: false # default value, change to accept incoming OpenTelemetry spans as parents
  service_name: "my.dyndnsd.identifier" # default unset, will be populated by OpenTelemetry
  jaeger: true # enables the Jaeger AgentExporter
# configure the updater, here we use command_with_bind_zone, params are updater-specific
updater:
  name: "command_with_bind_zone"
  params:
    zone_file: "dyn.zone"
    command: "echo 'Hello'"
    ttl: "5m"
    dns: "dns.example.org."
    email_addr: "admin.example.org."
# user database with hostnames a user is allowed to update
users:
  # 'foo' is username, 'secret' the password
  foo:
    password: "secret"
    hosts:
      - foo.example.org
      - bar.example.org
  test:
    password: "ihavenohosts"

License

dyndnsd.rb is licensed under the Apache License, Version 2.0. See LICENSE for more information.