其他分享
首页 > 其他分享> > WinRM 如何设置 TrustedHosts

WinRM 如何设置 TrustedHosts

作者:互联网

如果希望 WinRM 能够建立连接,需要将 IP 地址设置为白名单。

查看当前 WinRM 的白名单

通过在命令行工具中运行下面的命令:

Get-Item WSMan:\localhost\Client\TrustedHosts

 

winRM-trust-01

 

上面命令行工具中显示了当前的配置情况

设置所有地址

下面的命令将会设置能够接受所有的配置。

Set-Item WSMan:\localhost\Client\TrustedHosts -Value '*'

添加到列表尾部

如果希望添加不同的地址到当前的信任列表中,但不修改当前的配置的话,需要使用关键字

-Concatenate

才可以。

例如可以使用下面的命令来进行添加。

Set-Item WSMan:\localhost\Client\TrustedHosts -Value 'machineC' -Concatenate

https://www.ossez.com/t/winrm-trustedhosts/13510

标签:WinRM,WSMan,Item,Client,设置,TrustedHosts,localhost
来源: https://www.cnblogs.com/huyuchengus/p/14891798.html