How-to: NextDNS + OPNsense Firewall

Recently I’ve been re-doing my home network, and I’m now using the OPNsense firewall, replacing my Ubiquiti EdgeRouter 12 with a more robust solution. For OPNsense I selected the PROTECTLI FW6D platform, which has 6 ports and an Intel i5-8250U CPU. I’ve also been running Pi-Hole on my network for a while, as a way to block ads, spyware, and trackers. However, I wanted a new solution that relied less on home infrastructure yet still gave me good DNS-based ad, tracker, and spyware protection. 

To that end, I’ve settled on retiring Pi-hole, and using NextDNS as a cloud based DNS filtering solution. It’s free up to 300,000 queries a month, or $20/year for home use for unlimited queries.  NextDNS is highly configurable, supports DNS-over-TLS, DNS-over-HTTPS, for fully encrypted DNS queries. They also have an extensive list of block lists to choose from, such as cryptojacking protection, typosquatting protection, plus dozens of other block lists for ads, tracking, etc. 

For my updated home network I wanted to point all my internal clients to OPNsense’s LAN IP for DNS, then have the NextDNS client CLI running on OPNsense that would receive all the LAN DNS queries, then forward them all to the NextDNS cloud for filtering and resolution. 

These instructions assume you’ve already signed up for a NextDNS account, and have a configuration ID. The signup is simple, so I won’t screenshot that process. But do that prior to starting this how-to guide.

Installing and Configuring NextDNS

OPNsense comes bundled with Unbound DNS, which is a DNS service that forwards queries to the internet for resolution. I prefer simple solutions, so on my network I wanted the NextDNS client it be listening on port 53 on the LAN side of my OPNsense firewall, not Unbound. Theoretically you could have NextDNS listening on something like port 5353, and have Unbound on port 53 forwarding to the NextDNS client on 5353. However, I didn’t see many advantages of that solution for my network. 

  1. SSH into OPNsense, open a shell, and run the following command:
				
					sh -c 'sh -c "$(curl -sL https://nextdns.io/install)"'
				
			

2. Type i for install

3. Answer the installer questions as you see fit. Have your NextDNS configuration ID handy. I answered Y to all the questions.

4. Edit nextdns.conf file and modify the parameters highlighted in the screenshot. 

				
					 vi /usr/local/etc/nextdns.conf
				
			

5. Change setup-router to false. 
6. Add a ‘listen‘ line with the LAN IP address of your OPNsense firewall, where you point the clients to for DNS, and add a colon 53  (:53) at the end.
7. Make sure the localhost line is also configured for port 53.

8. Save the NextDNS configuration file (<escape> :wq!).
9.Open the OPNsense web GUI, and navigate to: Services, Unbound DNS, General. 
10. Untick the Enable Unbound box, if already checked.
11.  Back in the SSH session, type nextdns restart.
12. Type sockstat -l and look for NextDNS entries. You should see entries for your LAN IP and the loopback address, all listening on port 53.
13. You can also type nextdns log, and review the logs to ensure everything is running properly.

14. To validate name resolution is working, you can use the Drill command. One of the blocked domains in NextDNS is app-measurement.com. So if I run Drill against my OPNsense LAN IP, I should get 0.0.0.0 back:

				
					drill app-measurement.com @10.13.2.1
				
			

OPNSense DNS Settings

When configuring OPNsense, there are DNS settings in System -> Settings -> General. Here, I have entered the two NextDNS servers that are listed on the Setup page in your NextDNS account. Why? The primary reason why I configured these, vs. leaving them blank, is WireGuard. I have WireGuard installed on my OPNsense firewall, and in the boot sequence WireGuard comes up before the NextDNS CLI is started. Wireguard needs working name resolution to bring up WG0, so I have OPNsense using the NextDNS servers for name resolution. 

Summary

Configuring OPNsense to use NextDNS is not hard, but does require modifying the default NextDNS CLI configuration file. After the NextDNS configuration is completed, your LAN clients can now use NextDNS without modification. This assumed they are already pointed at your OPNsense LAN IP for DNS, such as through DHCP. 

You can also go to dnsleaktest.com from a LAN client, and validate that the client is using dns.nextdns.io. If the results show a DNS server other than NextDNS, something is wrong. You can also login to the NextDNS portal and review the DNS logs (if you’ve enabled them) to ensure queries from the LAN are being received. 

Print Friendly, PDF & Email

Related Posts

Subscribe
Notify of
16 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
April 17, 2021 6:19 am

Hi! Which hardware did you select for your opnsense?

Scott
May 1, 2021 12:01 pm

Very nice – thank you. Do you know of a way to make this work for IPv6 queries as well? I tried adding ‘listen [::1]:53’ into the nextdns.conf file but it didn’t seem to work.

Luigi Calamar
May 5, 2021 7:13 am

Question on Wireguard. Thanks for updating – so that I use the general settings: DNS Servers to enter my 2 NextDNS IPs…. until I did that I couldn’t get wireguard to work. The question is – the system>settings>general:DNS Servers for entering my DNS – is there a need to run the app on my router at all? What benefit would it have. My understanding is the NextDNS app doesn’t yet support OPNSense? How about using Unbound with NextDNS – I think it has the same issue with Wireguard – but even if it worked – there doesn’t seem to be… Read more »

MasterYoda
May 6, 2021 7:56 am

Hi there

can i continue to use Unbound as i use it for host overrides etc. or is it mandatory that i disable it?

Nnyan
May 28, 2021 10:04 am

Does this method use TLS? If not does anyone know how to get that working?

Rafael
August 5, 2021 5:43 pm

How would one go about and enabling a local domain (plex.direct) using the nextdns CLI? In unbound I just add this to the Custom Options.

Pankaj
September 22, 2021 11:22 pm

Hi !
Thanks for the writeup. I tried this to run on OPNSense 21.7.3 fresh install. The installation went OK but log file says Error: exit status 2

root@OPNSense:~ # sockstat -l | grep nextdns
root   nextdns  55378 8 stream /var/run/nextdns.sock
root   nextdns  55378 9 udp4  192.168.114.254:53  *:*
root   nextdns  55378 10 tcp4  192.168.114.254:53  *:*
root   nextdns  55378 11 udp4  *:5353        *:*
root   nextdns  55378 12 udp6  *:5353        *:*
root   nextdns  55378 13 udp4  127.0.0.1:53     *:*
root   nextdns  55378 14 udp6  *:5353        *:*
root   nextdns  55378 15 tcp4  127.0.0.1:53     *:*
root   nextdns  55378 16 udp4  *:5353        *:*
root   nextdns  55378 17 udp6  *:5353        *:*
root   nextdns  55378 18 udp4  *:5353        *:*
root   nextdns  55378 19 udp6  *:5353        *:*
root   nextdns  55378 20 udp4  *:5353        *:*
root   nextdns  55378 21 udp6  *:5353        *:*
root@OPNSense:~ # nextdns log
Error: exit status 2
Cold Ass Honkey
January 21, 2022 6:59 pm

Thank you so much for creating the guide, Derek. It worked like a charm!
Been using my Pi-hole with Unbound for a long time and just recently upgraded my router/firewall to OPNsense. I was fortunate to discover NextDNS since Mullvad’s DNS over TLS was quite temperamental with the OPNsense’s Unbound.
Thanks again!

Hugo
March 26, 2022 11:52 am

Thank you for the tutorial, and after following it, all seemed to work. But today i opened NextDNS control panel and it said that my computer (mac) was using 1.1.1.1 as dns server also showing a red dot, yesterday the dot was green. That was cloudflare DNS that i had configures in system -> Settings -> General when i first installed OPNSense. As I am not using wireguard i removed cloudflare dns servers but i immediately lost DNS resolving in my clients. So i added NextDNS servers in system -> Settings -> General The question is, is NextDNS CLI working… Read more »

bbchucks
February 28, 2023 5:59 am

would you happen to have instructions on autostarting the nextdns daemon after a restart?

Mike
October 2, 2023 10:33 pm

You manage to get hostnames in the logs?

Kramer
December 19, 2023 4:58 pm

There is now an easier option, which is a single command: https://github.com/Control-D-Inc/ctrld/wiki/NextDNS-Mode