2024-10-01 15:11:03 +02:00
|
|
|
|
<#
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.SYNOPSIS
|
2023-09-11 19:49:35 +02:00
|
|
|
|
Check the DNS resolution
|
2021-10-04 21:29:23 +02:00
|
|
|
|
.DESCRIPTION
|
2024-10-02 10:14:17 +02:00
|
|
|
|
This PowerShell script measures the DNS resolution speed using 100 internet 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
|
2024-10-23 18:44:11 +02:00
|
|
|
|
✅ Internet DNS lookups in 33.6ms
|
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-10-31 11:25:11 +01:00
|
|
|
|
$table = Import-CSV "$PSScriptRoot/../data/popular-domains.csv"
|
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-09-11 19:49:35 +02:00
|
|
|
|
foreach($row in $table){$nop=dig $row.Domain +short}
|
2022-05-22 22:35:21 +02:00
|
|
|
|
} else {
|
2024-10-02 10:14:17 +02:00
|
|
|
|
Clear-DnsClientCache
|
2023-09-11 19:49:35 +02:00
|
|
|
|
foreach($row in $table){$nop=Resolve-DNSName $row.Domain}
|
2020-10-05 13:12:12 +02:00
|
|
|
|
}
|
2024-10-14 17:39:31 +02:00
|
|
|
|
[float]$elapsed = $stopWatch.Elapsed.TotalSeconds * 1000.0
|
|
|
|
|
$speed = [math]::round($elapsed / $table.Length, 1)
|
|
|
|
|
if ($speed -gt 100.0) {
|
2024-10-23 18:44:11 +02:00
|
|
|
|
Write-Host "⚠️ Internet DNS lookups take $($speed)ms!"
|
2023-04-02 11:21:38 +02:00
|
|
|
|
} else {
|
2024-10-23 18:44:11 +02:00
|
|
|
|
Write-Host "✅ Internet DNS lookups in $($speed)ms"
|
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
|
|
|
|
}
|