mirror of
https://github.com/qdm12/ddns-updater.git
synced 2026-06-10 01:02:06 -04:00
Help: issues with getting ip? #61
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @arthur798 on GitHub (Sep 20, 2020).
I am now running the container however I am getting an issue like below:
How can I possibly debug this to find out why it is erroring?
@qdm12 commented on GitHub (Sep 20, 2020):
Hm looks like the container has no internet connection at all. Is your host connected to Internet successfully?
@arthur798 commented on GitHub (Sep 20, 2020):
Yeah I have loads of containers running fine
@qdm12 commented on GitHub (Sep 20, 2020):
Maybe it's just a DNS issue. At start the container tries to reach google.com to check Internet works, and the error
read udp 127.0.0.1:53330->127.0.0.11:53: i/o timeoutshows that it cannot resolve it. What are you using to launch your containers?@arthur798 commented on GitHub (Sep 20, 2020):
So I just use the above to run the container
@qdm12 commented on GitHub (Sep 20, 2020):
Try adding
to your container specification it might solve it?
@arthur798 commented on GitHub (Sep 21, 2020):
thanks @qdm12 that seems to work although I am not sure why I had to explicitly at that to container
@qdm12 commented on GitHub (Sep 21, 2020):
Does the network_mode line solves it by itself? If not then it's a DNS issue. In this case, you force the DNS to be
1.1.1.1(cloudflare). You can try running a container and see if DNS works@qdm12 commented on GitHub (Sep 24, 2020):
Did you figure out what was wrong? Can I close the issue? It seems irrelevant to the container although I don't want to rush to conclusions either.
@bverkron commented on GitHub (Jan 3, 2024):
As a follow up I had the same issue and it required the DNS setting to fix. Bridge mode on it's own did not solve it for me.
It may or may not have to do with PiHole which I'm also running. I only saw successes in PiHole for the requests the ddns container was complaining failed, so it if is PiHole I'm not exactly sure where / how it's interfering since the DNS queries seem to go through. All I know is adding the direct 1.1.1.1 DNS into the compose settings worked.
@qdm12 commented on GitHub (Jun 16, 2024):
@bverkron an error like
read udp 127.0.0.1:53330->127.0.0.11:53: i/o timeoutmeans the DNS is not working; in your casecontext deadline exceeded (Client.Timeout exceeded while awaiting headers)means just the http connection hangs, it should not be a DNS issue. No idea really 🤔 !