exam questions

Exam 70-741 All Questions

View all questions & answers for the 70-741 exam

Exam 70-741 topic 1 question 63 discussion

Actual exam question from Microsoft's 70-741
Question #: 63
Topic #: 1
[All 70-741 Questions]

HOTSPOT -
You have a Hyper-V host named Server1 that runs Windows Server 2016. Server1 has two network adaptors named NIC1 and NIC2. Server1 has two virtual switches named vSwitch1 and vSwitch2. NIC1 connects to vSwitch1. NIC2 connects to vSwitch2.
Server1 hosts a virtual machine named VM1. VM1 has two network adapters named vmNIC1 and vmNIC2. VmNIC1 connects to vSwitch1. VmNIC2 connects to vSwitch2.
You need to create a NIC team on VM1.
What should you run on VM1? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
Hot Area:

Show Suggested Answer Hide Answer
Suggested Answer:
New-NetLbfoTeam -Name NICTEAM1 TeamMembers vmNIC1, vmNIC2 TeamingMode $var1
LoadBalancingAlgorithm $var2

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
dritter
Highly Voted 5 years, 9 months ago
The settings for a NIC Team in a VM have to be * Switch Independent * Address Hash (The only valid LoadBalancingAlgorithms in a Virtual Machine are 'TransportPorts', 'IPAddresses', and 'MacAddresses', which are forms of address hash load balancing algorithms) https://docs.microsoft.com/en-us/windows-server/networking/technologies/nic-teaming/nic-teaming https://docs.microsoft.com/en-us/powershell/module/netlbfo/new-netlbfoteam?view=win10-ps http://techgenix.com/windows-nic-teaming-using-powershell-part7/
upvoted 12 times
...
mrtn
Highly Voted 4 years, 5 months ago
Got this in a exam
upvoted 5 times
...
lofzee
Most Recent 3 years, 11 months ago
Answer is correct. MS Docs say that you can only have 'Switch Independent' and 'Address Hash' on a VM NIC Team. TransportPorts one is of the 'hashing functions' of Address Hash. The other two functions are Source and Destination IP address and Source and Destination MAC Address.
upvoted 1 times
...
ykarma
4 years ago
This was on the exam. Had my exam on November 27th 2020
upvoted 4 times
...
NickTim
4 years, 1 month ago
Got this in a exam
upvoted 4 times
...
jreyes83
4 years, 4 months ago
New-NetLbfoTeam -TeamMembers <NIC Names> -Name "<Desciptive Name>" -TeamingMode SwitchIndependent -LoadBalancingAlgorithm TransportPorts
upvoted 2 times
...
promaster
4 years, 5 months ago
While configuring from VM, the only options are: Switch Independent Address Hash
upvoted 1 times
promaster
4 years, 5 months ago
Although this question seems to be "Host (Parent Partition)" command. The answer is using a host powershell command, not a VM powershell command...This is what we should do in this case... Create a team in a virtual machine PowerShell PS C:\> Set-VMNetworkAdapter -VMName <VMname> -AllowTeaming On PS C:\> New-NetLbfoTeam -Name "Team2" -TeamMembers "NIC1","NIC2" This set of commands allows teaming in virtual machines by using the AllowTeaming parameter of the Set-VMNetworkAdapter cmdlet and then creates a team named Team2 in the virtual machine specified by VMName. You must run the following command in the host (parent partition) with administrator rights.
upvoted 1 times
TA77
4 years, 3 months ago
The question says: What should you run on "VM1" not on Server1.
upvoted 2 times
...
...
...
Henrix
4 years, 6 months ago
I believe the depicted answers are correct: 1) Teaming mode "Switch Independent" and load balancing mode "address hash" (https://docs.microsoft.com/en-us/windows-server/networking/technologies/nic-teaming/nic-teaming#virtual-machines-vms). 2) TransportPorts uses source and destination ports and IPs to create a hash (see -LoadBalancingAlgorithm under https://docs.microsoft.com/en-us/powershell/module/netlbfo/new-netlbfoteam?view=win10-ps#parameters). *) Hyper-V Port load balancing mode is NOT an option for creating teams within VMs (https://docs.microsoft.com/en-us/windows-server/networking/technologies/nic-teaming/nic-teaming-settings#hyper-v-port).
upvoted 4 times
...
darkknight
4 years, 8 months ago
Answer is correct https://adamtheautomator.com/nic-teaming-windows-server/#switch-independent
upvoted 1 times
...
SmackedWookiee
4 years, 11 months ago
I would go with Switchindependent and Dynamic. Dynamic would automatically and equally distribute network traffic across the network. TransportPosts accepts inbound traffic on only one NIC.
upvoted 2 times
...
coleman
5 years, 1 month ago
The answer is correct
upvoted 3 times
...
AliBen
5 years, 1 month ago
The answer is correct since the only allowed Load balancing mode for a VM is "Address Hash" which by default calculates the Hash based on the source and destination TCP ports ('TransportPorts'). To change that you have New-netLFBOTeam to change the hash to either S/D IP only or S/D Mac addresses ('IPAddresses', or 'MacAddresses'). https://docs.microsoft.com/en-us/windows-server/networking/technologies/nic-teaming/nic-teaming-settings
upvoted 2 times
...
Person
5 years, 1 month ago
I think the correct answers are: $var1="SwitchIndependent" and $var2= "HperVPort" Teamingmode: SwitchIndependent: specifies that a network switch configuration is not needed for the NIC team. When configuring teaming within a Hyper-V virtual machine, you must select this choice. This is also the default. Algorithm The possible values are: TransportPorts, IPAddresses, MacAddresses, HyperVPort. The default value is TranposrPorts, but I think in this case is HyperVPort. HyperVPort:Distributes network traffic based on the source virtual machine Hyper-V switch port identifier. This only makes sense if configuring within a VM. And we are configuring the team in VM. https://4sysops.com/archives/nic-teaming-with-powershell/
upvoted 1 times
...
[Removed]
5 years, 5 months ago
dritter is correct but this part of 70-740
upvoted 2 times
MrRiver
5 years, 2 months ago
nic teaming is definitely relevant to 70-741 ... don't skip these
upvoted 23 times
V1980
4 years, 1 month ago
☝☝☝☝☝☝☝☝☝ in case the 9 votes weren't clear enough!
upvoted 7 times
...
...
Yebubbleman
3 years, 11 months ago
NIC Teaming is in both Exam Ref books and therefore likely fair game for both exams.
upvoted 1 times
...
...
Cnayar
5 years, 6 months ago
I think you answer is wrong please read this https://docs.microsoft.com/en-us/windows-server/networking/technologies/nic-teaming/nic-teaming-settings
upvoted 1 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...
exam
Someone Bought Contributor Access for:
SY0-701
London, 1 minute ago