Get-SCLoadBalancerVIP

Gets a load balancer VIP object.

Description

The Get-SCLoadBalancerVIP cmdlet gets one or more load balancer virtual IP (VIP) objects.

For more information about Get-SCLoadBalancerVIP, type: "Get-Help Get-SCLoadBalancerVIP -online".

Parameters

ID

Required? true
Accept Pipeline Input? false
Position? named
Specifies the numerical identifier (as a globally unique identifier, or GUID) for a specific object.

VMMServer

Required? false
Accept Pipeline Input? true (ByValue)
Position? named
Specifies a VMM server object.

Name

Required? false
Accept Pipeline Input? false
Position? 0
Specifies the name of a VMM object.

IPAddress

Required? false
Accept Pipeline Input? false
Position? named
Specifies an IPv4 or IPv6 address.  

LoadBalancer

Required? false
Accept Pipeline Input? false
Position? named
Specifies a load balancer object.

VMMServer

Required? false
Accept Pipeline Input? true (ByValue)
Position? named
Specifies a VMM server object.

Examples

1: Get a load balancer virtual IP (VIP) for a specific load balancer.
PS C:\> $LoadBalancer = Get-SCLoadBalancer -LoadBalancerAddress "LB01.Contoso.com"
PS C:\> Get-SCLoadBalancerVIP -LoadBalancer $LoadBalancer -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 for the load balancer stored in $LoadBalancer with an IP address of 192.168.0.1.

See Also