summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSven Nierlein <sven@nierlein.de>2017-05-28 08:16:01 (GMT)
committerSven Nierlein <sven@nierlein.de>2017-05-28 08:16:01 (GMT)
commitb5ae9fe9813a1b569014efaa4068a93d1022c9a5 (patch)
tree8e92f0f4820c5259153784ed19f8ff3c568c1aa0
parent07004861ef79030360c0715efa0264b3aa014a74 (diff)
downloadmonitoring-plugins-b5ae9fe.tar.gz
check_curl: add docs about https proxy
-rw-r--r--plugins/check_curl.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/plugins/check_curl.c b/plugins/check_curl.c
index 82324d3..e7e05a5 100644
--- a/plugins/check_curl.c
+++ b/plugins/check_curl.c
@@ -1709,7 +1709,10 @@ print_help (void)
1709 printf (" %s\n", _("A STATE_CRITICAL will be returned when certificate expires in less than 14 days")); 1709 printf (" %s\n", _("A STATE_CRITICAL will be returned when certificate expires in less than 14 days"));
1710 1710
1711 printf (" %s\n\n", "CHECK SSL WEBSERVER CONTENT VIA PROXY USING HTTP 1.1 CONNECT: "); 1711 printf (" %s\n\n", "CHECK SSL WEBSERVER CONTENT VIA PROXY USING HTTP 1.1 CONNECT: ");
1712 printf (" %s\n", _("check_curl -I 192.168.100.35 -p 80 -u https://www.verisign.com/ -S -j CONNECT -H www.verisign.com ")); 1712 printf (" %s\n", _("It is recommended to use an environment proxy like:"));
1713 printf (" %s\n", _("https_proxy=http://127.0.0.1:3128 ./check_curl -H www.verisign.com -S"));
1714 printf (" %s\n", _("but proxy requests in check_http style still works:"));
1715 printf (" %s\n", _("check_curl -I 192.168.100.35 -p 3128 -u https://www.verisign.com/ -S -j CONNECT -H www.verisign.com "));
1713 printf (" %s\n", _("all these options are needed: -I <proxy> -p <proxy-port> -u <check-url> -S(sl) -j CONNECT -H <webserver>")); 1716 printf (" %s\n", _("all these options are needed: -I <proxy> -p <proxy-port> -u <check-url> -S(sl) -j CONNECT -H <webserver>"));
1714 printf (" %s\n", _("a STATE_OK will be returned. When the server returns its content but exceeds")); 1717 printf (" %s\n", _("a STATE_OK will be returned. When the server returns its content but exceeds"));
1715 printf (" %s\n", _("the 5-second threshold, a STATE_WARNING will be returned. When an error occurs,")); 1718 printf (" %s\n", _("the 5-second threshold, a STATE_WARNING will be returned. When an error occurs,"));