Skip to content

Instantly share code, notes, and snippets.

@zoilomora
Last active May 28, 2023 17:22
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zoilomora/9d954f577630bc34099ee666cf0fc543 to your computer and use it in GitHub Desktop.
Save zoilomora/9d954f577630bc34099ee666cf0fc543 to your computer and use it in GitHub Desktop.
Configure Forwarded DNS in MikroTik

Configure Forwarded DNS in MikroTik

Stages

My house MikroTik runs a permanent tunnel to the offices of my job. DHCP configures the devices to send DNS requests to MikroTik, which then sends the requests to Google or forwards them to the DNS server of my job.

Job intranet = intranet.job.local
Job DNS Server = 192.168.90.1
/ip dns
set allow-remote-requests=yes servers=8.8.8.8,8.8.4.4
/ip firewall layer7-protocol
add name=ad_dns regexp=.job.local
/ip firewall mangle
add action=mark-packet chain=prerouting dst-address-type=local dst-port=53 layer7-protocol=job_dns new-packet-mark=forwarded-dns passthrough=yes protocol=udp
/ip firewall nat
add action=dst-nat chain=dstnat comment="Intercept DNS:" packet-mark=forwarded-dns to-addresses=192.168.90.1

Sources

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment