Hyper-v虚拟化开启混杂模式支持KVM嵌套

打开 Windows PowerShell

Set-VMProcessor -ExposeVirtualizationExtensions $true -VMName 虚拟机名称

查看是否启用成功

Get-VMProcessor -VMName 虚拟机名称 | fl

//查看是否为true ExposeVirtualizationExtensions:true

开启混杂功能

Get-VM -Name 虚拟机名称 | Get-VMNetworkAdapter

//返回网卡mac地址(一串数字) 如果多个网卡,请一起把mac地址复制下来

Get-VM -Name 虚拟机名称 | Get-VMNetworkAdapter | Where-Object { $_.MacAddress -eq "MAC地址" } | Set-VMNetworkAdapter -MacAddressSpoofing On

//执行 如果没报错设置完成

 

版权声明:
作者:Xuan
链接:https://www.tacores.com/archives/130
来源:优林博客
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
海报
Hyper-v虚拟化开启混杂模式支持KVM嵌套
打开 Windows PowerShell Set-VMProcessor -ExposeVirtualizationExtensions $true -VMName 虚拟机名称 查看是否启用成功 Get-VMProcessor -VMName ……
<<上一篇
下一篇>>