Home Directory Plugins Web Servers check_ssl_cert_expiry

Search Exchange

Search All Sites

Nagios Live Webinars

Let our experts show you how Nagios can help your organization.

Contact Us

Phone: 1-888-NAGIOS-1
Email: sales@nagios.com

Login

Remember Me

Directory Tree

check_ssl_cert_expiry

Current Version
v 1.0
Last Release Date
2014-12-10
Compatible With
  • Nagios 3.x
  • Nagios 4.x
  • Nagios XI
License
GPL
Hits
21693
Network Monitoring Software - Download Nagios XI
Log Management Software - Nagios Log Server - Download
Netflow Analysis Software - Nagios Network Analyzer - Download
The check_ssl_cert_expiry nagios plugin send alert before date of expiration of SSL Certificate used in HTTPS websites.
Even after the date of expiration it will remain continue showing alert as CRITICAL.

Contact us for further improvement and suggestion.
Usage Syntax Example:

check_ssl_cert_expiry -h Domain-Name -w days -c days

Here,
-h = Give domain name with using https. For eg example.com or www.example.com . Manually check URL in web browser first,which is using HTTPS.

-w = No. of days for Warning alert

-c = No. of days for Critical alert

Install the plugin directly into Nagios Server.

In case if there is firewall rule in network, Allow https (443) port access from Nagios Server to Target Web server.
Reviews (4)
This is the most advanced & simple script to achieve the Nagios SSL Expiry Monitoring. Worked Well. Some Nagios Administrators, here is my configuration file.
==========================
commands.cfg
{
define command
command_name check_ssl_cert_expiry
command_line $USER1$/check_ssl_cert_expiry -h $ARG1$ -w $ARG2$ -c $ARG3$
}

==========================
{
define service
use generic-service
check_interval 60
retry_interval 5
host_name central_nagios
service_description Server SSL Certificate Expiry of YOUR DOMAIN NAME check_command check_ssl_cert_expiry!YOUR_DOMAIN_NAME!60!30 contacts nishithvyas notification_interval 60 notifications_enabled 1
}

Done.
In a single SSL site it´s works fine. However, if we have more than one SSL site in the same server, this plugin only check one of them, and all the sites has the same expiry date.

Thanks.
byutahluge, December 18, 2015
After trying a bunch of other ssl cert plugins, this one works right out of the box on a minimal install O.S. Thank you very much!
byDaveHowe, December 12, 2014
how does this differ from check_http --certificate ?