共用方式為


New-WAPackStaticIPAddressPool

建立靜態IP位址池。

注意

本文件中參考的 Cmdlet 用於管理使用 Azure Service Manager(ASM) API 的舊版 Azure 資源。 建立新的資源時,不建議使用此舊版 PowerShell 模組,因為 ASM 已排定淘汰。 如需詳細資訊,請參閱 Azure Service Manager 淘汰

Az PowerShell 模組是使用 PowerShell 管理 Azure Resource Manager (ARM) 資源的建議 PowerShell 模組。

語法

New-WAPackStaticIPAddressPool
   -VMSubnet <VMSubnet>
   -Name <String>
   -IPAddressRangeStart <String>
   -IPAddressRangeEnd <String>
   [-Profile <AzureSMProfile>]
   [<CommonParameters>]

Description

這些主題已被取代,未來將會移除。 本主題描述 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