Hi All
I'm trying to configure encrypted tls logs.
I have an ubuntu rsyslog server, that works with encrypted rsyslog messages.
It has been tested with openssl s_client -connect hostname: port and that can connect.
Under /usr/local/etc/ryslog.d/
I have created a conf file that reads like this:
The crt file is the CA file from the rsyslog server.
I have copied the ca file to /usr/local/etc/ssl/certs and have done a certctl rehash.
But I get
on the receiving server, which as far as I see says it is failing SSL negotiation
What am I doing wrong?
I'm trying to configure encrypted tls logs.
I have an ubuntu rsyslog server, that works with encrypted rsyslog messages.
It has been tested with openssl s_client -connect hostname: port and that can connect.
Under /usr/local/etc/ryslog.d/
I have created a conf file that reads like this:
Code:
$DefaultNetstreamDriverCAFile /usr/local/etc/rsyslog.d/rsyslog.crt
auth.*;authpriv.* @@hostname:port
$ActionQueueFileName queue
$ActionQueueMaxDiskSpace 5g
$ActionQueueSaveOnShutdown on
$ActionQueueType LinkedList
$ActionResumeRetryCount -1
The crt file is the CA file from the rsyslog server.
I have copied the ca file to /usr/local/etc/ssl/certs and have done a certctl rehash.
But I get
Code:
syslog-proxy rsyslogd: tcpsrv listener (inputname: 'imtcp') failed to process incoming connection with error -2083
What am I doing wrong?