Set-NlbClusterNode

Set-NlbClusterNode

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

Sintaxis

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>]

Descripción detallada

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.

Parámetros

-Force

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

Alias

F

¿Requerido?

false

¿Posición?

named

Valor predeterminado

ninguno

¿Aceptar canalización?

false

¿Aceptar caracteres comodín?

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.

Alias

Host,HN,H

¿Requerido?

false

¿Posición?

1

Valor predeterminado

ninguno

¿Aceptar canalización?

false

¿Aceptar caracteres comodín?

false

-HostPriority<Int32>

Specifies the host priority or host ID for the cluster node. Los valores aceptables para este parámetro son los siguientes: 1 through 32.

Alias

Priority,HP

¿Requerido?

false

¿Posición?

named

Valor predeterminado

ninguno

¿Aceptar canalización?

false

¿Aceptar caracteres comodín?

false

-InitialHostState<NodeInitialHostState>

Specifies the initial host state for the cluster node. Los valores aceptables para este parámetro son los siguientes: Started, Stopped, or Suspended.

Alias

IHS,State

¿Requerido?

false

¿Posición?

named

Valor predeterminado

ninguno

¿Aceptar canalización?

false

¿Aceptar caracteres comodín?

false

-InputObject<Node[]>

Specifies the cluster node to set.

Alias

ninguno

¿Requerido?

true

¿Posición?

named

Valor predeterminado

ninguno

¿Aceptar canalización?

True (ByValue, ByPropertyName)

¿Aceptar caracteres comodín?

false

-InterfaceName<String>

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

Alias

Interface,IN,I

¿Requerido?

true

¿Posición?

named

Valor predeterminado

ninguno

¿Aceptar canalización?

false

¿Aceptar caracteres comodín?

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.

Alias

R

¿Requerido?

false

¿Posición?

named

Valor predeterminado

ninguno

¿Aceptar canalización?

false

¿Aceptar caracteres comodín?

false

-RetainSuspended<Boolean>

Specifies the new retain suspended setting for the cluster node.

Alias

RS

¿Requerido?

false

¿Posición?

named

Valor predeterminado

ninguno

¿Aceptar canalización?

false

¿Aceptar caracteres comodín?

false

<CommonParameters>

Este cmdlet admite los siguientes parámetros comunes: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer y -OutVariable. Para obtener más información, consulte about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).

Entradas

El tipo de entrada es el tipo de los objetos que se pueden canalizar al cmdlet.

  • Microsoft.NetworkLoadBalancingClusters.PowerShell.Node

Salidas

El tipo de resultado es el tipo de objetos que emite el cmdlet.

  • Microsoft.NetworkLoadBalancingClusters.PowerShell.Node

Ejemplos

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 *

Temas relacionados

Add-NlbClusterNode

Get-NlbClusterNode

Remove-NlbClusterNode

Resume-NlbClusterNode

Start-NlbClusterNode

Stop-NlbClusterNode

Suspend-NlbClusterNode

Format-List