diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 09:34:30 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 09:34:30 +0000 |
commit | 4fc2f55f761d71aae1f145d5aa94ba929cc39676 (patch) | |
tree | 5c1e1db3b46dd4edbe11f612d93cb94b96891ce3 /README.md | |
parent | Initial commit. (diff) | |
download | dnsdist-4fc2f55f761d71aae1f145d5aa94ba929cc39676.tar.xz dnsdist-4fc2f55f761d71aae1f145d5aa94ba929cc39676.zip |
Adding upstream version 1.7.3.upstream/1.7.3upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..f8e67cb --- /dev/null +++ b/README.md @@ -0,0 +1,29 @@ +# dnsdist +`dnsdist` is a highly DNS-, DoS- and abuse-aware loadbalancer. Its goal in +life is to route traffic to the best server, delivering top performance +to legitimate users while shunting or blocking abusive traffic. + +`dnsdist` is dynamic, in the sense that its configuration can be changed at +runtime, and that its statistics can be queried from a console-like +interface. + +All `dnsdist` features are documented at [dnsdist.org](https://dnsdist.org). + +## Compiling from git + +Make sure to `autoreconf -vi` before running `configure`. + +## macOS Notes + +Install dependencies from Homebrew: + +```sh +brew install autoconf automake boost libedit libsodium libtool lua pkg-config protobuf +``` + +Let configure know where to find libedit, and openssl or libressl: + +```sh +./configure 'PKG_CONFIG_PATH=/usr/local/opt/libedit/lib/pkgconfig:/usr/local/opt/libressl/lib/pkgconfig' +make +``` |