```html Azure VPN Gateway Documentation

Azure VPN Gateway

The Azure VPN Gateway connects your on‑premises networks to Azure through site‑to‑site VPN tunnels, point‑to‑site VPN connections, and VNet‑to‑VNet connections.

Key Features

  • High‑availability active‑active and active‑standby gateways
  • Multiple VPN protocols – IKEv2, OpenVPN, SSTP
  • Policy‑based and route‑based VPNs
  • Integration with Azure Firewall and Azure Virtual WAN

Getting Started

Follow the quickstart guide to deploy your first VPN gateway.

Launch Quickstart

Sample ARM Template

{
  "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
  "contentVersion": "1.0.0.0",
  "resources": [
    {
      "type": "Microsoft.Network/virtualNetworkGateways",
      "apiVersion": "2023-09-01",
      "name": "myVpnGateway",
      "location": "[resourceGroup().location]",
      "properties": {
        "sku": { "name": "VpnGw1", "tier": "VpnGw1" },
        "gatewayType": "Vpn",
        "vpnType": "RouteBased",
        "enableBgp": false,
        "ipConfigurations": [
          {
            "name": "vnetGatewayConfig",
            "properties": {
              "subnet": { "id": "[resourceId('Microsoft.Network/virtualNetworks/subnets', 'myVnet', 'GatewaySubnet')]" },
              "publicIPAddress": { "id": "[resourceId('Microsoft.Network/publicIPAddresses', 'myPublicIp')]" }
            }
          }
        ]
      }
    }
  ]
}

Resources

```