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: articles/iot-edge/troubleshoot-common-errors.md
+43Lines changed: 43 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -115,6 +115,49 @@ You can set DNS server for each module's *createOptions* in the IoT Edge deploym
115
115
116
116
Be sure to set this configuration for the *edgeAgent* and *edgeHub* modules as well.
117
117
118
+
### Edge Agent module with LTE connection reports 'empty edge agent config' and causes 'transient network error'
119
+
120
+
#### Symptoms
121
+
122
+
A device configured with LTE connection is having issues starting modules defined in the deployment. The *edgeAgent* isn't able to connect to the IoT Hub and reports *empty edge agent config* and *transient network error occurred.*
123
+
124
+
#### Cause
125
+
126
+
Some networks have packet overhead, which makes the default docker network MTU (1500) too high and causes packet fragmentation preventing access to external resources.
127
+
128
+
#### Solution
129
+
130
+
1. Check the MTU setting for your docker network.
131
+
132
+
`docker network inspect <network name>`
133
+
134
+
1. Check the MTU setting for the physical network adaptor on your device.
135
+
136
+
`ip addr show eth0`
137
+
138
+
>[!NOTE]
139
+
>The MTU for the docker network cannot be higher than the MTU for your device. Contact your ISP for more information.
140
+
141
+
If you see a different MTU size for your docker network and the device, try the following workaround:
0 commit comments