networking:dns:dns_performance_tests
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
networking:dns:dns_performance_tests [2020/04/14 16:04] – peter | networking:dns:dns_performance_tests [2021/01/07 12:12] (current) – peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Networking - DNS - DNS Performance Tests ====== | ====== Networking - DNS - DNS Performance Tests ====== | ||
+ | |||
+ | Determine which DNS server is the quickest to use. | ||
+ | |||
+ | If all you care about is speed, then the DNS with the lower number for the websites you care about is probably your best bet. | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Required ===== | ||
+ | |||
+ | You need to install bc and dig. For Ubuntu: | ||
<code bash> | <code bash> | ||
+ | sudo apt-get install bc dnsutils | ||
+ | </ | ||
+ | ---- | ||
+ | |||
+ | ===== Install ===== | ||
+ | |||
+ | <code bash> | ||
+ | git clone --depth=1 https:// | ||
</ | </ | ||
+ | |||
+ | or manually create the following file, make it executable and run it: | ||
+ | |||
+ | <file bash dnstest.sh> | ||
+ | # | ||
+ | |||
+ | command -v bc > /dev/null || { echo "bc was not found. Please install bc."; exit 1; } | ||
+ | { command -v drill > /dev/null && dig=drill; } || { command -v dig > /dev/null && dig=dig; } || { echo "dig was not found. Please install dnsutils."; | ||
+ | |||
+ | |||
+ | |||
+ | NAMESERVERS=`cat / | ||
+ | |||
+ | PROVIDERS=" | ||
+ | 192.168.1.1# | ||
+ | 192.168.1.2# | ||
+ | 1.1.1.1# | ||
+ | 4.2.2.1# | ||
+ | 8.8.8.8# | ||
+ | 9.9.9.9# | ||
+ | 80.80.80.80# | ||
+ | 208.67.222.123# | ||
+ | 199.85.126.20# | ||
+ | 185.228.168.168# | ||
+ | 77.88.8.7# | ||
+ | 176.103.130.132# | ||
+ | 156.154.70.3# | ||
+ | 8.26.56.26# | ||
+ | " | ||
+ | |||
+ | # Domains to test. Duplicated domains are ok | ||
+ | DOMAINS2TEST=" | ||
+ | |||
+ | |||
+ | totaldomains=0 | ||
+ | printf " | ||
+ | for d in $DOMAINS2TEST; | ||
+ | totaldomains=$((totaldomains + 1)) | ||
+ | printf " | ||
+ | done | ||
+ | printf " | ||
+ | echo "" | ||
+ | |||
+ | |||
+ | for p in $NAMESERVERS $PROVIDERS; do | ||
+ | pip=${p%%# | ||
+ | pname=${p## | ||
+ | ftime=0 | ||
+ | |||
+ | printf " | ||
+ | for d in $DOMAINS2TEST; | ||
+ | ttime=`$dig +tries=1 +time=2 +stats @$pip $d |grep "Query time:" | cut -d : -f 2- | cut -d " " -f 2` | ||
+ | if [ -z " | ||
+ | #let's have time out be 1s = 1000ms | ||
+ | ttime=1000 | ||
+ | elif [ " | ||
+ | ttime=1 | ||
+ | fi | ||
+ | |||
+ | printf " | ||
+ | ftime=$((ftime + ttime)) | ||
+ | done | ||
+ | avg=`bc -lq <<< | ||
+ | |||
+ | echo " | ||
+ | done | ||
+ | |||
+ | |||
+ | exit 0; | ||
+ | </ | ||
---- | ---- | ||
- | ===== Use Docker | + | ===== Run ===== |
- | ==== Build the Docker | + | <code bash> |
+ | cd dnsperftest | ||
+ | bash ./ | ||
+ | </ | ||
+ | |||
+ | returns: | ||
+ | |||
+ | <code bash> | ||
+ | test1 | ||
+ | 127.0.0.53 | ||
+ | Peter 1 ms 1 ms 1 ms 1 ms 1 ms 1 ms 1 ms 1 ms 1 ms 1 ms 1.00 | ||
+ | cloudflare | ||
+ | level3 | ||
+ | google | ||
+ | quad9 20 ms 18 ms 23 ms 22 ms 14 ms 120 ms 15 ms 20 ms 16 ms 23 ms | ||
+ | freenom | ||
+ | opendns | ||
+ | norton | ||
+ | cleanbrowsing | ||
+ | yandex | ||
+ | adguard | ||
+ | neustar | ||
+ | comodo | ||
+ | </ | ||
+ | |||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | <code bash> | ||
+ | dnstest.sh | sort -k 22 -n | ||
+ | </ | ||
+ | |||
+ | |||
+ | ==== For Windows users using the Linux subsystem ==== | ||
+ | |||
+ | If you receive an error **< | ||
+ | |||
+ | <code bash> | ||
+ | tr -d ' | ||
+ | </ | ||
+ | |||
+ | Then run bash ./ | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Use Docker | ||
+ | |||
+ | ==== Have a Dockerfile | ||
Dockerfile contains the following: | Dockerfile contains the following: | ||
Line 22: | Line 159: | ||
ENTRYPOINT ["/ | ENTRYPOINT ["/ | ||
</ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ==== Build the Docker image ==== | ||
<code bash> | <code bash> | ||
Line 73: | Line 214: | ||
docker run dnstest | docker run dnstest | ||
</ | </ | ||
+ | |||
---- | ---- | ||
+ | |||
+ | ===== References ===== | ||
+ | |||
+ | https:// | ||
+ | |||
+ | https:// | ||
networking/dns/dns_performance_tests.1586880272.txt.gz · Last modified: 2020/07/15 09:30 (external edit)