Premium Only Content

Create your own DNS response time tool in Python
I can’t count the number of times I wish I had a tool that just …….
Many times, the tool exists, but part of a network management suite or solution which is not practical to install and configure for a simple test or the odd troubleshooting task.
In this video I will show you a small piece of code that I wrote to record DNS response time.
Here is the code below for you to simply cut and paste.
import csv
import datetime
import time
import dns.resolver
# DNS name to resolve
domain_name = "thetechfirm.com"
# Number of times to measure DNS response time
num_measurements = 100
counter = 0
delay = 1
print("Tonys DNS response time utility")
print("Performing name lookups for", domain_name, num_measurements, "times with a ", delay, "second delay")
# Create CSV file and write header row
with open('dns_response_times.csv', mode='w') as csv_file:
fieldnames = ['Date', 'Response Time (ms)']
writer = csv.DictWriter(csv_file, fieldnames=fieldnames)
writer.writeheader()
# Measure DNS response time multiple times and write results to CSV file
for i in range(num_measurements):
counter = counter+1
start_time = time.time()
# Perform DNS resolution
resolver = dns.resolver.Resolver()
resolver.nameservers = ['8.8.8.8'] # Google DNS server
answer = dns.resolver.resolve(domain_name)
end_time = time.time()
response_time_ms = (end_time - start_time) * 1000
# Write result to CSV file
writer.writerow({'Date': datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S"), 'Response Time (ms)': response_time_ms})
print("Testing", domain_name, "#", counter,response_time_ms,"ms")
time.sleep(delay)
-
24:27
Dan the HIIT Man
19 hours agoUpper Body Strength Workout - Build Muscle Fast!
1.53K4 -
14:21
Clownfish TV
12 hours agoDisney CEO Bob Iger LOVES Trump Now?! Abu Dhabi Rumors and More!
1.86K10 -
14:16
Tactical Advisor
2 days agoI Built My Dream AR15
1.71K3 -
14:53
T-SPLY
10 hours agoElected Official Caught Assaulting DHS Officers On Camera!
1.92K11 -
1:51:33
FreshandFit
4 hours agoCraziest S*x Stories You'll EVER Hear w/ Mr. Organik
16.2K24 -
58:56
Iggy Azalea
3 hours ago $3.25 earnedtrying to break 1M in gains on MotherLand casino
26.9K4 -
LIVE
SpartakusLIVE
8 hours ago#1 WZ Hero SPOONFEEDS premium content STRAIGHT into your CORNEAL TISSUE
669 watching -
1:28:39
FreshandFit
7 hours agoThe Truth About Content Creation Ft. Mr Organik
63.5K8 -
9:00:08
RalliedLIVE
12 hours ago $1.54 earnedSHOTTY BOYS VS RANKED
70.4K3 -
3:23:16
Barry Cunningham
8 hours agoPRESIDENT TRUMP CELEBRATE FALLEN POLICE OFFICERS AND HOSTS EVENT AT THE KENNEDY CENTER!
78.4K69