我需要通过ping检查IP:PORT,所以我找到了nagios的check_hping
插件。我试图将它添加到nagios中。
http://exchange.nagios.org/directory/Plugins/Network-Protocols/ICMP/chech_hping/details
在nagios服务网页界面中,我收到错误:
CRITICAL: Error pinging
1,似乎我已正确添加插件到插件文件夹(权限,所有权..)
root@onedata-desktop:~# ls -l /usr/local/nagios/libexec/check_hping
-rwxr-xr-x 1 nagios nagios 1994 Jul 26 17:36 /usr/local/nagios/libexec/check_hping
2,命令中的所有参数都是正确的:
define command{
command_name check-ping-on-port
command_line $USER1$/check_hping $HOSTADDRESS$ $ARG1$ $ARG2$ $ARG3$
}
define service{
use generic-service
host_name cam_chodba
service_description Kamery
check_command check-ping-on-port!100!300!10201
normal_check_interval 1
retry_check_interval 1
}
3,nagios
用户的权限:
root@onedata-desktop:~# cat /etc/group | grep nagios
nagios:x:1001:nagios,www-data
4,该命令可从命令行执行:
onedata@onedata-desktop:~$ /usr/local/nagios/libexec/check_hping 188.123.99.171 200 300 1201
[sudo] password for onedata:
OK: Average response time 20 ms; packet loss 0%
也许你可以帮助我。
谢谢
答案 0 :(得分:0)
您在命令行中检查tcp端口1201并在配置文件中有10201。您应该再次检查您的服务记录。
答案 1 :(得分:0)
脚本 check_hping
需要 sudo。您是否在 sudo 配置文件(/etc/sudoers
或 /etc/sudoers.d/
中的模块化文件)中为 nagios 用户配置了所需的权限?需要标签 NOPASSWD
才能不要求输入密码。