为什么我不能在端口445上连接?

我需要在运行Windows Server 2008 R2的SQL Server上收集基准性能数据。 当我在运行Windows 7的计算机上打开perfmon并尝试从远程服务器添加计数器时,收到一条错误消息,指出“无法连接到计算机”。

我可以ping服务器,我可以连接使用远程桌面。

除了perfmon问题之外,我无法浏览共享(例如\ uncpath \ c $),连接到远程registry,或通过telnet连接到端口445。

我与服务器位于同一子网上,并且服务器和计算机上的Windows防火墙都已closures。

我知道这是旧的,但不妨添加一些答案,以供将来使用这个问题…

确保你可以连接

 telnet thehostname 445 

或在Linux上

  nc -v -w3 thehostname 445 Connection to test-ws1 445 port [tcp/microsoft-ds] succeeded! 

确保有东西在听

 C:\Users\Administrator>netstat -ao | find "445" TCP 0.0.0.0:445 thehostname:0 LISTENING 4 TCP [::]:445 thehostname:0 LISTENING 4 

确保在该界面上启用文件和打印机共享

在这里输入图像说明

最后一个让我