你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
New-AzApplicationGatewayBackendAddressPool
为应用程序网关创建后端地址池。
语法
New-AzApplicationGatewayBackendAddressPool
-Name <String>
[-BackendIPAddresses <String[]>]
[-BackendFqdns <String[]>]
[-DefaultProfile <IAzureContextContainer>]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
说明
New-AzApplicationGatewayBackendAddressPool cmdlet 为 Azure 应用程序网关创建后端地址池。 可以将后端地址指定为 IP 地址、完全限定的域名(FQDN)或 IP 配置 ID。
示例
示例 1:使用后端服务器的 FQDN 创建后端地址池
$Pool = New-AzApplicationGatewayBackendAddressPool -Name "Pool01" -BackendFqdns "contoso1.com", "contoso2.com"
此命令使用后端服务器的 FQDN 创建名为 Pool01 的后端地址池,并将其存储在$Pool变量中。
示例 2:使用后端服务器的 IP 地址创建后端地址池
$Pool = New-AzApplicationGatewayBackendAddressPool -Name "Pool02" -BackendFqdns "10.10.10.10", "10.10.10.11"
此命令使用后端服务器的 IP 地址创建名为 Pool02 的后端地址池,并将其存储在$Pool变量中。
参数
-BackendFqdns
指定此 cmdlet 与后端服务器池关联的后端 FQDN 列表。
类型: | String[] |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-BackendIPAddresses
指定此 cmdlet 与后端服务器池关联的后端 IP 地址列表。
类型: | String[] |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Confirm
提示你在运行 cmdlet 之前进行确认。
类型: | SwitchParameter |
别名: | cf |
Position: | Named |
默认值: | False |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-DefaultProfile
用于与 Azure 通信的凭据、帐户、租户和订阅。
类型: | IAzureContextContainer |
别名: | AzContext, AzureRmContext, AzureCredential |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Name
指定此 cmdlet 创建的后端服务器池的名称。
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-WhatIf
显示运行该 cmdlet 时会发生什么情况。 cmdlet 未运行。
类型: | SwitchParameter |
别名: | wi |
Position: | Named |
默认值: | False |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
输入
None
输出
PSApplicationGatewayBackendAddressPool