我的 90% 的服务器上都安装了 PSRemoting。但有几台服务器我不确定是怎么回事。服务器 2016。
最多其中大部分是 Hyper-V 主机,但并非全部。
Enable-PSRemoting -Force
有效。Windows 防火墙已设置为接受。Test-WSMan 错误为
Code="2150858770"
。- Test-NetConnection -ComputerName remoteserver -port 5985 显示成功。
- 使用 Putty 进行 Telnet 到 5985 显示
Software caused connection abort
- 侦听器由 GPO 设置,在 TrustedHosts 中带有 * 的端口 5985 上。这可以通过 netstat -abn 进行验证。
- 我可以在本地和远程获取 wmimgmt.msc 中的属性。
- 使用 Wireshark 数据包跟踪(我将捕获过滤器设置为
port 5985
),我得到 [SYN]、[SYN,ACK]、[ACK]、[PSH,ACK]、POST,然后是 [RST,ACK]。 - Windows 防火墙日志显示数据包已被接受。
有什么想法或事我可以尝试吗?