An open API service indexing awesome lists of open source software.

https://github.com/getpinga/parkdns-go

A Golang-based DNS server for unified domain management.
https://github.com/getpinga/parkdns-go

dns dns-server golang

Last synced: 28 days ago
JSON representation

A Golang-based DNS server for unified domain management.

Awesome Lists containing this project

README

          

# parkDNS
A Golang-based DNS server for unified domain management. Install and define the zone in the config file. Then point all domains to in and it will serve the same zone details for all parked domains.

## Install

```
$ go get github.com/miekg/dns
$ go build parkdns.go
$ sudo ./parkdns
```

## records.json sample

```
{
"records": [
{
"type": 1,
"ttl": 3600,
"data": "192.168.1.1"
},
{
"type": 15,
"ttl": 3600,
"data": "mail.example.com.",
"priority": 10
},
{
"type": 15,
"ttl": 3600,
"data": "mail2.example.com.",
"priority": 20
}
]
}
```