Skip to content

Instantly share code, notes, and snippets.

@oko
Created February 27, 2015 06:28
Show Gist options
  • Save oko/b8e4eae9cf98e2aca86c to your computer and use it in GitHub Desktop.
Save oko/b8e4eae9cf98e2aca86c to your computer and use it in GitHub Desktop.
Build DNSperf
#!/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