VRRP config sync

Hi There

I would like to keep my backup VRRP routers config synced (firewall/mangle etc). Would it be possible to make my one Mikrotik pull configs off the other and import it on a scheduled basis?

Thanks

It is possible, on first router run script that exports configuration.
On other router use fetch to get exported configuration files from first router.

so lets say a job that does /ip firewall export dumps it to a file then the other one ftp’s it? You dont perhaps have a basic example on this?

script on first rotuer

/ip firewall filter export file=firewall

script on second router

/tool fetch address=x.x.x.x src-path="firewall.rsc" mode=ftp user="admin" password="";
/import file-name=firewall.rsc

awesome thank you!

don’t forget to remove old rules before import =)

Is there a way to do this across the entire config of the router?

to do what?