Partner Integration Guidelines

Table of Contents

Overview

This guide provides best‑practice recommendations for integrating third‑party network and security solutions with Azure Virtual WAN. It covers authentication, routing, and policy synchronization to ensure secure and reliable connectivity.

Prerequisites

Integration Steps

  1. Create a Virtual WAN Hub (or identify an existing hub).
  2. Register the partner edge using the Azure portal or CLI.
  3. Configure BGP peering on both Azure and the partner device.
  4. Apply security policies to traffic flowing through the hub.
  5. Validate connectivity with test traffic.
Step 1 – Create a Hub (CLI Example)
az network vhub create \
    --resource-group MyResourceGroup \
    --name MyHub \
    --address-prefix 10.0.0.0/24 \
    --virtual-wan MyVirtualWan \
    --sku Standard
Step 2 – Register Partner Edge (Portal)

Navigate to Virtual WAN → Hubs → <Your Hub> → Partner Edge and click Add partner edge. Provide the device's public IP, ASN, and BGP settings.

Sample Configuration

Azure BGP Settings

{
  "asn": 65515,
  "bgpPeeringAddress": "10.0.0.254",
  "peerWeight": 0
}

Partner Device BGP Settings

router bgp 65515
 neighbor 10.0.0.254 remote-as 65515
 neighbor 10.0.0.254 description "Azure Virtual WAN Hub"
 network 10.1.0.0 mask 255.255.255.0

FAQs

Can I use multiple partner edges on a single hub?

Yes. Azure Virtual WAN supports up to 20 partner edges per hub. Each edge must have a unique BGP ASN.

What is the recommended BGP hold time?

Set the hold time to 90 seconds to align with most vendor defaults and ensure quick failover.