I have two mikrotik RB750Gr3 one with static IP one with pppoe
I need to resolve dns name on the winbox terminal (in a script)
The static IP router do it well with these rules
add action=accept chain=input connection-state=established,related in-interface=1_WAN
add action=drop chain=input connection-state=invalid connection-type=""
add action=accept chain=input protocol=icmp
add action=drop chain=input in-interface=1_WAN log-prefix=eldob
the pppoe need an extra line to resolve the domain names (3rd rule)
if I disable the 3rd rule the dns queries are dropped by the 4th line.
add action=accept chain=input connection-mark="" connection-state= established,related connection-type="" in-interface=pppoe-out1
add action=accept chain=input in-interface=pppoe-out1 protocol=icmp
add action=accept chain=input in-interface=pppoe-out1 protocol=udp src-port=53
add action=drop chain=input in-interface=pppoe-out1
What did I wrong with pppoe firewall rules?