Skip to content

Commit f8f37ee

Browse files
Merge pull request #215394 from AshokPeddakotla-MSFT/patch-79
(Azure CXP) Fixing PowerShell Command
2 parents 47f4886 + 4ecd00d commit f8f37ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/iot-edge/how-to-configure-iot-edge-for-linux-on-windows-networking.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ EFLOW-Ext External
5050
To use a specific virtual switch(**internal** or **external**), make sure you specify the correct parameters: `-vSwitchName` and `vSwitchType`. For example, if you want to deploy the EFLOW VM with an **external switch** named **EFLOW-Ext**, then in an elevated PowerShell session use the following command:
5151

5252
```powershell
53-
Deploy-EflowVm -vSwitchType "External" -vSwitchName "EFLOW-Ext"
53+
Deploy-Eflow -vSwitchType "External" -vSwitchName "EFLOW-Ext"
5454
```
5555

5656

@@ -70,7 +70,7 @@ By default, if no **static IP** address is set up, the EFLOW VM will try to allo
7070
If you're using a **static IP**, you'll have to specify three parameters during EFLOW deployment: `-ip4Address`, `ip4GatewayAddress` and `ip4PrefixLength`. If one parameter is missing or incorrect, the EFLOW VM installation will fail to allocate an IP address and installation will fail. For more information about EFLOW VM deployment, see [PowerShell functions for IoT Edge for Linux on Windows](./reference-iot-edge-for-linux-on-windows-functions.md#deploy-eflow). For example, if you want to deploy the EFLOW VM with an **external switch** named **EFLOW-Ext**, and a static IP configuration, with an IP address equal to **192.168.0.2**, gateway IP address equal to **192.168.0.1** and IP prefix length equal to **24**, then in an elevated PowerShell session use the following command:
7171
7272
```powershell
73-
Deploy-EflowVm -vSwitchType "External" -vSwitchName "EFLOW-Ext" -ip4Address "192.168.0.2" -ip4GatewayAddress "192.168.0.1" -ip4PrefixLength "24"
73+
Deploy-Eflow -vSwitchType "External" -vSwitchName "EFLOW-Ext" -ip4Address "192.168.0.2" -ip4GatewayAddress "192.168.0.1" -ip4PrefixLength "24"
7474
```
7575

7676
>[!TIP]

0 commit comments

Comments
 (0)