Skip to content

DnsServerSetting

dscbot edited this page Apr 23, 2021 · 3 revisions

DnsServerSetting

Parameters

Parameter Attribute DataType Description Allowed Values
DnsServer Key String Specifies the DNS server to connect to, or use 'localhost' for the current node.
AddressAnswerLimit Write UInt32 Maximum number of host records returned in response to an address request. Values between 5 and 28 are valid.
AllowUpdate Write UInt32 Specifies whether the DNS Server accepts dynamic update requests.
AutoCacheUpdate Write Boolean Indicates whether the DNS Server attempts to update its cache entries using data from root servers.
AutoConfigFileZones Write UInt32 Indicates which standard primary zones that are authoritative for the name of the DNS Server must be updated when the name server changes.
BindSecondaries Write Boolean Determines the AXFR message format when sending to non-Microsoft DNS Server secondaries.
BootMethod Write UInt32 Initialization method for the DNS Server.
DisableAutoReverseZones Write Boolean Indicates whether the DNS Server automatically creates standard reverse look up zones.
DisjointNets Write Boolean Indicates whether the default port binding for a socket used to send queries to remote DNS Servers can be overridden.
DsPollingInterval Write UInt32 Interval, in seconds, to poll the DS-integrated zones.
DsTombstoneInterval Write UInt32 Lifetime of tombstoned records in Directory Service integrated zones, expressed in seconds.
EnableDirectoryPartitions Write Boolean Specifies whether support for application directory partitions is enabled on the DNS Server.
EnableDnsSec Write UInt32 Specifies whether the DNS Server includes DNSSEC-specific RRs, KEY, SIG, and NXT in a response.
ForwardDelegations Write UInt32 Specifies whether queries to delegated sub-zones are forwarded.
IsSlave Write Boolean TRUE if the DNS server does not use recursion when name-resolution through forwarders fails.
ListenAddresses Write StringArray[] Enumerates the list of IP addresses on which the DNS Server can receive queries.
LocalNetPriority Write Boolean Indicates whether the DNS Server gives priority to the local net address when returning A records.
LogLevel Write UInt32 Indicates which policies are activated in the Event Viewer system log.
LooseWildcarding Write Boolean Indicates whether the DNS Server performs loose wildcarding.
NameCheckFlag Write UInt32 Indicates the set of eligible characters to be used in DNS names.
RoundRobin Write Boolean Indicates whether the DNS Server round robins multiple A records.
RpcProtocol Write SInt16 RPC protocol or protocols over which administrative RPC runs.
SendPort Write UInt32 Port on which the DNS Server sends UDP queries to other servers.
StrictFileParsing Write Boolean Indicates whether the DNS Server parses zone files strictly.
UpdateOptions Write UInt32 Restricts the type of records that can be dynamically updated on the server, used in addition to the AllowUpdate settings on Server and Zone objects.
WriteAuthorityNS Write Boolean Specifies whether the DNS Server writes NS and SOA records to the authority section on successful response.
XfrConnectTimeout Write UInt32 Time, in seconds, the DNS Server waits for a successful TCP connection to a remote server when attempting a zone transfer.
DsAvailable Read Boolean Indicates whether there is an available DS on the DNS Server.

Description

The DnsServerSetting DSC resource manages the Domain Name System (DNS) server settings and properties.

If the parameter DnsServer is set to 'localhost' then the resource can normally use the default credentials (SYSTEM) to configure the DNS server settings. If using any other value for the parameter DnsServer make sure that the credential the resource is run as have the correct permissions at the target node and the necessary network traffic is permitted (WsMan protocol). It is possible to run the resource with specific credentials using the built-in parameter PsDscRunAsCredential.

Examples

Example 1

This configuration will manage the DNS server settings on the current node.

Configuration DnsServerSetting_CurrentNode_Config
{
    Import-DscResource -ModuleName 'DnsServerDsc'

    Node localhost
    {
        DnsServerSetting 'DnsServerProperties'
        {
            DnsServer           = 'localhost'
            ListenAddresses    = '10.0.0.4'
            IsSlave            = $true
            RoundRobin         = $true
            LocalNetPriority   = $true
            BindSecondaries    = $false
            StrictFileParsing  = $false
            LogLevel           = 50393905
        }
    }
}

Example 2

This configuration will manage the DNS server settings on the current node.

Configuration DnsServerSetting_RemoteNode_Config
{
    Import-DscResource -ModuleName 'DnsServerDsc'

    Node localhost
    {
        DnsServerSetting 'DnsServerProperties'
        {
            DnsServer           = 'dns1.company.local'
            ListenAddresses    = '10.0.0.4'
            IsSlave            = $true
            RoundRobin         = $true
            LocalNetPriority   = $true
            BindSecondaries    = $false
            StrictFileParsing  = $false
            LogLevel           = 50393905
        }
    }
}
Clone this wiki locally