环境:
Centos8系统部署的samba服务
Centos7系统客户端连接
问题:
[root@c7n1 ~]# smbclient -L //10.0.0.8/share -U wang%123456
protocol negotiation failed: NT_STATUS_INVALID_NETWORK_RESPONSE
原因:
The defaults of ‘client min protocol’ and ‘server min protocol’ have been changed to SMB2_02.
This means clients without support for SMB2 or SMB3 are no longer able to connect to smbd (by default).
It also means client tools like smbclient and other, as well as applications making use of libsmbclient are no longer able to connect to servers without SMB2 or SMB3 support (by default).
It’s still possible to allow SMB1 dialects, e.g. NT1, LANMAN2 and LANMAN1 for client and server, as well as CORE and COREPLUS on the client.
解决:
在samba服务端添加支持最小协议。
server min protocol = LANMAN1
重启smb服务,客户端重新连接成功。
博客围绕Centos系统Samba服务连接问题展开。环境是Centos8部署Samba服务,Centos7客户端连接。问题原因是默认协议改为SMB2_02,不支持SMB2或SMB3的客户端无法连接。解决办法是在服务端添加支持最小协议,重启服务后客户端连接成功。

被折叠的 条评论
为什么被折叠?



