New-AzStaticRoute
建立 StaticRoute 對象,然後可以新增至 RoutingConfiguration 物件。
語法
New-AzStaticRoute
-Name <String>
-AddressPrefix <String[]>
-NextHopIpAddress <String>
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Description
建立 StaticRoute 物件。
範例
範例 1
New-AzStaticRoute -Name "route1" -AddressPrefix @("10.20.0.0/16", "10.30.0.0/16") -NextHopIpAddress "10.90.0.5"
Name AddressPrefixes NextHopIpAddress
---- --------------- ----------------
route1 {10.20.0.0/16, 10.30.0.0/16} 10.90.0.5
上述命令會建立 StaticRoute 對象,然後可以新增至 RoutingConfiguration 物件。
參數
-AddressPrefix
地址前綴的清單。
類型: | String[] |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | False |
接受萬用字元: | False |
-DefaultProfile
用於與 Azure 通訊的認證、帳戶、租用戶和訂用帳戶。
類型: | IAzureContextContainer |
別名: | AzContext, AzureRmContext, AzureCredential |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-Name
路由名稱。
類型: | String |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | False |
接受萬用字元: | False |
-NextHopIpAddress
下一個躍點IP位址。
類型: | String |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | False |
接受萬用字元: | False |