Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DNS message ID mismatch #1070

Closed
vikstrous opened this issue Apr 1, 2016 · 1 comment · Fixed by moby/moby#21780
Closed

DNS message ID mismatch #1070

vikstrous opened this issue Apr 1, 2016 · 1 comment · Fixed by moby/moby#21780

Comments

@vikstrous
Copy link

Once in a while when trying to resolve a hostname from within a docker container using a Go binary I get "DNS message ID mismatch". This is happening in docker 1.11-rc2.

You can reproduce it with this script:

package main

import (
    "fmt"
    "net"
)

func main() {
    for {
        _, err := net.LookupHost("google.com")
        if err != nil {
            fmt.Println(err)
        }
        fmt.Print(".")
    }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants