Set-NlbClusterNode

Set-NlbClusterNode

Edits the Network Load Balancing (NLB) cluster node settings.

構文

Parameter Set: NonPipeline
Set-NlbClusterNode [[-HostName] <String> ] -InterfaceName <String> [-Force] [-HostPriority <Int32> ] [-InitialHostState <NodeInitialHostState> {Started | Stopped | Suspended} ] [-Reload] [-RetainSuspended <Boolean> ] [ <CommonParameters>]

Parameter Set: Pipeline
Set-NlbClusterNode -InputObject <Node[]> [-Force] [-HostPriority <Int32> ] [-InitialHostState <NodeInitialHostState> {Started | Stopped | Suspended} ] [-Reload] [-RetainSuspended <Boolean> ] [ <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.

パラメーター

-Force

Runs the cmdlet without prompting for confirmation. By default the cmdlet will ask for confirmation from the user before proceeding.

エイリアス

F

必須?

false

位置は?

named

既定値

なし

パイプライン入力を許可する

false

ワイルドカード文字を許可する

false

-HostName<String>

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.

エイリアス

Host,HN,H

必須?

false

位置は?

1

既定値

なし

パイプライン入力を許可する

false

ワイルドカード文字を許可する

false

-HostPriority<Int32>

Specifies the host priority or host ID for the cluster node. このパラメーターに対して使用できる値: 1 through 32.

エイリアス

Priority,HP

必須?

false

位置は?

named

既定値

なし

パイプライン入力を許可する

false

ワイルドカード文字を許可する

false

-InitialHostState<NodeInitialHostState>

Specifies the initial host state for the cluster node. このパラメーターに対して使用できる値: Started, Stopped, or Suspended.

エイリアス

IHS,State

必須?

false

位置は?

named

既定値

なし

パイプライン入力を許可する

false

ワイルドカード文字を許可する

false

-InputObject<Node[]>

Specifies the cluster node to set.

エイリアス

なし

必須?

true

位置は?

named

既定値

なし

パイプライン入力を許可する

True (ByValue, ByPropertyName)

ワイルドカード文字を許可する

false

-InterfaceName<String>

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

エイリアス

Interface,IN,I

必須?

true

位置は?

named

既定値

なし

パイプライン入力を許可する

false

ワイルドカード文字を許可する

false

-Reload

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.

エイリアス

R

必須?

false

位置は?

named

既定値

なし

パイプライン入力を許可する

false

ワイルドカード文字を許可する

false

-RetainSuspended<Boolean>

Specifies the new retain suspended setting for the cluster node.

エイリアス

RS

必須?

false

位置は?

named

既定値

なし

パイプライン入力を許可する

false

ワイルドカード文字を許可する

false

<CommonParameters>

このコマンドレットは次の共通パラメーターをサポートします。-Verbose、-Debug、-ErrorAction、-ErrorVariable、-OutBuffer、-OutVariable.詳細については、以下を参照してください。 about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216)。

入力

入力型は、コマンドレットにパイプできるオブジェクトの型です。

  • Microsoft.NetworkLoadBalancingClusters.PowerShell.Node

出力

出力型は、コマンドレットによって生成されるオブジェクトの型です。

  • Microsoft.NetworkLoadBalancingClusters.PowerShell.Node

EXAMPLE 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 -Reload

EXAMPLE 2

This example sets the initial host state of the node named node1 to Suspended.

PS C:\> Get-NlbClusterNode –NodeName node1 | Set-NlbClusterNode -InitialHostState Suspended

EXAMPLE 3

This example changes the persist suspend on reboot setting on node named node1 to TRUE.

PS C:\> Get-NlbClusterNode -NodeName node1| Set-NlbClusterNode -RetainSuspended $TRUE | Format-List –Property *

EXAMPLE 4

This example changes the host priority (ID) on the node named node1 to 5.

PS C:\> Get-NlbClusterNode –NodeName node1 | Set-NlbClusterNode -HostPriority 5 | Format-List –Property *

関連トピック

Add-NlbClusterNode

Get-NlbClusterNode

Remove-NlbClusterNode

Resume-NlbClusterNode

Start-NlbClusterNode

Stop-NlbClusterNode

Suspend-NlbClusterNode

Format-List