You have a server named Server1 that runs Windows Server 2016. Server1 is a Hyper-V host that hosts a
virtual machine named VM1.
Server1 has three network adapter cards that are connected to virtual switches named vSwitch1, vSwitch2 and
vSwitch3.
You configure NIC Teaming on VM1 as shown in the exhibit. (Click the Exhibit button.)image:Img138-201.jpg
You need to ensure that VM1 will retain access to the network if a physical network adapter card fails on
Server1.
What should you do?

A.
From Windows PowerShell on VM1, run the Set-VmNetworkAdapterTeamMapping cmdlet.
B.
From Windows PowerShell on Server1, run the Set-VmNetworkAdapter cmdlet.
C.
From Windows PowerShell on Server1, run the Set-VmSwitch cmdlet.
D.
From Windows PowerShell on Server1, run the Set-VmNetworkAdapterFailoverConfiguration cmdlet
Explanation:
References: https://docs.microsoft.com/en-us/powershell/module/hyper-v/set-vmnetworkadapterteammapping?
view=win10-ps
B
Set-VMNetworkAdapter -AllowTeaming On
8
0
Provided answer is wrong.
The correct one is B. Explanation why is given by Ken there: https://www.briefmenow.org/microsoft/you-need-to-ensure-that-vm1-will-retain-access-to-the-n/
More about the command: https://docs.microsoft.com/en-us/powershell/module/hyper-v/set-vmnetworkadapter?view=win10-ps
3
0
Exhibit missing, correct version of the question: https://www.briefmenow.org/microsoft/you-need-to-ensure-that-vm1-will-retain-access-to-the-n-9/
Answer A is correct though, You must enable NIC Teaming on VM1. Set-VmNetworkAdapterTeamMapping is a valid cmdlet.
0
3
The question is worded incorrectly. With the current wording, nothing would need to be done for teaming to work (assuming the missing screenshot actually showed teamed NICs).
Set-VMNetworkAdapter -AllowTeaming On would be required if the VMAdapters were connected to the same vSwitch (instead of different vSwitches as currently worded).
0
0
Additional Note: all of the others answers are wrong as they do not have any bearing on allowed state of teaming.
0
0
My initial comment is INCORRECT.
Set-VMNetworkAdapter -AllowTeaming On is required regardless of the vSwitch they are connected to.
Teaming will work without this setting, however, if any of the NICs in the team fail, the team will fail.
2
0
You can configure NIC teaming in the Guest OS; however, before NIC teaming will work in a virtual
machine, you need to enable NIC teaming in the Advanced Features section of the VM settings.
B is OK
From Windows PowerShell on Server1, run the Set-VmNetworkAdapter cmdlet.
Configures features of the virtual network adapter in a virtual machine
VM1.
AllowTeaming : Off must be On
0
0