Last reviewed: May 2026
If Azure returned this error, the fix is mechanical once you can see which existing range you collided with. This page shows how to find it and how to choose a range that will be accepted.
Azure is refusing an address space that intersects one already in use — usually on the far side of a peering, or on a VNet already connected to the same hub. Peering requires non-overlapping address spaces because Azure cannot build an unambiguous route table when the same prefix exists on both sides.
List what is already allocated before guessing at a new range:
az network vnet list \
--query "[].{Name:name, RG:resourceGroup, Space:addressSpace.addressPrefixes}" \
--output table
The most common root cause is a default: the Azure portal frequently suggests 10.0.0.0/16, so organisations end up with several VNets all claiming it. If you are hitting this repeatedly, the fix is not per-VNet — it is to allocate each VNet a distinct block from one planned supernet and document it.
This error is almost always a symptom of address space that was never planned centrally. Allocating each environment a documented block from one supernet, and checking new ranges against that record before deployment, removes the whole class of failure. The Cloud VPC & VNet CIDR Planning Guide sets out that approach.
Azure is refusing an address space that intersects one already in use — usually on the far side of a peering, or on a VNet already connected to the same hub. Peering requires non-overlapping address spaces because Azure cannot build an unambiguous route table when the same prefix exists on both sides.
Not within the same VPC or virtual network. Providers require subnets to be disjoint so routing is unambiguous. Overlap is also what blocks VPC peering, VNet peering and Transit Gateway attachments between networks.
List every existing range in the network, then compare each one against the range you are trying to create. The bulk subnet calculator on this site accepts CLI JSON and CSV exports directly and reports every overlapping pair, which is faster and more reliable than comparing by eye.