Redirecting your DNS traffic to Secure DNS Client Node hosts
To redirect DNS traffic through the Secure DNS Client Node hosts (positioned between your endpoints and DNS servers), reconfigure the local stub resolvers.
If you use DHCP, reconfigure the DHCP server's option 6 (DNS Server) to specify the IP addresses of your Secure DNS Client Node hosts.
If you do not use DHCP, reconfigure the stub resolvers on each local computer and server of your organization.
Instructions for the most common DHCP servers are provided below.
Cisco ISR
To reconfigure the Cisco ISR DHCP server:
In configuration mode, navigate to the
ip dhcp poolsettings and run the following commands:Router(config)#ip dhcp pool <pool name> Router(config-pool)#dns-server <Secure DNS Client Node IP address 1> [<Secure DNS Client Node IP address 2> <Secure DNS Client Node IP address 3>]On Windows:
Press Windows + R to open the Run window.
In the Open field, type
cmdand press Enter.The command prompt window is now opened.
Run the following commands:
ipconfig /release ipconfig /renew
On Linux, run the following commands in the terminal:
sudo systemctl restart network.service sudo systemctl status network.service
ISC DHCP
To reconfigure the ISC DHCP server:
In the
/etc/dhcp/dhcpd.conffile, edit theoption domain-name-serversparameter:option domain-name-servers <Secure DNS Client Node IP address 1> [<Secure DNS Client Node IP address 2> <Secure DNS Client Node IP address 3>];To restart the service, run:
sudo systemctl restart dhcpd.serviceOn Windows:
Press Windows + R to open the Run window.
In the Open field, type
cmdand press Enter.The command prompt window is now opened.
Run the following commands:
ipconfig /release ipconfig /renew
On Linux, run the following commands in the terminal:
sudo systemctl restart network.service sudo systemctl status network.service
MikroTik RouterOS
Before reconfiguring the DHCP server on MikroTik RouterOS, perform the following steps:
Create a bridge interface named
bridge1-lan.Add physical ports
ether2-5andwlan1to thebridge1-laninterface.Define the IP network
192.168.100.0/24for the local area network connected to thebridge1-laninterface.Assign the IP address
192.168.100.1to thebridge1-laninterface.
To reconfigure the DHCP server on MikroTik RouterOS, perform the following steps in the WinBox terminal:
To create a network, run:
ip dhcp-server network add address=192.168.100.0/24 dns-none=no dns-server=<Secure DNS Client Node IP address 1>[,<Secure DNS Client Node IP address 2>] gateway=192.168.100.1 netmask=24To create an IP address pool, run:
ip pool add name=dhcp-secdns-pool ranges=192.168.100.2-192.168.100.254To create a DHCP server and bind it to the
bridge1-laninterface, run:ip pool add name=dhcp-secdns-pool ranges=192.168.100.2-192.168.100.254On Windows:
Press Windows + R to open the Run window.
In the Open field, type
cmdand press Enter.The command prompt window is now opened.
Run the following commands:
ipconfig /release ipconfig /renew
On Linux, run the following commands in the terminal:
sudo systemctl restart network.service sudo systemctl status network.service