Уже не покажу, так как прошил RouterOS. А было так: в System > Startup отключены службы firewall, dnsmasq и odhcpd.
В /etc/rc.local прописал:
# these services do not run on dumb APs
for i in firewall dnsmasq odhcpd; do
if /etc/init.d/"$i" enabled; then
/etc/init.d/"$i" disable
/etc/init.d/"$i" stop
fi
done