A /32 route represents the most specific IPv4 route possible—it targets exactly one IP address.
Azure automatically creates a /32 system route for every Private Endpoint (PE), ensuring traffic is sent directly to the PE interface.
Example:
10.5.4.12/32 → InterfaceEndpoint (system route)
This overrides any broader routes like /24, /16, or 0.0.0.0/0 because Azure uses the longest prefix match.
/32 system route./32 route still exists and still wins — unless overridden by a matching /32 UDR.Azure allows you to override the system /32 route by creating your own /32 UDR:
10.5.4.12/32 → Firewall
Routing precedence rule:
If prefix length is equal, UDR overrides system routes.
This forces traffic: VM/App → Firewall → Private Endpoint
Private Endpoints ignore UDRs.
+-------------------+ Azure Backbone +----------------------+
| VM / App |-------------------------------->| Private Endpoint |
| 10.0.1.10 | (PE ignores UDRs) | 10.5.4.12 (/32) |
+-------------------+ +----------------------+
Direct /32 system route
PE honors UDRs but system /32 still wins unless overridden.
+-------------------+ Azure Backbone +----------------------+
| VM / App |-------------------------------->| Private Endpoint |
| 10.0.1.10 | (UDRs honored, but /32 wins) | 10.5.4.12 (/32) |
+-------------------+ +----------------------+
Route Table:
10.5.4.12/32 → InterfaceEndpoint (System Route — most specific)
0.0.0.0/0 → Firewall (UDR)
Your /32 UDR overrides Azure’s system /32 route.
+-------------------+ +-----------------+ +----------------------+
| VM / App |------->| Firewall/NVA |------->| Private Endpoint |
| 10.0.1.10 | /32 | 10.0.100.4 | /32 | 10.5.4.12 (/32) |
+-------------------+ +-----------------+ +----------------------+
Route Table (with override):
10.5.4.12/32 → Firewall (UDR — overrides system)
10.5.4.12/32 → InterfaceEndpoint (System)
/32 system route for Private Endpoints./32 route normally wins due to specificity./32 UDR lets you force PE traffic through a firewall.