Skip to content

Commit 3f9cc64

Browse files
committed
Fix command syntax errors in IoT Edge docs
- Fix TOML syntax: use 'image =' instead of 'image:' in downstream edge device config examples - Fix typo: 'iotege' to 'iotedge' in manage device certificates guide - Fix wrong port: HTTPS:433 to HTTPS:443 in downstream device troubleshooting - Fix missing verb in downstream device prerequisites
1 parent 56306eb commit 3f9cc64

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

articles/iot-edge/how-to-connect-downstream-device.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Acquire the following to prepare your downstream device:
5151

5252
This file is used to generate the Edge CA certificate in [Configure an IoT Edge device to act as a transparent gateway](how-to-create-transparent-gateway.md), and is available on your downstream device.
5353

54-
Your downstream device uses this certificate to check the identity of the gateway device. This trusted certificate the transport layer security (TLS) connections to the gateway device. For usage details, see [Provide the root CA certificate](#provide-the-root-ca-certificate).
54+
Your downstream device uses this certificate to check the identity of the gateway device. This trusted certificate secures the transport layer security (TLS) connections to the gateway device. For usage details, see [Provide the root CA certificate](#provide-the-root-ca-certificate).
5555

5656
* A modified connection string that points to the gateway device.
5757

@@ -233,7 +233,7 @@ If your downstream device connection to its gateway device is unstable, consider
233233

234234
* Is the gateway hostname in the connection string the same as the hostname value in the IoT Edge config file on the gateway device?
235235
* Can the gateway hostname resolve to an IP address? Fix intermittent connections by using DNS or adding a host file entry on the downstream device.
236-
* Are communication ports open in your firewall? Make sure the required protocol ports (MQTTS:8883, AMQPS:5671, HTTPS:433) are open between the downstream device and the transparent IoT Edge device.
236+
* Are communication ports open in your firewall? Make sure the required protocol ports (MQTTS:8883, AMQPS:5671, HTTPS:443) are open between the downstream device and the transparent IoT Edge device.
237237

238238
## Next steps
239239

articles/iot-edge/how-to-connect-downstream-iot-edge-device.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -524,7 +524,7 @@ You should already have IoT Edge installed on your device. If not, follow the st
524524
type = "docker"
525525
526526
[agent.config]
527-
image: "mcr.microsoft.com/azureiotedge-agent:1.5"
527+
image = "mcr.microsoft.com/azureiotedge-agent:1.5"
528528
```
529529
530530
01. The beginning of your downstream configuration file should look similar to the following example.
@@ -841,7 +841,7 @@ name = "edgeAgent"
841841
type = "docker"
842842
843843
[agent.config]
844-
image: "{Parent FQDN or IP}:443/azureiotedge-agent:1.5"
844+
image = "{Parent FQDN or IP}:443/azureiotedge-agent:1.5"
845845
```
846846
847847
If you're using a local container registry, or providing the container images manually on the device, update the config file accordingly.

articles/iot-edge/how-to-manage-device-certificates.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -562,7 +562,7 @@ Instead of manually managing the certificate files, IoT Edge has the built-in ab
562562
1. Apply the configuration
563563

564564
```bash
565-
sudo iotege config apply
565+
sudo iotedge config apply
566566
```
567567

568568
The following table lists what each option in `auto_renew` does:

0 commit comments

Comments
 (0)