Cluster de failover do Hyper-V: como o cluster sabe a diferença entre o gerenciamento e a rede de cluster?

1

Lendo as Recomendações da rede para um cluster do Hyper-V no Windows Server 2012 , estou deixou com algumas perguntas sem resposta.

É recomendável ter uma rede de gerenciamento e uma rede de cluster.
A rede de gerenciamento está definida como "" " Permitir comunicação de rede de cluster e conectividade do cliente ",
e a rede de clusters é definida como " Permitir comunicação de rede de cluster somente ". Mas não há outra diferença ou classificação.

Como o cluster de failover realmente sabe o que dessas duas redes usar para " comunicação de cluster entre nós, como a pulsação do cluster e o redirecionamento de Volumes Compartilhados do Cluster (CSV) "?

    
por Daniel 12.07.2015 / 10:34

1 resposta

2

Você precisa verificar a ordem de ligação das redes se quiser ser específico sobre qual (is) interface (s) é a preferida para a comunicação do Cluster, já que ele usará o que for possível.

To view the networks, their metric values, and if they were automatically or manually configured, run the clustering PowerShell cmdlet:

PS > Get-ClusterNetwork | ft Name, Metric, AutoMetric

By default, all internal cluster network will have a metric value starting at 1000 and incrementing by 100. The first internal network which the cluster sees when it first comes online has a metric of 1000, the second has a metric of 1100, etc. We assume that a network is ‘internal’ if it does not have access to a default gateway. The initial list of internal networks is determined by the order which the network adapters were seen by the cluster when it was created.

By default all external cluster network will have a metric value starting at 10000 and incrementing by 100.

[...]

The cluster will then use the order of the metrics as the order of networks. The lowest network will be used for “Cluster & CSV Traffic”. The second lowest network will be used for “Live Migration Traffic”. Additional networks with a metric below 10000 will be used as backup networks if the “Cluster & CSV Traffic” or “Live Migration Traffic” networks fail. The lowest network with a value of at least 10000 will be used for “Public Traffic”, and any additional networks with a metric above 10000 will be used as backup networks for “Public Traffic”. Give the highest possible values to any networks which you do not want any cluster or public traffic to go through, such as for “Storage Traffic”, so that they are never used, or only used when no other networks at all are available, depending on your settings.

Basicamente, leia este artigo, ele informa tudo o que você precisa saber: link

    
por 12.07.2015 / 14:01