nano
2
Don’t know if it helps but I am using AdGuard for the dns and force my clients to use it as their DNS through the custom firewall rule in Luci:
# Force clients to use your DNS settings
iptables -t nat -A PREROUTING -i br-lan -p udp --dport 53 -j DNAT --to 192.168.1.1:3053
iptables -t nat -A PREROUTING -i br-lan -p tcp --dport 53 -j DNAT --to 192.168.1.1:3053
1 Like