routeros-scripts/rotate-ntp
2020-01-01 17:00:39 +01:00

18 lines
461 B
Plaintext

#!rsc
# RouterOS script: rotate-ntp
# Copyright (c) 2013-2020 Christian Hesse <mail@eworm.de>
#
# rotate the ntp servers
:global NtpPool;
:local Ntp1 [ :resolve ("0." . $NtpPool) ];
:local Ntp2 [ :resolve ("1." . $NtpPool) ];
:if ([ / system ntp client get enabled ] != true) do={
:log warning "NTP client is not enabled!";
}
:log info ("Updating NTP servers to " . $Ntp1 . " and " . $Ntp2);
/ system ntp client set primary-ntp=$Ntp1 secondary-ntp=$Ntp2;