Replies: 1 comment
-
Hi @JJ2CC to me it's still possible why a concatenation of the cert & the private key in a file and just use |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Your idea
The problematic is the authentication of Glpi-Agents on a important parc.
If you want only a valid agent can contact the glpi Server , and not a rogue agent (in the hypothese of a cloud approch by example), you MUST validate all your clients .
My approch: use the mecanism of mutual TLS authentication .
Each agent has a deidecated certificate (client), issued from an internal PKI , in a ideal world .
The agent has a new parameter , ssl-key-file ( the path of the client certificate private key) ,
With the ssl-cert-file parameter, the agent can now use a client certificate , and do a valid request to the Apache server.
In this scenario
add the new parameter in the Agent
add the parameter in the SSL connection
Agent/HTTP/Client.pm
in apache , do a new vhost , and specify the validation conditions
# ################
# Partie SSL #
################
SSLEngine on
I dit it for an old version (1.5), and it's work
Do you accept this change ?
Beta Was this translation helpful? Give feedback.
All reactions