你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
New-AzVpnSiteLink
创建 Azure VpnSiteLink 对象。
语法
New-AzVpnSiteLink
-Name <String>
-IPAddress <String>
[-LinkProviderName <String>]
[-LinkSpeedInMbps <UInt32>]
[-BGPAsn <UInt32>]
[-BGPPeeringAddress <String>]
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
New-AzVpnSiteLink
-Name <String>
-Fqdn <String>
[-LinkProviderName <String>]
[-LinkSpeedInMbps <UInt32>]
[-BGPAsn <UInt32>]
[-BGPPeeringAddress <String>]
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
说明
创建 Azure VpnSiteLink 对象。
示例
示例 1
New-AzResourceGroup -Location "West US" -Name "testRG"
$virtualWan = New-AzVirtualWan -ResourceGroupName testRG -Name myVirtualWAN -Location "West US"
$vpnSiteAddressSpaces = New-Object string[] 2
$vpnSiteAddressSpaces[0] = "192.168.2.0/24"
$vpnSiteAddressSpaces[1] = "192.168.3.0/24"
$vpnSiteLink = New-AzVpnSiteLink -Name "testVpnSiteLink1" -IpAddress "15.25.35.45" -LinkProviderName "SomeTelecomProvider" -LinkSpeedInMbps "10"
$vpnSite = New-AzVpnSite -ResourceGroupName "testRG" -Name "testVpnSite" -Location "West US" -VirtualWan $virtualWan -AddressSpace $vpnSiteAddressSpaces -DeviceModel "SomeDevice" -DeviceVendor "SomeDeviceVendor" -VpnSiteLink @($vpnSiteLink)
上述内容将在 Azure 中的“testRG”资源组中创建资源组、虚拟 WAN和位于美国西部的 1 个 VpnSiteLinks 的 VpnSite。
示例 2
创建 Azure VpnSiteLink 对象。 (自动生成)
New-AzVpnSiteLink -BGPAsn <UInt32> -BGPPeeringAddress <String> -IPAddress '15.25.35.45' -LinkProviderName 'SomeTelecomProvider' -LinkSpeedInMbps '10' -Name 'testVpnSiteLink1'
参数
-BGPAsn
此 VpnSiteLink 的 BGP ASN。
类型: | UInt32 |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-BGPPeeringAddress
此 VpnSiteLink 的 BGP 对等互连地址。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-DefaultProfile
用于与 Azure 通信的凭据、帐户、租户和订阅。
类型: | IAzureContextContainer |
别名: | AzContext, AzureRmContext, AzureCredential |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Fqdn
下一跃点 Fqdn。
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-IPAddress
下一跃点 IpAddress。
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-LinkProviderName
链接提供程序名称。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-LinkSpeedInMbps
链接速度(以 Mbps 为单位)。
类型: | UInt32 |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Name
名称
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
输入
None