InspIRCd-2.0.23 r0 - How to disable old ciphers #2129
Closed
GabrieleMax
started this conversation in
General
Replies: 1 comment 4 replies
-
How to configure a GnuTLS priority string is documented here: https://gnutls.org/manual/html_node/Priority-Strings.html#Using-Priority-Strings You can get a list of cipher suites with |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have an old version of InspIRCd (2.0.23 r0), in the future plans obviously it'll be an update action asap but now I should disable weak ciphers like:
DHE-RSA-AES256-GCM-SHA384
DHE-RSA-CHACHA20-POLY1305
DHE-RSA-CAMELLIA256-GCM-SHA384
DHE-RSA-AES256-CCM
I tried in the config file the option priority="PFS" but it doesn't disable weak ciphers, after it I tried something like priority="PFS:!DHE-RSA-AES256-GCM-SHA384:!DHE-RSA-CHACHA20-POLY1305:!DHE-RSA-CAMELLIA256-GCM-SHA384:!DHE-RSA-AES256-CCM" but InspIRCd's log said it doesn't work and it switches to priority="NORMAL".
Is there a way to manage\disable weak ciphers?
Beta Was this translation helpful? Give feedback.
All reactions