Hi all,
We have a Windows server at our institution on which people put their data. Due to the recent wave of ransomware attacks, smbv1 had to be blocked. Now the problem is that machines running Ubuntu and derivatives cannot connect to it anymore, which they apparently were accessing through smb1.
The standard protocol now gets refused as it should be:
Code:
smbclient <URL> -U <username> -W WIN
protocol negotiation failed: NT_STATUS_CONNECTION_RESET
We could changing the protocol to make smbclient connect successfully:
Code:
smbclient <URL> -U <username> -m SMB3 -W WIN
Domain=[WIN] OS=[] Server=[]
smb: \>
But I cannot mount the drive through Nemo GUI, nor using to command line with cifs.
Code:
sudo mount -t cifs -o username=<username>,domain=WIN,vers=2.0 <URL> ./server
mount error(22): Invalid argument
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
Similarly for v2.1 or 3. The kernels are > 4.2. Any ideas what might be causing the issue or how to fix this problem would be appreciated.
Thanks.