cipher-suite("TLSv1.2:!aNULL")
cipher-suite("ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-GCM-SHA384")
In syslog-ng PE 7 ssl-options() is introduced, which currently can disable specific protocol versions.
The best solution is combing with cipher-suite() option.
cipher-suite("ALL:!aNULL")
ssl-options(no-sslv2, no-sslv3, no-tlsv1, no-tlsv11)
cipher-suite("ECDHE:!aNULL")
ssl-options(no-sslv2, no-sslv3, no-tlsv1, no-tlsv11)
Example:
destination demo_tls_destination { network("192.168.100.100" port(6514) transport("tls") tls( ca-dir("/etc/syslog-ng/ca.d") key-file("/etc/syslog-ng/cert.d/clientkey.pem") cert-file("/etc/syslog-ng/cert.d/clientcert.pem") cipher-suite("ECDHE:!aNULL") ssl-options(no-sslv2, no-sslv3, no-tlsv1, no-tlsv11)) ); };
© 2025 One Identity LLC. ALL RIGHTS RESERVED. Terms of Use Privacy Cookie Preference Center