Earlier quoted context omitted.
I can't imagine using Google services if one is remotely privacy conscious. Just from your own defense: Drive: > your data isn't scanned (except for... Google DNS: > What logging exists is extremely temporary... Gmail: > we receive your email, scan it for ....
With that logic, how could anyone remotely privacy conscious use any service on the Internet? There’s a lot to worry about w.r.t. privacy online. Virus scanning, spam filtering, and debug logging aren’t high on my worry-list.
Paul Vixie thinks more people should be running their own DNS servers
61–70 of 155 posts
Re: Paul Vixie thinks more people should be running their own DNS servers
#62Quick, name a non-niche dns server that is easy to configure and maintain that hasn't had a major vulnerability in the last six months.
despite that "safety record", I am probably going to switch to https://github.com/bluejekyll/trust-dns
Re: Paul Vixie thinks more people should be running their own DNS servers
#63This site is a paywall no matter if I go incognito or use the web link. Am i missing some ninja magic? Is it ok to be irritated by this? Haven't been able to read the article but is it referring to this Nov 2018 tweet? https://twitter.com/paulvixie/status/1063843157668970496?s=1...
Re: Paul Vixie thinks more people should be running their own DNS servers
#64Re: Paul Vixie thinks more people should be running their own DNS servers
#65It's also handy to review the DNS logs. I found out my off brand wifi cameras were phoning home to china every minute. Blocked that domain in a hot minute!
Re: Paul Vixie thinks more people should be running their own DNS servers
#66Earlier quoted context omitted.
DNSCrypt only provides authentication, not confidentiality, and it’s only between the client and the recursive server. So it doesn’t address either the performance or the privacy concern of routing all your DNS through someone else’s recursive servers. Edit: apparently it encrypts traffic as well: https://dnscrypt.info/faq/ So it’s comparable to DoH which prevents your ISP from snooping but per my other comments here…
Are you sure you're not thinking of DNSCurve? It doesn't provide confidentiality, but AFAICT DNSCrypt does.
Re: Paul Vixie thinks more people should be running their own DNS servers
#67More people should be running their own mail servers, their own web servers, their own IRC servers, etc. But I don't think we are ever going back to that direction. The arguments and benefits for running one locally are not enough the trouble as well. Performance? Due to DNS caching at the resolver level, it is probably faster to use Google's 8.8.8.8 or CloudFlare's 1.1.1.1, than anything local (where all dns request…
As the powers that be continue to centralize and exert control in a negative way, I have a feeling the pendulum will swing the other way once people get annoyed with it.
Kids are already using VPNs to circumvent controls.
Need to make a cyberpunk-esque decentralization kit for the next generation to adopt.
Re: Paul Vixie thinks more people should be running their own DNS servers
#68More people should be running their own mail servers, their own web servers, their own IRC servers, etc. But I don't think we are ever going back to that direction. The arguments and benefits for running one locally are not enough the trouble as well. Performance? Due to DNS caching at the resolver level, it is probably faster to use Google's 8.8.8.8 or CloudFlare's 1.1.1.1, than anything local (where all dns request…
> Performance? Due to DNS caching at the resolver level, it is probably faster to use Google's 8.8.8.8 or CloudFlare's 1.1.1.1, than anything local (where all dns requests are a MISS). It's perfectly possible to recursive resolve your misses to Google's DNS server if you want.
I don't think that's how recursive name servers work. It's been a while since I've had to reason about this but, for example if 'www.google.com' in not cache, it contacts a root domain server, then a 'com' domain server, then a 'google.com' domain server, which finally answers the query, which then gets cached by the recursive name server.
Eventually the recursive name server on your family or organization's local LAN will have a decent cache hit ratio, and the round trip times to your local recursive server could be potentially an order of magnitude (2ms vs. 20ms) faster than talking to Google or CloudFlare.
It's possible that your ISP can still know which DNS lookups you're doing by snooping the traffic between your recursive DNS server and other DNS servers on the net, but I'm guessing that they're not doing this because it's not as easy as just ingesting their own DNS logs.
Re: Paul Vixie thinks more people should be running their own DNS servers
#69I ran my own DNS servers in the past (and email servers). It's not too difficult to setup (email is significantly harder), although you'll probably have to run at least two DNS servers in order to use it with a domain because most registrars won't let you change the nameservers unless you have at least two. I think it's a worthwhile thing to do since it demystifies how DNS works (similarly with running your own email…
Re: Paul Vixie thinks more people should be running their own DNS servers
#70Earlier quoted context omitted.
Are you sure you're not thinking of DNSCurve? It doesn't provide confidentiality, but AFAICT DNSCrypt does.
You’re right. I went of the Wikipedia page for it which says: DNSCrypt wraps unmodified DNS traffic between a client and a DNS resolver in a cryptographic construction in order to detect forgery. Though it doesn't provide end-to-end security, it protects the local network against man-in-the-middle attacks. https://en.wikipedia.org/wiki/DNSCrypt But according to dnscrypt.info it’s encrypted.