// ntddndis.h
typedef enum _NDIS_ISOLATION_MODE {
NdisIsolationModeNone,
NdisIsolationModeNativeVirtualSubnet,
NdisIsolationModeExternalVirtualSubnet,
NdisIsolationModeVlan
} NDIS_ISOLATION_MODE, *PNDIS_ISOLATION_MODE;
View the official Windows Driver Kit DDI referenceNo description available.
The NDIS_ISOLATION_MODE enumeration defines the network isolation modes that can be specified for a VM network adapter.
NdisIsolationModeNoneNetwork isolation is not supported.
NdisIsolationModeNativeVirtualSubnetNative VirtualSubnetId-based isolation provided by Hyper-V Network Virtualization.
NdisIsolationModeExternalVirtualSubnetExternal VirtualSubnetId-based isolation provided by a Hyper-V Extensible Switch extension.
NdisIsolationModeVlanVirtual local area network (VLAN)-based isolation.
NDIS_ISOLATION_MODE enumeration values are used in the IsolationMode member of the NDIS_ISOLATION_PARAMETERS and NDIS_SWITCH_PORT_PROPERTY_ISOLATION structures.
NDIS_SWITCH_PORT_PROPERTY_ISOLATION