PowerShell/Scripts/check-dns.ps1

39 lines
1.1 KiB
PowerShell
Raw Normal View History

2021-09-27 10:38:12 +02:00
<#
2021-07-13 21:10:02 +02:00
.SYNOPSIS
2021-12-01 09:57:36 +01:00
Checks the DNS resolution
2021-10-04 21:29:23 +02:00
.DESCRIPTION
2022-09-08 16:43:32 +02:00
This PowerShell script checks the DNS resolution using frequently used domain names.
2021-07-13 21:10:02 +02:00
.EXAMPLE
2021-12-01 09:57:36 +01:00
PS> ./check-dns
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 {
2022-09-08 20:39:46 +02:00
"⏳ Step 1/2 - Reading table from Data/domains.csv..."
$Table = Import-CSV "$PSScriptRoot/../Data/domains.csv"
2022-09-08 20:23:04 +02:00
$NumRows = $Table.Length
2020-12-14 15:06:09 +01:00
2022-09-08 20:39:46 +02:00
"⏳ Step 2/2 - Resolving $NumRows domains..."
2022-09-08 16:43:32 +02:00
$StopWatch = [system.diagnostics.stopwatch]::startNew()
2022-05-22 22:35:21 +02:00
if ($IsLinux) {
2022-09-08 16:43:32 +02:00
foreach($Row in $Table) { $null = dig $Row.Domain +short }
2022-05-22 22:35:21 +02:00
} else {
2022-09-08 16:43:32 +02:00
foreach($Row in $Table) { $null = Resolve-DNSName $Row.Domain }
2020-10-05 13:12:12 +02:00
}
2022-09-08 16:43:32 +02:00
2022-09-08 20:23:04 +02:00
[float]$Elapsed = $StopWatch.Elapsed.TotalSeconds
$Average = [math]::round($NumRows / $Elapsed, 1)
2022-09-09 09:27:12 +02:00
if ($Average -gt 200.0) { $Rating = "excellent"
} elseif ($Average -gt 100.0) { $Rating = "quite good"
} elseif ($Average -gt 10.0) { $Rating = "good"
} else { $Rating = "poor"
}
"✔️ $Average DNS domain lookups per second - $Rating"
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
2022-09-08 16:43:32 +02:00
}