If you’ve ever inherited a half-broken Excel workbook to manage IP ranges across dozens of VNets, you already know the pain. No validation, no automation, no mercy.
Well, grab your coffee, Azure Virtual Network Manager (AVNM) just got a serious upgrade: built-in IP Address Management (IPAM).
This feature rounds out AVNM as a first-party control plane for enterprise-scale networking. Let’s get into what it is, how it works, and why it’s a game-changer.
What is AVNM IPAM?
AVNM’s IP Address Management (IPAM) is a native Azure capability for centrally managing private IP address spaces across your Virtual Networks, without flogging spreadsheets or building DIY governance layers.
Common Uses
- Automating IP address assignment at scale
- Preventing overlapping CIDR allocations across business units
- Standardising subnet ranges within environments (e.g., non-prod, prod)
- Improving visibility for audit and growth planning
Key Features
- Centrally manage IP spaces within an AVNM scope
- Create and assign child IP prefixes to VNets and subnets
- Enforce address allocation policies to avoid overlaps
- Visualise and track IP usage across regions and subscriptions
- Integrate directly with VNet creation and subnet allocation
Think of it as an address ledger with guardrails — and it’s built right into the same control plane you’re (hopefully) already using for network groupings and connectivity configurations.
Architecture View
How It Works
-
Create an IPAM Pool
This acts as a container for your IP space hierarchy. You can have one or more per AVNM. -
Define Parent Prefixes
These are top-level CIDR ranges you plan to carve up (e.g. 10.0.0.0/8). These must be non-overlapping per IPAM Pool. -
Allocate Child Prefixes
Carve out smaller address blocks — like 10.0.1.0/24 — from your parent prefix. These can be assigned manually to VNets or automatically through deployment tools. -
Track IP Usage and Availability
IPAM gives you visibility into what’s been used, what’s free, and what’s assigned where — all within the AVNM scope.
Real-World Impact
Before IPAM, Azure customers had a few not-so-great options:
- Manual IP range tracking with spreadsheets (error-prone and unscalable)
- Custom solutions using Tags, Policies, or scripts (hard to maintain)
- Over-architecting with CIDR guesswork to avoid future conflicts
Now with IPAM baked into AVNM:
- Network teams get full control over address planning and enforcement
- App teams can consume space predictably without stepping on toes
- Governance and growth are no longer mutually exclusive
Implementation Examples
Let’s walk through allocating a prefix to a new VNet using Azure Portal and Bicep.
Azure Portal
- Go to Azure Virtual Network Manager
- Select your AVNM scope
- Under IPAM, create an IPAM Pool
- Add a Parent Prefix — e.g.,
10.1.0.0/16
- Allocate a Child Prefix — e.g.,
10.1.1.0/24
- When creating a new VNet, select Use IPAM and bind it to your AVNM and specific prefix
Bicep Example: Hub & Spoke with IPAM
This example sets up a Network Manager and IPAM Pool, then creates a Hub and Spoke VNet pair — each allocated dynamically from the pool.
|
|
Gotchas & Edge Cases
- No retroactive allocations: You can only assign prefixes to VNets that opt-in to IPAM. Existing VNets without IPAM are left untouched.
- Enforcement isn’t universal: IPAM doesn’t stop someone from manually typing in a bad address — yet. Policy integration is coming.
- Doesn’t manage public IPs: This is strictly private address space for now.
Best Practices
- Plan your hierarchy early: Define parent blocks at /16 or similar size for long-term flexibility.
- One IPAM Group per environment or region: Keeps things clean and logically segmented.
- Automate allocations: Use Bicep or Terraform to keep it consistent.
- Enable IPAM with NetOps, not after: This isn’t a bolt-on; make it part of your standard network provisioning flow.
Learn More
-
IP Address Management with AVNM – Microsoft Docs
Official overview of IPAM features and capabilities inside Azure Virtual Network Manager -
AVNM Overview
Starts from the top: what AVNM is, why it matters, and where IPAM fits in -
Connectivity configurations in AVNM
Learn how to layer IPAM with custom connectivity across VNets -
Bicep Templates for AVNM / IPAM
Full Bicep reference for deploying AVNM components