Skip to content

Commit 6f6198c

Browse files
authored
Merge pull request #77288 from charwen/patch-52
Added steps to configure FastPath
2 parents a4d5985 + 081cf93 commit 6f6198c

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

articles/expressroute/expressroute-howto-linkvnet-arm.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: ganesr
66

77
ms.service: expressroute
88
ms.topic: article
9-
ms.date: 10/30/2018
9+
ms.date: 05/20/2018
1010
ms.author: ganesr
1111
ms.custom: seodec18
1212

@@ -172,5 +172,19 @@ Set-AzVirtualNetworkGatewayConnection -VirtualNetworkGatewayConnection $connecti
172172

173173
The range of *RoutingWeight* is 0 to 32000. The default value is 0.
174174

175+
## Configure ExpressRoute FastPath
176+
You can enable [ExpressRoute FastPath](expressroute-about-virtual-network-gateways.md) if your ExpressRoute circuit is on [ExpressRoute Direct](expressroute-erdirect-about.md) and your virtual newtork gateway is Ultra Performance or ErGw3AZ. FastPath improves data path preformance such as packets per second and connections per second between your on-premises network and your virtual network.
177+
178+
> [!NOTE]
179+
> If you already have a virtual network connection but haven't enabled FastPath you need to delete the virtual network connection and create a new one.
180+
>
181+
>
182+
183+
```azurepowershell-interactive
184+
$circuit = Get-AzExpressRouteCircuit -Name "MyCircuit" -ResourceGroupName "MyRG"
185+
$gw = Get-AzVirtualNetworkGateway -Name "MyGateway" -ResourceGroupName "MyRG"
186+
$connection = New-AzVirtualNetworkGatewayConnection -Name "MyConnection" -ResourceGroupName "MyRG" -ExpressRouteGatewayBypass -VirtualNetworkGateway1 $gw -PeerId $circuit.Id -ConnectionType ExpressRoute -Location "MyLocation"
187+
```
188+
175189
## Next steps
176190
For more information about ExpressRoute, see the [ExpressRoute FAQ](expressroute-faqs.md).

0 commit comments

Comments
 (0)