Export/import windows server DNS zones

You can use Export-DnsServerZone and Import-DnsServerZone.
  1. Export: Export-DnsServerZone -Name "test.com" -Filename "test.com.dns"
  2. Import: Import-DnsServerZone -Name "test.com" -Filename "test.com.dns"

The file "test.com.dns" will be created in "C:\windows\system32\dns" folder


Only export dns records:

Get-DnsServerResourceRecord -ZoneName "test.com" | Export-Csv -Path "C:\temp\dns.csv


Import option 2:

dnscmd localhost /zoneadd teste.com /primary /file teste.com /load




NGINX as a load balancer for WebSocket

  To configure NGINX as a secure load balancer for WebSocket ( wss:// ) connections, use an HTTP upgrade map, increase connection timeouts, ...

Mais vistos