你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
New-AzVirtualHubRoute
创建 Azure 虚拟中心路由对象。
语法
New-AzVirtualHubRoute
-AddressPrefix <String[]>
-NextHopIpAddress <String>
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
说明
创建 Azure 虚拟中心路由对象。
示例
示例 1
$route1 = New-AzVirtualHubRoute -AddressPrefix @("10.0.0.0/16", "11.0.0.0/16") -NextHopIpAddress "12.0.0.5"
AddressPrefixes NextHopIpAddress
--------------- ----------------
{10.0.0.0/16, 11.0.0.0/16} 12.0.0.5
上述操作将创建一个虚拟中心路由对象,该对象可以包含在虚拟中心路由表中。
虚拟中心路由是一个内存中对象,可用于创建 VirtualHubRouteTable 对象。
参数
-AddressPrefix
地址前缀列表。
类型: | String[] |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-DefaultProfile
用于与 Azure 通信的凭据、帐户、租户和订阅。
类型: | IAzureContextContainer |
别名: | AzContext, AzureRmContext, AzureCredential |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-NextHopIpAddress
下一跃点 IpAddress。
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
输入
None