Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gdnsd/gdnsd
Authoritative DNS Server
https://github.com/gdnsd/gdnsd
authoritative dns dns-server geoip2 name-server
Last synced: 5 days ago
JSON representation
Authoritative DNS Server
- Host: GitHub
- URL: https://github.com/gdnsd/gdnsd
- Owner: gdnsd
- License: gpl-3.0
- Created: 2012-05-29T16:22:51.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2024-09-17T13:52:15.000Z (about 2 months ago)
- Last Synced: 2024-09-17T22:31:12.899Z (about 2 months ago)
- Topics: authoritative, dns, dns-server, geoip2, name-server
- Language: C
- Homepage: http://gdnsd.org/
- Size: 7.07 MB
- Stars: 478
- Watchers: 43
- Forks: 68
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- Changelog: NEWS
- License: COPYING
- Security: docs/Security.md
- Authors: AUTHORS
Awesome Lists containing this project
- awesome-repositories - gdnsd/gdnsd - Authoritative DNS Server (C)
- awesome-starred - gdnsd/gdnsd - Authoritative DNS Server (others)
README
[![C/C++ CI](https://github.com/gdnsd/gdnsd/actions/workflows/c-cpp.yml/badge.svg?branch=master)](https://github.com/gdnsd/gdnsd/actions/workflows/c-cpp.yml)
[![CodeQL](https://github.com/gdnsd/gdnsd/actions/workflows/codeql-analysis.yml/badge.svg?branch=master)](https://github.com/gdnsd/gdnsd/actions/workflows/codeql-analysis.yml)## Overview
gdnsd is an Authoritative-only DNS server. The initial g stands for Geographic, as gdnsd offers a plugin system for geographic (or other sorts of) balancing, redirection, and service-state-conscious failover. The plugin system can also do things like weighted address/cname records. If you don't care about these features you can ignore them :).
gdnsd is written in C, and uses pthreads with libev and liburcu to attain very high performance, low latency service. It does not offer any form of caching or recursive service, and does not support DNSSEC. There's a strong focus on making the code efficient, lean, and resilient. The code has a decent regression testsuite with full branch coverage on the core packet parsing and generation code, and some scripted QA tools for e.g. valgrind validation, clang-analyzer, etc.
The geographically-aware features also support the EDNS Client Subnet spec from [RFC 7871](https://tools.ietf.org/html/rfc7871) for receiving more-precise network location information from intermediate shared caches.
## Resources
Project site: https://gdnsd.org/
Release downloads: https://github.com/gdnsd/gdnsd/releases/
The code is hosted at Github: https://github.com/gdnsd/gdnsd/
Bug reports: https://github.com/gdnsd/gdnsd/issues
Wikified docs: https://github.com/gdnsd/gdnsd/wiki
Google Group for discussion: https://groups.google.com/forum/#!forum/gdnsd
See the INSTALL file for details on prerequisites and build procedure
for working from the source tree or a source tarball.The documentation is included in the source tree in POD format
and installed as manpages and textfiles on installation.## COPYRIGHT AND LICENSING
gdnsd is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.gdnsd is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.You should have received a copy of the GNU General Public License
along with gdnsd. If not, see .