Job dns-primary-git-monitoring
README
Skip to buildsAuthoritative DNS server
This is a MirageOS unikernel which is an authoritative DNS server on port 53 (TCP and UDP). The data to be served is pulled from a git remote repository. The server supports dynamic updates (NSUPDATE), zone transfer (AXFR and IXFR), all cryptographically authenticated and integrity protected with TSIG (HMAC with a pre-shared secret).
The git remote is expected to contain a flat file hierarchy where each zone
to be served is a separate file. HMAC secrets are stored as DNSKEY entries
in _keys
zones (i.e. example.com._keys
or _keys
).
This can be used with dns-secondary, and let's encrypt for automated provisioning of let's encrypt certificates.
Interoperability
Considering you have a _keys
file with an example HMAC-SHA256 key:
client._update. DNSKEY 0 3 163 0701XCD0muDYZIiLwv6wN/Tyoor/hd9+1zjmZ1mIlzY=
Also, take a "mirage" zone as given, and the unikernel running on "10.0.42.2" in the following.
Interoperation with utilities from bind is given:
If a NOTIFY (RFC 1996) is received, which is signed with a known hmac
secret, a git pull is done. This means an update by the operator to the zones in
git can be done, but remember to send a NOTIFY afterwards. Hint:
dig SOA mirage @10.0.42.2 +opcode=notify -y hmac-sha256:client._update:0701XCD0muDYZIiLwv6wN/Tyoor/hd9+1zjmZ1mIlzY=
A NSUPDATE (RFC 2136) can trigger zone updates. Launch it with
nsupdate -y hmac-sha256:client._update:0701XCD0muDYZIiLwv6wN/Tyoor/hd9+1zjmZ1mIlzY=
and you'll enter an interactive session:
> server 10.0.42.2
> zone mirage
> add local.mirage 3600 IN A 127.0.0.1
> send
This will trigger:
- (a) an update of the zone mirage,
- (b) increment the serial in the SOA, and
- (c) a commit and push to the git repository.
You can observe by requesting dig soa mirage @10.0.42.2
before and after
the nsupdate
execution.
Installation from source
To install this unikernel from source, you need to have opam (>= 2.1.0) and ocaml (>= 4.08.0) installed. Also, mirage is required (>= 4.5.0). Please follow the installation instructions.
The following steps will clone this git repository and compile the unikernel:
$ git clone https://github.com/robur-coop/dns-primary-git.git
$ mirage configure -t <your-favourite-target>
$ make depend
$ make build
Installing as binary
Binaries are available at Reproducible OPAM builds, see Deploying binary MirageOS unikernels and Reproducible MirageOS unikernel builds for details.
Questions?
Please open an issue if you have questions, feature requests, or comments.
Builds
Back to readme- ☑ freebsd-14 2024-11-21 03:03:33Z primary-git.hvt
SHA256:52a5945f5d62f0436c78f3c0ee6cfa62fcb8c0446bd15fb5b8d1d65180bc6653
(9.12MB) - ☑ freebsd-14 2024-11-15 02:28:34Z primary-git.hvt
SHA256:c726669d298dedc7fcd6d358fe029fc29e8ef842d4f438a19f13fe7479465cb7
(9.12MB) - ☑ freebsd-14 2024-11-07 02:15:06Z primary-git.hvt
SHA256:9510a86d50dd4f00f8d7a7de7323249ba5218512fdcff1e3d43b7ebaeee01f2d
(9.12MB) - ☑ freebsd-14 2024-10-24 02:08:00Z primary-git.hvt
SHA256:1fde7e757ff1d721b7534b1c5de2e50d86bdecf05dc8b7940f5f5912cacacf2c
(9.12MB) - ☑ freebsd-14 2024-10-23 01:16:40Z primary-git.hvt
SHA256:11e89ba43542e9649bcea5783b100c8f460bf6ccd9faf0cd1cc5558733c522dd
(9.12MB) - ☑ freebsd-14 2024-10-14 12:01:33Z primary-git.hvt
SHA256:aaa1e8900c207c3f41a760b9c8fd5e26f147d18da2e1f1b68c295b9a936de748
(9.12MB)
Including failed builds here.