Sleds/utils/nagios-conf/internalhosts.cfg

97 lines
4.1 KiB
INI

# Config file: internalservices.cfg
# Define a host for the machine fruit
define host{
use linux-server ; Name of host template to use
host_name fruit.local
alias fruit
# address 192.168.1.229 ; Fruit is fixed at this time
address fruit.local ; Fruit is accessed by name
}
define host{
use linux-server ; Name of host template to use
host_name fruit-linux.local
alias fruit-linux
address fruit-linux.local ; Fruit linux VM is accessed by name
}
define host{
use linux-server ; Name of host template to use
host_name fruit-windows.local
alias fruit-windows
address fruit-windows.local ; Fruit Windows VM is accessed by name
}
###############################################################################
# Define a host for the machine NINE
define host{
use linux-server ; Name of host template to use
host_name NINE
alias NINE
address 192.168.1.90 ; NINE is not fixed at this time
# address NINE ; NINE is accessed by name
}
###############################################################################
# Define a host for the machine one
define host{
use linux-server ; Name of host template to use
host_name one
alias one
address 192.168.1.11 ; one is fixed at this time
# address one ; one is is accessed by name
}
###############################################################################
# Define a host for the machine seven
define host{
use linux-server ; Name of host template to use
host_name seven
alias seven
address 192.168.1.200 ; one is fixed at this time
# address seven ; seven is is accessed by name
}
###############################################################################
# Define a host for the machine mail_server
define host{
use linux-server ; Name of host template to use
host_name mail.ionu.com
alias mail_server
address 192.168.168.10 ; mail_server is fixed at this time
}
###############################################################################
# Define a host for the machine diskstation
define host{
use linux-server ; Name of host template to use
host_name diskstation
alias diskstation
address 192.168.1.30 ; diskstation is fixed at this time
}
###############################################################################
# Define a host for the machine eight
define host{
use linux-server ; Name of host template to use
host_name eight
alias eight
address 192.168.1.249 ; eight is fixed at this time???
}
###############################################################################
###############################################################################
#
# HOSTGROUP DEFINITIONS
#
###############################################################################
###############################################################################
define hostgroup{
hostgroup_name internal-servers
members fruit.local,fruit-linux.local,fruit-windows.local,NINE,one,seven,mail.ionu.com,diskstation,eight
}