2021-02-09 19:30:45 +01:00
|
|
|
#!/bin/powershell
|
2020-12-29 15:14:21 +01:00
|
|
|
<#
|
|
|
|
.SYNTAX ./train-dns-cache.ps1
|
|
|
|
.DESCRIPTION trains the DNS cache with frequently used domain names
|
|
|
|
.LINK https://github.com/fleschutz/PowerShell
|
|
|
|
.NOTES Author: Markus Fleschutz / License: CC0
|
|
|
|
#>
|
2020-12-27 11:15:03 +01:00
|
|
|
|
|
|
|
Set-StrictMode -Version Latest
|
2021-01-02 11:08:59 +01:00
|
|
|
|
|
|
|
$PathToRepo = "$PSScriptRoot/.."
|
2020-09-29 20:05:52 +02:00
|
|
|
|
2020-10-05 13:12:12 +02:00
|
|
|
try {
|
|
|
|
$StartTime = Get-Date
|
2020-11-01 12:11:15 +01:00
|
|
|
|
2020-12-29 15:48:24 +01:00
|
|
|
write-progress "Reading Data/domain-names.csv..."
|
|
|
|
$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) {
|
|
|
|
$Domain = $Row.Domain
|
2020-12-25 11:30:43 +01:00
|
|
|
write-progress "Training DNS cache with $Domain..."
|
2020-10-05 13:12:12 +02:00
|
|
|
$Ignore = nslookup $Domain
|
|
|
|
}
|
2020-06-11 18:20:40 +02:00
|
|
|
|
2020-10-05 13:12:12 +02:00
|
|
|
$Count = $Table.Length
|
|
|
|
$StopTime = Get-Date
|
|
|
|
$TimeInterval = New-Timespan -start $StartTime -end $StopTime
|
2021-02-10 19:25:48 +01:00
|
|
|
write-host -foregroundColor green "Done - DNS cache trained with $Count domain names in $TimeInterval seconds"
|
2020-10-05 13:12:12 +02:00
|
|
|
exit 0
|
2020-12-09 10:30:55 +01:00
|
|
|
} catch {
|
2021-02-16 10:03:20 +01:00
|
|
|
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
2020-12-09 10:30:55 +01:00
|
|
|
exit 1
|
|
|
|
}
|