quinta-feira, julho 16, 2015

Comandos PowerShel NLB

Essa é uma pequena referência de alguns comandos em PowerShell úteis para o gerenciamento do Network Load Balancing 

Criando um Cluster com o IP 171.10.90.210
>New-NlbCluster -interfacename NLB -ClusterPrimaryIP 171.10.90.210 -ClusterName NLBCluster

Obtendo informações do cluster
>Get-NlbCluster

Adicionando um host chamado win2012b ao cluster NLB
>Get-NlbCluster | Add-NlbClusterNode -newnodename win2012b -newnodeinterface NLB

Removendo o host win2012b do cluster
>Remove-NlbClusterNode -HostName win2012b -Force

Removendo o cluster
>Remove-NlbCluster

Definindo um nome para o cluster
>Get-NlbCluster | Set-NlbCluster -Name NewName

Definido o mode de operação Multicast ao cluster
>Get-NlbCluster | Set-NlbCluster -OperationMode MULTICAST

Nenhum comentário: