PowerShell Logo Small

Get-ClusterNetworkInterface



This is the built-in help made by Microsoft for the command 'Get-ClusterNetworkInterface', in PowerShell version 5 - as retrieved from Windows version 'Microsoft Windows Server 2012 R2 Standard' PowerShell help files on 2016-06-23.

For PowerShell version 3 and up, where you have Update-Help, this command was run just before creating the web pages from the help files.

SYNOPSIS

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

SYNTAX


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



Search powershellhelp.space

DESCRIPTION


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.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/?LinkId=321032
Get-ClusterNetwork

REMARKS

<

Examples


EXAMPLE 1

PS C:\>Get-ClusterNetworkInterface
Name Node Network State
---- ---- ------- -----
node1 - Local A ... node1 Cluster Network 1 Up
node2 - Local A ... node2 Cluster Network 1 Up
node1 - Local A ... node1 Cluster Network 2 Up
node2 - Local A ... node2 Cluster Network 2 Up



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




EXAMPLE 2

PS C:\>Get-ClusterNode –Name node1 | Get-ClusterNetworkInterface
Name Node Network State
---- ---- ------- -----
node1 - Local A ... node1 Cluster Network 1 Up
node1 - Local A ... node1 Cluster Network 2 Up



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.