你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
New-WAPackStaticIPAddressPool
创建静态 IP 地址池。
注意
本文档中引用的 cmdlet 用于管理使用 Azure Service Manager (ASM) API 的旧式 Azure 资源。 创建新资源时,建议不要使用旧的 PowerShell 模块,因为计划将停用 ASM。 有关详细信息,请参阅 Azure Service Manager 停用。
Az PowerShell 模块是建议用于管理 PowerShell 的 Azure 资源管理器 (ARM) 资源的 PowerShell 模块。
语法
New-WAPackStaticIPAddressPool
-VMSubnet <VMSubnet>
-Name <String>
-IPAddressRangeStart <String>
-IPAddressRangeEnd <String>
[-Profile <AzureSMProfile>]
[<CommonParameters>]
说明
这些主题已弃用,将来将被删除。
本主题介绍 Microsoft Azure PowerShell 模块的 0.8.1 版本中的 cmdlet。
若要了解正在使用的模块版本,请从 Azure PowerShell 控制台键入 (Get-Module -Name Azure).Version
。
New-WAPackStaticIPAddressPool cmdlet 创建静态 IP 地址池。
示例
示例 1:创建静态 IP 地址池
PS C:\> $VNet = Get-WAPackVNet -Name "ContosoVNet01"
PS C:\> $VMSubnet = Get-WAPackVMSubnet -VNet $VNet -Name "ContosoVMSubnet01"
PS C:\> New-WAPackStaticIpAddressPool ?VMSubnet $VMSubnet -Name "ContosoStaticIpAddressPool01" -IPAddressRangeStart "192.168.1.0" -IPAddressRangeEnd "192.168.1.10"
第一个命令首先检索要向其添加静态 IP 地址池的虚拟机网络。 此虚拟机网络名为 ContosoVNet01。
第二个命令使用以前检索的虚拟机网络来获取名为 ContosoVMSubnet01 的虚拟机子网,我们要将静态 IP 地址池添加到其中。
最后一个命令创建名为 ContosoStaticIpAddressPool01 的新静态 IP 地址池,范围从 192.168.1.0 开始,范围结束 192.168.1.10。
参数
-IPAddressRangeEnd
指定静态 IP 地址池的 IP 地址范围结束。
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-IPAddressRangeStart
指定静态 IP 地址池的 IP 地址范围开始。
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-Name
指定静态 IP 地址池的名称。
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-Profile
指定此 cmdlet 从中读取的 Azure 配置文件。 如果未指定配置文件,此 cmdlet 将从本地默认配置文件中读取。
类型: | AzureSMProfile |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-VMSubnet
指定与静态 IP 地址池关联的 VMSubnet。
类型: | VMSubnet |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |