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

net: root dns zone lookups not working #46577

Closed
pjediny opened this issue Jun 4, 2021 · 1 comment
Closed

net: root dns zone lookups not working #46577

pjediny opened this issue Jun 4, 2021 · 1 comment

Comments

@pjediny
Copy link
Contributor

pjediny commented Jun 4, 2021

What version of Go are you using (go version)?

$ go version
go version go1.16.5 darwin/amd64

Does this issue reproduce with the latest release?

What did you do?

Tried to query root zone NS records, to emulate

dig -t ns -q .
func main() {
	r, err := net.LookupNS(".")

	if err != nil {
		fmt.Printf("%v\n", err)
		return
	}
	fmt.Println(len(r), r)
}

What did you expect to see?

List of ns records.

What did you see instead?

lookup .: no such host
@seankhliao
Copy link
Member

Duplicate of #45715

@seankhliao seankhliao marked this as a duplicate of #45715 Jun 4, 2021
@golang golang locked and limited conversation to collaborators Jun 4, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

3 participants