Get-ClusterNetworkInterface

Get-ClusterNetworkInterface

Gets information about one or more network adapters in a failover cluster.

Sintaxis

Parameter Set: InputObject
Get-ClusterNetworkInterface [[-Name] <StringCollection> ] [-Cluster <String> ] [-InputObject <PSObject> ] [-Network <StringCollection> ] [-Node <StringCollection> ] [ <CommonParameters>]

Descripción detallada

The Get-ClusterNetworkInterface cmdlet gets information about one or more network adapters in a failover cluster. A failover cluster requires network connectivity among nodes and between clients and nodes.

Parámetros

-Cluster<String>

Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is . or it is omitted, then the cmdlet runs on the local cluster.

Alias

ninguno

¿Requerido?

false

¿Posición?

named

Valor predeterminado

ninguno

¿Aceptar canalización?

false

¿Aceptar caracteres comodín?

false

-InputObject<PSObject>

Specifies the cluster on which to enumerate the cluster network interfaces.

Alias

ninguno

¿Requerido?

false

¿Posición?

named

Valor predeterminado

ninguno

¿Aceptar canalización?

true (ByValue)

¿Aceptar caracteres comodín?

false

-Name<StringCollection>

Specifies the name of the cluster network interface to get.

Alias

ninguno

¿Requerido?

false

¿Posición?

1

Valor predeterminado

ninguno

¿Aceptar canalización?

false

¿Aceptar caracteres comodín?

false

-Network<StringCollection>

Specifies the name of the cluster network for which to enumerate the network interfaces.

Alias

ninguno

¿Requerido?

false

¿Posición?

named

Valor predeterminado

ninguno

¿Aceptar canalización?

false

¿Aceptar caracteres comodín?

false

-Node<StringCollection>

Specifies the name of the cluster node on which to enumerate the network interfaces.

Alias

ninguno

¿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.FailoverClusters.PowerShell.Cluster
  • Microsoft.FailoverClusters.PowerShell.ClusterNetwork

Salidas

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

  • Microsoft.FailoverClusters.PowerShell.ClusterNetworkInterface

Ejemplos

EXAMPLE 1

This example displays information about the physical network adapters used by the local cluster.

PS C:\> Get-ClusterNetworkInterface

EXAMPLE 2

This example displays information about the physical network adapters used by node1 in the local cluster. This cmdlet is equivalent to Get-ClusterNetworkInterface -Node node1.

PS C:\> Get-ClusterNode –Name node1 | Get-ClusterNetworkInterface

Temas relacionados

Get-ClusterNetwork