PowerShell/Scripts/check-dns.ps1

39 lines
1.0 KiB
PowerShell
Raw Normal View History

2021-09-27 10:38:12 +02:00
<#
2021-07-13 21:10:02 +02:00
.SYNOPSIS
2023-03-20 08:08:54 +01:00
Check DNS resolution
2021-10-04 21:29:23 +02:00
.DESCRIPTION
2023-03-20 08:08:54 +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-03-20 08:08:54 +01:00
DNS resolves 156.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 "⏳ Resolving 200 popular domain names..."
2023-03-20 08:08:54 +01:00
$table = Import-CSV "$PSScriptRoot/../Data/popular-domains.csv"
$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) {
2023-04-02 11:21:38 +02:00
foreach($row in $table){$nop=dig $row.Domain +short}
2022-05-22 22:35:21 +02:00
} else {
2023-04-02 11:21:38 +02:00
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
2022-09-17 10:22:00 +02:00
2023-03-20 08:08:54 +01:00
Write-Progress -completed "."
$average = [math]::round($numRows / $elapsed, 1)
2023-04-02 11:21:38 +02:00
if ($average -lt 10.0) {
2023-03-20 08:08:54 +01:00
"⚠️ DNS resolves $average domains per second only!"
2023-04-02 11:21:38 +02:00
} else {
"✅ 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-01-01 19:22:35 +01:00
}