Last active
February 24, 2022 15:26
-
-
Save wannadrunk/05a374b3ff89ae4759352b18c64c8050 to your computer and use it in GitHub Desktop.
Mikrotik log to syslog-ng - Line 4, update the IP address of your Mikrotik.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# MikroTik – Syslog | |
source s_mikrotik { udp(port(514)); }; | |
destination d_mikrotik { file("/var/log/mikrotik.log"); }; | |
filter f_mikrotik { host("192.168.88.1"); }; | |
log { source(s_mikrotik); destination(d_mikrotik); filter(f_mikrotik); }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment