-
Notifications
You must be signed in to change notification settings - Fork 55
DnsServerPrimaryZone
dscbot edited this page Aug 19, 2024
·
2 revisions
Parameter | Attribute | DataType | Description | Allowed Values |
---|---|---|---|---|
Name | Key | String | Name of the DNS Server primary zone | |
ZoneFile | Write | String | Name of the DNS Server primary zone file. If not specified, defaults to 'ZoneName.dns'. | |
DynamicUpdate | Write | String | Primary zone dynamic DNS update option. Defaults to 'None' . |
None , NonSecureAndSecure
|
Ensure | Write | String | Whether the DNS zone should be present or absent |
Present , Absent
|
The DnsServerPrimaryZone DSC resource manages a standalone file-backed Primary zone on a given Domain Name System (DNS) server.
This configuration will add a file-backed classful reverse primary zone using the resource default parameter values.
Configuration DnsServerPrimaryZone_AddClassfulReversePrimaryZone_Config
{
Import-DscResource -ModuleName 'DnsServerDsc'
Node localhost
{
DnsServerPrimaryZone 'AddPrimaryZone'
{
Name = '1.168.192.in-addr.arpa'
}
}
}
This configuration will add a file-backed classless reverse primary zone using the resource default parameter values.
Configuration DnsServerPrimaryZone_AddClasslessReversePrimaryZone_Config
{
Import-DscResource -ModuleName 'DnsServerDsc'
Node localhost
{
DnsServerPrimaryZone 'AddPrimaryZone'
{
Name = '64-26.100.168.192.in-addr.arpa'
}
}
}
This configuration will add a file-backed primary zone using the resource default parameter values.
Configuration DnsServerPrimaryZone_AddPrimaryZoneUsingDefaults_Config
{
Import-DscResource -ModuleName 'DnsServerDsc'
Node localhost
{
DnsServerPrimaryZone 'AddPrimaryZone'
{
Name = 'demo.contoso.com'
}
}
}
This configuration will add a file-backed primary zone using the resource default parameter values.
Configuration DnsServerPrimaryZone_AddPrimaryZoneWithSpecificValues_Config
{
Import-DscResource -ModuleName 'DnsServerDsc'
Node localhost
{
DnsServerPrimaryZone 'AddPrimaryZone'
{
Ensure = 'Present'
Name = 'demo.contoso.com'
ZoneFile = 'demo.contoso.com.dns'
DynamicUpdate = 'NonSecureAndSecure'
}
}
}
This configuration will remove a file-backed primary zone.
Configuration DnsServerPrimaryZone_RemovePrimaryZone_Config
{
Import-DscResource -ModuleName 'DnsServerDsc'
Node localhost
{
DnsServerPrimaryZone 'RemovePrimaryZone'
{
Ensure = 'Absent'
Name = 'demo.contoso.com'
}
}
}
This configuration will remove a file-backed primary zone.
Configuration DnsServerPrimaryZone_RemoveReversePrimaryZone_Config
{
Import-DscResource -ModuleName 'DnsServerDsc'
Node localhost
{
DnsServerPrimaryZone 'RemovePrimaryZone'
{
Ensure = 'Absent'
Name = '1.168.192.in-addr.arpa'
}
}
}
- DnsRecordA
- DnsRecordAaaa
- DnsRecordAaaaScoped
- DnsRecordAScoped
- DnsRecordCname
- DnsRecordCnameScoped
- DnsRecordMx
- DnsRecordMxScoped
- DnsRecordNs
- DnsRecordNsScoped
- DnsRecordPtr
- DnsRecordSrv
- DnsRecordSrvScoped
- DnsServerADZone
- DnsServerCache
- DnsServerClientSubnet
- DnsServerConditionalForwarder
- DnsServerDiagnostics
- DnsServerDsSetting
- DnsServerEDns
- DnsServerForwarder
- DnsServerPrimaryZone
- DnsServerRecursion
- DnsServerRootHint
- DnsServerScavenging
- DnsServerSecondaryZone
- DnsServerSetting
- DnsServerSettingLegacy
- DnsServerZoneAging
- DnsServerZoneScope
- DnsServerZoneTransfer