PowerShell/Scripts/train-dns-cache.ps1

30 lines
815 B
PowerShell
Raw Normal View History

2020-10-10 18:51:57 +02:00
2020-10-10 18:29:29 +02:00
# Syntax: ./train-dns-cache.ps1
2020-06-15 14:55:54 +02:00
# Description: trains the DNS cache with frequently used domain names
# Author: Markus Fleschutz
# Source: github.com/fleschutz/PowerShell
# License: CC0
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-14 15:06:09 +01:00
$PathToData=(get-item $MyInvocation.MyCommand.Path).directory
$PathToData="$PathToData/../Data"
$Table = import-csv "$PathToData/domain_table.csv"
2020-10-05 13:12:12 +02:00
foreach($Row in $Table) {
$Domain = $Row.Domain
2020-12-14 09:58:07 +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
2020-12-14 09:58:07 +01:00
Write-Output "OK - 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 {
Write-Error "ERROR in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}