diff --git a/FAQs.md b/FAQs.md index 03b27f2..80c82d4 100644 --- a/FAQs.md +++ b/FAQs.md @@ -7,6 +7,7 @@ This has been written to address some frequently asked questions among users of * [RaspAP control panel works but there is no WiFi after reboot.](#nowifi) * [Do I need the RaspAP service to run at boot?](#raspap-service) * [How do I integrate RaspAP with Pi-hole?](#pihole) +* [Can I integrate RaspAP with Adguard Home?](#adguard) * [Can I configure RaspAP to work with a captive portal?](#captive) * [Why can't I access wireless mode 'N' (802.11n)?](#wireless-mode) * [How do I prepare the SD card to connect to WiFi in headless mode?](#headless-mode) @@ -76,10 +77,14 @@ sudo systemctl disable raspapd.service ``` ## How do I integrate RaspAP with Pi-hole? -There have been several discussions around integrating RaspAP with Pi-hole, with the end goal of hosting a complete AP and ad-blocker on a single device. Both projects rely on `dnsmasq`, so integration between them is tricky. One workaround is [proposed here](https://discourse.pi-hole.net/t/raspap-pihole/14739/12). +There have been several discussions around integrating RaspAP with Pi-hole, with the end goal of hosting a complete AP and ad-blocker on a single device. Both projects rely on `dnsmasq`, so integration between them is tricky. One workaround is [proposed here](https://discourse.pi-hole.net/t/raspap-pihole/14739/12). + +Another option is to configure RaspAP to use a Pi-Hole installation on a separate device. Go to RaspAP's **DHCP Server** > **Advanced** page and enable the "Upstream DNS Server" option, add your Pi-Hole's DNS, save settings and restart dnsmasq. **Update:** By popular demand, RaspAP has released its own [ad blocking facility](https://github.com/billz/raspap-webgui/wiki/Ad-blocking-(Beta)). Feedback is welcome. +## Can I integrate RaspAP with Adguard Home? +Yes, you can run RaspAP and [Adguard Home](https://github.com/AdguardTeam/AdGuardHome) on the same device. Change Adguard Home’s listening port to `5300` and bind to `127.0.0.1`, then go to RaspAP's > **DHCP Server** > **Advanced** page and enable the "Upstream DNS Server". Add `127.0.0.1#5300` as an upstream DNS Server. Save settings and restart dnsmasq. Tip via [@firestrife23](https://github.com/billz/raspap-webgui/issues/542#issuecomment-609078400) ## Can I configure RaspAP to work with a captive portal? Yes, the [nodogsplash project](https://github.com/nodogsplash/nodogsplash) works just fine with RaspAP and is recommended over other methods. A detailed setup guide is [available here](https://github.com/billz/raspap-webgui/wiki/Captive-portal-setup).