I have an AdGuard container on mikrotik. It works perfectly. I wanted to make a node that if someone changes the dns in the network card all traffic is directed to AdGuard. I created this rule..
Assuming the source address list at a minimum includes 10.1.1.2 and perhaps any other devices not being pushed to adguard.
Also note in the dhcp server network for adquard be careful that you dont loop adguard to itself there either…
For example assuming 3 subnets, you should be doing this:
/ip dhcp-server network
add address=192.168.1.0/24 comment=defconf dns-server=10.1.1.2 gateway=192.168.1.1
add address=192.168.2.0/24 comment=defconf dns-server=10.1.1.2 gateway=192.168.2.1
add address=10.1.1.0/24 comment=defconf dns-server=10.1.1.1 gateway=10.1.1.1
I think the problem is DOH, if I do a torch I see requests towards 8.8.8.8:443. so AdGuard is skipped. How do I manage these requests to process everything from AdGuard?