微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

windows – 使用winrm连接到远程服务器,而不将服务器添加到TrustedHosts

我一直在努力应对winrm和TrustedHosts,但无济于事.经过一些实验,我发现winrm / config / client的这个字段限制为多达1023个符号,这是不够的,特别是如果他们的ipv6添加主机.
我引用 Installation and Configuration for Windows Remote Management:当无法建立相互身份验证时,应设置可信主机列表.

文本也在同一文件中说明:工作组中的其他计算机或不同域中的计算机应添加到此列表中.所以我认为这意味着只要两台计算机在同一个域中,我就可以使用winrm从另一台计算机中访问其中一台.

我试图将两台计算机添加到测试域并执行:

winrm get winrm/config/client -r:192.168.100.1 -u:user -p:pass

从其中一个到另一个,但由于错误而失败:

WSManFault
    Message = The WinRM client cannot process the request. If the authentication
 scheme is different from Kerberos,or if the client computer is not joined to a
 domain,then HTTPS transport must be used or the destination machine must be ad
ded to the TrustedHosts configuration setting. Use winrm.cmd to configure Truste
dHosts. You can get more information about that by running the following command
: winrm help config.

Error number:  -2144108316 0x803380E4
The WinRM client cannot process the request. If the authentication scheme is dif
ferent from Kerberos,or if the client computer is not joined to a domain,then
HTTPS transport must be used or the destination machine must be added to the Tru
stedHosts configuration setting. Use winrm.cmd to configure TrustedHosts. You ca
n get more information about that by running the following command: winrm help c
onfig.

将192.168.100.1添加到TrustedHosts后,上面的查询成功.所以我的问题是:是否可以在两台主机之间使用winrm而无需修改TrustedHosts?将可信主机设置为*不是我的选择.

解决方法

如果两台计算机位于同一个域中,则应该能够使用ComputerName而不是IP地址.当你使用IP地址时,你几乎被迫使用我所见过的TrustedHosts.

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐