![]() |
![]() |
RouterOS Scripts a collection of scripts for MikroTik RouterOS |
ℹ️ Info: This script can not be used on its own but requires the base installation. See main README for details.
RouterOS itself supports sending log messages via e-mail or to a syslog
server (see /system/logging). This has some limitation, however:
The script works around the limitations, for example it does:
/log, including messages from early bootIt is intended to be run periodically from scheduler, then collects new log messages and forwards them via notification.

Just install the script:
$ScriptInstallUpdate log-forward;
… and add a scheduler:
/system/scheduler/add interval=1m name=log-forward on-event="/system/script/run log-forward;" start-time=startup;
The default configuration should provide reasonable presets, filtering info, and effectively forwarding warning and error.
💡️ Hint: Please try with defaults first, especially if you are not familiar with regular expressions!
The configuration goes to global-config-overlay, these are the parameters:
LogForwardFilter: define topics not to be forwardedLogForwardFilterMessage: define message text not to be forwardedLogForwardInclude: define topics to be forwarded (even if filter matches)LogForwardIncludeMessage: define message text to be forwarded (even if
filter matches)ℹ️ Info: Copy relevant configuration from
global-config(the one without-overlay) to your localglobal-config-overlayand modify it to your specific needs.
These patterns are matched as
regular expressions ↗️.
To forward all (ignoring severity) log messages with topics account
(which includes user logins) and dhcp you need something like:
:global LogForwardInclude "(account|dhcp)";
Also notification settings are required for e-mail, gotify, matrix, ntfy and/or telegram.
You want to receive a notification on every device (re-)boot? Quite easy, just add:
:global LogForwardIncludeMessage "(^router rebooted)";
This will match on every log message beginning with router rebooted.
⬅️ Go back to main README
⬆️ Go back to top
RouterOS Scripts documentation generated on Thu, 20 Nov 2025 20:47:50 +0100 for main/3287/699be25b
Copyright © 2013-2025 Christian Hesse <mail@eworm.de>