This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/ip firewall nat | |
add action=redirect chain=dstnat comment="Redirect UDP DNS to router" \ | |
dst-port=53 protocol=udp to-ports=53 | |
add action=redirect chain=dstnat comment="Redirect TCP DNS to router" \ | |
dst-port=53 protocol=tcp to-ports=53 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/ip dns static | |
add address=208.67.220.220 name=OpenDNS ttl=5m | |
add address=208.67.222.222 name=OpenDNS ttl=5m | |
add address=1.0.0.1 name=Cloudflare ttl=5m | |
add address=8.8.4.4 name=GoogleDNS ttl=5m | |
add address=8.8.8.8 name=GoogleDNS ttl=5m | |
add address=149.112.112.112 name=Quad9DNS ttl=5m | |
add address=94.140.14.14 name=AdGuard ttl=5m | |
add address=94.140.15.15 name=AdGuard ttl=5m | |
add address=103.141.108.18 name="dns local" ttl=5m |