zoukankan      html  css  js  c++  java
  • Hyper-V 2016 配置管理系列(应用篇)

    远程连接到Hyper-V HOST

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

    clip_image001[20]

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

    Enable-WSManCredSSP -Role server

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

    Set-Item WSMan:localhostClientTrustedHosts -Value "10.10.0.5"
    
    Set-Item WSMan:localhostClientTrustedHosts -Value "hyper-v-host-01"
    
    Set-Item WSMan:localhostClientTrustedHosts -Value "10.10.0.6"
    
    Set-Item WSMan:localhostClientTrustedHosts -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并配置以下策略

    clip_image002[20]

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

    clip_image003[18]

  • 相关阅读:
    linux(6)查看进程ps命令
    Python 基础03 序列
    Python 基础02 基本数据类型
    Python基础01 Hello World!
    Linux vi/vim
    Laravel 的HTTP控制器
    Laravel 下的伪造跨站请求保护 CSRF#
    Linux 磁盘管理
    Linux 用户he用户组管理
    Linxu 用户和用户组管理1
  • 原文地址:https://www.cnblogs.com/Aldj/p/10563255.html
Copyright © 2011-2022 走看看