Skip to content

DNS message ID mismatch #1070

@vikstrous

Description

@vikstrous

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(".")
    }
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions