Hi all,
I'm considering updating my exiting DDWRT to a routerboard, before I make a purchase I'd like to be sure that routerOS can definatly do the following.
I use a dns proxy for some devices, I have IPTABLES rules to detect any dns requests from certain hosts and redirect them transparently via my dns proxy. Below is the IPTABLES rules I use, can this be achieved in RouterOS, if so how?
# 1.2.3.4 would be the DNS proxy IP
iptables -t nat -A PREROUTING -i br0 -s ROKU -p tcp --dport 53 -j DNAT --to 1.2.3.4
iptables -t nat -A PREROUTING -i br0 -s ROKU -p udp --dport 53 -j DNAT --to 1.2.3.4
Thanks