Link to home
Start Free TrialLog in
Avatar of Chad B
Chad BFlag for United States of America

asked on

Shorten the Windows Server DFS Namespace or use Domain Alias that works with DFS

Is it possible to shorten the Windows Server DFS Namespace root address or domain name using an alias? Currently, we have it set up with \\domain.com\dfs\ but our domain name is too long and we are running into character limitations for some paths in our ERP system.  I know I can just point the paths directly to one of our file server's Hostname by that defeats the purpose of having a distributed file system.  We have two Windows 2016 Files Servers and one Windows 2008 R2 Files Server in this DFS Namespace.
ASKER CERTIFIED SOLUTION
Avatar of Robert
Robert
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Try Global DNS zones

Enable Global Names Support 1st
Create new global names zone in active directory
In that create CNAME entry pointing to all domain controllers

After that try resolving DFS name space with GlobalName


Ex:
\\Corp\dfs

It should resolve to DFS name space

https://blogs.technet.microsoft.com/qzaidi/2011/01/08/quickly-explained-globalnames-zone/
I guess many companies just deploy a drive letter mapped to \\mycorp.com\dfs
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
You can use junctions/symbolic links to shorten the paths

You might first need to enable it to work remotely. Use this to see the current config
fsutil behavior SymlinkEvaluation

Open in new window

Avatar of Chad B

ASKER

Thank you all! We decided to use an alias to the NetBIOS of one file server on the DFS. That will allow us to redirect the path if one of our file servers goes off line.