2017-01-12 11:01:04 +08:00
# DNSControl
2020-11-07 07:45:06 +08:00
[![Build Status ](https://github.com/StackExchange/dnscontrol/workflows/build/badge.svg )](https://github.com/StackExchange/dnscontrol/actions?query=workflow%3Abuild+branch%3Amaster)
2017-03-15 07:26:39 +08:00
[![Gitter chat ](https://badges.gitter.im/dnscontrol/Lobby.png )](https://gitter.im/dnscontrol/Lobby)
2020-11-13 00:22:19 +08:00
[![Google Group ](https://img.shields.io/badge/google%20group-chat-green.svg )](https://groups.google.com/forum/#!forum/dnscontrol-discuss)
[![PkgGoDev ](https://pkg.go.dev/badge/github.com/StackExchange/dnscontrol )](https://pkg.go.dev/github.com/StackExchange/dnscontrol)
2017-03-15 07:26:56 +08:00
2020-03-10 21:18:19 +08:00
[DNSControl ](https://stackexchange.github.io/dnscontrol/ ) is a system
for maintaining DNS zones. It has two parts:
2017-01-12 03:14:28 +08:00
a domain specific language (DSL) for describing DNS zones plus
software that processes the DSL and pushes the resulting zones to
2020-03-10 21:18:19 +08:00
DNS providers such as Route53, Cloudflare, and Gandi. It can send
the same DNS records to multiple providers. It even generates
the most beautiful BIND zone files ever. It runs anywhere Go runs (Linux, macOS,
2017-03-15 08:20:56 +08:00
Windows). The provider model is extensible, so more providers can be added.
Currently supported DNS providers:
2020-03-10 21:18:19 +08:00
- AWS Route 53
2020-05-08 22:55:51 +08:00
- AXFR+DDNS
2020-12-29 05:07:33 +08:00
- Active Directory (Deprecated, see Microsoft DNS)
2021-06-22 22:24:49 +08:00
- Akamai Edge DNS
2019-09-19 09:45:14 +08:00
- Azure DNS
2017-03-15 08:21:48 +08:00
- BIND
2020-01-21 03:07:38 +08:00
- ClouDNS
2020-03-10 21:18:19 +08:00
- Cloudflare
2020-09-04 23:51:21 +08:00
- DNSOVERHTTPS
2021-03-18 11:36:42 +08:00
- DNS Made Easy
2017-03-19 09:58:47 +08:00
- DNSimple
2020-03-10 21:18:19 +08:00
- DigitalOcean
2019-02-22 22:10:23 +08:00
- Exoscale
2017-03-15 08:20:56 +08:00
- Gandi
2020-03-10 21:18:19 +08:00
- Google DNS
2020-10-22 21:44:21 +08:00
- Hetzner
2018-08-30 20:54:42 +08:00
- HEXONET
2021-03-09 08:25:55 +08:00
- hosting.de
2020-09-04 23:51:21 +08:00
- Hurricane Electric DNS
2020-08-17 20:45:44 +08:00
- INWX
2020-09-04 23:51:21 +08:00
- Internet.bs
2017-11-15 12:08:06 +08:00
- Linode
2020-12-29 05:07:33 +08:00
- Microsoft Windows Server DNS Server
2017-10-18 21:19:41 +08:00
- NS1
2020-03-10 21:18:19 +08:00
- Name.com
- Namecheap
2020-10-27 08:20:02 +08:00
- Netcup
2020-03-10 21:18:19 +08:00
- OVH
- OctoDNS
- OpenSRS
2021-01-25 04:35:12 +08:00
- Oracle Cloud
2020-05-30 21:54:07 +08:00
- PowerDNS
2017-09-27 01:14:53 +08:00
- SoftLayer
2021-07-07 23:43:10 +08:00
- TransIP
2017-10-12 21:21:36 +08:00
- Vultr
2020-09-04 23:51:21 +08:00
- deSEC
2017-01-12 03:14:28 +08:00
At Stack Overflow, we use this system to manage hundreds of domains
and subdomains across multiple registrars and DNS providers.
You can think of it as a DNS compiler. The configuration files are
written in a DSL that looks a lot like JavaScript. It is compiled
to an intermediate representation (IR). Compiler back-ends use the
2019-05-23 21:29:21 +08:00
IR to update your DNS zones on services such as Route53, Cloudflare,
and Gandi, or systems such as BIND and Active Directory.
2017-01-12 03:14:28 +08:00
2017-03-14 15:30:02 +08:00
# An Example
`dnsconfig.js` :
2017-03-15 08:07:40 +08:00
```js
2017-03-14 15:30:02 +08:00
// define our registrar and providers
var namecom = NewRegistrar("name.com", "NAMEDOTCOM");
var r53 = NewDnsProvider("r53", "ROUTE53")
D("example.com", namecom, DnsProvider(r53),
A("@", "1.2.3.4"),
CNAME("www","@"),
2017-03-14 15:30:42 +08:00
MX("@",5,"mail.myserver.com."),
2017-03-14 15:30:02 +08:00
A("test", "5.6.7.8")
)
```
Running `dnscontrol preview` will talk to the providers (here name.com as registrar and route 53 as the dns host), and determine what changes need to be made.
2017-03-27 04:37:04 +08:00
Running `dnscontrol push` will make those changes with the provider and my dns records will be correctly updated.
2017-03-14 15:30:02 +08:00
2017-03-14 15:36:59 +08:00
See [Getting Started ](https://stackexchange.github.io/dnscontrol/getting-started ) page on documentation site.
2017-01-12 03:14:28 +08:00
# Benefits
2020-03-10 21:18:19 +08:00
* **Less error-prone** than editing a BIND zone file.
* **More reproducible** than clicking buttons on a web portal.
* **Easily switch between DNS providers:** The DNSControl language is
vendor-agnostic. If you use it to maintain your DNS zone records,
you can switch between DNS providers easily. In fact, DNSControl
will upload your DNS records to multiple providers, which means you
can test one while switching to another. We've switched providers 3
times in three years and we've never lost a DNS record.
* **Adopt CI/CD principles to DNS!** At StackOverflow we maintain our
DNSControl configurations in Git and use our CI system to roll out
changes. Keeping DNS information in a VCS means we have full
history. Using CI enables us to include unit-tests and
system-tests. Remember when you forgot to include a "." at the end
of an MX record? We haven't had that problem since we included a
test to make sure Tom doesn't make that mistake... again.
* **Adopt PR-based updates.** Allow developers to send updates as PRs,
which you can review before you approve.
* **Variables save time!** Assign an IP address to a constant and use the
variable name throughout the file. Need to change the IP address
globally? Just change the variable and "recompile."
* **Macros!** Define your SPF records, MX records, or other repeated data
once and re-use them for all domains.
* **Control Cloudflare from a single source of truth.** Enable/disable
Cloudflare proxying (the "orange cloud" button) directly from your
DNSControl files.
* **Keep similar domains in sync** with transforms and other features. If
one domain is supposed to be a filtered version of another, this is
easy to set up.
* **It is extendable!** All the DNS providers are written as plugins.
Writing new plugins is very easy.
2017-01-12 03:14:28 +08:00
# Installation
2017-04-14 00:46:47 +08:00
## From source
2021-06-05 03:50:47 +08:00
DNSControl can be built with Go version 1.16 or higher.
2017-04-14 00:46:47 +08:00
2021-05-10 19:53:21 +08:00
The `go get` command will download the source, compile it, and
2020-11-19 05:15:18 +08:00
install `dnscontrol` in your `$GOBIN` directory.
2020-08-27 01:40:33 +08:00
To install, simply run
2017-06-12 23:35:34 +08:00
2020-08-27 01:40:33 +08:00
GO111MODULE=on go get github.com/StackExchange/dnscontrol/v3
2017-01-12 03:14:28 +08:00
2020-08-27 01:40:33 +08:00
To download the source
2020-08-20 08:01:28 +08:00
2020-10-10 22:34:04 +08:00
git clone github.com/StackExchange/dnscontrol
2020-08-20 08:01:28 +08:00
2020-08-27 01:40:33 +08:00
If these don't work, more info is in [#805 ](https://github.com/StackExchange/dnscontrol/issues/805 ).
2020-08-20 08:01:28 +08:00
---
2017-04-14 00:46:47 +08:00
## Via packages
Get prebuilt binaries from [github releases ](https://github.com/StackExchange/dnscontrol/releases/latest )
2017-09-13 02:32:53 +08:00
2018-12-13 20:24:34 +08:00
Alternatively, on Mac you can install it using homebrew:
`brew install dnscontrol`
2017-09-13 02:32:53 +08:00
## Via [docker](https://hub.docker.com/r/stackexchange/dnscontrol/)
```
2017-09-13 02:38:57 +08:00
docker run --rm -it -v $(pwd)/dnsconfig.js:/dns/dnsconfig.js -v $(pwd)/creds.json:/dns/creds.json stackexchange/dnscontrol dnscontrol preview
2017-10-18 21:19:41 +08:00
```
2020-03-10 21:18:19 +08:00
2021-04-23 03:23:53 +08:00
The documentation can be viewed via Docker:
```
docker run --rm -it --volume="$PWD:/srv/jekyll" --volume="$PWD/vendor/bundle:/usr/local/bundle" --env JEKYLL_ENV=production jekyll/jekyll:3.8 jekyll build -V
```
2020-03-10 21:18:19 +08:00
## More info at our web site
2020-11-19 05:15:18 +08:00
The website: [https://stackexchange.github.io/dnscontrol/ ](https://stackexchange.github.io/dnscontrol/ )
The getting started guide: [https://stackexchange.github.io/dnscontrol/getting-started ](https://stackexchange.github.io/dnscontrol/getting-started )