Welcome to Incremental Social! Learn more about this project here!
Check out lemmyverse to find more communities to join from here!

When Pi-hole is down?

I have an asus router with a pi-hole on the network.

I was doing some work on my server and noticed that when pi-hole was down, I couldn't access the internet. I was looking for some ideas online how to deal with this, but they said to have a second pihole on the network in case one is offline. Is that the only way to do it? Is there any way to have the network go back to normal if the pihole is offline?

Neon ,

I have Pihole in a Proxmox LXC Container that does just that. Just Pihole. It is set to automatically restart.

All for that Reason that you just named.

chili1553 ,

I use Nextdns for this reason. DNS is critical for Wife Acceptance Factor

bartolomeo ,
@bartolomeo@suppo.fi avatar

Does it work if you change your DNS server by editing /etc/resolv.conf and having it show exactly one name server like

nameserver 9.9.9.9

?

FanchFilingCabinet ,

You mentioned you have an Asus router. Which one?
Why not move to hosting your stuff on the router?
https://www.snbforums.com/forums/asuswrt-merlin.42/
Sure it doesn't completely solve the issue but in my experience it's incredibly stable, and more so people expect to restart the router if the Internet isn't working which simplifies things too.
Also beneficial is that you can give different clients different DNS servers comfortably.

Specifically, check out https://diversion.ch/ for dns blocking but its capable of a lot more.

machinin OP ,

Unfortunately, I don't think my router is compatible with Merlin.

Thank you, though, I appreciate the feedback.

RoseRose56 ,
@RoseRose56@lemmy.world avatar

ssh into your pi-hole if possible and try using commands systemctl status pihole-FTL
Check the status, and if its disabled use the same command but with start instead of status.
Also if this this your first time setup, double check that everything you did is correct, like the DNS setting on router, if the devices get the right DNS etc.

machinin OP ,

Sorry for the confusion, but everything was working fine, I just had to update the server my pi-hole docker container was hosted on and noticed that I lost access to the internet. It works beautifully when the container is up and running.

Bizarroland ,

If you're router has a failover DNS option, usually listed as DNS 2, I would set something like quad 9 as your backup DNS. Address is 9.9.9.9.

If you don't want to do that, then having a second instance of pihole running as the secondary DNS is pretty much your only good option

AndiTails ,
@AndiTails@lemmy.world avatar

That's not how the two entries for DNS works. Devices will use both rather randomly, and therefore some requests will not be filtered.

The best way is to run two instances for redundancy.

Bizarroland ,

Can you send me some more information on this because this is the first I've ever heard that it would not automatically pick the fastest closest and most responsive DNS system available.

No remote DNS server will ever be as fast as one that is local

Pete90 ,

I tried this. Put a DNS override for Google.com for one but not the other Adguard instance. Then did a DNS lookup and the answer (ip) changed randomly form the correct one to the one I used for the override.
I'm assuming the same goes for the scenario with the l public DNS as well. In any case, the response delay should be similar, since the local pi hole instance has to contact the upstream DNS server anyway.

Bizarroland ,

Yeah, looks like you don't know what you're talking about.

The second ipv4 DNS address is for redundancy and every network connected system will use the first one as long as it responds.

It's perfectly fine to have a single pihole and use something like quad9 as a failover in the unlikely event that your pihole goes down unexpectedly.

EncryptKeeper ,

Actually they do know what they’re talking about. Configuring DHCP with multiple DNS servers isn’t for failover, it’s for redundancy. The result is ultimately operating system dependent, but modern Windows operating systems will query all configured DNS servers in parallel and will accept the first answer it receives. So if you configure your Pihole as one DNS server and a public DNS server as a second, a lot of your traffic will just bypass your Pihole ad filtering entirely.

Bizarroland ,

Proof?

I read 15 different sites about DNS and not a one of them claimed anything like this. They universally all stated that your network attached devices would use the 1st one unless it didn't respond and only use the 2nd one if the 1st one did not.

So once again, I ask "Can you send me some more information on this" and not just claim it without any backup information?

I apologize if I am coming off rude, just my BS meter is getting close to the red zone and I would really appreciate some reliable evidence.

EncryptKeeper ,

The best proof would be to just try it yourself and see what happens. Load up Wireshark, make a query, and look at your traffic. Because the problem is there isn’t a single technical article I can point you to that details exactly how DNS resolution works on every device running any given operating system. “Network attached devices” could be anything and so you can’t be certain exactly how each device will operate.

I’ll give you that in the case of Windows devices specifically, Microsoft isn’t good at keeping documentation up to date, and on older version of windows it used to work the way you describe. It would send the request to your first DNS server, wait one second for a response, and only if it didn’t get one would it move on to your next one. However in Windows 10 today if I edit my configuration so that I use a local DNS server located at 192.168.69.210 as my “Preferred” DNS server and 1.1.1.1 as my “Alternate” DNS server look what happens:

https://lemmy.world/pictrs/image/3d979f11-9b94-4dc8-a897-f71b809d0d0c.png

It sends the same request out to both without waiting and the response from Cloudflare actually comes in before the one from my local DNS server. So if this were a request for a blocked domain, the client would accept the response from Cloudflare because it was received first and so the request wouldn’t be blocked.

B0rax ,

If what you said was true, my secondary Pi-hole wouldn’t have to respond to any queries. But it in fact gets quite a lot of them. As the other poster has said, it is about 80/20 for 1st and 2nd pihole. Sometimes the ratios are different, depending on the time of day (don’t ask me why….).

AndiTails ,
@AndiTails@lemmy.world avatar

Run two and check the logs. You'll see about 20% of your requests will log on the second instance. So currently, that's 20% of your DNS requests not being filtered.

You'll also find some devices just latch on the the second and never use the first - again, in your scenario, these are not being filtered.

BarbecueCowboy ,

I can back this up with experience.

I'm actively running two piholes for years now. About 2/3rds of my traffic does go to the primary and some seem to 'lock on' to using just one, but most devices will swap between the two at their leisure.

billwashere ,

Not sure if this is common knowledge but Pi-hole can also run in a docker container, it doesn’t have to be a raspberry pi. I have it running on portainer on two different machine in my house. I’m a systems architect by trade so there no kill like overkill 😅

You might be a nerd when you have to schedule maintenance at your own house.

Im_old ,

one a VM, the other a container, with different upstream targets.
I have to schedule maintenance when everyone is asleep or out of the house.
I'll swear one day I'll have a proper (raspberry pi) cluster with KVM, I just need to finish implementing the other million things I find when I research it.

billwashere ,

I totally feel you. I’m in IT and design these incredibly robust systems. But I don’t have that budget for my house and they say “the cobbler's children have no shoes."

WindowsEnjoyer , (edited )

On Mikrotik I have a script that runs every 30sec. If pi-hole not responding, router switches to public cloudflare dns records, otherwise to pi-hole IP.

This setup works like a charm.

P.S. I am using Blocky, but it's almost the same as Pi-Hole.

EDIT: Since at least 2 guys asked how to do it:

https://forum.mikrotik.com/viewtopic.php?p=866934#p866934

Don't forget to configure Mikrotik router to act as passthrough DNS server with cache (for performance) and configure DHCP server's DNS to router's IP.

walden ,

That sounds cool. I've never messed with scripts on Mikrotik, but would it be possible to share what you have?

I'm guessing a relatively short DHCP lease time is also in play so devices can get the new DNS address? Or do you have Mikrotik set as the DNS server?

WindowsEnjoyer ,

I've edited my comment. It contains my used script.

walden ,

Thank you, I'll bookmark it for later.

machinin OP ,

Thanks, this looks good, but I'm not sure I can do it on Asus. I'll look into it.

BarbecueCowboy ,

Seconding the request to share your work.

That is an amazing idea you've come up with that I never considered, but now I need it.

WindowsEnjoyer ,

Aight, let me do it.. 😅

WindowsEnjoyer ,

I've edited my comment. It contains my used script.

Gooey0210 ,

That's why you usually have two piholes, or adguard homes

And can even synchronize them

machinin OP ,

Thanks, I see that is the common recommendation. I also have to think what to do if I'm away and the family has issues.

I appreciate the response.

B0rax ,

That’s where having 2 also comes in handy. If one goes down it will still work as if nothing happenedy

bartolomeo ,
@bartolomeo@suppo.fi avatar

You mean 2 piholes or adguard homes, right? That way if one goes down you can still use the other one.

B0rax ,

Yes exactly.

dream_weasel ,

Ssh to pihole. $ pihole restartdns usually works for me

machinin OP ,

Sorry for the confusion, I was just doing maintenance on my home server and so the docker container hosting pi-hole was down. Usually it works beautifully.

BaroqueInMind ,
@BaroqueInMind@kbin.social avatar

If your DNS sinkhole is down, your modem/router/host operating system settings (and even the PiHole itself) should allow a fallback. If you didn't set that up and don't know how, then you should consider not using Pihole until you know what you're doing.

AtariDump ,
Gooey0210 ,

You still should set two dns servers.. Two piholes/adguards

possiblylinux127 ,
@possiblylinux127@lemmy.zip avatar

What are you asking? It sounds like you need some sort of HA (high availability)

EpicVision , (edited )

Use something like AdGuard or NextDNS as your secondary resolver

Check out the comment by @AtariDump

AtariDump ,
EpicVision ,

Damn, fuck Windows. Fortunately I don't have to use it.

The ONLY DNS server you should have set on your network is a/the PiHole(s).

That's exactly what I do, since I never had any stability issues with my Pihole.

AtariDump ,

It’s not just windows.

lordnikon ,

Primary and secondary dns is not a thing. There is no priority for DNS. Depending on the device it will use ether address and will only try the other on failure.

EpicVision ,

Windows calls them 'preferred' and 'alternate' DNS servers. That roughly translates to primary/secondary.

tuhriel ,

Yeah, that's how they are named, my experience showed that the devices used whichever of the two they wanted.

AtariDump ,

It does not.

BearOfaTime ,

Umm, yea, if your DNS server is offline, how do your machines know how to resolve DNS names to IP addresses?

Which is why IP config has the capability for multiple DNS servers.

If this is surprising, you may wanna read up on your networking.

altima_neo ,
@altima_neo@lemmy.zip avatar

I think he realized that, he's looking for a solution though.

Sanguine ,

Why the extra snark? This person is asking a question. Easy to argue that he is trying to learn more about networking, why ostracize?

Decronym Bot , (edited )

Acronyms, initialisms, abbreviations, contractions, and other phrases which expand to something larger, that I've seen in this thread:

Fewer Letters More Letters
AP WiFi Access Point
DNS Domain Name Service/System
HA Home Assistant automation software
~ High Availability
IP Internet Protocol
LXC Linux Containers
PiHole Network-wide ad-blocker (DNS sinkhole)

6 acronyms in this thread; the most compressed thread commented on today has 3 acronyms.

[Thread for this sub, first seen 4th Feb 2024, 14:35]
[FAQ] [Full list] [Contact] [Source code]

  • All
  • Subscribed
  • Moderated
  • Favorites
  • random
  • selfhosted@lemmy.world
  • incremental_games
  • meta
  • All magazines