I'm looking for a way to encrypt the traffic between our hosts and the logging host in our Debian universe.
rsyslog uses the ommysql module and the server is already configured to accept the users' requests only by SSL (GRANT USAGE ON *.* TO testssl@loghost REQUIRE SSL;
).
I already tried to create a my.cnf for rsyslog.
I provide it to the ommysql module via parameter MySQLConfig.File=...
in the /etc/rsyslog.d/mysql.conf
file.
The content of the my.cnf:
[client]
ssl = 1
(I first tried with ssl-mode=REQUIRED
, but that failed completely; obviously my current debian buster still doesn't support this option).
Is there anything else I don't see?