mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-15 12:34:25 +01:00
40 lines
1.1 KiB
PowerShell
Executable File
40 lines
1.1 KiB
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
Checks the DNS resolution
|
|
.DESCRIPTION
|
|
This PowerShell script measures the DNS resolution speed by using 200 popular domains.
|
|
.EXAMPLE
|
|
PS> ./check-dns
|
|
✅ DNS resolution is 440.5 domains per second
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
.NOTES
|
|
Author: Markus Fleschutz | License: CC0
|
|
#>
|
|
|
|
try {
|
|
Write-Progress "⏳ Loading Data/popular-domains.csv..."
|
|
$Table = Import-CSV "$PSScriptRoot/../Data/popular-domains.csv"
|
|
$NumRows = $Table.Length
|
|
|
|
Write-Progress "⏳ Resolving $NumRows popular domains..."
|
|
$StopWatch = [system.diagnostics.stopwatch]::startNew()
|
|
if ($IsLinux) {
|
|
foreach($Row in $Table){$nop=dig $Row.Domain +short}
|
|
} else {
|
|
foreach($Row in $Table){$nop=Resolve-DNSName $Row.Domain}
|
|
}
|
|
[float]$Elapsed = $StopWatch.Elapsed.TotalSeconds
|
|
|
|
$Average = [math]::round($NumRows / $Elapsed, 1)
|
|
if ($Average -gt 10.0) {
|
|
Write-Host "✅ DNS resolution is $Average domains per second"
|
|
} else {
|
|
Write-Host "⚠️ DNS resolution is $Average domains per second only!"
|
|
}
|
|
Write-Progress -completed " "
|
|
exit 0 # success
|
|
} catch {
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
exit 1
|
|
} |