首页 > 其他 > 详细

Hyper-V 2016 配置管理系列(应用篇)

时间:2019-03-20 10:36:43      阅读:173      评论:0      收藏:0      [点我收藏+]

远程连接到Hyper-V HOST

为了日常运维管理操作,使用远程PowerShell工作。Windows 10上安装了RSAT(远程管理工具 )。然后安装了Hyper-V控制台:

技术分享图片

在能够远程连接到Hyper-V之前,需要从服务器和客户端角度进行一些配置。在两个节点中,运行以下cmdlet:

Enable-WSManCredSSP -Role server

在您的笔记本电脑中,运行以下cmdlet(由未来的Hyper-V主机FQDN替换hyper-v-host):

Set-Item WSMan:\localhost\Client\TrustedHosts -Value "10.10.0.5"

Set-Item WSMan:\localhost\Client\TrustedHosts -Value "hyper-v-host-01"

Set-Item WSMan:\localhost\Client\TrustedHosts -Value "10.10.0.6"

Set-Item WSMan:\localhost\Client\TrustedHosts -Value "hyper-v-host-02"

Enable-WSManCredSSP -Role client -DelegateComputer "10.10.0.5"

Enable-WSManCredSSP -Role client -DelegateComputer "hyper-v-host-01"

Enable-WSManCredSSP -Role client -DelegateComputer "10.10.0.6"

Enable-WSManCredSSP -Role client -DelegateComputer "hyper-v-host-02"

 

然后,运行gpedit.msc并配置以下策略

技术分享图片

现在,您可以利用新的Hyper-V管理器功能,该功能可以使用备用凭据连接到Hyper-V

技术分享图片

Hyper-V 2016 配置管理系列(应用篇)

原文:https://www.cnblogs.com/Aldj/p/10563255.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!