dns-server

Open-source projects categorized as dns-server

Top 23 dns-server Open-Source Projects

  • Pi-hole

    A black hole for Internet advertisements

  • Project mention: Usando NextDNS CLI en tu red. | dev.to | 2024-04-22

    Si te preguntas, ¿por qué no usar Adguard o Pihole? 🤔

  • CoreDNS

    CoreDNS is a DNS server that chains plugins

  • Project mention: Small DNS Server That Support Outgoing Address Binding? | /r/linuxadmin | 2023-10-30

    CoreDNS supports this via the bind plugin.

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
  • smartdns

    A local DNS server to obtain the fastest website IP for the best Internet experience, support DoT, DoH. 一个本地DNS服务器,获取最快的网站IP,获得最佳上网体验,支持DoH,DoT。

  • Project mention: New to self hosting. What are the must haves? | /r/selfhosted | 2023-05-21

    For DNS just run smartdns (https://github.com/pymumu/smartdns/blob/master/ReadMe_en.md) in your NAS, RPi or DD-WRT/OpenWRT router and enjoy.

  • sliver

    Adversary Emulation Framework

  • Project mention: With VPN's such as Twin Gate and TailScale, why open ports to expose services to the internet? | /r/selfhosted | 2023-07-05

    IDK if you are too young to remember the fallout from Snowden, but the Kremlin threw out entire rooms computers and for a time used actual typewriters. Because those computers had, more or less, twingate connectors on them. That's a bit of a rich example, but you're essentially installing what sliver calls an implant, what meterpreter calls a payload, and what Cobalt Strike calls a beacon. It's cool if you want to, but there's no need when you can just open a port with the same technology a Fortune 50 does.

  • blocky

    Fast and lightweight DNS proxy as ad-blocker for local network with many features

  • Project mention: Show HN: Blocky – Fast and lightweight DNS proxy as ad-blocker for local network | news.ycombinator.com | 2023-12-01
  • dnsguide

    A guide to writing a DNS Server from scratch in Rust

  • netflix-proxy

    Smart DNS proxy to watch Netflix

  • Project mention: netflix-proxy VS unblock-proxy.sh - a user suggested alternative | libhunt.com/r/netflix-proxy | 2023-08-08
  • SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  • hickory-dns

    A Rust based DNS client, server, and resolver

  • Project mention: Trust-DNS has rebranded to Hickory DNS | news.ycombinator.com | 2023-10-13
  • Technitium DNS Server

    Technitium DNS Server

  • Project mention: Runs on your OpenWrt box: AdGuard Home is network-wide blocking ads and tracking | news.ycombinator.com | 2024-02-06

    It works on minimal hardware. I am running it on an Orange Pi 3 LTS.

    https://technitium.com/dns/

  • PowerDNS

    PowerDNS Authoritative, PowerDNS Recursor, dnsdist

  • Project mention: PowerDNS Starts to Use Rust | news.ycombinator.com | 2023-10-20
  • hestiacp

    Hestia Control Panel | A lightweight and powerful control panel for the modern web.

  • Project mention: Domain names management systems | /r/sysadmin | 2023-05-14

    There's a fork of that too: https://github.com/hestiacp/hestiacp

  • mosdns

    一个 DNS 转发器

  • dns.toys

    A DNS server that offers useful utilities and services over the DNS protocol. Weather, world time, unit conversion etc.

  • Project mention: FLaNK Weekly 08 Jan 2024 | dev.to | 2024-01-08
  • acme-dns

    Limited DNS server with RESTful HTTP API to handle ACME DNS challenges easily and securely.

  • Project mention: Subdomain.center – discover all subdomains for a domain | news.ycombinator.com | 2023-09-15

    Getting a wildcard certificate from LE might be a better option, depending on how easy the extra bit of if plumbing is with your lab setup.

    You need to use DNS based domain identification, and once you have a cert distribute it to all your services. The former can be automated using various common tools (look at https://github.com/joohoi/acme-dns, self-hosted unless you are only securing toys you don't really care about, if you self host DNS or your registrar doesn't have useful API access) or you can leave that as an every ~ten weeks manual job, the latter involves scripts to update you various services when a new certificate is available (either pushing from where you receive the certificate or picking up from elsewhere). I have a little VM that holds the couple of wildcard certificates (renewing them via DNS01 and acmedns on a separate machine so this one is impossible to see from the outside world), it pushes the new key and certificate out to other hosts (simple SSH to copy over then restart nginx/Apache/other).

    Of course you may decide that the shin if your own CA is easier than setting all this up, as you can sign long lived certificates for yourself. I prefer this because I don't need to switch to something else if I decide to give friends/others access to something.

  • sdns

    A high-performance, recursive DNS resolver server with DNSSEC support, focused on preserving privacy.

  • Project mention: SDNS: High-performance, recursive DNS resolver server with DNSSEC support | news.ycombinator.com | 2023-11-20
  • DnsClient.NET

    DnsClient.NET is a simple yet very powerful and high performant open source library for the .NET Framework to do DNS lookups

  • RubyDNS

    A DSL for building fun, high-performance DNS servers.

  • Bind

    Mirror of https://gitlab.isc.org/isc-projects/bind9, please submit issues and PR/MRs in the GitLab. Any issues and PRs opened here will be closed without a comment.

  • unbound-docker

    Unbound DNS Server Docker Image

  • Project mention: No internet access for containers co-hosted with pihole | /r/docker | 2023-05-13

    version: "3" # More info at https://github.com/pi-hole/docker-pi-hole/ and https://docs.pi-hole.net/ networks: dns_net: driver: bridge ipam: config: - subnet: 10.2.0.0/24 services: pihole: depends_on: [unbound] container_name: pihole image: pihole/pihole:latest hostname: pihole networks: dns_net: ipv4_address: 10.2.0.100 ports: - "5335:53/tcp" - "5335:53/udp" - "7000:80/tcp" environment: TZ: ${TZ} WEBPASSWORD: ${PWD} FTLCONF_LOCAL_IPV4: ${HOST_IP} # Set to server's LAN IP, used by web block modes. PIHOLE_DNS_: 10.2.0.200 # Upstream DNS server(s) for Pi-hole to forward queries to, separated by a semicolon DNSMASQ_LISTENING: all # "Listen on all interfaces, permit all origins" # Volumes store your data between container upgrades volumes: - /var/lib/docker/volumes/pihole/etc-pihole:/etc/pihole - /var/lib/docker/volumes/pihole/etc-dnsmasq.d:/etc/dnsmasq.d healthcheck: disable: true restart: unless-stopped unbound: # https://github.com/MatthewVance/unbound-docker container_name: unbound image: mvance/unbound:latest hostname: unbound networks: dns_net: ipv4_address: 10.2.0.200 ports: - "${HOST_IP}:53:53/udp" - "${HOST_IP}:53:53/tcp" healthcheck: disable: true restart: unless-stopped

  • gdnsd

    Authoritative DNS Server

  • routedns

    DNS stub resolver, proxy and router with support for DoT, DoH, DoQ, and DTLS

  • blahdns

    A small hobby ads block dns project with doh, dot, dnscrypt support.

  • Project mention: Issues with Downloading Fox Client | /r/baduk | 2023-05-17

    check to see if it is a dns block from your provider, if so use one like blahdns. https://blahdns.com.

  • gasper

    Your Cloud in a Binary

  • SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The open source projects on this list are ordered by number of github stars. The number of mentions indicates repo mentiontions in the last 12 Months or since we started tracking (Dec 2020).

dns-server related posts

  • Do you *really* need to store all that telemetry?

    1 project | news.ycombinator.com | 15 Apr 2024
  • DNS Toys

    3 projects | news.ycombinator.com | 6 Jan 2024
  • What DNS and DHCP solutions are you using?

    1 project | /r/selfhosted | 10 Dec 2023
  • C++ Show and Tell - December 2023

    7 projects | /r/cpp | 3 Dec 2023
  • A simple backup script

    1 project | /r/technitium | 8 Dec 2023
  • Struggling to pull down Pi-Hole + Unbound - 1 Container project, Please help.

    4 projects | /r/pihole | 7 Dec 2023
  • Overwatch 2 disconnects when using Windows Server 2022 for DHCP/DNS

    1 project | /r/homelab | 4 Dec 2023
  • A note from our sponsor - InfluxDB
    www.influxdata.com | 4 May 2024
    Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality. Learn more →

Index

What are some of the best open-source dns-server projects? This list will help you:

Project Stars
1 Pi-hole 46,888
2 CoreDNS 11,811
3 smartdns 7,747
4 sliver 7,568
5 blocky 4,197
6 dnsguide 3,768
7 netflix-proxy 3,659
8 hickory-dns 3,617
9 Technitium DNS Server 3,496
10 PowerDNS 3,393
11 hestiacp 3,039
12 mosdns 2,563
13 dns.toys 2,435
14 acme-dns 1,984
15 sdns 904
16 DnsClient.NET 750
17 RubyDNS 705
18 Bind 541
19 unbound-docker 511
20 gdnsd 460
21 routedns 428
22 blahdns 420
23 gasper 414

Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com