Also for security issues you need to disable DNS remote request, because your router will respond to requests from WAN!
Not necessarily. "DNS remote requests" are needed if router is to be DNS server for LAN devices. DNS service will, by default, answer to requests regardless of their origin (LAN or WAN) and thus comes the threat @ingdaka is mentioning. To avoid that, one should use firewall rule which drops any WAN requests to DNS port. Either a general "drop all from WAN" rule or (less recommended) "drop DNS from WAN" rule such as the following pair (one needs both!)
/ip firewall filter
add chain=input action=drop protocol=tcp port=53 comment="drop TCP DNS requests from WAN" in-interface-list=WAN
add chain=input action=drop protocol=udp port=53 comment="drop UDP DNS requests from WAN" in-interface-list=WAN