FAb7D ~ $ smbclient -N -L //192.168.1..../sdc1
Protocol negotiation to server 192.168.1... (for a protocol between SMB2_02 and SMB3) failed: NT_STATUS_CONNECTION_DISCONNECTED
Then I tried this:
~ $ sudo mount -t cifs "//192.168.1..../sdc1" -o guest,nosetuids,noperm,rw "samba"
mount error: Server abruptly closed the connection.
This can happen if the server does not support the SMB version you are trying to use.
The default SMB version recently changed from SMB1 to SMB2.1 and above. Try mounting with vers=1.0.
mount error(112): Host is down
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs) and kernel log messages (dmesg)
Do you have any suggestions?
The problem may be that your router firmware includes a (very) old version of samba that doesn't support anything but the (long) deprecated SMB V1 protocol.
The help output says you should try to mount with vers=1.0
. Have you tried that?
~ $ sudo mount -t cifs "(the ip address and share)" -o guest,nosetuids,noperm,rw,vers=1.0 "samba"
I've configured the default Samba configuration on Solus to log authentication issues verbosely to files in /var/log/samba/
. Maybe you will find looking at those log files useful as well?