We got our new steamoven from AEG (Electrolux) and it has WiFi to be managed by an app. Now I see in AdguardHome the steamoven does an excessive number of DNS requests, like over 4.000.000 in just 3 days. That’s about 15 per second! It’s 95% of my total DNS requests. The requests are being … Read More “Kitchen device does excessive number of DNS requests.” »
Hey all, We haven’t had DKIM published for as long as I’ve been an employee but we do have a bunch of SPF records for some services and vendors we use to allow to send as us. I haven’t touched this stuff in 10+ years and can’t remember what impact it will have on … Read More “Adding DKIM with SPF records for vendors” »
Hi fellows, I have a basic question today that I don’t fully understand yet. In which scenario would I need to configure a CNAME-based delegation instead of a regular DNS delegation (using NS records)? submitted by /u/alicm21 [link] [comments] Powered by WPeMatico
I have a Pi-hole setup in my home to block some ad-networks. Suppose if IP of an ad website is stored in my computer dns cache, then the domain of that website will not be sent to the pi-hole for lookup and hence it will not be blocked, right? Never happened to me before just … Read More “Does device DNS caching affects DNS filtering?” »
I’m looking for a replacement free DNS service provider with certain functionality. I currently use DynV6 but there have been some reliability problems, and they aren’t responding to any of my attempts at communication to ask questions. I need IPV6 support, and main the feature I am looking for is the ability to create A … Read More “Looking for better service” »
Hello, I’ve got unbound running on my desktop machine, with the interface being my localhost (127.0.0.1), the port being the default (53) and the foward-addr being adguard’s. I’ve been wondering if it’s possible to also add dnscrypt to the equation (I’m very new do this DNS privacy stuff). I saw this post mentioning it but … Read More “How to set up dnscrypt with Unbound on a Linux desktop machine?” »
ive done everything perfectly even checked if the dns is connected which was done and saw the dns in my phone to confirm too but still it s not blocking facebook and social media why submitted by /u/rahim230 [link] [comments] Powered by WPeMatico
this is driving me nuts: I recently changed hosting location for a domain so I updated dns records on the registrar panel and waited a few minutes while it propagated around (monitoring with dnschecker.com). All DNSs updated, i tried to connect and I landed on the old hosting. upon research, it turns out my dns … Read More “Help! 1.1.1.1 resolves different IP from two different computers” »
Probably a noob question but I’d appreciate your point of view. I have a domain registered with a registrar (internetbs) This points directly to the hosting (cloudways) which manages all the NS records. Since the email service they offer (rackspace) sucks big time and has servers currently listed in several blacklists (including yahoo and aol) … Read More “Is it better to point the NS records for Google Workspace at domain provider level or at the hosting level?” »
I made a simple Unbound blocklist generator: #!/bin/sh { printf “use-application-dns.netn” curl -s https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn/hosts } | tr -d ‘r’ | tr ‘[:upper:]’ ‘[:lower:]’ | sed ‘s/s*#.*//g’ | sed -r ‘/(/).*$/d’ | sed -r ‘s/^.*s+//g’ | sed ‘/^$/d’ | sed -r ‘/([^.]+.)+[^.]{2,}/!d;/[^a-zA-Z0-9._-]/d;s/.$//;/.$/a’ | sed -z ‘s/^localhost.localdomainn//g’ | sort -u | awk ‘{print “local-zone: ” $1 ” … Read More “Unbound blocklist generator” »