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
1. Check that the virtual switch was correctly assigned to the EFLOW VM.
53
53
```powershell
54
-
Get-EflowNetwork -Name "{switchName}"
54
+
Get-EflowNetwork -vSwitchName "{switchName}"
55
55
```
56
56
57
57
For more information about attaching a virtual switch to the EFLOW VM, see [PowerShell functions for Azure IoT Edge for Linux on Windows](./reference-iot-edge-for-linux-on-windows-functions.md).
@@ -66,25 +66,27 @@ Once the virtual switch was successfully assigned to the EFLOW VM, you need to c
66
66
67
67
- If you're using DHCP, no Static IP parameters are needed.
For example, if you wanted to create and assign the "OnlineOPCUA" endpoint with the external virtual switch named "OnlineOPCUA, and Static IP configurations (_ip4Address=192.168.0.103, ip4GatewayAddress=192.168.0.1, ip4PrefixLenght=24_) you should use the following command:
77
+
For example, if you wanted to create and assign the **OnlineEndpoint** endpoint with the external virtual switch named **OnlineExt**, and Static IP configurations (_ip4Address=192.168.0.103, ip4GatewayAddress=192.168.0.1, ip4PrefixLenght=24_) you should use the following command:
1. Check that the network endpoint was correctly created and assigned to the EFLOW VM.
84
+
1. Check that the network endpoint was correctly created and assigned to the EFLOW VM. You should see the two network interfaces assigned to the virtual machine.
85
85
```powershell
86
-
Get-EflowVmEndpoint -Name "{switchName}"
86
+
Get-EflowVmEndpoint
87
87
```
88
+
:::image type="content" source="./media/how-to-configure-multiple-nics/ps-cmdlet-get-eflow-vm-endpoint.png" alt-text="EFLOW get attached network interfaces":::
89
+
88
90
89
91
For more information about creating and attaching a network endpoint to the EFLOW VM, see [PowerShell functions for Azure IoT Edge for Linux on Windows](./reference-iot-edge-for-linux-on-windows-functions.md).
90
92
@@ -103,7 +105,7 @@ The final step is to make sure the networking configurations were applied correc
103
105
ifconfig
104
106
```
105
107
106
-
The default interface _eth0_ is the one used for all the VM management. You should see another interface, like _eth1, which is the new interface that was assigned to the VM. Following the examples above, if you previously assigned a new endpoint with the static IP 192.168.0.103 and
108
+
The default interface **eth0** is the one used for all the VM management. You should see another interface, like **eth1**, which is the new interface that was assigned to the VM. Following the examples above, if you previously assigned a new endpoint with the static IP 192.168.0.103 you should see the interface **eth1** with the _inet addr: 192.168.0.103_.
107
109
108
110

0 commit comments