Hello there!
Situation as follows:
I have a Plesk installed on my server with dns server that comes in a package already. I know that DNS uses UDP and TCP port 53 as destination ports for requests.
How or what do I need to configure on my NAT for my local DNS server to respond the public queries. For example, if I check up on dns.google the reply on my public IP is: nameservers did not respond.
Here is my NAT export config so far:
/ip firewall nat
add action=masquerade chain=srcnat out-interface=WAN
add action=dst-nat chain=dstnat dst-address=<public IP> dst-port=53 protocol=tcp to-addresses=\
192.168.1.10 to-ports=53
add action=dst-nat chain=dstnat dst-address=<public IP> dst-port=53 protocol=udp to-addresses=\
192.168.1.10 to-ports=53
Thanks in advance for your reply!