0

Debian: 10.10 rsyslog-gnutls: 8.1901.0-1 libgnutls: 30.6.7

I search in where path and name file insert this var "gnutlsPriorityString".

What is her path? And her Name file? to put this var "gnutlsPriorityString"?

My goal is the TLS only work with "TLS1.3" and I test with rsyslog client.

References links:

CH06
  • 45
  • 7

1 Answers1

1

I found:

For Rsyslog 8.0 you need to put this gnutlsprioritystring="SECURE128:-VERS-TLS-ALL:+VERS-TLS1.3 when you load the icmp module, example:

module(load="imtcp"
        StreamDriver.mode="1"
        StreamDriver.authmode="anon"
        gnutlsprioritystring="SECURE128:-VERS-TLS-ALL:+VERS-TLS1.3"
)

Good Debug ;)

CH06
  • 45
  • 7