Skip to content

Routing Cheatsheet

Quick reference for Azure Virtual Network routing precedence and next hop behavior.

Route Selection Rule Priority Details
Longest prefix match 1 (highest) Azure first selects the most specific matching prefix (for example, /24 over /16).
UDR vs BGP vs System (equal prefixes) 2 If matching prefixes are identical, User-Defined Route (UDR) is preferred.
BGP vs System (equal prefixes, no UDR) 3 If no UDR exists for that prefix, BGP-learned route is preferred over system route.
System route fallback 4 Used when no UDR or BGP route with the same prefix is present.
Next Hop Type Description Common Use Case
Virtual Appliance Sends traffic to an NVA (Firewall) Hub-spoke security inspection
Virtual Network Gateway Sends traffic to VPN/ER Gateway Hybrid on-premises connectivity
Virtual Network Default local routing Intra-VNet or peered VNet traffic
Internet Direct to public internet Default outbound (if not overridden)
None Drops the packet Security "blackhole" routing

mermaid graph TD Packet[Packet Outbound] --> Match[Find all matching routes] Match --> LPM[Select longest prefix match] LPM --> Equal{Multiple routes same prefix?} Equal -- No --> Use[Use selected route] Equal -- Yes --> Priority[Prefer UDR > BGP > system] Priority --> Use

Tip

Validate effective routes on NICs after UDR or BGP changes to confirm expected next hop selection.

Note

Service endpoint system routes cannot be overridden. VNet and peering routes are preferred but can be overridden by UDRs in supported service chaining scenarios.

See Also

Sources