HOTSPOT
Your network contains two Web servers named Server1 and Server2. Both servers run Windows
Server 2012 R2.
Server1 and Server2 are nodes in a Network Load Balancing (NLB) cluster. The NLB cluster contains
an application named App1 that is accessed by using the URL http://app1.contoso.com.
You deploy a new server named Server3 that runs Windows Server 2012 R2. The contoso.com DNS
zone contains the records shown in the following table.
You need to add Server3 to the NLB cluster.
What command should you run?
To answer, select the appropriate options in the answer area.
Explanation:
* The Add-NlbClusterNode cmdlet adds a new node to the NLB cluster. Once the new node settings
are circulated through all of the NLB cluster node, the new cluster node will be in a running state in
the cluster.
* The Get-NlbClusterNode cmdlet retrieves information about a node in the NLB cluster.
* EXAMPLE: This command adds host node2 to the cluster on node1.
C:\PS>
Get-NlbCluster node1 | Add-NlbClusterNode -NewNodeName node2 -NewNodeInterface vlan-3
Name State Interface HostID
—- —– ——— ——
node2 Converged vlan-3 2Get-NlbClusterNode; Add-NlbClusterNode
Don’t get this answer. Why wouldn’t it be Get-NlbClusterVIP (name of VIP)
Never mind… I understand it now
https://technet.microsoft.com/en-us/library/ee817107.aspx
Get-NlbCluster Server1| Add-NlbClusterNode -NewNodeName Server3 -NewNodeInterface Ethernet
This command adds Server3 to cluster on Server1
ne method which works is:
GET-NLBCLUSTER Server1 | Add-NlbClusterNode -NewNodeName Server3 -NewNodeInterface Ethernet
In the exam i’d be picking Get-NLBClusterNode as it’s closest to the correct answer..WTF Microsoft
Get-NlbCluster = Retrieves information about the NLB cluster object that is queried by the caller.
Get-NlbClusterNode = Retrieves information about a node object that is queried by the caller.
Add-NlbClusterNode = Adds a new node to the NLB cluster.
Add-NlbClusterNodeDip = Adds a dedicated IP address to an NLB cluster.
Set-NlbClusterNodeDip = Edits the dedicated IP address of a Network Load Balancing (NLB) cluster.
Add-NlbClusterVip = Adds a virtual IP address to an NLB cluster.