共用方式為


New-AzVirtualNetworkGatewayConnection

建立虛擬網路閘道與內部部署 VPN 裝置之間的站對站 VPN 連線。

語法

New-AzVirtualNetworkGatewayConnection
   -Name <String>
   -ResourceGroupName <String>
   -Location <String>
   [-AuthorizationKey <String>]
   -VirtualNetworkGateway1 <PSVirtualNetworkGateway>
   [-VirtualNetworkGateway2 <PSVirtualNetworkGateway>]
   [-LocalNetworkGateway2 <PSLocalNetworkGateway>]
   -ConnectionType <String>
   [-RoutingWeight <Int32>]
   [-DpdTimeoutInSeconds <Int32>]
   [-ConnectionMode <String>]
   [-SharedKey <String>]
   [-Peer <PSPeering>]
   [-EnableBgp <Boolean>]
   [-UseLocalAzureIpAddress]
   [-Tag <Hashtable>]
   [-Force]
   [-UsePolicyBasedTrafficSelectors <Boolean>]
   [-IpsecPolicies <PSIpsecPolicy[]>]
   [-TrafficSelectorPolicy <PSTrafficSelectorPolicy[]>]
   [-ConnectionProtocol <String>]
   [-IngressNatRule <PSResourceId[]>]
   [-EgressNatRule <PSResourceId[]>]
   [-GatewayCustomBgpIpAddress <PSGatewayCustomBgpIpConfiguration[]>]
   [-AsJob]
   [-ExpressRouteGatewayBypass]
   [-EnablePrivateLinkFastPath]
   [-DefaultProfile <IAzureContextContainer>]
   [-WhatIf]
   [-Confirm]
   [<CommonParameters>]
New-AzVirtualNetworkGatewayConnection
   -Name <String>
   -ResourceGroupName <String>
   -Location <String>
   [-AuthorizationKey <String>]
   -VirtualNetworkGateway1 <PSVirtualNetworkGateway>
   [-VirtualNetworkGateway2 <PSVirtualNetworkGateway>]
   [-LocalNetworkGateway2 <PSLocalNetworkGateway>]
   -ConnectionType <String>
   [-RoutingWeight <Int32>]
   [-DpdTimeoutInSeconds <Int32>]
   [-ConnectionMode <String>]
   [-SharedKey <String>]
   [-PeerId <String>]
   [-EnableBgp <Boolean>]
   [-UseLocalAzureIpAddress]
   [-Tag <Hashtable>]
   [-Force]
   [-UsePolicyBasedTrafficSelectors <Boolean>]
   [-IpsecPolicies <PSIpsecPolicy[]>]
   [-TrafficSelectorPolicy <PSTrafficSelectorPolicy[]>]
   [-ConnectionProtocol <String>]
   [-IngressNatRule <PSResourceId[]>]
   [-EgressNatRule <PSResourceId[]>]
   [-GatewayCustomBgpIpAddress <PSGatewayCustomBgpIpConfiguration[]>]
   [-AsJob]
   [-ExpressRouteGatewayBypass]
   [-EnablePrivateLinkFastPath]
   [-DefaultProfile <IAzureContextContainer>]
   [-WhatIf]
   [-Confirm]
   [<CommonParameters>]

Description

建立虛擬網路閘道與內部部署 VPN 裝置之間的站對站 VPN 連線。

範例

範例 1

$vnetgw1 = Get-AzVirtualNetworkGateway -ResourceGroupName "Rg1" -Name "gw1"
$vnetgw2 = Get-AzVirtualNetworkGateway -ResourceGroupName "Rg1" -Name "gw2"
New-AzVirtualNetworkGatewayConnection -Name conn-client-1 -ResourceGroupName "Rg1" -VirtualNetworkGateway1 $vnetgw1 -VirtualNetworkGateway2 $vnetgw2 -Location "eastus" -ConnectionType Vnet2Vnet -SharedKey 'a1b2c3d4e5'

範例 2 將輸入NatRule/EgressNatRule 新增/更新至現有的虛擬網路網關聯機

$vnetgw1 = Get-AzVirtualNetworkGateway -ResourceGroupName "Rg1" -Name "vnetgw1"
$vnetgw2 = Get-AzVirtualNetworkGateway -ResourceGroupName "Rg1" -Name "vnetgw2"
$ingressnatrule = Get-AzVirtualNetworkGatewayNatRule -ResourceGroupName "Rg1" -Name "natRule1" -ParentResourceName vnetgw1
$egressnatrule = Get-AzVirtualNetworkGatewayNatRule -ResourceGroupName "Rg1" -Name "natRule2" -ParentResourceName vnetgw1
New-AzVirtualNetworkGatewayConnection -Name conn-client-1 -ResourceGroupName $RG1 -VirtualNetworkGateway1 $vnetgw1 -VirtualNetworkGateway2 $vnetgw2 -Location "eastus" -ConnectionType Vnet2Vnet -SharedKey 'a1b2c3d4e5' `
-IngressNatRule $ingressnatrule -EgressNatRule $egressnatrule

第一個命令會取得名為 natRule1 的虛擬網路網關 natRule,其類型為 IngressSnat。 第二個命令會取得名為 natRule2 的虛擬網路網關 natRule,其類型為 EgressSnat。 第三個命令會使用輸入和 Egress NatRules 建立這個新的虛擬網路網關聯機。

範例 3 將 GatewayCustomBgpIpAddress 新增至虛擬網路網關聯機

$LocalnetGateway = Get-AzLocalNetworkGateway -ResourceGroupName "PS_testing" -name "testLng"
$gateway = Get-AzVirtualNetworkGateway -ResourceGroupName PS_testing -ResourceName testGw
$address = New-AzGatewayCustomBgpIpConfigurationObject -IpConfigurationId "/subscriptions/83704d68-d560-4c67-b1c7-12404db89dc3/resourceGroups/PS_testing/providers/Microsoft.Network/virtualNetworkGateways/testGw/ipConfigurations/default" -CustomBgpIpAddress "169.254.21.1"

New-AzVirtualNetworkGatewayConnection -ResourceGroupName "PS_testing" -name "Conn" -location "eastus" -VirtualNetworkGateway1 $gateway -LocalNetworkGateway2 $localnetGateway -ConnectionType IPsec -RoutingWeight 3 -SharedKey abc -GatewayCustomBgpIpAddress $address -EnableBgp $true

這兩個命令會取得局域網路閘道和虛擬網路閘道。 thrid 命令會建立 AzGatewayCustomBgpIpConfigurationObject。 第三個命令會使用 GatewayCustomBgpIpAddress 建立這個新的虛擬網路網關聯機。

參數

-AsJob

在背景執行 Cmdlet

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

-AuthorizationKey

AuthorizationKey。

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

-Confirm

執行 Cmdlet 之前先提示您確認。

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

-ConnectionMode

虛擬網絡 網關聯機模式。

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

-ConnectionProtocol

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

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

-ConnectionType

網關聯機類型:IPsec/Vnet2Vnet/ExpressRoute/VPNClient

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

-DefaultProfile

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

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

-DpdTimeoutInSeconds

線上的無效對等偵測逾時,以秒為單位。

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

-EgressNatRule

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

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

-EnableBgp

是否要透過 S2S VPN 通道建立 BGP 工作階段

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

-EnablePrivateLinkFastPath

存取私人連結時略過 ExpressRoute 閘道。 必須啟用 ExpressRoute FastPath (ExpressRouteGatewayBypass)。

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

-ExpressRouteGatewayBypass

是否要透過略過閘道來使用加速虛擬網路存取

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

-Force

如果您想要覆寫資源,請勿要求確認

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

-GatewayCustomBgpIpAddress

此連線中使用的虛擬網路閘道 GatewayCustomBgpIpAddress。

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

-IngressNatRule

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

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

-IpsecPolicies

IPSec 原則的清單。

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

-LocalNetworkGateway2

局域網路閘道。

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

-Location

位置。

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

-Name

資源名稱。

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

-Peer

對等

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

-PeerId

PeerId

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

-ResourceGroupName

資源組名。

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

-RoutingWeight

RoutingWeight。

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

-SharedKey

Ipsec 共用金鑰。

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

-Tag

表示資源標記的哈希表。

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

-TrafficSelectorPolicy

流量選取器原則的清單。

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

-UseLocalAzureIpAddress

是否要針對此 S2S VPN 通道使用 PrivateIP

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

-UsePolicyBasedTrafficSelectors

是否要使用以原則為基礎的流量選取器進行 S2S 連線

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

-VirtualNetworkGateway1

第一個虛擬網路閘道。

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

-VirtualNetworkGateway2

第二個虛擬網路閘道。

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

-WhatIf

顯示執行 Cmdlet 後會發生的情況。 未執行 Cmdlet。

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

輸入

String

PSVirtualNetworkGateway

PSLocalNetworkGateway

Int32

PSPeering

Boolean

SwitchParameter

Hashtable

PSIpsecPolicy[]

PSTrafficSelectorPolicy[]

PSGatewayCustomBgpIpConfiguration[]

輸出

PSVirtualNetworkGatewayConnection