Skip to content

elnx/atomdns

 
 

Repository files navigation

atomdns

AtomDNS is atomic simple DNS server without plugins, all power builtin.

Status

AtomDNS's config format could be changed at any time before v1.0.0 released.

Install

Archlinux with AUR

yay -S atomdns

Usage

atomdns /path/to/atomdns.hcl

Config

Forward all dns query to upstream

listen = "127.0.0.1:53"

upstream "default" {
  type = "dot"
  addr = "185.222.222.222:853"
  tls_server_name = "public-dns-a.dns.sb"
}

rules = {
  default: "default"
}

Accelerate chinese domains

listen = "127.0.0.1:53"


upstream "oversea" {
  type = "dot"
  addr = "185.222.222.222:853"
  tls_server_name = "public-dns-a.dns.sb"
}

upstream "mainland" {
  type = "udp"
  addr = "114.114.114.114:53"
}

match "to_mainland" {
  type = "in_domain_list"
  # get this file from https://github.com/felixonmars/dnsmasq-china-list
  path = "/etc/atomdns/accelerated-domains.china.raw.txt"
}

rules = {
  to_mainland: "mainland",
  default: "oversea"
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 90.0%
  • Makefile 10.0%