mirror of
https://github.com/eworm-de/routeros-scripts
synced 2024-05-14 08:04:19 +00:00
d5afc79eed
All scripts wait for the global functions on their own now.
31 lines
856 B
Text
31 lines
856 B
Text
#!rsc by RouterOS
|
|
# RouterOS script: rotate-ntp
|
|
# Copyright (c) 2013-2021 Christian Hesse <mail@eworm.de>
|
|
# https://git.eworm.de/cgit/routeros-scripts/about/COPYING.md
|
|
#
|
|
# rotate the ntp servers
|
|
# https://git.eworm.de/cgit/routeros-scripts/about/doc/rotate-ntp.md
|
|
|
|
:global GlobalFunctionsReady;
|
|
:while ($GlobalFunctionsReady != true) do={ :delay 500ms; }
|
|
|
|
:global NtpPool;
|
|
|
|
:global LogPrintExit;
|
|
|
|
:local Ntp1;
|
|
:local Ntp2;
|
|
|
|
:if ([ / system ntp client get enabled ] != true) do={
|
|
$LogPrintExit warning "NTP client is not enabled!" true;
|
|
}
|
|
|
|
:do {
|
|
:set Ntp1 [ :resolve ("0." . $NtpPool) ];
|
|
:set Ntp2 [ :resolve ("1." . $NtpPool) ];
|
|
} on-error={
|
|
$LogPrintExit warning "Resolving NTP server failed." true;
|
|
}
|
|
|
|
$LogPrintExit info ("Updating NTP servers to " . $Ntp1 . " and " . $Ntp2) false;
|
|
/ system ntp client set primary-ntp=$Ntp1 secondary-ntp=$Ntp2;
|