Edit

Share via


Get-NlbClusterNodeDip

Gets the dedicated IP address that is queried by the caller.

Syntax

NonPipeline (Default)

Get-NlbClusterNodeDip
    [[-IP] <IPAddress>]
    [-HostName <String>]
    [-InterfaceName <String>]
    [-NodeName <String>]
    [<CommonParameters>]

Pipeline

Get-NlbClusterNodeDip
    [[-IP] <IPAddress>]
    -InputObject <Node[]>
    [<CommonParameters>]

Description

The Get-NlbClusterNodeDIP cmdlet gets the dedicated IP address that is requested by the caller. This IP address is the unique IP address of the local host that is used for dedicated traffic to the host or network traffic that is not associated with the cluster. Network Load Balancing (NLB) never load balances traffic for the dedicated IP address. Instead, NLB load balances incoming traffic from all IP addresses other than the dedicated IP address.

Examples

Example 1: List all dedicated IP addresses on the local cluster node

PS C:\>Get-NlbClusterNodeDip
Node                       IPAddress                  SubnetMask
----                       ---------                  ----------
Node01                      3.53.4.1                   255.0.0.0
Node01                      fe80::a9cb:eafb:e841:d8cf
Node02                      3.53.4.2                   255.0.0.0

This command lists all the dedicated IP addresses on the local cluster node.

Example 2: List all the dedicated IP addresses on the specified cluster node

PS C:\>Get-NlbClusterNodeDip -NodeName "Node02"
Node                       IPAddress                  SubnetMask
----                       ---------                  ----------
Node02                      3.53.4.2                   255.0.0.0

This command lists all the dedicated IP addresses on cluster node Node02.

Example 3: List the dedicated IP address that is specified

PS C:\>Get-NlbClusterNodeDip -IP 3.53.4.2
Node                       IPAddress                  SubnetMask
----                       ---------                  ----------
node2                      3.53.4.2                   255.0.0.0

This command lists the dedicated IP address specified.

Parameters

-HostName

Specifies the name of the cluster host against which this cmdlet is run. If this parameter is omitted or a value of . is entered, then the local cluster is assumed.

Parameter properties

Type:String
Default value:None
Supports wildcards:False
DontShow:False
Aliases:Host, HN, H

Parameter sets

NonPipeline
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-InputObject

Specifies the node of the cluster for which this cmdlet gets the dedicated IP address.

Parameter properties

Type:

Node[]

Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

Pipeline
Position:Named
Mandatory:True
Value from pipeline:True
Value from pipeline by property name:True
Value from remaining arguments:False

-InterfaceName

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

Parameter properties

Type:String
Default value:None
Supports wildcards:False
DontShow:False
Aliases:Interface, IN, I

Parameter sets

NonPipeline
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-IP

Specifies the IP address of the cluster node for which this cmdlet gets the dedicated IP address.

Parameter properties

Type:IPAddress
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

(All)
Position:0
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-NodeName

Specifies the name of the cluster node for which this cmdlet gets the dedicated IP address.

Parameter properties

Type:String
Default value:None
Supports wildcards:False
DontShow:False
Aliases:NN

Parameter sets

NonPipeline
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

CommonParameters

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

Inputs

Microsoft.NetworkLoadBalancingClusters.PowerShell.Node

Outputs

Microsoft.NetworkLoadBalancingClusters.PowerShell.ClusterNodeDip