mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-24 02:48:17 +02:00
Update check-dns.ps1
This commit is contained in:
parent
bb2d431ce9
commit
9e9f8a5534
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Checks the DNS resolution
|
Checks the DNS resolution
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This PowerShell script checks the DNS resolution using frequently used domain names.
|
This PowerShell script measures the DNS resolution speed by using 200 frequently used domain names.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./check-dns
|
PS> ./check-dns
|
||||||
.LINK
|
.LINK
|
||||||
@ -12,8 +12,8 @@
|
|||||||
#>
|
#>
|
||||||
|
|
||||||
try {
|
try {
|
||||||
"⏳ Step 1/2 - Reading table from Data/domains.csv..."
|
"⏳ Step 1/2 - Reading from Data/frequent-domains.csv..."
|
||||||
$Table = Import-CSV "$PSScriptRoot/../Data/domains.csv"
|
$Table = Import-CSV "$PSScriptRoot/../Data/frequent-domains.csv"
|
||||||
$NumRows = $Table.Length
|
$NumRows = $Table.Length
|
||||||
|
|
||||||
"⏳ Step 2/2 - Resolving $NumRows domains..."
|
"⏳ Step 2/2 - Resolving $NumRows domains..."
|
||||||
@ -26,11 +26,12 @@ try {
|
|||||||
|
|
||||||
[float]$Elapsed = $StopWatch.Elapsed.TotalSeconds
|
[float]$Elapsed = $StopWatch.Elapsed.TotalSeconds
|
||||||
$Average = [math]::round($NumRows / $Elapsed, 1)
|
$Average = [math]::round($NumRows / $Elapsed, 1)
|
||||||
if ($Average -gt 200.0) { $Rating = "excellent"
|
|
||||||
} elseif ($Average -gt 100.0) { $Rating = "quite good"
|
if ($Average -gt 200.0) { $Rating = "excellent" }
|
||||||
} elseif ($Average -gt 10.0) { $Rating = "good"
|
elseif ($Average -gt 100.0) { $Rating = "quite good" }
|
||||||
} else { $Rating = "poor"
|
elseif ($Average -gt 10.0) { $Rating = "good" }
|
||||||
}
|
else { $Rating = "poor" }
|
||||||
|
|
||||||
"✔️ $Average DNS domain lookups per second - $Rating"
|
"✔️ $Average DNS domain lookups per second - $Rating"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
} catch {
|
} catch {
|
||||||
|
Loading…
Reference in New Issue
Block a user