Search Exchange
Search All Sites
Nagios Live Webinars
Let our experts show you how Nagios can help your organization.Login
Directory Tree
check_http_ntlm
Meet The New Nagios Core Services Platform
Built on over 25 years of monitoring experience, the Nagios Core Services Platform provides insightful monitoring dashboards, time-saving monitoring wizards, and unmatched ease of use. Use it for free indefinitely.
Monitoring Made Magically Better
- Nagios Core on Overdrive
- Powerful Monitoring Dashboards
- Time-Saving Configuration Wizards
- Open Source Powered Monitoring On Steroids
- And So Much More!
Simple bash used for verifying that a windows ntlm auth is working, uses curl.
add to nagiosgraph map for a graph that should always be 0
/perfdata:ntlm=(d+);(d+)/
and push @s, [ ntlm,
[ "current", GAUGE, $1 ],
[ "warn", GAUGE, $2 ]
];
add to nagiosgraph map for a graph that should always be 0
/perfdata:ntlm=(d+);(d+)/
and push @s, [ ntlm,
[ "current", GAUGE, $1 ],
[ "warn", GAUGE, $2 ]
];
Reviews (1)
Hello
I just adapted a little this script so he could check squid proxy with ntlm auth
Replace with this line
$PROG --proxy-ntlm -D $FILE --proxy $1 --proxy-user $USER:$PASSWORD $URL > /dev/null
Hope it will help
I just adapted a little this script so he could check squid proxy with ntlm auth
Replace with this line
$PROG --proxy-ntlm -D $FILE --proxy $1 --proxy-user $USER:$PASSWORD $URL > /dev/null
Hope it will help