Site icon Digital Thought Disruption

From VMware NSX-T to Azure Local SDN: Migration Planning and Gotchas

TL;DR – Quick Summary


Introduction: The SDN Shift Is Underway

In today’s cloud-first, software-defined datacenter landscape, network virtualization is no longer optional. VMware NSX-T has long been the go-to solution for enterprises seeking microsegmentation and programmable network constructs — but the landscape is changing fast. With recent licensing uncertainty following Broadcom’s acquisition of VMware and a stronger focus on Microsoft-native solutions, many organizations are exploring an exit strategy.

Enter Azure Local SDN (formerly Azure Stack HCI SDN) — a modern, integrated approach to software-defined networking that extends Azure consistency to on-prem datacenters. For enterprises running hybrid workloads or consolidating legacy infrastructure, migrating from NSX-T to Azure Local is a compelling strategy.

But it’s not a lift-and-shift. This article walks you through the key planning phases, architecture translation, and real-world “gotchas” to watch for.


NSX-T vs Azure Local SDN: Architecture Comparison

Feature / ComponentVMware NSX-TAzure Local SDN
Control PlaneNSX Manager / Policy APINetwork Controller (NC)
Data PlaneESXi/vDS + N-VDSHyper-V Virtual Switch + SLB extensions
Tier-0 GatewayUplink/Edge GatewaySoftware Load Balancer (external)
Tier-1 GatewayLogical RouterSoftware Load Balancer (internal)
Distributed Firewall (DFW)Microsegmentation at VM NICNSG (Subnet/VM Level)
Transport ZonesOverlay or VLAN-backed ZonesVirtual Networks + Subnets
Edge NodesRequired for north-south trafficNot Required — handled by SLB endpoints
VRF SupportNativeNot natively available (use vNet patterns)

Note: Azure Local SDN lacks direct VRF equivalents — instead, use isolated vNets per tenant with custom routing tables and policy-based filtering.


Migration Planning: A 5-Phase Strategy

Phase 1: Inventory & Dependency Mapping

Start with an NSX-T environment inventory:

Use PowerCLI or API exports to automate NSX config extraction:

Get-NsxFirewallRule | Export-Csv -Path .\nsx-fw-export.csv

Phase 2: Network Policy Conversion

Map NSX-T’s microsegmentation rules to Azure NSGs:

Tip: Use Test-AzNetworkWatcherIPFlow to simulate flows before go-live.

Phase 3: Gateway & Routing Redesign

NSX-T Tier-0/1 doesn’t translate directly. Plan for:

Sample Bicep snippet:

resource slb 'Microsoft.Network/loadBalancers@2021-05-01' = {
name: 'myInternalSLB'
location: resourceGroup().location
properties: {
frontendIPConfigurations: [...]
backendAddressPools: [...]
loadBalancingRules: [...]
}
}

Phase 4: Automation – Bicep, PowerShell & WAC

Phase 5: Validation & Cutover

Before switching traffic:


Gotchas and Lessons Learned

GotchaDescription + Workaround
NSG Rule OrderAzure NSGs are processed by priority (lowest = highest priority)
No VRF EquivalentUse separate VNets + UDRs for tenant isolation
NAT Rule ConversionAzure Local supports DNAT/SNAT, but mappings differ — manual translation needed
SLB MisconfigurationInternal vs External SLBs are separate objects — don’t overload a single resource
Policy Application ScopeNSGs apply at subnet or NIC level — no group-based tagging like NSX security groups
No DFW Logging by DefaultUse NSG flow logs (via Network Watcher) for visibility
DHCP & DNSMust integrate via Azure services or local DHCP/DNS relay manually

Tools & Automation for the Migration


Final Thoughts: Design with the Future in Mind

The journey from VMware NSX-T to Azure Local SDN is more than a platform shift — it’s a transformation in how network infrastructure is designed, deployed, and governed. While NSX-T offered granular control and multi-tenancy through constructs like Tier-0/1 gateways and DFWs, Azure Local SDN pushes toward simplified, policy-driven design, tighter integration with native Windows Server, and declarative automation using tools like Bicep, PowerShell, and Windows Admin Center.

Organizations that succeed in this transition take a phased, validated, and automation-first approach, rethinking their network design instead of trying to replicate it 1:1. Embrace NSG-based microsegmentation, SLB tiering, and vNet isolation patterns as the foundation of your next-generation SDN.

Whether you’re facing licensing pressure, looking to consolidate platforms, or simply ready to modernize — Azure Local SDN offers a strategic, cost-effective path forward for your hybrid or on-prem datacenter.

Next Step: Run a pilot environment using a single application workload and test NSG, SLB, and routing constructs before broader migration.

*The thoughts and opinions in this article are mine and hold no reflect on my employer*

Exit mobile version