Created
February 27, 2015 06:28
-
-
Save oko/b8e4eae9cf98e2aca86c to your computer and use it in GitHub Desktop.
Build DNSperf
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Install libbind and bind9 ports | |
# - bind9 is installed disabled by default | |
sudo port -v install libbind bind9 | |
curl -Lsso /tmp/dnsperf.tar.gz ftp://ftp.nominum.com/pub/nominum/dnsperf/2.0.0.0/dnsperf-src-2.0.0.0-1.tar.gz | |
cd /tmp | |
tar xzvf dnsperf.tar.gz | |
cd /tmp/dnsperf-src-2.0.0.0-1 | |
./configure | |
make | |
sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment