Get-NlbClusterNodeDip
Gets the dedicated IP address that is queried by the caller.
Syntax
Get-NlbClusterNodeDip
[-HostName <String>]
[-InterfaceName <String>]
[-NodeName <String>]
[[-IP] <IPAddress>]
[<CommonParameters>]
Get-NlbClusterNodeDip
-InputObject <Node[]>
[[-IP] <IPAddress>]
[<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.
Type: | String |
Aliases: | Host, HN, H |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-InputObject
Specifies the node of the cluster for which this cmdlet gets the dedicated IP address.
Type: | Node[] |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-InterfaceName
Specifies the interface to which NLB is bound. This is the interface of the cluster against which this cmdlet is run.
Type: | String |
Aliases: | Interface, IN, I |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-IP
Specifies the IP address of the cluster node for which this cmdlet gets the dedicated IP address.
Type: | IPAddress |
Position: | 0 |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-NodeName
Specifies the name of the cluster node for which this cmdlet gets the dedicated IP address.
Type: | String |
Aliases: | NN |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Inputs
Microsoft.NetworkLoadBalancingClusters.PowerShell.Node
Outputs
Microsoft.NetworkLoadBalancingClusters.PowerShell.ClusterNodeDip