Windows – DFS Namespace with alternative FQDN beside the existing domain FQDN

dfsfqdnwindows

We have a domain, from previous maintainer which have a 'long' FQDN e.g. dot.longname.top which makes the DFS structure longer, could of course have several DFS Namespace and that is also the goal further down the road also. The main issue is that the FQDN is long by default.

The interest lies in having an alternative FQDN in some way for the DFS Namespace if possible. Have any one looked in to this matter and have any facts or experience before we really start looking at it.

the NetBIOS name is
LONGNAME
the FQDN name is
dot.longname.top
the FQDN alternative name we seeking for example would be
ln.top

We would then able to build this DFS Namespace

\ln.top\dfs
\ln.top\sys
\ln.top\users

and so on. I do understand the complications that exists and can't in this moment see a solution based on the architecture in the design. But you can always look into the matter and have hope…

Best Answer

Create a new DNS zone "ln.top"
You cannot create a CNAME record for the name of the new short zone to resolve to the longname domain/zone. You can create HOST(A) records to do this.
For each DFS namespace servers, create a new A record in the "ln.top" zone:

Name: <blank>
FQDN: ln.top <MMC makes this value fixed, not changeable>
IP: <of.the.namespace.server>

If the addresses of the namespace servers change, update these A records.
You should then be able to use \\ln.top\dfs

If you're using offline files through this namespace they may be affected. While this is not a CNAME, it is a different name than the clients previously used. See http://blogs.technet.com/b/thenetworker/archive/2008/08/12/use-of-cname-records-for-availability-in-dfs-offline-files-integration.aspx
This is unconventional, unsure of any other risks or issues you may encounter with this setup. I do not use this method, but you question intriguied me, so I did a quick test in my lab. Do careful testing in your own dev environment or with pilot users before taking it widespread.

Related Topic