You have a server named Server1 that runs Windows Server 2012 R2.
You plan to enable Hyper-V Network Virtualization on Server1.
You need to install the Windows Network Virtualization Filter Driver on Server1.
Which Windows PowerShell cmdlet should you run?
A.
Set-NetVirtualizationGlobal
B.
Enable-NetAdapterBindingC.Add – WindowsFeature
D.
Set-NetAdapterVmq
Explanation:
Hyper-V Network Virtrtualization runs multiple virtual networks on a physical network. And each virtual
network operates as if it is running as a physical network. The The Set-NetAdaptercmdlet sets the basic
properties of a network adapter such as virtual LAN (VLAN) identifier (ID) and MAC address. Thus if you
add the binding parameter to the command then you will be able to install the Windows Network
Virtualization Filter Driver.
Step one:
Enable Windows Network Virtualization (WNV). This is a binding that is applied to the NIC that you
External Virtual Switch is bound to. This can be a physical NIC, it can be an LBFO NIC team. Either way, it
is the network adapter that your External Virtual Switch uses to exit the server.
This also means that if you have multiple virtual networks or multiple interfaces that you can pick and
choose and it is not some global setting.
If you have one External Virtual Switch this is fairly easy:
$vSwitch = Get-VMSwitch -SwitchType External
# Check if Network Virtualization is bound
# This could be done by checking for the binding and seeing if it is enabled
ForEach-Object -InputObject $vSwitch {
if ((Get-NetAdapterBinding -ComponentID “ms_netwnv” -InterfaceDescription
$_.NetAdapterInterfaceDescription).Enabled -eq $false){
# Lets enable it
Enable-NetAdapterBinding -InterfaceDescription $_.NetAdapterInterfaceDescription -ComponentID
“ms_netwnv”
} }
{
Hi! All! Merry X’mas!!!
Passed 70-417 exam last week! Maybe the best gift for my Christmas!! haha~~~
Score of my 70-417 test:
70-410 : 900 (total 20q in this section)
70-411 : 890 (total 20q in this section)
70-412 : 885 (total 18q in this section)
Only few new questions in the whole 70-417 test, and they were mainly appeared in the ADFS section of 70-412.
And, pay attention to these Qs:
1. Question about exporting printers from a 2008 R2 to a 2012 R2
2. Question about which command you need to transfer the global catalog/schema role
3. Question about how to change the UPN suffix on all user accounts in a domain
4. Question about the IPAM method to switch from auto to manual install
The valid 70-417 dumps that I learned:
http://www.passleader.com/70-417.html
(611q VCE and PDF)
All new questions were from it, and wrong answers have been corrected, the most valid 70-417 dumps until now!
P.S. Download part of that 611q 70-417 dumps for free here:
https://doc.co/QB11rj
Good Luck!
B I guess?
Enable-NetAdapterBinding: Enables binding of a protocol or filter to a network adapter.
(https://technet.microsoft.com/en-us/itpro/powershell/windows/netadapter/enable-netadapterbinding)