共用方式為


New-AzVpnSiteLinkConnection

建立 Azure VpnSiteLinkConnection 物件。

語法

New-AzVpnSiteLinkConnection
   -Name <String>
   -VpnSiteLink <PSVpnSiteLink>
   [-SharedKey <SecureString>]
   [-ConnectionBandwidth <UInt32>]
   [-RoutingWeight <UInt32>]
   [-IpSecPolicy <PSIpsecPolicy>]
   [-VpnConnectionProtocolType <String>]
   [-EnableBgp]
   [-UseLocalAzureIpAddress]
   [-UsePolicyBasedTrafficSelectors]
   [-IngressNatRule <PSResourceId[]>]
   [-EgressNatRule <PSResourceId[]>]
   [-VpnGatewayCustomBgpAddress <PSGatewayCustomBgpIpConfiguration[]>]
   [-VpnLinkConnectionMode <String>]
   [-DefaultProfile <IAzureContextContainer>]
   [<CommonParameters>]

Description

建立 Azure VpnSiteLinkConnection 物件。

範例

範例 1

New-AzResourceGroup -Location "West US" -Name "testRG"
$virtualWan = New-AzVirtualWan -ResourceGroupName testRG -Name myVirtualWAN -Location "West US"
$virtualHub = New-AzVirtualHub -VirtualWan $virtualWan -ResourceGroupName "testRG" -Name "westushub" -AddressPrefix "10.0.0.1/24"
New-AzVpnGateway -ResourceGroupName "testRG" -Name "testvpngw" -VirtualHubId $virtualHub.Id -VpnGatewayScaleUnit 2
$vpnGateway = Get-AzVpnGateway -ResourceGroupName "testRG" -Name "testvpngw"

$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)


$vpnSiteLinkConnection = New-AzVpnSiteLinkConnection -Name "testLinkConnection1" -VpnSiteLink $vpnSite.VpnSiteLinks[0] -ConnectionBandwidth 100

New-AzVpnConnection -ResourceGroupName $vpnGateway.ResourceGroupName -ParentResourceName $vpnGateway.Name -Name "testConnection" -VpnSite $vpnSite -VpnSiteLinkConnection @($vpnSiteLinkConnection)

上述會在美國西部的 「testRG」 資源群組中建立資源群組、虛擬 WAN、虛擬網絡、虛擬中樞和具有 1 個 VpnSiteLinks 的 VpnSite。 VPN 閘道之後將會在虛擬中樞中建立。 建立閘道之後,它會使用New-AzVpnConnection 命令與1個 VpnSiteLinkConnections 連線到 VpnSite 的 VpnSiteLink。

範例 2 VpnGatewayCustomBgpAddress

$vpnSite = Get-AzVpnSite -ResourceGroupName PS_testing -Name testsite
$vpnGateway = Get-AzVpnGateway -ResourceGroupName PS_testing -Name 196ddf92afae40e4b20edc32dfb48a63-eastus-gw

$address = New-AzGatewayCustomBgpIpConfigurationObject -IpConfigurationId "Instance0" -CustomBgpIpAddress "169.254.22.1"
$address2 = New-AzGatewayCustomBgpIpConfigurationObject -IpConfigurationId "Instance1" -CustomBgpIpAddress "169.254.22.3"

$vpnSiteLinkConnection = New-AzVpnSiteLinkConnection -Name "testLinkConnection1" -VpnSiteLink $vpnSite.VpnSiteLinks[0] -ConnectionBandwidth 100 -VpnGatewayCustomBgpAddress $address,$address2 -EnableBgp

New-AzVpnConnection -ResourceGroupName $vpnGateway.ResourceGroupName -ParentResourceName $vpnGateway.Name -Name "testConnection" -VpnSite $vpnSite -VpnSiteLinkConnection @($vpnSiteLinkConnection)

上述專案會在 Azure 的 「PS_testing」 資源群組中建立 AzGatewayCustomBgpIpConfigurationObject 1 VpnSiteLinks 與 VpnConnection。 建立連線之後,它會使用 New-AzVpnConnection 命令,將 1 個 VpnSiteLinkConnections 連線到 VpnSite 的 VpnSiteLink。 此連線將使用提供的 GatewayCustomBgpIpAddress 進行 VpnGateway 端的 Bgp 連線。

參數

-ConnectionBandwidth

此連結連線需要以 mbps 處理的頻寬。

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

-DefaultProfile

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

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

-EgressNatRule

與此連結連線相關聯的輸出 NAT 規則清單。

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

-EnableBgp

啟用此連結連線的 BGP

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

-IngressNatRule

與此連結連線相關聯的輸入NAT規則清單。

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

-IpSecPolicy

要針對此連結連線考慮的 IpSec 原則。

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

-Name

VpnSiteLinkConnection 名稱

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

-RoutingWeight

路由權數

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

-SharedKey

設定此連結連線所需的共用金鑰。

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

-UseLocalAzureIpAddress

使用此連結連線的本機 Azure IP 位址作為來源 IP。

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

-UsePolicyBasedTrafficSelectors

針對此連結連線使用以原則為基礎的流量選取器。

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

-VpnConnectionProtocolType

網關聯機通訊協定:IKEv1/IKEv2

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

-VpnGatewayCustomBgpAddress

此鏈接連線中使用的 Vpngateway GatewayCustomBgpIpAddress。

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

-VpnLinkConnectionMode

此連結連線的連接模式。

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

要連接的 vpn 網站連結物件。

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

輸入

PSVpnSiteLink

PSGatewayCustomBgpIpConfiguration[]

輸出

PSVpnSiteLinkConnection