Skip to content

Commit 5040910

Browse files
committed
Typos
1 parent 00e91a4 commit 5040910

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

articles/iot-edge/how-to-create-transparent-gateway.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ If you don't have a device ready, you can create one in an Azure virtual machine
7575
# [IoT Edge for Linux on Windows](#tab/eflow)
7676

7777
>[!WARNING]
78-
> Because the IoT Edge for Linux on Windows (EFLOW) virtual machine needs to be accessible from external devices, ensure to deploy EFLOW with an External virtual switch. For more information about EFLOW networking configurations, see [Networking configuration for Azure IoT Edge for Linux on Windows](./how-to-configure-iot-edge-for-linux-on-windows-networking.md)
78+
> Because the IoT Edge for Linux on Windows (EFLOW) virtual machine needs to be accessible from external devices, ensure to deploy EFLOW with an External virtual switch. For more information about EFLOW networking configurations, see [Networking configuration for Azure IoT Edge for Linux on Windows](./how-to-configure-iot-edge-for-linux-on-windows-networking.md).
7979
8080
A Windows device with IoT Edge for Linux on Windows installed.
8181

@@ -120,10 +120,11 @@ If you created the certificates on a different machine, copy them over to your I
120120
Now you need to copy the certificates to the Azure IoT Edge for Linux on Windows virtual machine to proceed with the next steps.
121121

122122
1. Open an elevated _PowerShell_ session by starting with **Run as Administrator**.
123-
1. Connect to the EFLOW virtual machine
123+
1. Connect to the EFLOW virtual machine.
124124
```powershell
125125
Connect-EflowVm
126126
```
127+
127128
1. Create the certificates directory - You can select any of the writeable directories. For this tutorial, we'll use the _iotedge-user_ home folder.
128129
```bash
129130
cd ~
@@ -132,11 +133,13 @@ Now you need to copy the certificates to the Azure IoT Edge for Linux on Windows
132133
mkdir certs
133134
mkdir private
134135
```
135-
1. Exit the EFLOW VM connection
136+
137+
1. Exit the EFLOW VM connection.
136138
```bash
137139
exit
138140
```
139-
1. Copy the certificates to the EFLOW virtual machine
141+
142+
1. Copy the certificates to the EFLOW virtual machine.
140143
```powershell
141144
# Copy the IoT Edge device CA certificates
142145
Copy-EflowVMFile -fromFile <path>\certs\iot-edge-device-ca-<cert name>-full-chain.cert.pem -toFile /home/iotedge-user/certs/certs/iot-edge-device-ca-<cert name>-full-chain.cert.pem -pushFile
@@ -145,6 +148,7 @@ Now you need to copy the certificates to the Azure IoT Edge for Linux on Windows
145148
# Copy the root CA certificate
146149
Copy-EflowVMFile -fromFile <path>\certs\azure-iot-test-only.root.ca.cert.pem -toFile /home/iotedge-user/certs/certs/azure-iot-test-only.root.ca.cert.pem -pushFile
147150
```
151+
148152
1. Connect to the EFLOW VM and change the permissions of the certificate files as the commands above copies the certificates with root only access permissions.
149153
```powershell
150154
Invoke-EflowVmCommand "sudo chown -R iotedge /home/iotedge-user/certs/"

0 commit comments

Comments
 (0)