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>]
Description
建立 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)
上述會在美國西部的 「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