PowerShell/scripts/check-dns.ps1

40 lines
1.1 KiB
PowerShell
Raw Normal View History

2023-10-31 12:05:32 +01:00
<#
2021-07-13 21:10:02 +02:00
.SYNOPSIS
Check the DNS resolution
2021-10-04 21:29:23 +02:00
.DESCRIPTION
This PowerShell script measures the DNS resolution speed (using 100 popular domains) and prints it.
2021-07-13 21:10:02 +02:00
.EXAMPLE
2023-08-06 21:35:36 +02:00
PS> ./check-dns.ps1
DNS resolves 56.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 {
Write-Progress "Measuring DNS resolution..."
2023-10-31 11:25:11 +01:00
$table = Import-CSV "$PSScriptRoot/../data/popular-domains.csv"
2023-03-20 08:08:54 +01:00
$numRows = $table.Length
2020-12-14 15:06:09 +01:00
2023-03-20 08:08:54 +01:00
$stopWatch = [system.diagnostics.stopwatch]::startNew()
2022-05-22 22:35:21 +02:00
if ($IsLinux) {
foreach($row in $table){$nop=dig $row.Domain +short}
2022-05-22 22:35:21 +02:00
} else {
foreach($row in $table){$nop=Resolve-DNSName $row.Domain}
2020-10-05 13:12:12 +02:00
}
2023-03-20 08:08:54 +01:00
[float]$elapsed = $stopWatch.Elapsed.TotalSeconds
2023-10-08 12:48:06 +02:00
Write-Progress -completed " "
2023-03-20 08:08:54 +01:00
$average = [math]::round($numRows / $elapsed, 1)
2023-04-02 11:21:38 +02:00
if ($average -lt 10.0) {
2023-10-08 12:48:06 +02:00
Write-Host "⚠️ DNS resolves $average domains per second only"
2023-04-02 11:21:38 +02:00
} else {
2023-10-08 12:48:06 +02:00
Write-Host "✅ DNS resolves $average domains per second"
2022-10-09 12:34:06 +02:00
}
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-08-04 13:04:14 +02:00
}