ashertern
(Asher Tern)
April 15, 2022, 10:18pm
1
Hello -
running Fedora 34 OS
using cli
unable to run a whois on tld’s with .dev
times out
$ whois videlicet.dev
[Querying domain-registry-whois.l.google.com ]
[domain-registry-whois.l.google.com : Name or service not known]
[Unable to connect to remote host]
last time this happened, I had to update the etc/jwhois.conf
but I have no idea what .dev is supposed to be updated to.
unable to find at icann
any ideas?
vwbusguy
(Scott Williams)
April 15, 2022, 10:21pm
2
I see the same on Fedora 36 for that host:
$ whois videlicet.dev
[Querying domain-registry-whois.l.google.com]
[domain-registry-whois.l.google.com: Name or service not known]
[Unable to connect to remote host]
The problem seems to be it’s looking for a Google server that doesn’t seem to exist at the moment:
$ nslookup domain-registry-whois.l.google.com 1.1.1.1
Server: 1.1.1.1
Address: 1.1.1.1#53
** server can't find domain-registry-whois.l.google.com: NXDOMAIN
$ nslookup domain-registry-whois.l.google.com 8.8.8.8
Server: 8.8.8.8
Address: 8.8.8.8#53
** server can't find domain-registry-whois.l.google.com: NXDOMAIN
In the meantime, you can use Google’s web based WHOIS service .
tjdoyle
(Tom Doyle)
April 15, 2022, 10:32pm
3
Hi,
Similar issue to this came up the other day for .au domains:
https://discussion.fedoraproject.org/t/whois-for-au-tld-times-out/75299
a quick google for whois of google domains found this:
https://serverfault.com/questions/711354/why-cant-i-whois-google-domains
Following a suggestion in the link I found this:
$ whois -h whois.iana.org google | grep ^whois
whois: whois.nic.google
So it looks like google’s whois server has changed again, I can get a result if I update /etc/jwhois.conf
:
#"\\.dev$" = "domain-registry-whois.l.google.com";
"\\.dev$" = "whois.nic.google";
Thanks Tom.
2 Likes