TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

DNS Block: Canal+ Sues Cloudflare, Google and Cisco to Fight Piracy

3 pointsby gslinover 1 year ago

1 comment

Baldbvrhunterover 1 year ago
How long before they try and block <a href="https:&#x2F;&#x2F;root-servers.org&#x2F;" rel="nofollow">https:&#x2F;&#x2F;root-servers.org&#x2F;</a><p>or this is illegal:<p>Install dnsmasq if it&#x27;s not already installed on your system.<p>Edit the dnsmasq configuration file, typically located at &#x2F;etc&#x2F;dnsmasq.conf.<p>Specify the root servers. You can find the current list of root servers from resources like the InterNIC website or the root-servers.org website. Add each root server to the configuration file using the server option:<p><pre><code> server=&#x2F;root-servers.net&#x2F; server=198.41.0.4 # a.root-servers.net server=199.9.14.201 # b.root-servers.net server=192.33.4.12 # c.root-servers.net ... </code></pre> Replace the IP addresses with the actual IP addresses of the root servers.<p>Disable cache and no-resolv. Since you want dnsmasq to only query the root servers, you should disable caching and make sure dnsmasq does not read any other resolv file:<p><pre><code> no-resolv cache-size=0 </code></pre> Restart dnsmasq to apply the changes:<p><pre><code> sudo systemctl restart dnsmasq </code></pre> Test the configuration. Use dig or nslookup to test that your DNS queries are being resolved correctly.