Question 6 of 192
You have a server named Server1 that runs Windows Server 2016.
You need to configure Server1 as a multitenant RAS Gateway.
What should you install on Server1?
    Correct Answer: B

Question 7 of 192
HOTSPOT -
You have a server named Server1 that runs Windows Server 2016. Server1 is a Hyper-V host.
You have two network adapter cards on Server1 that are Remote Direct Memory Access (RDMA)-capable.
You need to aggregate the bandwidth of the network adapter cards for a virtual machine on Server1. The solution must ensure that the virtual machine can use the
RDMA capabilities of the network adapter cards.
Which commands should you run first? To answer, select the appropriate options in the answer area.
Hot Area:
    Correct Answer:
    A new feature of Windows Server 2016 is SET (Switch Embedded Teaming).

    Create a SET team -
    You must create a SET team at the same time that you create the Hyper-V Virtual Switch with the New-VMSwitch Windows PowerShell command.
    When you create the Hyper-V Virtual Switch, you must include the new EnableEmbeddedTeaming parameter in your command syntax.
    In the following example, a Hyper-V switch named TeamedvSwitch with embedded teaming and two initial team members is created.
    New-VMSwitch -Name TeamedvSwitch -NetAdapterName "NIC 1","NIC 2"
    -EnableEmbeddedTeaming $true
    References:
    https://technet.microsoft.com/en-gb/library/mt403349.aspx Exam 70-743: Question 7 - Image 1
Question 8 of 192
DRAG DROP -
You have a server named Server1 that runs Windows Server 2016.
You need to deploy the first cluster node of a Network Controller cluster.
Which four cmdlets should you run in sequence? To answer, move the appropriate cmdlets from the list of cmdlets to the answer area and arrange them in the correct order.
Select and Place:
Exam 70-743: Question 8 - Image 1
    Correct Answer:
    Deploy Network Controller using Windows PowerShell

    Step 1: Install-WindowsFeature -
    Install the Network Controller server role
    To install Network Controller by using Windows PowerShell, type the following commands at a Windows PowerShell prompt, and then press ENTER.
    Install-WindowsFeature -Name NetworkController IncludeManagementTools
    Step 2: New-NetworkControllerNodeObject
    You can create a Network Controller cluster by creating a node object and then configuring the cluster.
    You need to create a node object for each computer or VM that is a member of the Network Controller cluster.
    To create a node object, type the following command at the Windows PowerShell command prompt, and then press ENTER. Ensure that you add values for each parameter that are appropriate for your deployment.
    New-NetworkControllerNodeObject Name <string> -Server <String> -FaultDomain <string>-RestInte
    Step 3: Install-NetworkControllerCluster
    To configure the cluster, type the following command at the Windows PowerShell command prompt, and then press ENTER. Ensure that you add values for each parameter that are appropriate for your deployment.
    Install-NetworkControllerCluster Node <NetworkControllerNode[]> ClusterAuthentication
    Step 4: Install-NetworkController
    To configure the Network Controller application, type the following command at the Windows PowerShell command prompt, and then press ENTER. Ensure that you add values for each parameter that are appropriate for your deployment.
    Install-NetworkController Node <NetworkControllerNode[]> ClientAuthentication
    References: https://technet.microsoft.com/en-us/library/mt282165.aspx Exam 70-743: Question 8 - Image 2
Question 9 of 192
You have an Active Directory domain that contains several Hyper-V hosts that run Windows Server 2016.
You plan to deploy network virtualization and to centrally manage Datacenter Firewall policies.
Which component must you install for the planned deployment?
    Correct Answer: C

Question 10 of 192
You have a virtual machine named VM1 that runs Windows Server 2016. VM1 hosts a service that requires high network throughput.
VM1 has a virtual network adapter that connects to a Hyper-V switch named vSwitch1. vSwitch1 has one network adapter. The network adapter supports Remote
Direct Memory Access (RMDA), the Single Root I/O Virtualization (SR-IOV) interface, Quality of Service (QoS), and Receive Side Scaling (RSS).
You need to ensure that the traffic from VM1 can be processed by multiple networking processors.
Which Windows PowerShell command should you run on the host of VM1?
    Correct Answer: A