Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Server does not support any of the pysmb dialects. Please email pysmb to add in support for your OS #211

Open
RogueCultivators opened this issue Jul 11, 2023 · 1 comment

Comments

@RogueCultivators
Copy link

RogueCultivators commented Jul 11, 2023

image

image

I want to support timemachine, but the protocol is at least smb2, but using pysmb cannot support this protocol

@RoyWiggins
Copy link

RoyWiggins commented Feb 13, 2024

we've found that sometimes setting min protocol = SMB2 ends up setting SMB2.1 as the minimum version that Samba will negotiate. pysmb doesn't support SMB2.1 (sometimes denoted 2_10). Explicitly setting min protocol = SMB2_02 fixed it for us.

You can test this at the command line by setting the maximum version smbclient will negotiate. For pysmb to work, the server needs to negotiate SMB2_02 (which is SMB version 2.0.2):

smbclient -m SMB2_02 -U <user> -c "ls" <server>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants