From 5131906ad420c8e02eb672253b4d9ce9e66dfc6a Mon Sep 17 00:00:00 2001 From: Colin O'Dell Date: Sun, 12 Feb 2017 21:38:46 +0100 Subject: [PATCH] Document new verify_ssl option for the QNAP sensor (#2020) --- source/_components/sensor.qnap.markdown | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/source/_components/sensor.qnap.markdown b/source/_components/sensor.qnap.markdown index c00ad813859..b84a7702f08 100644 --- a/source/_components/sensor.qnap.markdown +++ b/source/_components/sensor.qnap.markdown @@ -38,6 +38,7 @@ Configuration variables: - **host** (*Required*): The IP address of the QNAP NAS to monitor - **port** (*Optional*): The port number on which the QNAP NAS web interface is reachable. Defaults to `8080`. - **ssl** (*Optional*): Whether to connect via `https`. Defaults to `false`. +- **verify_ssl** (*Optional*): Whether SSL certificates should be validated. Defaults to `true`. - **username** (*Required*): An user to connect to the QNAP NAS. - **password** (*Required*): The password of the user to connect to the QNAP NAS. - **drives** (*Optional*): Array of drives to monitor (ex: `0:1`). Defaults to all drives. @@ -59,7 +60,11 @@ Configuration variables: - **volume_size_used**: Displays the used space of the volume in GB (creates a new entry for each volume). - **volume_percentage_used**: Displays the used space of the volume as a percentage (creates a new entry for each volume). -QNAP device support: +### Self-signed certificates + +If your QNAP device uses self-signed certificates, set the `verify_ssl` option to `false`. + +### QNAP device support: This component has been tested on a TS-451 running QTS 4.2.2. Other QNAP NAS devices using similar firmware should work fine. -For more information about supported devices, or to report issues with your device, please visit the [qnapstats project](https://github.com/colinodell/python-qnapstats#device-support). \ No newline at end of file +For more information about supported devices, or to report issues with your device, please visit the [qnapstats project](https://github.com/colinodell/python-qnapstats#device-support).