-
Notifications
You must be signed in to change notification settings - Fork 145
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
Feature: MySQL database backends with SSL #15
Closed
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Additional parameters for the MySQL database backend have been introduced which are used to call libmysql's mysql_ssl_set() function.
Create #5117 ticket to handle it. One question and one concern:
|
tomaszmrugalski
pushed a commit
that referenced
this pull request
Sep 5, 2018
…ing host reservations src/bin/admin/tests/pgsql_tests.sh.in src/bin/admin/tests/cql_tests.sh.in src/bin/admin/tests/mysql_tests.sh.in Added functions that verify subnet id values are updated src/share/database/scripts/cql/upgrade_2.0_to_3.0.sh.in src/share/database/scripts/mysql/upgrade_6.0_to_7.0.sh.in src/share/database/scripts/pgsql/upgrade_4.0_to_5.0.sh.in Added logic to update subnet id values in existing reservations and options
tomaszmrugalski
pushed a commit
that referenced
this pull request
Sep 5, 2018
Mostly added commentary.
tomaszmrugalski
pushed a commit
that referenced
this pull request
Sep 5, 2018
tomaszmrugalski
pushed a commit
that referenced
this pull request
Sep 5, 2018
tomaszmrugalski
pushed a commit
that referenced
this pull request
Sep 5, 2018
jivdhaliwal
pushed a commit
to ministryofjustice/staff-device-dhcp-server
that referenced
this pull request
Oct 22, 2020
The recent Kea releases now have SSL support in MySQL. This has been added in kea 2.1.2. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull requests introduces five new configuration parameters to the MySQL database backend:
ssl_key
ssl_cert
ssl_ca
ssl_capath
ssl_cipher
which correspond to the parameters to libmysql's
mysql_ssl_set()
.Therefore support for SSL secured connections is added.
These changes should not break backward compatibility as it is a opt-in feature.
Tested with a MySQL 5.6.23 backend with a custom CA and libmysqlclient-dev 5.5.44-0ubuntu0.14.04.1 on the client. We believe this works on any recent mysql installation.
Example