共用方式為


Add-AzureRmLoadBalancerFrontendIpConfig

將前端IP組態新增至負載平衡器。

警告

自 2024 年 2 月 29 日起,AzureRM PowerShell 模組已正式淘汰。 建議使用者從 AzureRM 遷移至 Az PowerShell 模組,以確保持續支援和更新。

雖然 AzureRM 模組可能仍可運作,但不再維護或支援它,但會根據用戶的判斷權和風險放置任何繼續使用。 如需轉換至 Az 模組的指引,請參閱我們的 移轉資源

語法

Add-AzureRmLoadBalancerFrontendIpConfig
   -LoadBalancer <PSLoadBalancer>
   -Name <String>
   [-PrivateIpAddress <String>]
   [-Zone <System.Collections.Generic.List`1[System.String]>]
   -Subnet <PSSubnet>
   [-DefaultProfile <IAzureContextContainer>]
   [-WhatIf]
   [-Confirm]
   [<CommonParameters>]
Add-AzureRmLoadBalancerFrontendIpConfig
   -LoadBalancer <PSLoadBalancer>
   -Name <String>
   [-PrivateIpAddress <String>]
   [-Zone <System.Collections.Generic.List`1[System.String]>]
   -SubnetId <String>
   [-DefaultProfile <IAzureContextContainer>]
   [-WhatIf]
   [-Confirm]
   [<CommonParameters>]
Add-AzureRmLoadBalancerFrontendIpConfig
   -LoadBalancer <PSLoadBalancer>
   -Name <String>
   [-Zone <System.Collections.Generic.List`1[System.String]>]
   -PublicIpAddressId <String>
   [-DefaultProfile <IAzureContextContainer>]
   [-WhatIf]
   [-Confirm]
   [<CommonParameters>]
Add-AzureRmLoadBalancerFrontendIpConfig
   -LoadBalancer <PSLoadBalancer>
   -Name <String>
   [-Zone <System.Collections.Generic.List`1[System.String]>]
   -PublicIpAddress <PSPublicIpAddress>
   [-DefaultProfile <IAzureContextContainer>]
   [-WhatIf]
   [-Confirm]
   [<CommonParameters>]

Description

Add-AzureRmLoadBalancerFrontendIpConifg Cmdlet 會將前端 IP 組態新增至 Azure 負載平衡器。

範例

範例 1 新增具有動態 IP 位址的前端 IP 組態

PS C:\>$Subnet = Get-AzureRmVirtualNetwork -Name "MyVnet" -ResourceGroupName "MyRg" | Get-AzureRmVirtualNetworkSubnetConfig -Name "MySubnet"
PS C:\> Get-AzureRmLoadBalancer -Name "MyLB" -ResourceGroupName "NrpTest" | Add-AzureRmLoadBalancerFrontendIpConfig -Name "FrontendName" -Subnet $Subnet | Set-AzureRmLoadBalancer

第一個命令會取得名為 MyVnet 的 Azure 虛擬網路,並使用管線將結果傳遞至 Get-AzureRmVirtualNetworkSubnetConfig Cmdlet,以取得名為 MySubnet 的子網。 命令接著會將結果儲存在名為 $Subnet的變數中。 第二個命令會取得名為 MyLB 的負載平衡器,並將結果傳遞至 Add-AzureRmLoadBalancerFrontendIpConfig Cmdlet,該 Cmdlet 會將前端 IP 組態新增至負載平衡器,其中具有儲存在名為 $MySubnet 之變數中子網的動態私人 IP 位址。

範例 2 新增具有靜態 IP 位址的前端 IP 組態

PS C:\>$Subnet = Get-AzureRmVirtualNetwork -Name "MyVnet" -ResourceGroupName "RG001" | Get-AzureRmVirtualNetworkSubnetConfig -Name "MySubnet"
PS C:\> Get-AzureRmLoadBalancer -Name "MyLB" -ResourceGroupName "NrpTest" | Add-AzureRmLoadBalancerFrontendIpConfig -Name "FrontendName" -Subnet $Subnet -PrivateIpAddress "10.0.1.6" | Set-AzureRmLoadBalancer

第一個命令會取得名為 MyVnet 的 Azure 虛擬網路,並使用管線將結果傳遞至 Get-AzureRmVirtualNetworkSubnetConfig Cmdlet,以取得名為 MySubnet 的子網。 命令接著會將結果儲存在名為 $Subnet的變數中。 第二個命令會取得名為 MyLB 的負載平衡器,並將結果傳遞至 Add-AzureRmLoadBalancerFrontendIpConfig Cmdlet,該 Cmdlet 會將前端 IP 組態新增至負載平衡器,其中包含儲存在名為 $Subnet 之變數中子網的靜態私人 IP 位址。

範例 3 新增具有公用 IP 位址的前端 IP 組態

PS C:\>$PublicIp = Get-AzureRmPublicIpAddress -ResourceGroupName "myRG" -Name "MyPub"
PS C:\> Get-AzureRmLoadBalancer -Name "MyLB" -ResourceGroupName "NrpTest" | Add-AzureRmLoadBalancerFrontendIpConfig -Name "FrontendName" -PublicIpAddress $PublicIp | Set-AzureRmLoadBalancer

第一個命令會取得名為 MyPub 的 Azure 公用 IP 位址,並將結果儲存在名為 $PublicIp 的變數中。 第二個命令會取得名為 MyLB 的負載平衡器,並將結果傳遞至 Add-AzureRmLoadBalancerFrontendIpConfig Cmdlet,該 Cmdlet 會將前端 IP 組態新增至負載平衡器,並將公用 IP 位址儲存在名為 $PublicIp 的變數中。

參數

-Confirm

執行 Cmdlet 之前先提示您確認。

類型:SwitchParameter
別名:cf
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-DefaultProfile

用於與 azure 通訊的認證、帳戶、租用戶和訂用帳戶。

類型:IAzureContextContainer
別名:AzureRmContext, AzureCredential
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-LoadBalancer

指定 LoadBalancer 物件。 此 Cmdlet 會將前端 IP 組態新增至此參數所指定的負載平衡器。

類型:PSLoadBalancer
Position:Named
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

-Name

指定要新增的前端IP組態名稱。

類型:String
Position:Named
預設值:None
必要:True
接受管線輸入:False
接受萬用字元:False

-PrivateIpAddress

指定要與前端IP組態建立關聯的私人IP位址。

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:True
接受萬用字元:False

-PublicIpAddress

指定要與前端IP組態建立關聯的公用IP位址。

類型:PSPublicIpAddress
Position:Named
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

-PublicIpAddressId

指定要在其中新增前端IP組態之公用IP位址的標識碼。

類型:String
Position:Named
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

-Subnet

指定要在其中新增前端IP組態的子網物件。

類型:PSSubnet
Position:Named
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

-SubnetId

指定要在其中新增前端IP組態之子網的標識碼。

類型:String
Position:Named
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

-WhatIf

顯示執行 Cmdlet 後會發生的情況。 未執行 Cmdlet。

類型:SwitchParameter
別名:wi
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-Zone

可用性區域清單,表示為資源配置的IP必須來自。

類型:List<T>[String]
Position:Named
預設值:None
必要:False
接受管線輸入:True
接受萬用字元:False

輸入

PSLoadBalancer

參數:LoadBalancer (ByValue)

System.Collections.Generic.List\`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]

輸出

PSLoadBalancer