MikroTik MetaROUTER + OpenWRT. Ping. DNS : (

MikroTik RouterOS 6.45.7 - MetaROUTER
OpenWRT: Attitude Adjustment 12.09

[code]config interface loopback
option ifname lo
option proto static
option ipaddr 127.0.0.1
option netmask 255.0.0.0

config interface lan
option ifname eth0
option proto dhcp[/code]

root@metarouter:/# ping 8.8.8.8 PING 8.8.8.8 (8.8.8.8): 56 data bytes 64 bytes from 8.8.8.8: seq=0 ttl=47 time=19.099 ms 64 bytes from 8.8.8.8: seq=1 ttl=47 time=18.611 ms

: )

root@metarouter:/# ping google.com ping: bad address 'google.com'

: (

[code]config interface loopback
option ifname lo
option proto static
option ipaddr 127.0.0.1
option netmask 255.0.0.0

config interface lan
option ifname eth0
option proto static
option ipaddr 192.168.11.10
option netmask 255.255.255.0
option gateway 192.168.11.1
option dns 8.8.8.8[/code]

root@metarouter:/# ping 8.8.8.8 PING 8.8.8.8 (8.8.8.8): 56 data bytes 64 bytes from 8.8.8.8: seq=0 ttl=47 time=25.450 ms 64 bytes from 8.8.8.8: seq=1 ttl=47 time=18.546 ms 64 bytes from 8.8.8.8: seq=2 ttl=47 time=17.733 ms

: )

root@metarouter:/# ping google.com ping: bad address 'google.com'

: (

Ancient version, no one runs it to help you reproduce your problem.

Please advise where can I get a suitable fresh version OpenWRT?

I am not sure if this is still maintained.
https://openwrt.org/docs/guide-user/virtualization/mikrotik_metarouter_openwrt

/etc/init.d/dnsmasq stop

After that, everything is fine. But, probably, this is not right ???
: (