Resume-Nlb Cluster Node

Resumes a node in a NLB cluster.

Syntax

Resume-NlbClusterNode
      [[-HostName] <String>]
      [[-InterfaceName] <String>]
      [<CommonParameters>]
Resume-NlbClusterNode
      -InputObject <Node[]>
      [<CommonParameters>]

Description

The Resume-NlbClusterNode cmdlet resumes the node in a Network Load Balancing (NLB) cluster that was suspended. To override any remote control cmdlets that are issued, a node may need to be suspended and resumed.

Examples

Example 1: Resume the local cluster node

PS C:\>Resume-NlbClusterNode
Name                State               Interface           HostID 
----                -----               ---------           ------ 
node2               Stopped             vlan-3              2

This command resumes the local cluster node. The node is in the Stopped state and needs to be started after coming back from the Suspended state.

Example 2: Resume the specified cluster node on the local cluster

PS C:\>Resume-NlbClusterNode -InputObject "Node003"
Name                State               Interface           HostID 
----                -----               ---------           ------ 
Node003               Stopped             vlan-3              2

This command resumes the cluster node named Node003 on the local cluster. The node is in the Stopped state and needs to be started after coming back from the Suspended state.

Required Parameters

-InputObject

Specifies an array of cluster nodes to resume.

Type: Node[]
Position: Named
Default value: None
Accept pipeline input: True (ByPropertyName, ByValue)
Accept wildcard characters: False

Optional Parameters

-HostName

Specifies the name of the cluster host against which this cmdlet is run. If this parameter is omitted or a value of . is entered, then the local cluster is assumed.

Type: String
Aliases: Host, HN, H
Position: 0
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
-InterfaceName

Specifies the interface to which NLB is bound. This is the interface of the cluster against which this cmdlet is run.

Type: String
Aliases: Interface, IN, I
Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

Inputs

Microsoft.NetworkLoadBalancingClusters.PowerShell.Node

Outputs

Microsoft.NetworkLoadBalancingClusters.PowerShell.Node