User Tools

Site Tools


networking:dns:dns_performance_tests

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
networking:dns:dns_performance_tests [2020/04/14 16:03] – created peternetworking: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
 +</code>
  
 +----
 +
 +===== Install =====
 +
 +<code bash>
 +git clone --depth=1 https://github.com/cleanbrowsing/dnsperftest/
 </code> </code>
 +
 +or manually create the following file, make it executable and run it:
 +
 +<file bash dnstest.sh>
 +#!/usr/bin/env bash
 +
 +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."; exit 1; }
 +
 +
 +
 +NAMESERVERS=`cat /etc/resolv.conf | grep ^nameserver | cut -d " " -f 2 | sed 's/\(.*\)/&#&/'`
 +
 +PROVIDERS="
 +192.168.1.1#pfSense
 +192.168.1.2#Bind Server
 +1.1.1.1#cloudflare 
 +4.2.2.1#level3 
 +8.8.8.8#google 
 +9.9.9.9#quad9 
 +80.80.80.80#freenom 
 +208.67.222.123#opendns 
 +199.85.126.20#norton 
 +185.228.168.168#cleanbrowsing 
 +77.88.8.7#yandex 
 +176.103.130.132#adguard 
 +156.154.70.3#neustar 
 +8.26.56.26#comodo
 +"
 +
 +# Domains to test. Duplicated domains are ok
 +DOMAINS2TEST="www.google.com amazon.com facebook.com www.youtube.com www.reddit.com  wikipedia.org twitter.com gmail.com www.google.com whatsapp.com"
 +
 +
 +totaldomains=0
 +printf "%-18s" ""
 +for d in $DOMAINS2TEST; do
 +    totaldomains=$((totaldomains + 1))
 +    printf "%-8s" "test$totaldomains"
 +done
 +printf "%-8s" "Average"
 +echo ""
 +
 +
 +for p in $NAMESERVERS $PROVIDERS; do
 +    pip=${p%%#*}
 +    pname=${p##*#}
 +    ftime=0
 +
 +    printf "%-18s" "$pname"
 +    for d in $DOMAINS2TEST; do
 +        ttime=`$dig +tries=1 +time=2 +stats @$pip $d |grep "Query time:" | cut -d : -f 2- | cut -d " " -f 2`
 +        if [ -z "$ttime" ]; then
 +         #let's have time out be 1s = 1000ms
 +         ttime=1000
 +        elif [ "x$ttime" = "x0" ]; then
 +         ttime=1
 +     fi
 +
 +        printf "%-8s" "$ttime ms"
 +        ftime=$((ftime + ttime))
 +    done
 +    avg=`bc -lq <<< "scale=2; $ftime/$totaldomains"`
 +
 +    echo "  $avg"
 +done
 +
 +
 +exit 0;
 +</file>
  
 ---- ----
  
-===== Use Docker =====+===== Run ===== 
 + 
 +<code bash> 
 +cd dnsperftest 
 +bash ./dnstest.sh  
 +</code> 
 + 
 +returns: 
 + 
 +<code bash> 
 +                  test1   test2   test3   test4   test5   test6   test7   test8   test9   test10  Average  
 +127.0.0.53        9 ms    9 ms    9 ms    14 ms   19 ms   20 ms   9 ms    14 ms   1 ms    9 ms      11.30 
 +Peter             1 ms    1 ms    1 ms    1 ms    1 ms    1 ms    1 ms    1 ms    1 ms    1 ms      1.00 
 +cloudflare        8 ms    10 ms   8 ms    8 ms    11 ms   9 ms    8 ms    9 ms    8 ms    8 ms      8.70 
 +level3            13 ms   14 ms   14 ms   14 ms   14 ms   13 ms   14 ms   13 ms   13 ms   14 ms     13.60 
 +google            7 ms    7 ms    19 ms   12 ms   18 ms   19 ms   7 ms    13 ms   7 ms    12 ms     12.10 
 +quad9             20 ms   18 ms   23 ms   22 ms   14 ms   120 ms  15 ms   20 ms   16 ms   23 ms     29.10 
 +freenom           25 ms   35 ms   20 ms   46 ms   42 ms   148 ms  25 ms   25 ms   22 ms   121 ms    50.90 
 +opendns           8 ms    8 ms    8 ms    25 ms   8 ms    112 ms  8 ms    25 ms   13 ms   9 ms      22.40 
 +norton            8 ms    8 ms    8 ms    8 ms    8 ms    8 ms    8 ms    8 ms    8 ms    8 ms      8.00 
 +cleanbrowsing     19 ms   15 ms   14 ms   18 ms   19 ms   18 ms   14 ms   14 ms   14 ms   14 ms     15.90 
 +yandex            47 ms   76 ms   47 ms   47 ms   47 ms   160 ms  47 ms   52 ms   47 ms   47 ms     61.70 
 +adguard           19 ms   18 ms   18 ms   19 ms   14 ms   14 ms   14 ms   18 ms   14 ms   20 ms     16.80 
 +neustar           20 ms   20 ms   22 ms   20 ms   21 ms   22 ms   24 ms   21 ms   22 ms   20 ms     21.20 
 +comodo            14 ms   15 ms   13 ms   15 ms   13 ms   128 ms  14 ms   14 ms   15 ms   16 ms     25.70 
 +</code> 
 + 
 + 
 +<WRAP info> 
 +**NOTE:**  To sort with the fastest first, add **| sort -k 22 -n** at the end of the command: 
 + 
 +<code bash> 
 +dnstest.sh | sort -k 22 -n 
 +</code> 
 + 
 + 
 +==== For Windows users using the Linux subsystem ==== 
 + 
 +If you receive an error **<nowiki>$'\r':</nowiki>** command not found, convert the file to a Linux-compatible line endings using: 
 + 
 +<code bash> 
 +tr -d '\15\32' < dnstest.sh > dnstest-2.sh 
 +</code> 
 + 
 +Then run bash ./dnstest-2.sh 
 +</WRAP> 
 + 
 +---- 
 + 
 +===== Use Docker to run the DNS performance test ===== 
 + 
 +===Have a Dockerfile ==== 
 + 
 +Dockerfile contains the following: 
 + 
 +<file bash Dockerfile> 
 +FROM alpine:latest 
 +RUN apk --no-cache add bash bc drill \ 
 +    && mkdir /app \ 
 +    && wget https://raw.githubusercontent.com/cleanbrowsing/dnsperftest/master/dnstest.sh -O /app/dnstest.sh \ 
 +    && chmod +x /app/dnstest.sh 
 + 
 +ENTRYPOINT ["/app/dnstest.sh"
 +</file> 
 + 
 +----
  
 ==== Build the Docker image ==== ==== Build the Docker image ====
Line 61: Line 214:
 docker run dnstest docker run dnstest
 </code> </code>
 +
  
 ---- ----
 +
 +===== References =====
 +
 +https://github.com/cleanbrowsing/dnsperftest
 +
 +https://www.senki.org/network-operations-scaling/dns-latency-and-performance-test-tools/
  
networking/dns/dns_performance_tests.1586880202.txt.gz · Last modified: 2020/07/15 09:30 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki