When this applies
This applies if:
You are using Docker
Your node is hosted on a VPS
Your node shows Strict / Symmetric NAT or Monitoring failed
Problem
By default, Docker uses a bridge network, which adds another layer of NAT.
This can:
Prevent incoming connections
Cause NAT issues
Result in failed sessions
Solution: use host network mode
Run your container with:
--network=host
This allows the container to:
Use the host’s network directly
Avoid additional NAT layers
Improve connectivity
Important
Host networking works only on Linux
Not supported on:
Docker Desktop (macOS)
Docker Desktop (Windows)
