群晖Nas技巧 – windows通过网络邻居访问群晖nas无法访问

windows通过网络邻居访问群晖nas提示密码不对

今天装了新机器,发现通过\192.168.xx.xx访问Nas,输入用户和密码后总是失败,但是实际是正确的,看了好几个文章都不对。

之后发现只要删除这个注册表键:

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa 删除Lmcompatibilitylevel项, 重新连接网络映射就行了。

参考来自

还有一些其他方式不能访问,可以查看是否安装了SMB

在这里插入图片描述

在运行里可以打开PowerShell
在这里插入图片描述

输入指令
SMBv1
检测:
Get-SmbServerConfiguration | Select EnableSMB1Protocol
禁用:
Set-SmbServerConfiguration -EnableSMB1Protocol $false
启用:
Set-SmbServerConfiguration -EnableSMB1Protocol $true

SMB v2/v3
检测:
Get-SmbServerConfiguration | Select EnableSMB2Protocol
禁用:
Set-SmbServerConfiguration -EnableSMB2Protocol $false
启用:
Set-SmbServerConfiguration -EnableSMB2Protocol $true

原文链接:https://blog.csdn.net/thinbug/article/details/128447485

© 版权声明
THE END
喜欢就支持一下吧
点赞0 分享