I'm trying to mount a Windows Server 2012 backed DFS, which uses a fully qualified domain name, on my Debian linux machine with limited success.
So, what I first tried was:
mount -t cifs //mydfsdomain/namespaceroot/sharedfolder /mnt/sharedfolder -o username=un,password='pw',workgroup=WORKGROUP
But, I received an error
mount error(5): Input/output error
After some googling, I was told I needed to pass the argument sec=ntlm or other sec variants, but these tend to result in the following error message:
mount error(95): Operation not supported
I've tried lots of Googling and followed what was suggested here and here, but I still see the same error messages.
A little information about the machines. The client is running Debian 5.0.10 and the server is a Windows Server 2012 R2 Standard 9600.
Thanks in advance!