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 SOCKS

Rating
0 votes
Favoured:
0
Current Version
1.0.0
Last Release Date
2019-09-01
Compatible With
  • Nagios 1.x
  • Nagios 2.x
  • Nagios 3.x
  • Nagios 4.x
Owner
License
GPL
Hits
5604
Files:
FileDescription
check_sockscheck_socks
Network Monitoring Software - Download Nagios XI
Log Management Software - Nagios Log Server - Download
Netflow Analysis Software - Nagios Network Analyzer - Download
Nagios plugin to monitor socks proxy
Nagios plugin to monitor socks proxy

Installation:
Copy check_socks file in plugin directory (usually /usr/lib/nagios/plugins, can be found in file /etc/nagios3/resource.cfg).
Make it executable:
chmod +x /usr/lib/nagios/plugins/check_socks

Configuration:
Define command
# 'check_socks' command definition
define command{
command_name check_socks
command_line /usr/lib/nagios/plugins/check_socks -i '$ARG1$' -p '$ARG2$'
}
Define service
# Define a service to check socks proxy
define service{
use generic-service
host_name hostname
service_description Socks proxy
check_command check_socks!!
}
Replace and with your values

Script usage:
Usage:
--help = Print this message
-i = Proxy IP address (default 127.0.0.1)
-p = Proxy port (default 1080)
--target = Url to check socks proxy (default https://www.google.com)
--max-time = Maximum time in seconds that you allow the whole operation to take (default 10)

Requirements:
curl must be installed on the host.