Connect to Windows 10 share with CIFS (SMB1 succeeds, SMB2 fails)

MistaRoboto

New Member
Joined
May 30, 2023
Messages
5
Reaction score
0
Credits
53
Problem description: that mounting SMB1 on a Windows 10 computer works as follows because "SMB1 Support" is enabled:

mount -t cifs -o user=USER,password=USER,vers=1.0 //192.168.1.222/SHARE /tmp/test


When I disable "SMB1 support" on the Windows 10 machine AND type at "vers=2.0 or 2.1", I get the following error message back from the SSH console:

"failed: Host is down"

Can you please help me to find the correct command line to "negotiate" modern SMB2 shares on a modern computing environment?

Thank you very much!
 


Hi dos2unix,

well I have tried version 3.0 in my string by changing the "vers=*" argument like this:


mount -t cifs -o user=USER,password=USER,vers=3.0 //192.168.1.222/SHARE /tmp/test

I read the tread you provided, but that looks way more complicated than I thought.

Is the difference between SMB1 and SMB2/3 strings that big?
 


Top