Smbclient: Difference between revisions
From DWIKI
mNo edit summary |
m (→FAQ) |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
*[http://tldp.org/HOWTO/SMB-HOWTO-8.html Accessing an SMB Share With Linux Machines] | *[http://tldp.org/HOWTO/SMB-HOWTO-8.html Accessing an SMB Share With Linux Machines] | ||
= Examples = | = Examples = | ||
smbclient -L somehost -U username | smbclient -L somehost -U username | ||
smbclient //smbserver/homes -U username | |||
=FAQ= | =FAQ= | ||
==protocol negotiation failed: NT_STATUS_CONNECTION_DISCONNECTED== | ==protocol negotiation failed: NT_STATUS_CONNECTION_DISCONNECTED== | ||
Try in smb.conf: | Try in smb.conf: | ||
max protocol = SMB2 | max protocol = SMB2 | ||
== mount -t cifs: mount error 13 = Permission denied == | |||
Pretty much always credentials/authentication problem. |
Latest revision as of 13:43, 17 October 2023
Examples
smbclient -L somehost -U username
smbclient //smbserver/homes -U username
FAQ
protocol negotiation failed: NT_STATUS_CONNECTION_DISCONNECTED
Try in smb.conf:
max protocol = SMB2
mount -t cifs: mount error 13 = Permission denied
Pretty much always credentials/authentication problem.