You have a Hyper-V host that runs Windows Server 2016. The host contains a virtual machine named VM1. VM1 has resource metering enabled.
You need to use resource metering
to track the amount of network traffic that VM1 sends to the 10.0.0.0/8 network.
Which cmdlet should you run?
A.
New-VMResourcePool
B.
Set-VMNetworkAdapter
C.
Add-VMNetworkAdapterAcl
D.
Set-VMNetworkAdapterRoutingDomainMapping
References:
htt
ps://technet.microsoft.com/itpro/powershell/windows/hyper-v/add-vmnetworkadapteracl
Should be B?
https://docs.microsoft.com/en-us/powershell/module/hyper-v/set-vmnetworkadapter?view=win10-ps
0
2
You are wrong. The answer C is correct https://docs.microsoft.com/en-us/powershell/module/hyper-v/add-vmnetworkadapteracl?view=win10-ps
Add-VMNetworkAdapterAcl -VMName VM1 -RemoteIPAddress 10.0.0.0/8 -Direction Both -Action Meter
5
0