Freigeben über


Get-SCLoadBalancerVIPMember

Gets a member of a load balancer VIP.

Syntax

All (Default)

Get-SCLoadBalancerVIPMember
    [-VMMServer <ServerConnection>]
    [-IPAddress <String>]
    [<CommonParameters>]

ByLoadBalancerVIP

Get-SCLoadBalancerVIPMember
    -LoadBalancerVIP <LoadBalancerVIP>
    [-VMMServer <ServerConnection>]
    [-IPAddress <String>]
    [<CommonParameters>]

ByID

Get-SCLoadBalancerVIPMember
    -ID <Guid>
    [-VMMServer <ServerConnection>]
    [-IPAddress <String>]
    [<CommonParameters>]

Description

The Get-SCLoadBalancerVIPMember cmdlet gets a member of a load balancer virtual IP (VIP).

Examples

Example 1: Get a load balancer virtual IP member

PS C:\> $LoadBalancer = Get-SCLoadBalancer -LoadBalancerAddress "LB01.Contoso.com"
PS C:\> $VIP = Get-SCLoadBalancerVIP -LoadBalancer $LoadBalancer -IPAddress "192.168.0.1"
PS C:\> Get-SCLoadBalancerVIPMember -LoadBalancerVIP $VIP -IPAddress "192.168.0.1"

The first command gets the load balancer object with the address LB01.Contoso.com and stores the object in the $LoadBalancer variable.

The second command gets the load balancer VIP with the IP address of 192.168.0.1 for the load balancer stored in $LoadBalancer and stores the object in the $VIP variable.

The last command gets the load balancer member for the load balancer VIP stored in $VIP with the IP address of 192.168.0.1 and displays information about the member to the user.

Parameters

-ID

Specifies the numerical identifier as a globally unique identifier, or GUID, for a specific object.

Parameter properties

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

Parameter sets

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

-IPAddress

Specifies an IPv4 or IPv6 address.

Parameter properties

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

Parameter sets

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

-LoadBalancerVIP

Specifies a VIP in a load balancer.

Parameter properties

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

Parameter sets

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

-VMMServer

Specifies a Virtual Machine Manager (VMM) server object.

Parameter properties

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

Parameter sets

(All)
Position:Named
Mandatory:False
Value from pipeline:True
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.

Outputs

LoadBalancerVIPMember

This cmdlet returns a LoadBalancerVIPMember member.