New-AzLoadBalancerFrontendIpConfig
建立負載平衡器的前端 IP 組態。
語法
New-AzLoadBalancerFrontendIpConfig
-Name <String>
[-PrivateIpAddress <String>]
[-PrivateIpAddressVersion <String>]
[-Zone <String[]>]
-Subnet <PSSubnet>
[-DefaultProfile <IAzureContextContainer>]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
New-AzLoadBalancerFrontendIpConfig
-Name <String>
[-PrivateIpAddress <String>]
[-PrivateIpAddressVersion <String>]
[-Zone <String[]>]
-SubnetId <String>
[-DefaultProfile <IAzureContextContainer>]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
New-AzLoadBalancerFrontendIpConfig
-Name <String>
[-Zone <String[]>]
-PublicIpAddressId <String>
[-DefaultProfile <IAzureContextContainer>]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
New-AzLoadBalancerFrontendIpConfig
-Name <String>
[-Zone <String[]>]
-PublicIpAddress <PSPublicIpAddress>
[-DefaultProfile <IAzureContextContainer>]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
New-AzLoadBalancerFrontendIpConfig
-Name <String>
[-Zone <String[]>]
-PublicIpAddressPrefixId <String>
[-DefaultProfile <IAzureContextContainer>]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
New-AzLoadBalancerFrontendIpConfig
-Name <String>
[-Zone <String[]>]
-PublicIpAddressPrefix <PSPublicIpPrefix>
[-DefaultProfile <IAzureContextContainer>]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
Description
New-AzLoadBalancerFrontendIpConfig Cmdlet 會為 Azure 負載平衡器建立前端 IP 組態。
範例
範例 1:建立負載平衡器的前端 IP 組態
$publicip = New-AzPublicIpAddress -ResourceGroupName "MyResourceGroup" -Name "MyPublicIP" -Location "West US" -AllocationMethod "Dynamic"
New-AzLoadBalancerFrontendIpConfig -Name "FrontendIpConfig01" -PublicIpAddress $publicip
第一個命令會在名為 MyResourceGroup 的資源群組中建立名為 MyPublicIP 的動態公用 IP 位址,然後將它儲存在$publicip變數中。 第二個命令會使用 $publicip 中的公用IP位址,建立名為FrontendIpConfig01的前端IP組態。
範例 2:使用 ip 前置詞建立負載平衡器的前端 IP 組態
$publicipprefix = New-AzPublicIpPrefix -ResourceGroupName "MyResourceGroup" -name "MyPublicIPPrefix" -location "West US" -Sku Standard -PrefixLength 28
$frontend = New-AzLoadBalancerFrontendIpConfig -Name "FrontendIpConfig01" -PublicIpAddressPrefix $publicipprefix
第一個命令會在名為 MyResourceGroup 的資源群組中建立名為 MyPublicIP 的公用 IP 前置詞,然後將它儲存在$publicipprefix變數中。 第二個命令會使用 $publicipprefix 中的公用IP前置詞,建立名為FrontendIpConfig01的前端IP組態。
參數
-Confirm
執行 Cmdlet 之前先提示您確認。
類型: | SwitchParameter |
別名: | cf |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-DefaultProfile
用於與 azure 通訊的認證、帳戶、租用戶和訂用帳戶。
類型: | IAzureContextContainer |
別名: | AzContext, AzureRmContext, AzureCredential |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-Name
指定此 Cmdlet 所建立的前端 IP 組態。
類型: | String |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | False |
接受萬用字元: | False |
-PrivateIpAddress
指定負載平衡器的私人IP位址。 只有在您也指定 Subnet 參數時,才指定此參數。
類型: | String |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | True |
接受萬用字元: | False |
-PrivateIpAddressVersion
IP 組態的私人IP位址版本。
類型: | String |
接受的值: | IPv4, IPv6 |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | True |
接受萬用字元: | False |
-PublicIpAddress
指定要 與前端IP組態建立關聯的PublicIpAddress 物件。
類型: | PSPublicIpAddress |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | True |
接受萬用字元: | False |
-PublicIpAddressId
指定要 與前端IP組態產生關聯的PublicIpAddress 物件的標識碼。
類型: | String |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | True |
接受萬用字元: | False |
-PublicIpAddressPrefix
指定要 與前端IP組態建立關聯的PublicIpAddressPrefix 物件。
類型: | PSPublicIpPrefix |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | True |
接受萬用字元: | False |
-PublicIpAddressPrefixId
指定要 與前端IP組態產生關聯的PublicIpAddressPrefix 對象的標識碼。
類型: | String |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | True |
接受萬用字元: | False |
-Subnet
指定要 在其中建立前端IP組態的Subnet 物件。
類型: | 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必須來自。
類型: | String[] |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | True |
接受萬用字元: | False |
輸入
String[]