A pile of timber logs

Creating a central syslog server

Your home network might already contain some devices or systems like a home server, a WiFi router, a media player, or home automation system. It is a best practice creating a central syslog server and storing logs of various sources in one place.

Update: The fail2ban and GeoIP related contents have been merged into post visualizing Fail2ban logs in Kibana.

This post will cover the basics. Creating a central log server and receiving logs from an OpenWRT device. Please note that you can do many more. See the other posts I created in this subject.

Log management

In reality many companies have log management solutions. It is a must have, usually it is also required by law or compliance. Creating a central syslog server on your home server has many benefits. On one hand you can get some log management skills, which you could mention in your CV. On the other hand you may find it extremely helpful for troubleshooting issues you may ran into and creating different analytics.

Log management as a concept is pretty deep. Usually it contains some of the following topics.

  • Getting logs from various sources and store them in one place.
  • Manage life cycle of logs by having backups, archives.
  • Create alerts, analyitics or performance metrics from the logs.
  • And many more.

My goal is not to have an all in one solution. Remember creating a central syslog server for a a DIY home server is not the same as creating one (or more) for companies.

Create a central syslog server

All Linux distributions have a solution for storing syslogs locally. Usually it is either rsyslog or syslog-ng or maybe just systemd-journald or a mix of them. These software have different capabilities. My choice is syslog-ng but I will also utilize journald later.

Syslog-ng on openSUSE can be installed from the default repository, although it is a bit outdated and lacks some features I need. Therefore I use a third party repository to install a more recent version of it. Generally speaking it is up to you decide which version do you need. For having decent GeoIP support I recommend at least version 3.18.

test@server:~> sudo zypper ar -cfp 90 https://download.opensuse.org/repositories/home:/czanik:/syslog-ng322/openSUSE_Leap_15.1/ syslog-ng322
test@server:~> sudo zypper ref
test@server:~> sudo zypper in -y syslog-ng syslog-ng-geoip
test@server:~> sudo systemctl enable --now syslog-ng

Wasn’t that simple? The output is slightly shortened to improve readability.

Basic configuration

The default configuration coming with the package is pretty good and already covers the use case of storing the logs of the host system in textual format. You will find most of your system’s logs files here: /var/log/{messages,localmessages} ,

As we connect more systems, we will use syslog-ng configuration’s include ability to extend the basic configuration. The idea behind including additional configuration parts is pretty similar to the one I did with autofs.

I think the configuration syntax is very user friendly and the software’s admin guide is also a great resource.

Adding OpenWRT logs via network sources

One of the simplest use is to collecting log messages from OpenWRT devices via RFC3164 (BSD Syslog) Protocol and store them locally in textual format.

I placed this configuration as /etc/syslog-ng/conf.d/network.conf and its content is visible below. You can find some explanation after that. Looking for a more complete version? Download it from this GitHub repository.

source s_network{
    network(
        ip("10.1.1.10")
        port(514)
        transport("tcp")
    );
};

destination d_network{
    file(
        "/var/log/network/$HOST/$S_YEAR.$S_MONTH.$S_DAY/messages"
        create-dirs(yes)
    );
};

log {
    source(s_network);
    destination(d_network);
};

Some explanation:

  • We set up a source driver called “s_network” to listen for incoming logs on the network with IP address 10.1.1.10 on TCP port 514.
  • A destination driver called “d_network” is responsible for storing the received logs on the file system.
  • We connect the source and destination drivers to each other in a log path called “log”.

Note: The names “s_network” and “d_network” can be anything, you shall use names what describes your use case better.

Note: Macros like “$S_YEAR” and “$S_DAY” enables you to use values from the parsed log messages in various parts of the configuration. In this example it creates file names like this: /var/log/network/router/2019.01.13/messages .

Do not forget to reload syslog-ng for the changes to take effect and also open up the required port on the firewall to be able to receive the logs.

test@server:~> sudo systemctl reload syslog-ng
test@server:~> sudo firewall-cmd --add-port=514/tcp --zone=internal
test@server:~> sudo firewall-cmd --add-port=514/tcp --zone=internal --permanent

Set up log forwarding on OpenWRT LuCI interface

Although you could do this in the CLI both by hand or by using UCI, I will use LuCI as a configuration interface.
You should find the logging settings under System → System → External system log server, which should point to your syslog-ng server.

Note: If you also change the name of your OpenWRT device, then completely reboot the device for the change to take effect, otherwise you will still found the previous name in the logs you receive regardless of the change. I am not sure whether this is the expected behavior but I have seen this many times.

Next steps

In the next posts I will write about how to logging Docker to Elasticsearch. Also you can read about how visualizing Fail2ban logs in Kibana can be done for instance with failed login attempts of SSH.

If you found this post helpful then please share it with others. I will highly appreciate it.

Thank you.

6 thoughts on “Creating a central syslog server”

  1. Using ubuntu 18.04 and getting an error when trying to syslog-ng and cant figure out why. No info on the internet about it.

    “Mar 03 18:18:21 trumpfsmurica.com syslog-ng[16847]: Error parsing parser expression, parser plugin geoip2 not found in /etc/syslog-ng/conf.d/fail2ban-geoip.conf at line 18, column 5:
    Mar 03 18:18:21 trumpfsmurica.com syslog-ng[16847]: included from /etc/syslog-ng/syslog-ng.conf line 162, column 1
    Mar 03 18:18:21 trumpfsmurica.com syslog-ng[16847]: geoip2(
    Mar 03 18:18:21 trumpfsmurica.com syslog-ng[16847]: ^^^^^^”

  2. According to the log message the geoip2 plugin is not installed. It can be installed by adding the following package: ‘apt-get install syslog-ng-mod-geoip’.
    The geoip2 plugin was a rewrite of the older plugin simply called ‘geoip’ which is considered legacy.
    Even though the version in Ubuntu 18.04 should support both plugins, as far as I can see the binary only supports the legacy version. You should either use ‘geoip’ instead of geoip2 or update syslog-ng from a third party repository.

    I suggest to use László Budai’s repository. He is an official developer of syslog-ng.
    You can get the repo details from here.
    https://lists.balabit.hu/pipermail/syslog-ng/2019-March/025089.html

  3. Hello,
    Having an issue while configuring OpenWrt :

    root@OpenWrt:/etc/config# ulogd -v
    Mon Feb 7 16:53:02 2022 ulogd.c:408 registering plugin `NFCT’
    Mon Feb 7 16:53:02 2022 ulogd.c:408 registering plugin `IP2STR’
    Mon Feb 7 16:53:02 2022 ulogd.c:408 registering plugin `PRINTFLOW’
    Mon Feb 7 16:53:02 2022 ulogd.c:408 registering plugin `LOGEMU’
    Mon Feb 7 16:53:02 2022 ulogd.c:408 registering plugin `SYSLOG’
    Mon Feb 7 16:53:02 2022 ulogd.c:981 building new pluginstance stack: ‘ct1:NFCT,ip2str1:IP2STR,print1:PRINTFLOW,sys1:SYSLOG’
    Mon Feb 7 16:53:02 2022 ulogd_inpflow_NFCT.c:1399 NFCT plugin working in event mode
    WARNING: scheduler configuration failed: Function not implemented

    ^CMon Feb 7 16:53:06 2022 ulogd.c:1380 Terminal signal received, exiting
    root@OpenWrt:/etc/config#

    Any idea? Googling gave nothing interesting…
    Thanks!

    1. Hi,
      I can see the same output when I run ulogd -v but it still works as expected.
      Can you see the events logged by ulogd with logread?

Leave a Reply

Your email address will not be published. Required fields are marked *

6 + two =