-
Notifications
You must be signed in to change notification settings - Fork 189
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TLS server cipher regarding #1608
Comments
All the supported configuration parameters are found in the The module is quite big, with all the imports, so you can use |
As i am beginner can you please share the example xml for the above to add cipher-suite |
Fine, this config adds only the cipher suite configuration (you need the rest of a TLS endpoint configuration for it to be valid and work, more about an example in the README) so it needs to be merged, not imported or replace the previous configuration (you can use <netconf-server xmlns="urn:ietf:params:xml:ns:yang:ietf-netconf-server">
<listen>
<endpoints>
<endpoint>
<name>default-tls</name>
<tls>
<tls-server-parameters>
<hello-params>
<cipher-suites xmlns:tlscsa="urn:ietf:params:xml:ns:yang:iana-tls-cipher-suite-algs">
<cipher-suite>tlscsa:tls-dhe-rsa-with-aes-128-gcm-sha256</cipher-suite>
<cipher-suite>tlscsa:tls-ecdhe-rsa-with-aes-128-gcm-sha256</cipher-suite>
</cipher-suites>
</hello-params>
</tls-server-parameters>
</tls>
</endpoint>
</endpoints>
</listen>
</netconf-server> |
Hi michal, |
I have provided the data for the latest release netopeer2 v2.2.28, with all its dependencies. Based on what you wrote I am certain you are using some older version. Update it and it will work. |
Thank you for your prompt response and for providing the data for the latest release, Netopeer2 v2.2.28. However, due to some dependencies, I need to stick with version 2.1.71. I am currently using the YANG file iana-tls-cipher-suite-algs@2024-03-16 for Netopeer2 version 2.1.71. Could you please suggest the correct version of the iana-tls-cipher-suite-algs YANG file that would be compatible with Netopeer2 v2.1.71? |
No, you cannot be using |
Hi,
I need to configure the TLS server to ensure it uses specific cipher suites for secure connections. Currently, the server is establishing connections with the default ciphers, but I require the server to prioritize the following cipher suites:
Could you please provide guidance on how to update the server's cipher selection to include these specific ciphers?
Thank you!
The text was updated successfully, but these errors were encountered: