DSCResources/MSFT_xDnsServerSecondaryZone/en-US/about_xDnsServerSecondaryZone.help.txt
.NAME
xDnsServerSecondaryZone .DESCRIPTION The xDnsServerSecondaryZone DSC resource manages a standalone file-backed secondary zone on a Domain Name System (DNS) server. Secondary zones allow client machine in primary DNS zones to do DNS resolution of machines in the secondary DNS zone. .PARAMETER Name Key - String Name of the secondary zone .PARAMETER MasterServers Required - StringArray IP address or DNS name of the secondary DNS servers .PARAMETER Ensure Write - String Allowed values: Present, Absent Whether the secondary zone should be present or absent. .PARAMETER Type Read - String Type of the DNS server zone .EXAMPLE 1 This configuration will manage a secondary standalone DNS zone Configuration xDnsServerSecondaryZone_config { Import-DscResource -ModuleName 'xDnsServer' Node localhost { xDnsServerSecondaryZone 'sec' { Ensure = 'Present' Name = 'demo.contoso.com' MasterServers = '192.168.10.2' } } } |