* Update docs
3.5 KiB
name | layout | jsId | title |
---|---|---|---|
Microsoft DNS Server (Windows Server) | default | MSDNS | Microsoft DNS Server on Microsoft Windows Server |
Microsoft DNS Server on Microsoft Windows Server
This provider updates a Microsoft DNS server.
It interacts with the server via PowerShell commands. As a result, DNSControl must be run on Windows and will automatically disable itself when run on non-Windows systems.
DNSControl will use New-PSSession
to execute the commands remotely if
computername
is set in creds.json
(see below).
This provider will replace ACTIVEDIRECTORY_PS
which is deprecated.
Caveats
- Two systems updating a zone is never a good idea. If Windows Dynamic
DNS and DNSControl are both updating a zone, there will be
unhappiness. DNSControl will blindly remove the dynamic records
unless precautions such as
IGNORE*
andNO_PURGE
are in use. - This is a new provider and has not been tested extensively,
especially the
pssession
feature.
Running on Non-Windows systems
Currently this driver disables itself when run on Non-Windows systems.
It should be possible for non-Windows hosts with PowerShell Core installed to execute commands remotely via SSH. The module used to talk to PowerShell supports this. It should be easy to implement. Volunteers requested.
Configuration
To use this provider, add an entry to creds.json
with TYPE
set to MSDNS
along with other settings:
dnsserver
: (optional) the name of the Microsoft DNS Server to communicate with.pssession
: (optional) the name of the PowerShell PSSession host to run commands on.
Example:
{
"msdns": {
"TYPE": "MSDNS",
"dnsserver": "ny-dc01",
"pssession": "mywindowshost"
}
}
An example DNS configuration:
var REG_NONE = NewRegistrar("none");
var DSP_MSDNS = NewDnsProvider("msdns");
D("example.tld", REG_NONE, DnsProvider(DSP_MSDNS),
A("test", "1.2.3.4")
)
Converting from ACTIVEDIRECTORY_PS
If you were using the ACTIVEDIRECTORY_PS
provider and are switching to MSDNS
, make the following changes:
-
In
dnsconfig.js
, changeACTIVEDIRECTORY_PS
toMSDNS
in anyNewDnsProvider()
calls. -
In
creds.json
: Since unused fields are quietly ignored, it is safe to list both the old and new options: a. Add a field "dnsserver" with the DNS server's name. (OPTIONAL if dnscontrol is run on the DNS server.) b. If the PowerShell commands need to be run on a different host using aPSSession
, addpssession: "remoteserver",
whereremoteserver
is the name of the server where the PowerShell commands should run. c. The MSDNS provider will quietly ignorefakeps
,pslog
andpsout
. Feel free to leave them increds.json
until you are sure you aren't going back to the old provider.
During the transition your creds.json
file might look like:
{
"msdns": {
"ADServer": "ny-dc01", << Delete these after you have
"fakeps": "true", << verified that MSDNS works
"pslog": "log.txt", << properly.
"psout": "out.txt",
"dnsserver": "ny-dc01",
"pssession": "mywindowshost"
}
}
-
Run
dnscontrol preview
to make sure the provider works as expected. -
If for any reason you need to revert, simply change
dnsconfig.js
to refer toACTIVEDIRECTORY_PS
again (or usegit
commands). If you are reverting because you found a bug, please file an issue. -
Once you are confident in the new provider, remove
ADServer
,fakeps
,pslog
,psout
fromcreds.json
.