I'm having a small problem with access to shared folders on a Domain Controller from Linux.
Here is my setup:
Situation:
I made several user accounts, all administrators & root accounts, just to be sure. Shared folders permissions are all on full control. I tried an other Linux distro like Mint 12 LXDE (error can't mount).Same problems with or without software updates.
What might cause this problem? Is it a Linux or Windows issue? Are there any optional config files I need to check, extra packages on Linux which need to be installed?
Any tips would be appreciated. Thx.
This is the errorlog:
An account failed to log on. Subject: Security ID: NULL SID Account Name: - Account Domain: - Logon ID: 0x0 Logon Type: 3 Account For Which Logon Failed: Security ID: NULL SID Account Name: mint Account Domain: machx.com Failure Information: Failure Reason: Unknown user name or bad password. Status: 0xc000006d Sub Status: 0xc000006a Process Information: Caller Process ID: 0x0 Caller Process Name: - Network Information: Workstation Name: MINTOS Source Network Address: 192.168.244.180 Source Port: 36229 Detailed Authentication Information: Logon Process: NtLmSsp Authentication Package: NTLM Transited Services: - Package Name (NTLM only): - Key Length: 0
You can try apt-get install smbfs
just for a change up of drivers and see if it helps... I have ran into this issue in the past, and the culprit was NTLMv2 being the default security setting for shares on Win2008. It is available on XP, but not the default, NTLM is so that is why that share works perfectly. If you think that might be it, just append sec=ntlmv2 under your mount options. Here's an example. mount -t cifs -o username=testIt,sec=ntlmv2 //192.168.1.1/testDir /mnt/testDir
(Oh, and just to let you know, if smbfs isn't installed that will error, complaining about a password. If smbfs is installed, it will prompt you for a password. I guess that package has a modded version of the mount.cifs command in it.)
User contributions licensed under CC BY-SA 3.0