1
Service:Hyper V
系統管理員 edited this page 2026-03-06 05:57:25 +00:00
This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

啟用 KVM

Set-VMProcessor -VMName "<vm_name>" -ExposeVirtualizationExtensions $true

偽裝 MAC 地址 for PVE

因為虛擬機共用同一張網路卡,為了防止流量進到 PVE 後,不再往虛擬機送,因此需要偽裝 MAC 地址

Get-VMNetworkAdapter -VMName "<vm_name>" | Set-VMNetworkAdapter -MacAddressSpoofing On

限制虛擬硬碟的讀寫速度(IOPS)

一個 IOPS 為 8KB / s如果要限制虛擬硬碟只能使用 100MB / s 的速度,則 IOPS 應該設定為 12800 (100 * 1024 / 8)

加入具 NAT 功能的虛擬交換器

加入新的虛擬交換器

New-VMSwitch -SwitchName "NAT Switch" -SwitchType Internal

設定交換器的 IP

New-NetIPAddress -IPAddress 192.168.30.1 -PrefixLength 24 -InterfaceAlias "vEthernet (NAT Switch)"

設定 NAT

New-NetNat -Name "NAT Network" -InternalIPInterfaceAddressPrefix 192.168.30.0/24