All Projects → StackExchange → Dnscontrol

StackExchange / Dnscontrol

Licence: mit
Synchronize your DNS to multiple providers from a simple DSL

Programming Languages

go
31211 projects - #10 most used programming language
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Dnscontrol

Octodns
Tools for managing DNS across multiple providers
Stars: ✭ 2,090 (+0.05%)
Mutual labels:  infrastructure-as-code, dns, workflow
Sooty
The SOC Analysts all-in-one CLI tool to automate and speed up workflow.
Stars: ✭ 867 (-58.5%)
Mutual labels:  dns, workflow
Routedns
DNS stub resolver, proxy and router with support for DoT, DoH, DoQ, and DTLS
Stars: ✭ 153 (-92.68%)
Mutual labels:  dns
Nictool
NicTool: a DNS management solution
Stars: ✭ 159 (-92.39%)
Mutual labels:  dns
Dnsbin
The request.bin of DNS request
Stars: ✭ 157 (-92.48%)
Mutual labels:  dns
Flares
Flares 🔥 is a CloudFlare DNS backup tool
Stars: ✭ 156 (-92.53%)
Mutual labels:  dns
Salt
Software to automate the management and configuration of any infrastructure or application at scale. Get access to the Salt software package repository here:
Stars: ✭ 12,086 (+478.55%)
Mutual labels:  infrastructure-as-code
Django Lb Workflow
Reusable workflow library for Django
Stars: ✭ 153 (-92.68%)
Mutual labels:  workflow
Terrible
An Ansible playbook that apply the principle of the Infrastructure as Code on a QEMU/KVM environment.
Stars: ✭ 161 (-92.29%)
Mutual labels:  infrastructure-as-code
Machine Learning Workflow With Python
This is a comprehensive ML techniques with python: Define the Problem- Specify Inputs & Outputs- Data Collection- Exploratory data analysis -Data Preprocessing- Model Design- Training- Evaluation
Stars: ✭ 157 (-92.48%)
Mutual labels:  workflow
Terraform Aws Devops
Info about many of my Terraform, AWS, and DevOps projects.
Stars: ✭ 159 (-92.39%)
Mutual labels:  infrastructure-as-code
Batchflow
BatchFlow helps you conveniently work with random or sequential batches of your data and define data processing and machine learning workflows even for datasets that do not fit into memory.
Stars: ✭ 156 (-92.53%)
Mutual labels:  workflow
Etl unicorn
数据可视化, 数据挖掘, 数据处理 ETL
Stars: ✭ 156 (-92.53%)
Mutual labels:  workflow
Camunda Bpm Platform
Flexible framework for workflow and decision automation with BPMN and DMN. Integration with Spring, Spring Boot, CDI.
Stars: ✭ 2,390 (+14.41%)
Mutual labels:  workflow
Alfred Reddit
Browse Reddit from Alfred
Stars: ✭ 155 (-92.58%)
Mutual labels:  workflow
Ddns
🚩 自动更新域名解析到本机IP(支持dnspod,阿里DNS,CloudFlare,华为云,DNSCOM...)
Stars: ✭ 2,582 (+23.6%)
Mutual labels:  dns
Dart Basic Utils
A dart package for many helper methods fitting common situations
Stars: ✭ 153 (-92.68%)
Mutual labels:  dns
Yii2 Workflow
A simple workflow engine for Yii2
Stars: ✭ 157 (-92.48%)
Mutual labels:  workflow
Pytest Testinfra
With Testinfra you can write unit tests in Python to test actual state of your servers configured by management tools like Salt, Ansible, Puppet, Chef and so on.
Stars: ✭ 1,987 (-4.88%)
Mutual labels:  infrastructure-as-code
Sflive Paris2016 Workflow
Demo app for the new symfony/workflow component
Stars: ✭ 160 (-92.34%)
Mutual labels:  workflow

DNSControl

CircleCI Gitter chat Google Group PkgGoDev

DNSControl is a system for maintaining DNS zones. It has two parts: a domain specific language (DSL) for describing DNS zones plus software that processes the DSL and pushes the resulting zones to 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, Windows). The provider model is extensible, so more providers can be added.

Currently supported DNS providers:

  • AWS Route 53
  • AXFR+DDNS
  • Active Directory (Deprecated, see Microsoft DNS)
  • Akamai Edge DNS
  • Azure DNS
  • BIND
  • ClouDNS
  • Cloudflare
  • deSEC
  • DNS Made Easy
  • DNSimple
  • DigitalOcean
  • Exoscale
  • Gandi
  • Google DNS
  • Hetzner
  • HEXONET
  • hosting.de
  • Hurricane Electric DNS
  • INWX
  • Linode
  • Microsoft Windows Server DNS Server
  • NS1
  • Name.com
  • Namecheap
  • Netcup
  • OVH
  • OctoDNS
  • Oracle Cloud
  • PowerDNS
  • SoftLayer
  • TransIP
  • Vultr

Currently supported Domain Registrars:

  • AWS Route 53
  • CSC Global
  • DNSOVERHTTPS
  • easyname
  • Gandi
  • HEXONET
  • hosting.de
  • Internet.bs
  • INWX
  • Name.com
  • Namecheap
  • OVH
  • OpenSRS

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 IR to update your DNS zones on services such as Route53, Cloudflare, and Gandi, or systems such as BIND and Active Directory.

An Example

dnsconfig.js:

// 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","@"),
  MX("@",5,"mail.myserver.com."),
  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.

Running dnscontrol push will make those changes with the provider and my dns records will be correctly updated.

See Getting Started page on documentation site.

Benefits

  • 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.

Installation

From source

DNSControl can be built with Go version 1.16 or higher.

The go get command will download the source, compile it, and install dnscontrol in your $GOBIN directory.

To install, simply run

GO111MODULE=on go get github.com/StackExchange/dnscontrol/v3

To download the source

git clone github.com/StackExchange/dnscontrol

If these don't work, more info is in #805.


Via packages

Get prebuilt binaries from github releases

Alternatively, on Mac you can install it using homebrew:

brew install dnscontrol

Via docker

docker run --rm -it -v $(pwd)/dnsconfig.js:/dns/dnsconfig.js -v $(pwd)/creds.json:/dns/creds.json stackexchange/dnscontrol dnscontrol preview

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

More info at our web site

The website: https://stackexchange.github.io/dnscontrol/

The getting started guide: https://stackexchange.github.io/dnscontrol/getting-started

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].