共用方式為


Add-AzTrafficManagerIpAddressRange

將位址範圍或子網新增至本機 流量管理員 端點物件。

語法

Add-AzTrafficManagerIpAddressRange
   -First <String>
   [-Last <String>]
   [-Scope <Int32>]
   -TrafficManagerEndpoint <TrafficManagerEndpoint>
   [-DefaultProfile <IAzureContextContainer>]
   [-WhatIf]
   [-Confirm]
   [<CommonParameters>]

Description

Add-AzTrafficManagerIpAddressRange Cmdlet 會將IP位址範圍新增至本機 Azure 流量管理員 端點物件。 您可以使用 New-AzTrafficManagerEndpoint 或 Get-AzTrafficManagerEndpoint Cmdlet 來取得端點。

此 Cmdlet 會在本機端點對象上運作。 使用 Set-AzTrafficManagerEndpoint Cmdlet 將變更認可至 流量管理員 的端點。

範例

範例 1:將 IP 位址範圍新增至端點

$TrafficManagerEndpoint = New-AzTrafficManagerEndpoint -EndpointStatus Enabled -Name "contoso" -ProfileName "ContosoProfile" -ResourceGroupName "ResourceGroup11" -Type AzureEndpoints -Priority 1 -TargetResourceId "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Web-CentralUS/providers/Microsoft.Web/sites/contoso-web-app" -Weight 10
Add-AzTrafficManagerIpAddressRange -TrafficManagerEndpoint $TrafficManagerEndpoint -First "1.2.3.4" -Last "5.6.7.8"
Add-AzTrafficManagerIpAddressRange -TrafficManagerEndpoint $TrafficManagerEndpoint -First "9.10.11.0" -Scope 24
Add-AzTrafficManagerIpAddressRange -TrafficManagerEndpoint $TrafficManagerEndpoint -First "12.13.14.0" -Last "12.13.14.31" -Scope 27
Add-AzTrafficManagerIpAddressRange -TrafficManagerEndpoint $TrafficManagerEndpoint -First "15.16.17.18"
Set-AzTrafficManagerEndpoint -TrafficManagerEndpoint $TrafficManagerEndpoint

第一個命令會使用 New-AzTrafficManagerEndpoint Cmdlet 來建立 Azure 流量管理員 端點。 命令會將本機端點儲存在 $TrafficManagerEndpoint 變數中。 第二個命令會將IP位址範圍1.2.3.4新增至5.6.7.8至儲存在$TrafficManagerEndpoint中的端點。 第三個命令會將IP位址範圍9.10.11.0新增至9.10.11.255至儲存在$TrafficManagerEndpoint中的端點。 第四個命令會確認範圍符合範圍的大小,然後將IP位址範圍12.13.14.0新增至儲存在$TrafficManagerEndpoint的端點12.13.14.31。 第五個命令會將IP位址範圍15.16.17.18新增至儲存在$TrafficManagerEndpoint的端點15.16.17.18。 最後一個命令會更新 流量管理員 中的端點,以符合 $TrafficManagerEndpoint 中的本機值。

參數

-Confirm

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

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

-DefaultProfile

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

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

-First

指定要新增之範圍中的第一個IP位址。

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

-Last

指定要新增之範圍中的最後一個IP位址。

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

-Scope

指定要新增的IP位址範圍範圍。

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

-TrafficManagerEndpoint

指定本機 TrafficManagerEndpoint 物件。 此 Cmdlet 會修改此本機物件。 若要取得 TrafficManagerEndpoint 物件,請使用 Get-AzTrafficManagerEndpoint 或 New-AzTrafficManagerEndpoint Cmdlet。

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

-WhatIf

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

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

輸入

TrafficManagerEndpoint

輸出

TrafficManagerEndpoint