You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pages/elastic-metal/how-to/use-private-networks.mdx
+50-6Lines changed: 50 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -155,17 +155,61 @@ You must configure the virtual network interface on each Elastic Metal server yo
155
155
<Message type="important">
156
156
Two network interfaces display: Your VLAN and `default`. Make sure to keep the default network, otherwise you will lose access to your server via the public internet.
157
157
</Message>
158
-
7. Click **Start** > **Execute** and type `ncpa.cpl`. Then click **OK** to open the network connection manager.
159
-
8. Click on your VLAN network connection and right-click on it to open the menu. Click **Properties** to display the connection properties.
160
-
9. Select **Internet Protocol version 4 (TCP/IPv4)** and click **Properties**. A pop-up displays.
161
-
10. Click **Use the following IP address** and configure the IPv4 configuration of your Private Network. Then click **OK** to save your configuration.
162
-
11. Click **Close** to close the network interface properties.
163
158
164
-
You completed the configuration of your Private Network on Windows Server 2019.
159
+
### Static IP configuration (optional)
160
+
161
+
<Message type="important">
162
+
If you are running multiple virtual machines on an Elastic Metal server, our managed DHCP is not currently able to distribute IP addresses to your virtual machines. We recommend that you use the [IPAM API](https://www.scaleway.com/en/developers/api/ipam/) to book IP addresses for your virtual machines, and assign them manually.
163
+
</Message>
164
+
165
+
1. Click **Start** > **Run** and type `ncpa.cpl`. Then click **OK** to open the network connection manager.
166
+
2. Click on your VLAN network connection and right-click on it to open the menu. Click **Properties** to display the connection properties.
167
+
3. Select **Internet Protocol version 4 (TCP/IPv4)** and click **Properties**. A pop-up displays.
168
+
4. Click **Use the following IP address** and configure the IPv4 configuration of your Private Network. Then click **OK** to save your configuration.
169
+
<Message type="tip">
170
+
To know what netmask and IP address to configure, refer to the **Private Network** menu for your Elastic Metal server in the Scaleway console.
171
+
</Message>
172
+
5. Click **Close** to close the network interface properties.
173
+
165
174
<Message type="tip">
166
175
You can use the `ipconfig` command to verify your IP configuration from a command prompt.
167
176
</Message>
168
177
178
+
### Additional configuration for virtual machines running on Hyper-V
179
+
180
+
If you are running virtual machines with Hyper-V, refer to the Microsoft documentation regarding [Hyper-V and VLANs](https://learn.microsoft.com/en-us/windows-server/virtualization/hyper-v/deploy/configure-virtual-local-area-networks-for-hyper-v).
181
+
182
+
<Message type="note">
183
+
Since Windows Server 2022 came out, the procedure differs from Windows 2019. LBFO (a Hyper-V switch related to NIC teaming) has been deprecated and replaced by SET (Switch Embedded Teaming).
184
+
This change may introduce limitations regarding VLAN assignment for multiple VMs on clusters of Elastic Metal servers.
185
+
</Message>
186
+
187
+
Below is an example of how to connect one Private Network to a virtual machine created by Hyper-V on a Windows Server 2022 host (the Elastic Metal server's operating system).
188
+
189
+
1. Open a PowerShell terminal and run the following command:
190
+
```powershell
191
+
Get-NetAdapter
192
+
```
193
+
<Message type="important">
194
+
Do not enable NIC Teaming on the host.
195
+
</Message>
196
+
This command will display the network interface names. Copy the name of the interface that is "Up".
197
+
198
+
2. Create a new VMSwitch:
199
+
```powershell
200
+
New-VMSwitch -Name "SET Team" -NetAdapterName "<NAME OF THE NETWORK INTERFACE>" -EnableEmbeddedTeaming $true
201
+
```
202
+
203
+
3. Create a "custom" resource in the [Private Network](/vpc/how-to/attach-resources-to-pn/).
204
+
205
+
4. When creating the VM, select the SET switch in the networking creation menu.
206
+
207
+
5. Copy the MAC address of the VM from the **Network adapter** section of the VM settings, under the **Advanced features** subsection.
208
+
209
+
6. Change the Virtual Machine settings:
210
+
- Go to the "Network adapter" section of the VM in Hyper-V.
211
+
- Set the VLAN ID (copy it from the **Private Network** menu in the Elastic Metal server console).
0 commit comments