DNS download?

Can I download stat dns entries form one router and copy the to another? if so how?
Gregclemmons

There is no need to do so, just set one router to be slave dNS to other one. It will gather any DNS info from his master.

/ip dns static export

Then copy the code and paste it in the other router.

pedja> and how do you do that in RouterOS?

Router1: DNS server with static entries
Router2:
/ip dns
set allow-remote-requests=yes cache-max-ttl=1w cache-size=10240KiB
max-udp-packet-size=512 primary-dns=router.1.i.p secondary-dns=1.3.3.7

Set the clients to look at Router2 and if a client wants one of those static entries from Router1, Router2 will grab it from Router1 and cache it.

But it is not a good idea because EVERY request will go through both routers (of course if not cached). It would be fine, if static entries change a lot, then you have to change only in router1, not both.
Anyway, gregclemmons asked just how to copy.

Thnak you all!

I must get more into the terminal.. and not rely on winbox as much. I didn’t relise export was available in terminal mode and not in winbox.

Thanks Again.