Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
Hello Samir Tapde,
Greetings!
Thanks for raising this question in Q&A forum.
You have done an excellent job diagnosing this! Based on your evidence — SYN packets leaving the App Service worker but no SYN-ACK returning, zero packets on pktmon at the Spoke VM, and VM-to-VM working fine — the root cause is almost certainly a stale internal SDN (Software Defined Networking) route cache within the App Service "Swift" VNet Integration infrastructure, left over from the old 10.0.0.0/16 address space. When you changed the Hub VNet address space to 172.15.0.0/16, the App Service platform's internal routing fabric did not fully propagate the new prefix for Global Peering paths, even though the VNet system routes are correct from Azure's perspective.
Here is a structured set of steps to resolve this:
Step 1: Re-sync both sides of the Global Peering explicitly
Even though you have already done a Sync, do it again in this specific order:
- Go to the Azure Portal → Hub VNet (
172.15.0.0/16) → Peerings. - Click on the peering link to the Spoke VNet and click Sync — then wait 2–3 minutes.
- Then go to the Spoke VNet (
10.3.0.0/16) → Peerings → click the peering back to the Hub and click Sync again. - This bidirectional re-sync is important after an address space change, as each side needs to re-advertise the updated prefixes independently.
Step 2: Delete and recreate the VNet Integration completely (not just disconnect)
Since the address space changed from 10.0.0.0/16 to 172.15.0.0/16, the App Service Swift integration may still have an internal reference to the old prefix. A full delete and recreate is needed:
- Go to Azure Portal → App Service
tradeannexapi→ Networking → VNet Integration. - Click Disconnect and confirm.
- Delete the subnet
snet-appsvc-v2from the Hub VNet entirely. - Recreate the subnet with a fresh name (e.g.,
snet-appsvc-v3) under the new172.15.0.0/16address space. - Re-integrate the App Service to this brand-new subnet.
This forces the Swift integration to register the 172.15.x.x prefix fresh with no stale references.
Step 3: Verify the App Service Outbound Route Table
- Go to the subnet
snet-appsvc-v3in the Hub VNet. - Check the associated Route Table (if any).
- Make sure there is a route for
10.3.0.0/16(Spoke VNet) pointing to VNet Peering or Virtual Network as the next hop — not to an NVA or Azure Firewall that might be dropping cross-region traffic. - If you are using a hub-spoke with an NVA/Firewall in the middle, make sure the firewall rules explicitly allow traffic from
172.15.2.0/24to10.3.0.4:1926.
Step 4: Confirm WEBSITE_VNET_ROUTE_ALL and add the Spoke prefix explicitly
- In App Service → Configuration → Application Settings, confirm
WEBSITE_VNET_ROUTE_ALL = 1is still set after the VNet Integration recreation. - Additionally, go to App Service → Networking → VNet Integration → and check the Outbound address prefixes listed. The Spoke VNet range
10.3.0.0/16must appear here or be reachable via a route. - If it is missing, add an explicit route in the Route Table attached to the App Service subnet: Destination
10.3.0.0/16→ Next Hop: Virtual Network.
Step 5: Scale the App Service Plan again after the above steps
After completing Steps 1–4, force a worker migration once more:
- Go to App Service Plan → Scale Up → change to a different SKU (e.g., P2v3) → Save.
- Wait 5 minutes, then scale back to P3v3.
- This forces the App Service workers to re-register with the updated networking configuration.
Step 6: If the issue still persists — raise a support ticket
Since your diagnostics clearly point to an internal SDN/platform routing issue in the Central India region, and you have already exhausted all client-side options, you need Microsoft's networking backend team to investigate:
- Open a support request via the Azure Portal → your App Service resource → Support + Troubleshooting → New Support Request.
- Choose Networking as the problem type and clearly state this is a Global VNet Peering + App Service Swift VNet Integration routing issue after address space change.
- Include your
pktmonevidence, the TCP trace showing SYN with no SYN-ACK, and the Correlation IDs from the Activity Log. - Request that the support engineer investigate the App Service regional gateway SDN routing table for the
172.15.x.xprefix propagation to the West India Global Peering path.
Quick Summary: The traffic is leaving the App Service correctly but is being dropped at the regional boundary because the App Service Swift integration's internal SDN fabric still has stale routing for the old address space. The fix involves a full peering re-sync in the correct order, a complete VNet Integration recreation on a fresh subnet, and route table validation followed by a worker scale cycle to pick up all changes.
If this answer helps you kindly accept the answer which will help others who have similar questions.
Best Regards,
Jerald Felix.