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

Both sides previous revisionPrevious revision
Next revision
Previous revision
networking:dns:dns_performance_tests [2020/04/14 16:07] 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>
 +sudo apt-get install bc dnsutils
 +</code>
 +
 +----
 +
 +===== Install =====
 +
 +<code bash>
 +git clone --depth=1 https://github.com/cleanbrowsing/dnsperftest/
 +</code>
 +
 +or manually create the following file, make it executable and run it:
  
 <file bash dnstest.sh> <file bash dnstest.sh>
Line 12: Line 36:
  
 PROVIDERS=" PROVIDERS="
 +192.168.1.1#pfSense
 +192.168.1.2#Bind Server
 1.1.1.1#cloudflare  1.1.1.1#cloudflare 
 4.2.2.1#level3  4.2.2.1#level3 
Line 69: Line 95:
 ---- ----
  
-===== 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 ==== ==== Have a Dockerfile ====
Line 139: Line 214:
 docker run dnstest docker run dnstest
 </code> </code>
 +
  
 ---- ----
Line 145: Line 221:
  
 https://github.com/cleanbrowsing/dnsperftest https://github.com/cleanbrowsing/dnsperftest
 +
 +https://www.senki.org/network-operations-scaling/dns-latency-and-performance-test-tools/
  
networking/dns/dns_performance_tests.1586880443.txt.gz · Last modified: 2020/07/15 09:30 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki