I Have a partition called D:\ shared at a Windows machine, and In my Ubuntu server 12.4 I Have this line at fstab to mount it
//10.0.0.39/D$/ /mnt/charles/ cifs user,file_mode=0777,dir_mode=0777,rw,gid=1000,sec=ntlmv2,credentials=/root/creds 0 0I've added the option "sec=ntlmv2", because was appearing this message every time I boot/reboot my ubuntu.
CIFS VFS: default security mechanism requested. The default security mechanism will be upgraded from nbtlm to ntlmv2 in kernel realese 3.3Now I can't mount with this "sec=ntlmv2" option, because appear to me.
mount error(22): Invalid argument
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)Can someone help? Thanks in advance!
This is the result with --verbose, what this can help to find the problem?
root@PITCAIRN:/mnt# mount -t cifs //10.0.39/D$/ /mnt/charles --verbose -ouser=Yamash,sec=ntlmv2
Password:
mount.cifs kernel mount options: ip=10.0.0.39,unc=\\10.0.39\D$,sec=ntlmv2,ver=1,user=Yamash,pass=********
mount error(22): Invalid argument
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs) --EDIT-- Zetrocker came with the solution, I changed the "sec=ntlmv2" to "sec=ntlmssp" and now it's working.
Thanks Zetrocker
2 Answers
Try something like this:
//10.0.0.39/D$ /mnt/charles cifs --verbose user,file_mode=0777,dir_mode=0777,rw,gid=1000,sec=ntlmv2,credentials=/root/creds 0 0This should at least be a bit more verbose.
There is a thread found at Stack Overflow
There are a good number of people that had success after installing the cifs-utils
code:
sudo apt-get update
sudo apt-get install cifs-utils 7 As mentioned in a comment in the accepted answer, adding sec=ntlmssp to my mount options worked for me.
I had CIFS mounts working and added in /etc/fstab, then one day they were failing to connect and the AD account used for auth had become locked. After having the account unlocked, the account was still failing to auth when attempting to mount.
Troubleshooting - using smbclient to list the share information using the same account that was failing in the mount command.
sudo smbclient -L service -A /root/credentials.txtThis command listed the available shares successfully but running
sudo mount -t cifs -o credentials=/root/credentials.txt //server/share /mnt/sharewas failing with a permission denied error. I was also seeing this error in /var/sys/messages
Status code returned 0xc000006d NT_STATUS_LOGON_FAILURE
CIFS VFS: Send error in SessSetup = -13This page was helpful in resolving and at least partially explaining what happened.
Apparently a windows admin may have added extended security which may explain why initially my mount was fine, but then later needed an additional setting.
Original /etc/ftab entry which worked for a time
//server/share /mnt/share cifs _netdev,credentials=/root/credentials.txt,uid=1000,gid=1000,file_mode=0770,dir_mode=0770,noperm 0 0New /etc/fstab entry with sec=ntlmssp added
//server/share /mnt/share cifs _netdev,sec=ntlmssp,credentials=/root/credentials.txt,uid=1000,gid=1000,file_mode=0770,dir_mode=0770,noperm 0 0