AWS Route 53 Dynamic DNS

Crates.io Crates.io Build Status dependency status snapcraft.io

Introduction

This app provides a way to keep a consistant url for a network where the external ip address may change from time to time, by adding a record to a domain where the primary DNS is hosted by the Amazon Route 53 service.

There are many reasons why you would want this, the most common is to provide a URL to a service hosted on a domestic network where the ISP is not providing a static ip address, e.g. webserver, vpn to home, etc.. There are other DDNS services out there that may give you a free option, I just want to use my own domain.

This is not is a publicly facing DDNS API, for that I would recomend another repository with a similar name: aws-ddns. This is an application that provides DDNS using the R53 API, it is intended that you run this on one a computer within your network at a frequency that you are happy with.

Pre-Requisites

How it works

The application works gets it's external network address over https from some of the many services that are available online. The application has a number of these sites set up as default, but you can choose your own by providing a comma separated list of sites using the -i parameter. Many of these service have limits to the frequency that you can call them, so r532-ddns limits each run to check a random two services out of the services available. The value returned for the ip address is compared to the value that is stored in the Amazon Route 53 DNS settings, and if they differ, the DNS recordmis updated in Route 53.

Options

``` text $ r53-ddns -h

Set an Amazon Route 53 DNS record for the server/network

Usage: r53-ddns [OPTIONS]

Options: -s, --subdomain The subdomain to save (required) -d, --domain The domain to save the record in (required) -r, --region The aws region, [default: us-east-1] -i, --ipaddress-svc The ip address services to use, e.g. ident.me,ifconfig.me/ip -n, --nat The record is a nat router and so a *.. CNAME record will be set -v, --verbose Verbose logging -c, --check Consecutive check gap in seconds for continuous checking [default: 0] -V, --version Print version information -h, --help Print help ```

Installation

Usage

r53-ddns can be used adhoc if you wish but you probably want to set this up to run continuously in case your external ip address changes. There are two ways that you can do this, using a job scheduler such as cron or as a service.

Issues

If you are having issues with the execution of this application, start by enabling verbose logging with the -v parameter. If you are trying to debug running this in cron or as a service, logging is enabled by default to /var/tmp/r53-ddns.log so that this can be run from any user.

If the issues are not obvious or you think there is a bug, please raise an issue via GitHub.

Contribute

Feel free to contribute I would be happy to take a look at any PRs raised.

Get it from the Snap Store