Hi,
I use SCVMM LB Provider deploy network. I want to create 2 VIP use the same virtual IP but use the different port.
for example: VIP address 1.1.1.123 use port 80 for HTTP and port 443 for HTTPS
PS C:\Windows\system32> New-SCLoadBalancerVIP -Name "vip11" -LoadBalancer $LB -IPAddress "1.1.1.123" -LoadBalancerVIPTemplate $VIPTemplate1 -LoadBalancerProtocol $Protocol1 -LoadBalancerHealthMonitor $HM1
New-SCLoadBalancerVIP : A virtual IP (VIP) address with the specified name (vip11) or
address (1.1.1.123) already exists on the load balancer (xxx). (Error ID: 13691)
Specify a different name or IP address and try again.
To restart the job, run the following command:
PS> Restart-Job -Job (Get-VMMServer localhost | Get-Job | where { $_.ID -eq
"{b41a77eb-ae0b-490a-8948-662a529b1d8c}"})
At line:1 char:1
+ New-SCLoadBalancerVIP -Name "vip11" -LoadBalancer $LB -IPAddress "1.1.1.123" -Lo ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ReadError: (:) [New-SCLoadBalancerVIP], CarmineException
+ FullyQualifiedErrorId : 13691,Microsoft.SystemCenter.VirtualMachineManager.Cmdlets.Ne
wSCLoadBalancerVIPCmdlet
PS C:\Windows\system32>
any suggestions ?
Thank you in advance !