Google DNS (8.8.8.8) is down in Europe
It seems 8.8.8.8 (google dns) is down or returning no results for 3/4 of domains I have tested.
nslookup discordapp.com 8.8.8.8: google-public-dns-a.google.com can't find discordapp.com: Server failed
same thing executed on 1.1.1.1 (Cloudflare dns) works correctly
nslookup discordapp.com 1.1.1.1: Name: discordapp.com Addresses: 104.16.58.5, 104.16.59.5
6 comments
[ 2.7 ms ] story [ 23.4 ms ] threadServer: 8.8.8.8 Address: 8.8.8.8#53
Name: discordapp.com Address: 104.16.58.5 Name: discordapp.com Address: 104.16.59.5
Can you try again few times? Also I'm in europe, maybe this is impacting only europe?
nslookup nodejs.org 8.8.8.8 Server: 8.8.8.8 Address: 8.8.8.8#53
server can't find nodejs.org: SERVFAIL
Edit: I'm in Europe, my servers in US work fine
A work around would be to use a recursive caching server to forward requests upstream to multiple IP's and let it track which one is down. Unbound DNS is really good for this. You could set forwarders to 1.1.1.1, 1.0.0.1, 8.8.8.8 and 8.8.4.4 and it will track which ones are up.
An example configuration in Unbound DNS would look like this:
And you can view it's status with unbound-control: This method of caching can also slightly improve the privacy of the people using your network. You get the bonus of a local low latency cache, and requests are distributed among multiple destinations, slightly reducing the marketing benefits of running those public DNS servers.