Get-NlbClusterPortRule
Retrieves the port rule objects that are queried by the caller.
Get-NlbClusterPortRule [-HostName <string>] [-InterfaceName <string>] [-NodeName <string>] [[-Port] <System.Nullable`1[[System.UInt32>] [-Ip <IPAddress>] [<CommonParameters>]
Get-NlbClusterPortRule -InputObject <PSObject[]> [[-Port] <System.Nullable`1[[System.UInt32>] [-Ip <IPAddress>] [<CommonParameters>]
The Get-NlbClusterPortRule cmdlet retrieves the port rules in the NLB cluster. If no port number is specified, all port rules configured for the cluster are listed.
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? |
named |
Specifies the cluster or cluster node for which port rules are enumerated.
Attributes
Name | Value |
---|---|
Required? |
true |
Accept wildcard characters? |
false |
Accept Pipeline Input? |
true (ByValue, ByPropertyName) |
Position? |
named |
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? |
named |
Specifies the IP address for the cluster port rule that will be retrieved.
Attributes
Name | Value |
---|---|
Required? |
false |
Accept wildcard characters? |
false |
Accept Pipeline Input? |
false |
Position? |
named |
Specifies the name of the cluster node for which port rules are enumerated. [Alias: nn]
Attributes
Name | Value |
---|---|
Required? |
false |
Accept wildcard characters? |
false |
Accept Pipeline Input? |
false |
Position? |
named |
Specifies a port number within the port rule to retrieve. The valid range is between 0 and 65535.
Attributes
Name | Value |
---|---|
Required? |
false |
Accept wildcard characters? |
false |
Accept Pipeline Input? |
false |
Position? |
1 |
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, and OutVariable. For more information, see about_CommonParameters.
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.
C:\PS>
Get-NlbClusterPortRule
IPAddress State Start End Protocol Mode Affinity Timeout
--------- ----- ----- --- -------- ---- -------- -------
All Enabled 0 65535 Both Multiple Single 0
Description
-----------
This command lists all the port rules on the local cluster.
C:\PS>
Get-NlbClusterPortRule 80
IPAddress State Start End Protocol Mode Affinity Timeout
--------- ----- ----- --- -------- ---- -------- -------
All Enabled 0 65535 Both Multiple Single 0
Description
-----------
This command gets the port rule that includes port 80.
C:\PS>
Get-NlbClusterNode | Get-NlbClusterPortRule | fl *
Cluster : mycluster
NodeName : node1
VirtualIPAddress : 255.255.255.255
StartPort : 0
EndPort : 65535
Affinity :
FilteringMode : Single
Protocol : Both
EqualLoad : False
LoadWeight :
PortState : Enabled
Priority : 1
Timeout :
Cluster : mycluster
NodeName : node2
VirtualIPAddress : 255.255.255.255
StartPort : 0
EndPort : 65535
Affinity :
FilteringMode : Single
Protocol : Both
EqualLoad : False
LoadWeight :
PortState : Enabled
Priority : 2
Timeout :
Description
-----------
This command gets the port rule from all cluster nodes. This is especially useful if there are port rules that have Single mode.
Add-NlbClusterPortRule
Disable-NlbClusterPortRule
Enable-NlbClusterPortRule
Remove-NlbClusterPortRule
Set-NlbClusterPortRule