60 lines
1.6 KiB
INI
60 lines
1.6 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_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$
|
||
|
}
|
||
|
|