🛡️
Hyper-VでVM間の通信をさせない、特定のIP以外を使わせないようにする例
ゲストVM名
win10-1
ゲストVM IP
192.168.8.8
物理ルータ
割当範囲 192.168.8.0/22
デフォルトゲートウェイ 192.168.8.1
PowerShell
- 特定のIP以外を使わせない
Add-VMNetworkAdapterAcl -VMName win10-1 -LocalIPAddress 192.168.8.8 -Direction Both -Action Allow
Add-VMNetworkAdapterAcl -VMName win10-1 -LocalIPAddress Any -Direction Both -Action Deny
- ゲストVM間の通信をさせない
Add-VMNetworkAdapterAcl -Action Deny -Direction Inbound -VMName win10-1 -RemoteIPAddress 192.168.8.0/22
Add-VMNetworkAdapterAcl -Action Allow -Direction Inbound -VMName win10-1 -RemoteIPAddress 192.168.8.1
参考:
Hyper-Vの仮想マシンのネットワークを制限する方法
Hyper-V limit IP address to guest
Discussion