Get-NlbClusterNodeNetworkInterface

Get-NlbClusterNodeNetworkInterface

Retrieves information about interfaces, including information about the NLB driver, on a host.

Syntax

Get-NlbClusterNodeNetworkInterface [[-HostName] <string>] [[-InterfaceName] <string>] [<CommonParameters>]


Get-NlbClusterNodeNetworkInterface -InputObject <Node[]> [[-InterfaceName] <string>] [<CommonParameters>]

Detailed Description

The Get-NlbClusterNodeNetworkInterface cmdlet retrieves information about interfaces, including information about the NLB driver, on a host.

Parameters

-HostName <string>

Specifies the name of the cluster host against which this cmdlet is run. If this parameter is omitted or if "-HostName ." is used, the local cluster is assumed. [Alias: hn]

Attributes

Name Value

Required?

false

Accept wildcard characters?

false

Accept Pipeline Input?

false

Position?

1

-InputObject <Node[]>

Specifies the cluster node for which network interface information is retrieved.

Attributes

Name Value

Required?

true

Accept wildcard characters?

false

Accept Pipeline Input?

true (ByValue, ByPropertyName)

Position?

named

-InterfaceName <string>

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

Attributes

Name Value

Required?

false

Accept wildcard characters?

false

Accept Pipeline Input?

false

Position?

2

-CommonParameter

This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, and OutVariable. For more information, see about_CommonParameters.

Input and Return Types

The input type is the type of the objects that you can pipe to the cmdlet. The return type is the type of the objects that the cmdlet emits.

Examples

EXAMPLE 1

C:\PS>

Get-NlbClusterNodeNetworkInterface



InterfaceName       : vlan-3

NlbBound            : True

Cluster             : cluster1

DhcpEnabled         : False

InterfaceIP         : 3.53.4.1

InterfaceSubnetMask : 255.0.0.0

ClusterPrimaryIP    : 3.53.100.100

ClusterSubnetMask   : 255.0.0.0



InterfaceName       : vlan-2

NlbBound            : False

Cluster             :

DhcpEnabled         : False

InterfaceIP         : 2.53.4.1

InterfaceSubnetMask : 255.0.0.0

ClusterPrimaryIP    :

ClusterSubnetMask   :                        

Description

-----------

This command gets information about all network interfaces on the local node. The information returned includes whether NLB is bound to that interface and whether that interface is DHCP-enabled.

EXAMPLE 2

C:\PS>

Get-NlbClusterNodeNetworkInterface -HostName node1



InterfaceName       : vlan-4

NlbBound            : True

Cluster             : cluster1

DhcpEnabled         : False

InterfaceIP         : 4.53.4.1

InterfaceSubnetMask : 255.0.0.0

ClusterPrimaryIP    : 4.53.100.100

ClusterSubnetMask   : 255.0.0.0                        

Description

-----------

This command gets information about all network interfaces on node node1. The information returned includes whether NLB is bound to that interface and whether that interface is DHCP-enabled.

See Also

Reference

New-NlbCluster