New-SCLoadBalancerRoleConfiguration
建立負載平衡器角色設定。
Syntax
New-SCLoadBalancerRoleConfiguration
[-VMMServer <ServerConnection>]
-LBManagerIPAddress <String>
[-NatIPExemptions <System.Collections.Generic.List`1[System.String]>]
[-VipPools <System.Collections.Generic.List`1[Microsoft.SystemCenter.VirtualMachineManager.StaticIPAddressPool]>]
[<CommonParameters>]
Description
New-SCLoadBalancerRoleConfiguration Cmdlet 會在 Virtual Machine Manager (VMM) 中建立負載平衡器角色設定。
範例
範例 1:建立負載平衡器角色設定
PS C:\> $IpPool1 = Get-SCStaticIPAddressPool -Name "Private VIP Logical Network"
PS C:\> $IpPool2 = Get-SCStaticIPAddressPool -Name "Public VIP Logical Network"
PS C:\> $NetworkService = Get-SCNetworkService -Name "NC"
PS C:\> $FabricRole = Get-SCFabricRole -Type LoadBalancer -NetworkService $NetworkService
PS C:\> $NatIPExemptions = @()
PS C:\> $FabricRoleConfiguration = New-SCLoadBalancerRoleConfiguration -LBManagerIPAddress "10.20.20.254" -NatIPExemptions $NatIPExemptions -VipPools @($IpPool1, $IpPool2)
前兩個命令會使用 Get-SCStaticIPAddressPool Cmdlet ,從私人和公用 VIP 邏輯網路取得 IP 集區。
第三個命令會使用 Get-SCNetworkService Cmdlet 取得名為 NC 的網路服務。
第四個命令會使用 Get-SCFabricRole Cmdlet,從網路服務取得負載平衡器網狀架構角色。
第五個命令會建立名為 $NatIPExemptions 的陣列變數。
最後一個命令會建立具有 SLBM VIP 位址 10.20.20.254 和 VIP 集區的負載平衡器組態物件。
參數
-LBManagerIPAddress
指定負載平衡器管理員虛擬 IP 位址。
Type: | String |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-NatIPExemptions
指定 NatIPExempltions 子網清單。
Type: | System.Collections.Generic.List`1[System.String] |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-VipPools
指定發佈至負載平衡器管理員的 VIP 集區清單。 VIP 集區用於 NAT 和負載平衡。
Type: | System.Collections.Generic.List`1[Microsoft.SystemCenter.VirtualMachineManager.StaticIPAddressPool] |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-VMMServer
指定 VMM 伺服器物件。
Type: | ServerConnection |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |