7.4 Nutanix Flow Network Security & Microsegmentation Fundamentals

Key Takeaways

  • Nutanix Flow Network Security is a software-defined, distributed stateful firewall embedded natively inside Open vSwitch (OVS) at every virtual machine's virtual network interface (vNIC).
  • Flow microsegmentation completely eliminates network traffic hairpinning to external physical firewalls, inspecting and filtering east-west virtual machine traffic directly at the hypervisor tap interface.
  • Security policies in Flow are governed by dynamic Prism Central Categories (such as AppType, AppTier, and Environment), eliminating the operational overhead of maintaining static, brittle IP-based firewall rule-sets.
  • Flow provides three primary security policy architectures: Application Security policies (securing multi-tier app communication and intra-tier isolation), Isolation policies (strictly air-gapping environments like Dev vs. Prod), and Quarantine policies (Strict vs. Forensic isolation).
  • Forensic Quarantine completely blocks production network traffic to and from a compromised virtual machine while permitting designated security forensic tools and investigator IP addresses to inspect memory and analyze disk artifacts.
Last updated: September 2026

Nutanix Flow Network Security & Microsegmentation Fundamentals

Quick Summary: Modern datacenter security architectures have evolved beyond perimeter defenses. Because the majority of modern datacenter traffic flows east-west between virtual machines rather than north-south through perimeter firewalls, securing virtualized workloads requires granular, localized protection. Nutanix Flow Network Security (formerly Flow Microsegmentation) delivers a fully software-defined, distributed stateful firewall embedded directly within the Nutanix AHV hypervisor at the Open vSwitch (OVS) layer. By attaching firewall inspection directly to each virtual machine's virtual network interface (vNIC), Flow eliminates traffic hairpinning and enforces zero-trust microsegmentation. Governed through Prism Central Categories, Flow enables administrators to define Application Security, Environmental Isolation, and Incident Quarantine policies with complete agility.


1. The Distributed Microsegmentation Paradigm

In traditional three-tier datacenter architectures, protecting workloads within the same VLAN or across virtual networks historically required routing network traffic through external physical firewalls or specialized virtual firewall appliances—an inefficient pattern known as traffic hairpinning or tromboning.

TRADITIONAL FIREWALL HAIRPINNING (Inefficient & Latency-Prone):
+-------------------------------------------------------------------------+
|  [VM-Web-01] ───> [vSwitch] ───> [Physical Uplink] ───> [Physical Switch] |
|                                                                 |       |
|                                                                 v       |
|  [VM-DB-01]  <─── [vSwitch] <─── [Physical Uplink] <─── [Hardware FW]   |
|               (Round-trip traversal induces latency and bottlenecks)    |
+-------------------------------------------------------------------------+

NUTANIX FLOW DISTRIBUTED MICROSEGMENTATION (Embedded & Localized):
+-------------------------------------------------------------------------+
|                        Nutanix AHV Physical Host                        |
|                                                                         |
|   +-----------------------+                   +---------------------+   |
|   |       VM-Web-01       |                   |      VM-DB-01       |   |
|   |     [vNIC / tap0]     |                   |    [vNIC / tap1]    |   |
|   +-----------+-----------+                   +----------+----------+   |
|               |                                          ^              |
|               v (Stateful OVS Firewall Inspection)       |              |
|   +------------------------------------------------------+----------+   |
|   |              Open vSwitch (OVS) Kernel Datapath                 |   |
|   |  - Stateful inspection (conntrack) enforced at vnet tap port    |   |
|   |  - Wire-speed filtering inside host RAM / Zero Hairpinning      |   |
|   +-----------------------------------------------------------------+   |
+-------------------------------------------------------------------------+

Limitations of Legacy Perimeter Firewalls

  1. East-West Blind Spots: Traditional perimeter firewalls only inspect traffic crossing subnet or VLAN boundaries. If an attacker breaches a web server, they can freely move laterally to compromise database servers or peer VMs residing on the same Layer 2 broadcast domain.
  2. Bandwidth Saturation: Hairpinning internal datacenter traffic to a centralized firewall appliance saturates physical switch uplinks and introduces severe latency penalties for data-intensive workloads.
  3. IP Churn and Rule Sprawl: Managing thousands of static IP-based firewall rules across dynamic enterprise virtual environments creates immense administrative overhead and configuration drift.

The Flow Embedded Architecture

Nutanix Flow Network Security solves these liabilities by distributing firewall filtering rules directly into the AHV kernel:

  • Inspection at the vNIC Tap Interface: Security rules are enforced at the hypervisor's virtual network interface tap port (vnet*) before packets ever reach the virtual switch bridge (br0) or physical network adapters.
  • Stateful Connection Tracking (conntrack): Flow leverages the Linux kernel's native connection tracking subsystem. It monitors the complete TCP three-way handshake, UDP pseudo-sessions, and ICMP query/response sequences. When an outbound connection is permitted (e.g., Web VM initiates HTTPS to an external API), the stateful engine automatically allows return traffic without requiring administrators to craft explicit reverse firewall rules.
  • Autonomous Enforcement: Because security policies are compiled into local Open vSwitch OpenFlow rules on each physical host, packet filtering executes at line rate in hypervisor memory, immune to centralized management network disruptions.

2. Category-Based Security Policy Model

Nutanix Flow Network Security completely divorces security policy administration from physical network topology and IP address schemes by utilizing Prism Central Categories.

+-------------------------------------------------------------------------+
|                      Prism Central Category Model                       |
+------------------------------------+------------------------------------+
| Category Key:Value Tag             | Enterprise Operational Purpose     |
+------------------------------------+------------------------------------+
| Environment: Production            | Separates production from non-prod |
| Environment: Development           | Isolates developer sandboxes       |
| AppType: eCommerce                 | Defines complete application scope |
| AppTier: Web                       | Identifies front-end web services  |
| AppTier: Database                  | Identifies back-end database tier  |
+------------------------------------+------------------------------------+

The Dynamic Power of Category Governance

Instead of creating rules referencing brittle IP subnets (e.g., Allow 10.10.20.15 to 10.10.30.40 on TCP 1433), administrators write intent-based policies:

Security Intent="Allow Tier: Web to communicate with Tier: Database on TCP port 1433"\text{Security Intent} = \text{"Allow Tier: Web to communicate with Tier: Database on TCP port 1433"}

  • Automated Lifecycle Attachment: When an administrator provisions a new virtual machine in Prism Central or via automated CI/CD pipelines (such as Terraform or Nutanix Cloud Manager), they simply assign the appropriate category tags (e.g., AppType: Billing, AppTier: Web).
  • Zero Firewall Configuration Updates: Flow automatically detects the new virtual machine, matches its categories against active security policies, compiles the required OpenFlow rules, and pushes them to the local AHV host OVS datapath. The VM is secured from the very instant its virtual interface initializes.
  • Self-Cleaning Governance: When a VM is deleted or re-categorized, Flow immediately purges its corresponding microsegmentation rules, completely eliminating firewall rule sprawl.

3. Policy Types in Flow Network Security

Nutanix Flow Network Security provides three distinct policy frameworks designed to address specific enterprise security requirements:

+-------------------------------------------------------------------------+
|                      Flow Security Policy Types                         |
+-------------------+-----------------------------------------------------+
| Policy Type       | Primary Security Objective                          |
+-------------------+-----------------------------------------------------+
| Application Sec   | Multi-tier application defense & intra-tier ring-fence|
| Isolation Policy  | Absolute air-gapping between disparate environments |
| Quarantine Policy | Rapid incident response for infected or suspect VMs |
+-------------------+-----------------------------------------------------+

1. Application Security Policies

Application Security policies are designed to protect multi-tier business applications (such as 3-tier web/app/database architectures):

  • Inbound Rules: Define authorized inbound client traffic allowed to reach specific application tiers from outside the application (e.g., allow external clients on subnet 0.0.0.0/0 to reach AppTier: Web on TCP port 443).
  • Tier-to-Tier Rules: Enforce strict communication rules between internal tiers. For example:
    • AppTier: Web can communicate with AppTier: Application on TCP port 8443.
    • AppTier: Application can communicate with AppTier: Database on TCP port 5432.
    • Direct traffic between AppTier: Web and AppTier: Database is explicitly blocked.
  • Intra-Tier Isolation (Ring-Fencing): Flow allows administrators to prevent virtual machines within the same tier from communicating with one another. If five front-end web servers all share the category AppTier: Web, enabling intra-tier isolation ensures that if an attacker compromises Web-01, they cannot pivot laterally to compromise Web-02 through Web-05.
  • Outbound Egress Rules: Restrict the destination networks and ports that internal application tiers can access (e.g., allowing AppTier: Database to communicate only with corporate backup repositories on TCP port 902).

2. Isolation Policies

Isolation policies provide strict, high-level air-gapping between entire groups of workloads, regardless of their underlying IP addressing or shared VLAN infrastructure:

  • Environmental Separation: The classic enterprise use case is isolating Environment: Development from Environment: Production.
  • Protocol-Agnostic Air-Gap: An Isolation policy unconditionally drops all Layer 3 and Layer 4 packets attempting to cross between the designated categories in either direction.
  • Co-Existence on Identical Subnets: Even if a development virtual machine and a production virtual machine reside on the exact same physical AHV host and share the exact same Layer 2 VLAN subnet (e.g., 10.10.50.0/24), Flow drops all direct communication between them at the hypervisor tap interface.

3. Quarantine Policies

Quarantine policies provide automated or manual incident response capabilities to immediately neutralize compromised, malware-infected, or unpatched virtual machines.

Flow provides two distinct quarantine operational modes:

+-------------------------------------------------------------------------+
|                       Quarantine Policy Modes                           |
+------------------------------------+------------------------------------+
|         STRICT QUARANTINE          |        FORENSIC QUARANTINE         |
+------------------------------------+------------------------------------+
| - Total network blackout           | - Operational traffic blocked      |
| - Drops 100% of ingress & egress   | - Forensic tools permitted         |
| - Prevents data exfiltration       | - Security team IP allowed         |
| - Immediate threat containment     | - Enables memory/disk investigation|
+------------------------------------+------------------------------------+
  • Strict Quarantine Mode:
    • Instantly severs all network connectivity to and from the quarantined virtual machine.
    • Open vSwitch drops 100% of all inbound and outbound packets at the tap port.
    • The infected VM is completely isolated from the cluster, the corporate LAN, and the Internet, halting active ransomware propagation or unauthorized data exfiltration.
  • Forensic Quarantine Mode:
    • Blocks all standard operational network traffic between the infected VM and the rest of the enterprise environment.
    • Critically, it permits bidirectional communication exclusively with designated security tools and forensic analysis stations (specified by IP address or category, such as Category: SecurityOps on port 22 or specialized agent ports).
    • Security engineers can remotely capture RAM dumps, analyze volatile system processes, review malware staging directories, and deploy remediation scripts without physical console access or risking cluster contamination.

4. Policy Enforcement Lifecycle: Monitor vs. Enforce Mode

Deploying microsegmentation in an active enterprise datacenter introduces the risk of inadvertently blocking undocumented application dependencies. To mitigate this risk, Flow provides a phased policy enforcement lifecycle.

+-------------------------------------------------------------------------+
|                      Flow Policy Deployment Lifecycle                   |
+-------------------------------------------------------------------------+
|   Step 1: Discover & Map Workload Traffic (Visual Flow Graph)           |
|                                   |                                     |
|                                   v                                     |
|   Step 2: Define Candidate Policy in MONITOR (EVALUATE) Mode            |
|           - Traffic is NOT blocked                                      |
|           - Rule hits logged; non-compliant traffic flagged             |
|                                   |                                     |
|                                   v                                     |
|   Step 3: Audit Discovered Shadow Services & Refine Rules               |
|                                   |                                     |
|                                   v                                     |
|   Step 4: Transition Policy to ENFORCE Mode                             |
|           - Unauthorized packets actively dropped at vNIC tap           |
+-------------------------------------------------------------------------+

Monitor (Evaluate) Mode

  • When an Application Security or Isolation policy is saved in Monitor Mode, Flow tracks and evaluates every network packet traversing the OVS datapath against the policy rules without dropping any traffic.
  • Flow visualizes traffic in real-time within Prism Central. Authorized flows appear in green, while traffic that would be dropped under enforcement appears highlighted in yellow / red.
  • Security administrators can audit legacy protocols, uncover shadow IT communication, and adjust port rules before enforcing lockdown.

Enforce Mode

  • Once all required application flows are validated, the administrator transitions the policy to Enforce Mode.
  • OVS actively enforces the rules: permitted traffic continues traversing the datapath, while any non-compliant packet is dropped immediately at the hypervisor tap port.

5. Real-Time Visualization, Audit Logging, and Licensing

Real-Time Flow Visualization in Prism Central

Prism Central provides an interactive, visual topology map of all network flows across the cluster:

  • Administrators can click on any application category (e.g., AppType: eCommerce) to view an interactive graphical canvas showing all inbound connections, inter-tier relationships, and outbound egress destinations.
  • Clicking on an individual connection reveals detailed flow telemetry: source/destination IP, protocol, port numbers, packet counts, and bandwidth utilization.

Audit Logging and SIEM Export

For enterprise compliance (PCI-DSS, HIPAA, SOC 2), Flow generates structured audit event records:

  • Every policy change, VM quarantine event, and blocked traffic event is logged.
  • Flow supports native Syslog forwarding, streaming real-time security events directly to external Security Information and Event Management (SIEM) platforms including Splunk, IBM QRadar, Microsoft Sentinel, and Elastic Security.

Flow Network Security Licensing

Flow Network Security is a licensed software feature managed centrally through Prism Central. It is available under tiered Nutanix Cloud Platform licensing (such as Nutanix Cloud Infrastructure [NCI] Advanced/Ultimate tiers or as an add-on Flow Security license). Prism Central provides a one-click trial mode enabling organizations to test microsegmentation and evaluate traffic mapping before purchasing licenses.

Loading diagram...
Nutanix Flow Microsegmentation: Multi-Tier App Security, Intra-Tier Isolation, and Quarantine
Test Your Knowledge

What is the primary difference between Strict Quarantine and Forensic Quarantine modes in Nutanix Flow Network Security?

A
B
C
D
Test Your Knowledge

How does the Category-based policy model in Nutanix Flow Network Security improve upon traditional IP-based firewall management?

A
B
C
D
Test Your Knowledge

How does Nutanix Flow Network Security enforce microsegmentation rules without requiring network traffic hairpinning?

A
B
C
D