Skip to content

Instantly share code, notes, and snippets.

@aowongster
Forked from hanshasselberg/dnsperf_install.sh
Last active August 30, 2016 00:21
Show Gist options
  • Save aowongster/bfe815372e53ad00c8abfa3cf5a144d5 to your computer and use it in GitHub Desktop.
Save aowongster/bfe815372e53ad00c8abfa3cf5a144d5 to your computer and use it in GitHub Desktop.
Install dnsperf on ubuntu
#!/bin/bash
# shell script to install dnsperf tool on ubuntu
sudo apt-get install -y bind9utils libbind-dev libkrb5-dev libssl-dev libcap-dev libxml2-dev libgeoip-dev
curl ftp://ftp.nominum.com/pub/nominum/dnsperf/2.1.0.0/dnsperf-src-2.1.0.0-1.tar.gz -O
tar xfvz dnsperf-src-2.1.0.0-1.tar.gz
cd dnsperf-src-2.1.0.0-1
./configure
make
sudo make install
# nomium source
# http://nominum.com/measurement-tools/
# Here's some examples:
# [https://www.gypthecat.com/how-to-dnsperf-on-ubuntu-14-04-with-installation-and-quick-start](Gyphy Tutorial)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment