Hello,
this is a quick and dirty patch/hack to monitor client certificate protected websites. This patch is against Zabbix 2.0.4.
The cert files have to be in PEM format. You need an file for the CA, the client certifcate, the private key and the password for this private key.
This was my example code for libcurl SSL support: http://curl.haxx.se/libcurl/c/simplessl.html
With the curl cmd tool and an .curlrc file it's possible to test the PEM files:
.curlrc
--insecure
--cert clientcert.pem
--cert-type PEM
--cacert cacert.pem
--key clientkey.pem
--pass ***
I hope this patch is useful for someone.
Regards,
Clemens
this is a quick and dirty patch/hack to monitor client certificate protected websites. This patch is against Zabbix 2.0.4.
The cert files have to be in PEM format. You need an file for the CA, the client certifcate, the private key and the password for this private key.
This was my example code for libcurl SSL support: http://curl.haxx.se/libcurl/c/simplessl.html
With the curl cmd tool and an .curlrc file it's possible to test the PEM files:
.curlrc
--insecure
--cert clientcert.pem
--cert-type PEM
--cacert cacert.pem
--key clientkey.pem
--pass ***
I hope this patch is useful for someone.
Regards,
Clemens
Comment