READ Free Dumps For Microsoft- 70-410
Question ID 9139 | Your network contains an Active Directory domain named contoso.com. The domain contains a DHCP server named Server1that runs Windows Server 2012 R2.
You create a DHCP scope named Scope1. The scope has a start address of 192168.1.10, an end address of 192.168.1.50, and a subnet mask of 255.255.255.192. You need to ensure that Scope1 has a subnet mask of 255.255.255.0. What should you do first?
|
Option A | From Windows PowerShell, run the Remove-DhcpServerv4PolicyIPRange cmdlet.
|
Option B | From the DHCP console, modify the Scope Options of Scope1.
|
Option C | From Windows PowerShell, run the Remove-DhcpServerv4Scope cmdlet.
|
Option D | From Windows PowerShell, run the Set-DhcpServerv4Scope cmdlet.
|
Correct Answer | C |
Explanation Explanation/Reference: Set-DhcpServerv4Scope Sets the properties of an existing IPv4 scope on the Dynamic Host Configuration Protocol (DHCP) server service. Syntax: Parameter Set: WithoutRange Set-DhcpServerv4Scope [-ScopeId]
[-ActivatePolicies ] [-AsJob] [-CimSession ] [-ComputerName ] [- Delay ] [-Description ] [-LeaseDuration ] [-MaxBootpClients ] [-Name ] [-NapEnable ] [- NapProfile ] [-PassThru] [-State ] [-SuperscopeName ] [-ThrottleLimit ] [-Type ] [-Confirm] [-WhatIf] [ ] Parameter Set: WithRange Set-DhcpServerv4Scope [-ScopeId] -EndRange -StartRange [-ActivatePolicies ] [-AsJob] [- CimSession ] [-ComputerName ] [-Delay ] [-Description ] [-LeaseDuration ] [-MaxBootpClients ] [-Name ] [-NapEnable ] [-NapProfile ] [-PassThru] [-State ] [-SuperscopeName ] [- ThrottleLimit ] [-Type ] [¬Confirm] [-WhatIf] [ ]
Question ID 9140 | 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 Visualization Filter Driver on Server1. Which Windows PowerShell cmdlet should you run?
|
Option A | Set-NetVirtualizationGlobal
|
Option B | Enable-NetAdapterBinding
|
Option C | Add - WindowsFeature
|
Option D | Set-NetAdapterVmq
|
Correct Answer | B |
Explanation Explanation/Reference: 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 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" } }