14
4
I'm trying to visit websites like https://get.dev, but instead of loading website, there appears "Resolving host" message and then I'm getting "This site can’t be reached get.dev’s server IP address could not be found. DNS_PROBE_FINISHED_NXDOMAIN".
Here's what so far I have done:
- I've tried visit websites from different browsers (Chrome, Safari, Firefox) - but with no luck. So it's not duplicate to How to stop an automatic redirect from “http://” to “https://” in Chrome
- My hosts configuration is pretty default:
127.0.0.1 localhost
255.255.255.255 broadcasthost
::1 localhost
fe80::1%lo0 localhost
- I had got installed Laravel Valet before, but I removed it and uninstalled dnsmasq (
brew uninstall dnsmasq
). Afer I removed I've restarted my computer. - I've tried also to ping those domains, but console (after some time) returns only
ping: cannot resolve get.dev: Unknown host
- It's possible to visit ".dev" websites from other computers in the same wi-fi network.
I'm wondering what else I can do to debug it and make it work?
2Which DNS servers are you using on your computer? (If the OS is configured to use dnsmasq, which servers is dnsmasq using – and is 'dev' mentioned anywhere in dnsmasq's config?) – user1686 – 2019-03-12T13:47:16.193
do either of the following work?
dig get.dev
anddig +trace get.dev
- if they fail, what's the output? – Attie – 2019-03-12T13:48:49.990I'm using Cloudflare DNS (1.1.1.1). I've stopped and uninstalled dnsmasq using homebrew. I've checked also some old dnsmasq's config and searching "dev" returned 0 results.
For
dig get.dev
I'm getting: https://pastebin.com/74NnEcFr And fordig +trace get.dev
: https://pastebin.com/G3WDGHZM2
You really shouldn't be using using
– Burgi – 2019-03-12T14:19:39.513.dev
on your local machine. These are fully qualified TLDs now. You should swap to using.localhost
as outlined in the IETF documentation.Possible duplicate of How to stop an automatic redirect from “http://” to “https://” in Chrome
– Burgi – 2019-03-12T14:22:33.070You really shouldn't be using using .dev on your local machine
@user2929594 the output from
dig
that you've shared implies the DNS lookup is successful... is this still an issue? – Attie – 2019-03-12T15:53:37.040