PowerShell/Scripts/check-dns.ps1

40 lines
1.1 KiB
PowerShell
Raw Normal View History

2021-09-27 10:38:12 +02:00
<#
2021-07-13 21:10:02 +02:00
.SYNOPSIS
2021-12-01 09:57:36 +01:00
Checks the DNS resolution
2021-10-04 21:29:23 +02:00
.DESCRIPTION
2022-12-28 12:40:04 +01:00
This PowerShell script measures and prints the DNS resolution speed by using 200 popular domains.
2021-07-13 21:10:02 +02:00
.EXAMPLE
2021-12-01 09:57:36 +01:00
PS> ./check-dns
2023-01-03 10:54:07 +01:00
DNS resolution is 440.5 domains per second
2021-07-13 21:10:02 +02:00
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
2022-05-23 12:51:58 +02:00
Author: Markus Fleschutz | License: CC0
2020-12-29 15:14:21 +01:00
#>
2020-09-29 20:05:52 +02:00
2020-10-05 13:12:12 +02:00
try {
2023-01-01 19:22:35 +01:00
Write-Progress "⏳ Loading Data/popular-domains.csv..."
2022-12-28 12:40:04 +01:00
$Table = Import-CSV "$PSScriptRoot/../Data/popular-domains.csv"
2022-09-08 20:23:04 +02:00
$NumRows = $Table.Length
2020-12-14 15:06:09 +01:00
2023-01-01 19:22:35 +01:00
Write-Progress "⏳ Resolving $NumRows domains..."
2022-09-08 16:43:32 +02:00
$StopWatch = [system.diagnostics.stopwatch]::startNew()
2022-05-22 22:35:21 +02:00
if ($IsLinux) {
2022-10-16 11:22:26 +02:00
foreach($Row in $Table){$nop=dig $Row.Domain +short}
2022-05-22 22:35:21 +02:00
} else {
2022-10-16 11:22:26 +02:00
foreach($Row in $Table){$nop=Resolve-DNSName $Row.Domain}
2020-10-05 13:12:12 +02:00
}
2022-09-08 20:23:04 +02:00
[float]$Elapsed = $StopWatch.Elapsed.TotalSeconds
2022-09-17 10:22:00 +02:00
2022-12-23 19:02:04 +01:00
$Average = [math]::round($NumRows / $Elapsed, 1)
2023-01-03 10:54:07 +01:00
if ($Average -gt 10.0) {
Write-Host "✅ DNS resolution is $Average domains per second"
2022-10-09 12:34:06 +02:00
} else {
2023-01-03 10:54:07 +01:00
Write-Host "⚠️ DNS resolution is $Average domains per second only!"
2022-10-09 12:34:06 +02:00
}
2023-01-01 19:22:35 +01:00
Write-Progress -Completed " "
2021-09-27 10:09:45 +02:00
exit 0 # success
2020-12-09 10:30:55 +01:00
} catch {
2022-04-13 12:06:32 +02:00
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2020-12-09 10:30:55 +01:00
exit 1
2023-01-01 19:22:35 +01:00
}