An Azure service that enables network appliances to exchange route information with Azure virtual networks dynamically.
Hi, this is normal: that /32 route (e.g., 207.46.147.148/32) appears because you have active Service Endpoints on the subnet (Storage/SQL/Entra, etc.). Azure injects “VirtualNetworkServiceEndpoint” routes that bypass your 0.0.0.0/0 UDR to the firewall and carry traffic directly to the Microsoft service on the backbone network. The geo-IP may show “Hong Kong,” but the traffic exits locally (Canada Central) thanks to anycast. If you want everything to go through the firewall, remove the Service Endpoints from that subnet (VNet → Subnet → Service Endpoints) or, better yet, use Private Endpoints. After removal, the /32 routes will disappear; otherwise, the behavior is expected and safe.