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 as
application named App1 that is accessed by using the URL http://app1.contoso.com. You plan to
perform maintenance on Server1.
You need to ensure that all new connection server2. The solution must not disconnect the existing
connection to Server1
What should you run?

A.
The Set-NlbClusterNode cmdlet
B.
The nlb.exe suspend command
C.
The nlb.exe stop command
D.
The Suspend-NlbClusterNode cmdlet
Answer should be “C” with -drain to avoid interrupting active connections the -drain parameter allows the node to continue servicing active connections but disables all new traffic to that node.
0
0
yes you r right
0
0
NLb.exe Stop will stop the entire cluster. Since the question is pertaining to one server node then
Suspend-NlbClusterNode is the best answer.
0
0
D is wrong: The Suspend-NlbClusterNode cmdlet suspends all nodes of a Network Load Balancing (NLB) cluster
the rigth answer is: C.The nlb.exe stop command [option: drainstop]
see: https://technet.microsoft.com/es-es/library/cc754596(v=ws.11).aspx
0
1
Wrong, suspend-nlbclusternode -drain also drains the node. Microsoft always prefers powershelgl commands over exe. So if both work, go with power shell.
1
0
-drain is not valid for suspend-nlbclusternode
It is for stop-nlbclusternod, but that is not an option.
https://technet.microsoft.com/en-us/library/ee817127.aspx
0
0
D i wrong: The Suspend-NlbClusterNode cmdlet suspends all nodes of a Network Load Balancing (NLB) cluster
the rigth answer is: C.The nlb.exe stop command [option: drainstop]
see: https://technet.microsoft.com/es-es/library/cc754596(v=ws.11).aspx
0
0
C.
The nlb.exe stop command
0
0
Again, all answers here are incorrect.
You can’t use the nlb.exe stop command as it kills all connections.
It’s either;
nlb.exe drainstop
OR
Stop-NlbClusterNode -drain
0
0
Stop-NLBClusterNode -drain would also be another option.
Again, none of the answer choices provided are 100% correct.
https://technet.microsoft.com/en-us/library/dn584113(v=ws.11).aspx
0
0
None of the answers are correct. question isn’t even full.
“You need to ensure that all new connection server2.” isn’t a statement..
if question looks anything like this, and is asking to stop new connection but keep current ones. answer is ” Stop-NLBClusterNode -drain”
0
0
No answer is correct.
As Halloween stated, the commands would be one of the following:
nlb drainstop
or
stop-nlbclusternode -drain
0
0