96 lines
2.4 KiB
INI
96 lines
2.4 KiB
INI
################################################################################
|
|
# COMMAND DEFINITIONS
|
|
#
|
|
# SYNTAX:
|
|
#
|
|
# define command{
|
|
# template <templatename>
|
|
# name <objectname>
|
|
# command_name <commandname>
|
|
# command_line <commandline>
|
|
# }
|
|
#
|
|
# WHERE:
|
|
#
|
|
# <templatename> = object name of another command definition that should be
|
|
# used as a template for this definition (optional)
|
|
# <objectname> = object name of command definition, referenced by other
|
|
# command definitions that use it as a template (optional)
|
|
# <commandname> = name of the command, as recognized/used by Nagios
|
|
# <commandline> = command line
|
|
#
|
|
################################################################################
|
|
|
|
define command{
|
|
command_name true
|
|
command_line /bin/true
|
|
}
|
|
|
|
define command{
|
|
command_name check_dummy
|
|
command_line $USER1$/check_dummy $ARG1$ $ARG2$
|
|
}
|
|
|
|
# 'check_tape'
|
|
define command{
|
|
command_name check_tape
|
|
command_line $USER1$/check_tape
|
|
}
|
|
|
|
# 'check_ftp' command definition
|
|
define command{
|
|
command_name check_ftp
|
|
command_line $USER1$/check_ftp -H $HOSTADDRESS$
|
|
}
|
|
|
|
|
|
# 'check_hpjd' command definition
|
|
define command{
|
|
command_name check_hpjd
|
|
command_line $USER1$/check_hpjd -H $HOSTADDRESS$ -C public
|
|
}
|
|
|
|
# 'check_snmp' command definition
|
|
define command{
|
|
command_name check_snmp
|
|
command_line $USER1$/check_snmp -H $HOSTADDRESS$ $ARG1$
|
|
}
|
|
|
|
|
|
# 'check_nntp' command definition
|
|
define command{
|
|
command_name check_nntp
|
|
command_line $USER1$/check_nntp -H $HOSTADDRESS$
|
|
}
|
|
|
|
|
|
# 'check_telnet' command definition
|
|
define command{
|
|
command_name check_telnet
|
|
command_line $USER1$/check_tcp -H $HOSTADDRESS$ -p 23
|
|
}
|
|
|
|
# 'check_dhcp' command definition
|
|
define command{
|
|
command_name check_dhcp
|
|
command_line $USER1$/check_dhcp $ARG1$
|
|
}
|
|
|
|
# 'check_pop' command definition
|
|
define command{
|
|
command_name check_pop
|
|
command_line $USER1$/check_pop -H $HOSTADDRESS$
|
|
}
|
|
|
|
# 'check_imap' command definition
|
|
define command{
|
|
command_name check_imap
|
|
command_line $USER1$/check_imap -H $HOSTADDRESS$ $ARG1$
|
|
}
|
|
|
|
# 'check_nt' command definition
|
|
define command{
|
|
command_name check_nt
|
|
command_line $USER1$/check_nt -H $HOSTADDRESS$ -p 12489 -v $ARG1$ $ARG2$
|
|
}
|
|
|