Configure DNS Forwarding for the Top 10 DNS Servers
Learn how to configure DNS forwarding to Securd on common DNS servers including BIND, Windows Server, PowerDNS, Unbound, and more.
Configure DNS Forwarding for the Top 10 DNS Servers
This guide provides step-by-step instructions for configuring DNS forwarding to Securd DNS (IP addresses: 142.202.107.1
and 142.202.107.2
) on the 10 most widely used DNS servers.
Important: If you are forwarding DNS to Securd, you must first Configure a Static IP Site to Use Securd DNS.
🪟 Windows Server (DNS Server Role)
- Open DNS Manager.
- Right-click the server name and select Properties.
- Navigate to the Forwarders tab.
- Click Edit, then enter:
142.202.107.1
142.202.107.2
- Click OK to apply changes.
🐧 BIND (Berkeley Internet Name Domain)
- Edit the
named.conf
file. - Add the following to the
options
section:
forwarders {
142.202.107.1;
142.202.107.2;
};
- Save the file and restart the BIND service.
🖥️ Linux (System-wide DNS Settings)
- Edit the
/etc/resolv.conf
file. - Add the following lines:
nameserver 142.202.107.1
nameserver 142.202.107.2
- Save and restart networking services as required for your distro.
📡 ISC DHCP Server
- Edit the
dhcpd.conf
file. - Add this configuration:
option domain-name-servers 142.202.107.1, 142.202.107.2;
- Restart the DHCP service.
🧩 dnsmasq
- Edit
/etc/dnsmasq.conf
. - Add the server IPs:
server=142.202.107.1
server=142.202.107.2
- Restart the
dnsmasq
service.
⚡ PowerDNS (Recursor)
- Edit the
pdns.conf
file. - Configure domain-level forwarding:
forward-zones=mydomain.com=142.202.107.1,142.202.107.2
- Restart PowerDNS Recursor.
🔐 Unbound
- Edit the
unbound.conf
configuration. - Add the following block:
forward-zone:
name: "."
forward-addr: 142.202.107.1
forward-addr: 142.202.107.2
- Restart the Unbound service.
🧠 CoreDNS
- Edit your
Corefile
. - Add a forward plugin section:
.:53 {
forward . 142.202.107.1 142.202.107.2
}
- Reload CoreDNS to apply changes.
🔌 Ubiquiti UniFi / EdgeRouter (EdgeOS)
- SSH into the device or access the web UI.
- Run the following commands:
set service dns forwarding name-server 142.202.107.1
set service dns forwarding name-server 142.202.107.2
commit
save
🧮 Technitium DNS Server
- Open the Technitium DNS Server UI.
- Go to Settings → Forwarding DNS Servers.
- Add the following IPs:
142.202.107.1
142.202.107.2
- Save and apply settings.
Updated 1 day ago
What’s Next
Set up a Static IP Site before forwarding DNS to Securd.