https://github.com/dns-oarc/dumdumd
High performance UDP/TCP/DoT/DoH DNS "server" that... just drops/reflects everything you send to it
https://github.com/dns-oarc/dumdumd
c daemon drop packets
Last synced: 8 months ago
JSON representation
High performance UDP/TCP/DoT/DoH DNS "server" that... just drops/reflects everything you send to it
- Host: GitHub
- URL: https://github.com/dns-oarc/dumdumd
- Owner: DNS-OARC
- License: agpl-3.0
- Created: 2017-02-22T14:37:44.000Z (about 9 years ago)
- Default Branch: develop
- Last Pushed: 2024-08-15T08:25:33.000Z (over 1 year ago)
- Last Synced: 2025-04-07T09:01:37.306Z (11 months ago)
- Topics: c, daemon, drop, packets
- Language: C
- Homepage:
- Size: 107 KB
- Stars: 17
- Watchers: 3
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES
- License: LICENSE
Awesome Lists containing this project
README
# dumdumd
High performance UDP/TCP server that... just drops/reflects everything you send to it
## Requirements
`dumdumd` requires a couple of libraries beside a normal C compiling
environment with autoconf, automake, libtool and pkgconfig.
- libev-dev || libuv1-dev
- libssl-dev
- libevent-dev
- libnghttp2-dev
## Build
```
sh autogen.sh
./configure
make
```
## Usage
```
src/dumdumd -h
```
## Docker usage
```
docker build -t dumdumd .
docker run -ti --init --network=host dumdumd -h
```
Optional parameter `--network=host` disables Docker networking.
This improves performance when testing over physical network interfaces.
Optional parameters `-ti --init` make terminal work as you would expect,
namely SIGINT from Control+C gets propagated to dumdumd.
## Author(s)
Jerry Lundström
## Copyright
Copyright (c) 2017-2024 OARC, Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program 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 Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see .