You need to ensure that all new connection server2

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?

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



Leave a Reply 12

Your email address will not be published. Required fields are marked *

ten + six =


Leon

Leon

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.

mabdullah007

mabdullah007

yes you r right

Me

Me

NLb.exe Stop will stop the entire cluster. Since the question is pertaining to one server node then

Suspend-NlbClusterNode is the best answer.

Sako_Pako

Sako_Pako

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

chuck

chuck

Wrong, suspend-nlbclusternode -drain also drains the node. Microsoft always prefers powershelgl commands over exe. So if both work, go with power shell.

Jon

Jon

C.
The nlb.exe stop command

Halloween

Halloween

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

josh

josh

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”

Chris

Chris

No answer is correct.
As Halloween stated, the commands would be one of the following:
nlb drainstop
or
stop-nlbclusternode -drain