码迷,mamicode.com
首页 > 系统相关 > 详细

PowerShell启用多跳远程控制

时间:2020-05-29 17:59:11      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:str   方式   远程控制   方案   信息   force   使用   ocs   png   

有些场景下,我们使用远程连接了某个Server,在远程Server中再想进行远程操作,就会提示错误。因为默认的认证信息只会传递一跳。

技术图片

 

 

对此,微软官方文档给出的解决方案是:https://docs.microsoft.com/en-us/powershell/scripting/learn/remoting/ps-remoting-second-hop?view=powershell-7

我们主要看通过CredSSP的认证方式处理,具体做法是:

1.在我们工作的电脑执行:Enable-WSManCredSSP -Role Client -DelegateComputer *.domain.com -Force

2.在第一跳的Server上执行:Enable-WSMaCredSSP -Role Server –Force

以下是Enable-WSManCredSSP命令的使用说明和参数:

技术图片

通过以上的设置,我们重新连接到第一跳链接的Server,注意,我们需要将认证方式修改为CredSSP。然后在第一跳的Server上就可以执行远程操作了。

技术图片

参考

https://devblogs.microsoft.com/scripting/enable-powershell-second-hop-functionality-with-credssp/

https://4sysops.com/archives/using-credssp-for-second-hop-powershell-remoting/

PowerShell启用多跳远程控制

标签:str   方式   远程控制   方案   信息   force   使用   ocs   png   

原文地址:https://www.cnblogs.com/talentzemin/p/12988464.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!