2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-29 13:07:50 +00:00

[#3848] Remove user from default agent file

modified:   src/bin/keactrl/kea-ctrl-agent.conf.pre
This commit is contained in:
Thomas Markwalder 2025-06-30 09:58:33 -04:00
parent 3aa9dc86d8
commit 067ed4448a

View File

@ -27,9 +27,10 @@
"http-port": 8000, "http-port": 8000,
// Allow access only to kea-api user. // Allow access only to kea-api user.
// To make it work, please store your password in kea-api-password file. // To make it work, please store your user name in kea-api-user file.
// Make sure the password file has sufficiently restrictive access // and store your password in kea-api-password file.
// permissions, in particular it is not world-readable. // Make sure the user and password files have sufficiently restrictive
// access permissions, in particular it is not world-readable.
// The basic HTTP auth offers poor security for unencrypted channels. // The basic HTTP auth offers poor security for unencrypted channels.
// If possible, a better, stronger HTTPS mechanism should be deployed, // If possible, a better, stronger HTTPS mechanism should be deployed,
// in particular when the client authentication is enabled by setting the // in particular when the client authentication is enabled by setting the
@ -42,7 +43,7 @@
"directory": "/etc/kea", "directory": "/etc/kea",
"clients": [ "clients": [
{ {
"user": "kea-api", "user": "kea-api-user",
"password-file": "kea-api-password" "password-file": "kea-api-password"
} }
] ]