What process is necessary to configure a Windows environment to allow me to use DNS CNAME to reference servers?
I want to do this so that I can name my servers something like SRV001, but still have \\file
point to that server, so when SRV002 replaces it I don't have to update any of the links people have, just update the DNS CNAME and everyone will get pointed to the new server.
To facilitate failover schemes, a common technique is to use DNS CNAME records (DNS Aliases) for different machine roles. Then instead of changing the Windows computername of the actual machine name, one can switch a DNS record to point to a new host.
This can work on Microsoft Windows machines, but to make it work with file sharing the following configuration steps need to be taken.
Outline
1. The Problem
On Windows machines, file sharing can work via the computer name, with or without full qualification, or by the IP Address. By default, however, filesharing will not work with arbitrary DNS aliases. To enable filesharing and other Windows services to work with DNS aliases, you must make registry changes as detailed below and reboot the machine.
2. The Solution
Allowing other machines to use filesharing via the DNS Alias (DisableStrictNameChecking)
This change alone will allow other machines on the network to connect to the machine using any arbitrary hostname. (However this change will not allow a machine to connect to itself via a hostname, see BackConnectionHostNames below).
Edit the registry key
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\lanmanserver\parameters
and add a valueDisableStrictNameChecking
of type DWORD set to 1.Edit the registry key (on 2008 R2)
HKLM\SYSTEM\CurrentControlSet\Control\Print
and add a valueDnsOnWire
of type DWORD set to 1Allowing server machine to use filesharing with itself via the DNS Alias (BackConnectionHostNames)
This change is necessary for a DNS alias to work with filesharing from a machine to find itself. This creates the Local Security Authority host names that can be referenced in an NTLM authentication request.
To do this, follow these steps for all the nodes on the client computer:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa\MSV1_0
, add new Multi-String ValueBackConnectionHostNames
Providing browse capabilities for multiple NetBIOS names (OptionalNames)
Allows ability to see the network alias in the network browse list.
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\lanmanserver\parameters
and add a valueOptionalNames
of type Multi-StringRegister the Kerberos service principal names (SPNs) for other Windows functions like Printing (setspn)
NOTE: Should not need to do this for basic functions to work, documented here for completeness. We had one situation in which the DNS alias was not working because there was an old SPN record interfering, so if other steps aren't working check if there are any stray SPN records.
You must register the Kerberos service principal names (SPNs), the host name, and the fully-qualified domain name (FQDN) for all the new DNS alias (CNAME) records. If you do not do this, a Kerberos ticket request for a DNS alias (CNAME) record may fail and return the error code
KDC_ERR_S_SPRINCIPAL_UNKNOWN
.To view the Kerberos SPNs for the new DNS alias records, use the Setspn command-line tool (
setspn.exe
). The Setspn tool is included in Windows Server 2003 Support Tools. You can install Windows Server 2003 Support Tools from the Support\Tools folder of the Windows Server 2003 startup disk.How to use the tool to list all records for a computername:
To register the SPN for the DNS alias (CNAME) records, use the Setspn tool with the following syntax:
3. References
All the Microsoft references work via: http://support.microsoft.com/kb/
The other way to do Windows file-sharing with redundancy is to use Distributed File System with Replication (DFS-R). You will need at least Windows Server 2003 R2 on your file servers in order to implement this.
You set up your DFS root, and then can specify multiple servers providing a single share. If one of the servers goes down, the clients using it will automatically fail over to one of the others.
For more information see Microsoft's overview of DFS.