Edge Agent Issues

Troubleshoot common Xyte Edge agent errors, offline states, invalid host names, and proxy ID conflicts.

Diagnose common Xyte Edge agent issues.

The General tab lists individual errors and symptoms with their likely meaning. Specific use cases walks through complete diagnostic flows for scenarios that need more than a single check.

Scenario or errorLikely meaningRecommended next steps
Edge agent is in errorHost offline, device offline, or required traffic is blocked.Check:
1. Docker container status (running, restarting, exited)
2. Network connectivity from the host
3. Network connectivity from inside the container: nc -zv -w 5 eu1.edge.xyte.io 443
4. Restart the Docker container

If it still fails:
1. Remove Docker and reinstall it
2. Reinstall the Edge software again (fresh install)
Edge agent: Invalid params: invalid host nameThe Edge ID format is wrong, or the value includes a hidden character or quote.Try this:
1. Re-enter the Edge ID manually
2. Remove any extra quotes or hidden characters
3. Try the request again
Edge agent is offlineStart with offline troubleshooting, then verify outbound connectivity.Start here:
- Review the guide: Edge offline troubleshooting

Then run these checks:
1. Run docker ps
2. Enter the xyte_edge container: docker exec -it xyte_edge bash
3. Run docker ps again from inside the container, if applicable
4. Enter the second container: docker exec -it [container_id] bash
5. Run nc -zv -w 5 eu1.edge.xyte.io 443
Edge agent: Proxy ID already existsThe proxy ID is already attached to another Edge device.Next steps:
1. Delete the Edge agent in the UI that is currently using this proxy ID
2. After the old ID is released, add the Edge again with the same proxy ID
Cannot read the response, check connection with the Zabbix server "zabbix-server"The command could not be delivered to your Edge. zabbix-server is a host inside Xyte's cloud, not a port or a connection on your network. In practice it means the Edge is offline, so nothing answered.Do not open port 10051 - it is internal to Xyte and is not reachable from outside.
1. Confirm the Edge shows Online in the portal
2. If it is not, follow Networking
3. On Docker Desktop, restart the app first - it stops when the user logs out
4. If the Edge is Online and this persists, contact [email protected]
Connection to Zabbix server "zabbix-server:10051" failed. Possible reasons: 1. Incorrect "NodeAddress" or "ListenPort" in the "zabbix_server.conf" or server IP/DNS override in the "zabbix.conf.php"; 2. Incorrect DNS server configuration. Operation timed outAn internal Xyte fault between our Zabbix frontend and our Zabbix server. zabbix-server:10051 sits inside Xyte's cloud and is not reachable from outside it - nothing on your network is involved.No change is required on your side, and port 10051 should not be opened. Contact [email protected].
Port 443 tests open (nc, telnet, or Test-NetConnection succeeds) but the Edge has never connectedSSL/TLS inspection on the corporate or campus firewall. The TCP check passes, but the Edge's non-web traffic is re-signed or dropped. Xyte uses a custom certificate, which inspection breaks.From the Edge's network, run:
echo | openssl s_client -connect eu1.edge.xyte.io:443 2>/dev/null | grep "s:"

Working: prints s:O=xyte, CN=server.zabbix-prod
Intercepted: shows your firewall or proxy's certificate name instead, or no output at all.

If intercepted, ask your network team to exempt eu1.edge.xyte.io:443 from SSL inspection. If the certificate check passes and the Edge still does not connect, send [email protected] the time of an attempt so we can trace it from our side.
Testing connectivity with curl returns SSL: certificate subject name 'server.zabbix-prod' does not match target hostname 'eu1.edge.xyte.io' (curl error 60)Expected and harmless. eu1.edge.xyte.io:443 is a mutual-TLS data channel that authenticates by certificate subject (server.zabbix-prod), not by DNS host name, so host-name verification in general-purpose tools such as curl or a browser fails even though the secure connection itself succeeds. It is not a misconfiguration of the Edge, the network, or Xyte.No action needed if the Edge shows Active / Online — it is working.

To test connectivity, check port reachability instead of the certificate: nc -zv -w 5 eu1.edge.xyte.io 443. A succeeded! result means outbound connectivity is fine. (telnet is not installed in the Edge container — use nc, which is.)

You can also run curl with the -kv flags to skip certificate validation: curl -kv . If the output shows Connected to eu1.edge.xyte.io, the connection is established and the Edge is working as expected.

Do not add certificate exceptions or change the Edge / proxy configuration based on this warning.
Updating the Edge version reports success in the hub, but the agent stays on the old version. Docker logs show failed to resolve reference "docker.io/xytetech/edge_proxy:<tag>" followed by EOF (or a similar timeout / connection reset while pulling the image)Docker could not reach Docker Hub to download the new Edge image, so the pull failed and the agent rolled back to the previous version. This is almost always host network connectivity — a firewall, proxy, SSL inspection appliance, or corporate network policy blocking Docker Hub — not the Xyte image itself.Confirm it's the network, not the image:

1. Pull a public test image:
docker pull hello-world
If this also fails, the problem isn't specific to the Xyte image.

2. Test Docker Hub reachability:
curl -I
A 401 Unauthorized response is expected and confirms Docker Hub is reachable.

3. On Docker Desktop for Windows, restart Docker Desktop. If it continues, fully close it, run this in PowerShell, then reopen Docker Desktop:
wsl --shutdown

4. If it still fails, ask your network or security team whether a firewall, proxy, SSL inspection, or corporate network policy is blocking Docker Hub (registry-1.docker.io and auth.docker.io on port 443).
The Edge is Online, but devices on a 172.17.x.x or 172.18.x.x subnet are never reachableThose ranges overlap Docker's own default networks - docker0 uses 172.17.0.0/16 and further Docker networks take 172.18.0.0/16 onward. Traffic for the device subnet is routed to the Docker bridge instead of the physical NIC, so the devices are never reached even though the Edge itself is connected.The tell is a ping that returns Destination Host Unreachable rather than timing out - that reply is generated locally, not by the device.

1. On the Edge host run ip route get for one of the device addresses, and check whether it selects docker0 or a br-* interface instead of the real NIC
2. If it does, change Docker's address pool so it no longer overlaps the device network: set default-address-pools in daemon.json (Docker Desktop: Settings, then Docker Engine) to a base outside your device ranges, for example 10.200.0.0/16 with size 24
3. Restart Docker and re-check the route

Last updated: 2026-08-31


What’s Next

Did this page help you?