Set-NlbClusterNode
Edits the Network Load Balancing (NLB) cluster node settings.
Set-NlbClusterNode
[[-HostName] <String>]
-InterfaceName <String>
[-Reload]
[-HostPriority <Int32>]
[-InitialHostState <NodeInitialHostState>]
[-RetainSuspended <Boolean>]
[-Force]
[<CommonParameters>]
Set-NlbClusterNode
-InputObject <Node[]>
[-Reload]
[-HostPriority <Int32>]
[-InitialHostState <NodeInitialHostState>]
[-RetainSuspended <Boolean>]
[-Force]
[<CommonParameters>]
The Set-NlbClusterNode cmdlet edits the Network Load Balancing (NLB) cluster node settings. The changes you can make include reconfiguring the host priority, the initial host state, and whether to persist suspended states across reboots.
This operation changes the configuration on all cluster nodes. As a result, the NLB cluster will have to restart the convergence process on all nodes to guarantee that configuration changes have been applied on all nodes and that a consistent state is reached. Any additional operations on the NLB cluster should not be initiated until all cluster nodes have completed the convergence process and are back to the converged state.
ps_nlbc_checkstate_remark
PS C:\>Get-NlbClusterNode -NodeName node1 | Set-NlbClusterNode -Reload
Name State Interface HostID
---- ----- --------- ------
node1 Converging vlan-3 1
This example instructs the NLB driver on the node named node1 to reload all of its settings. This is required if an administrator wants to force configuration changes through the driver. This cmdlet must be run on node1 locally.
PS C:\>Get-NlbClusterNode -NodeName node1 | Set-NlbClusterNode -InitialHostState Suspended
Name State Interface HostID
---- ----- --------- ------
node1 Converging vlan-3 1
This example sets the initial host state of the node named node1 to Suspended.
PS C:\>Get-NlbClusterNode -NodeName node1| Set-NlbClusterNode -RetainSuspended $TRUE | Format-List -Property *
Cluster : newcluster
Name : node1
InterfaceName : vlan-3
Host : node1.domain.com
State : Converging
HostPriority : 1
AdapterGuid : {99757561-22EC-44DA-B6D3-82E16B387D6C}
InitialHostState : Started
PersistSuspendOnReboot : True
MaskSourceMac : True
FilterIcmp : 0
GreDescriptorTimeout : 10
This example changes the persist suspend on reboot setting on node named node1 to TRUE.
PS C:\>Get-NlbClusterNode -NodeName node1 | Set-NlbClusterNode -HostPriority 5 | Format-List -Property *
Cluster : newcluster
Name : node1
InterfaceName : vlan-3
Host : node1.domain.com
State : Converging
HostPriority : 5
AdapterGuid : {99757561-22EC-44DA-B6D3-82E16B387D6C}
InitialHostState : Started
PersistSuspendOnReboot : True
MaskSourceMac : True
FilterIcmp : 0
GreDescriptorTimeout : 10
This example changes the host priority (ID) on the node named node1 to 5.
Runs the cmdlet without prompting for confirmation. By default the cmdlet will ask for confirmation from the user before proceeding.
Type: | SwitchParameter |
Aliases: | F |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
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 |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Specifies the host priority or host ID for the cluster node.
The acceptable values for this parameter are:1
through 32
.
Type: | Int32 |
Aliases: | Priority, HP |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Specifies the initial host state for the cluster node. The acceptable values for this parameter are:Started, Stopped, or Suspended.
Type: | NodeInitialHostState |
Aliases: | IHS, State |
Accepted values: | Started, Stopped, Suspended |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Specifies the cluster node to set.
Type: | Node[] |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
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: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Causes the NLB driver on the current cluster node to load its settings. This cmdlet is only valid for the local NLB cluster node and cannot be used to reload a remote NLB cluster node.
Type: | SwitchParameter |
Aliases: | R |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Specifies the new retain suspended setting for the cluster node.
Type: | Boolean |
Aliases: | RS |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Microsoft.NetworkLoadBalancingClusters.PowerShell.Node
Microsoft.NetworkLoadBalancingClusters.PowerShell.Node