PowerShell/Scripts/check-dns.ps1

41 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
2021-12-01 09:57:36 +01:00
Checks the DNS resolution
2021-10-04 21:29:23 +02:00
.DESCRIPTION
2021-10-12 21:51:51 +02:00
This script checks the DNS resolution with 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-12-02 14:52:25 +01:00
DNS resolution is 11.8 domains per second
2021-07-13 21:10:02 +02:00
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
2021-08-29 17:50:03 +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 {
2021-04-15 08:41:37 +02:00
$StopWatch = [system.diagnostics.stopwatch]::startNew()
2021-04-21 16:20:49 +02:00
write-progress "Reading Data/domain-names.csv..."
2021-04-15 08:41:37 +02:00
2021-03-29 16:34:51 +02:00
$PathToRepo = "$PSScriptRoot/.."
2020-12-29 15:48:24 +01:00
$Table = import-csv "$PathToRepo/Data/domain-names.csv"
2020-12-14 15:06:09 +01:00
2020-10-05 13:12:12 +02:00
foreach($Row in $Table) {
2021-03-29 16:34:51 +02:00
write-progress "Resolving $($Row.Domain) ..."
2021-03-30 09:34:52 +02:00
if ($IsLinux) {
$Ignore = nslookup $Row.Domain
} else {
$Ignore = resolve-dnsName $Row.Domain
}
2020-10-05 13:12:12 +02:00
}
$Count = $Table.Length
2021-04-14 16:18:23 +02:00
2021-04-21 16:43:08 +02:00
[int]$Elapsed = $StopWatch.Elapsed.TotalSeconds
2021-04-21 16:20:49 +02:00
$Average = [math]::round($Count / $Elapsed, 1)
2021-12-06 17:00:49 +01:00
& "$PSScriptRoot/give-reply.ps1" "$Average domains per second DNS resolution"
2021-09-27 10:09:45 +02:00
exit 0 # success
2020-12-09 10:30:55 +01:00
} catch {
2021-09-16 20:19:10 +02:00
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
2020-12-09 10:30:55 +01:00
exit 1
}