Create a VLAN with Hyper-V
For Windows 11 Servers such as the RX III/ EX 2C/ VX 3
With Intel PROSet and Advanced Network Services (ANS) no longer supported on Windows 11, managing VLANs and network redundancy requires new workflows. This guide shows how to configure basic VLANs on Disguise media servers using Hyper-V and PowerShell.
Install Hyper-V
- Open Windows Features:
- Press
Win + S
, type Windows Features, and select Turn Windows features on or off.
- Press
- Enable Hyper-V:
- Check:
- Hyper-V Management Tools → Hyper-V Module for Windows PowerShell
- Hyper-V Platform → Hyper-V Hypervisor
- Check:
- Click OK and restart if prompted.
Identify Network Adaptors
To configure VLANs, you first need to identify the available network adapters.
- Open PowerShell as Administrator.
- Run the following command:
This will list all network adapters and# their details.
Terminal window GET-NETIPCONFIGURATION
Example Output:
InterfaceAlias : Ethernet 1InterfaceIndex : 4IPAddress : 192.168.1.100...
Create a Virtual Switch
Create a virtual switch in Hyper-V to route traffic through a specific network adapter.
-
Run the following command in PowerShell:
Terminal window New-VMSwitch "disguise" -AllowManagementOS $true- Replace
"disguise"
with your desired switch name. - The
-AllowManagementOS $true
flag allows Windows to communicate through this switch.
- Replace
-
When prompted, enter the name of the network adapter you identified in Step 1 (e.g.,
Ethernet 1
).
Add a VLAN to the Virtual Switch
Now, create a VLAN on the newly created virtual switch.
- Use this command:
Terminal window Add-VMNetworkAdapter -ManagementOS -Name VLAN1-D3NET -SwitchName "disguise"- Replace
VLAN1-D3NET
with the desired VLAN name. - Replace
"disguise"
with the name of the virtual switch you created.
- Replace
Hyper V Limitations and Considerations
- No NIC Teaming: Windows 11 does not support NIC teaming, so redundancy for network port failure is not included.
- Single Adapter: Configure VLANs on only one adapter per virtual switch for stability.
- Redundancy Options: Consider using hardware redundancy with stacked switches.
By following this guide, you can successfully configure VLANs on a Disguise server using Windows 11.