diff --git a/failover/restore_xi.sh b/failover/restore_xi.sh index a3d1adc..1d025d2 100755 --- a/failover/restore_xi.sh +++ b/failover/restore_xi.sh @@ -3,6 +3,9 @@ # Restores a Full Backup of Nagios XI # Copyright (c) 2008-2018 Nagios Enterprises, LLC. All rights reserved. # +# Heavily modified by EverWatch Global, Inc. for syncing two Nagios installations +# +# Restore just needs to restore the MySQL stuff. Everything else was shipped over via rsync # Change this password if your root password is different than "nagiosxi" # MySQL root password @@ -40,55 +43,6 @@ if [ ! -f $backupfile ]; then exit 1 fi -# Restore just needs to restore the MySQL stuff. Everything else was shipped over via rsync -## Look inside the (nested) tarball to see what architecture the nagios -## executable is -#if [ $backupfile == "/store/backups/nagiosxi-demo.tar.gz" ];then -#backuparch="x86_64" -#else -#backuparch=$(eval $(echo $(tar -xzOf $backupfile $(basename $backupfile .tar.gz)/nagiosxi.tar.gz | tar -xzOf - usr/local/nagiosxi/var/xi-sys.cfg |cat|grep ^arch\=));echo $arch) -# -#fi -#arch=$(uname -m) -#case $arch in -# i*86 ) arch="i686" ;; -# x86_64 ) arch="x86_64" ;; -# * ) echo "Error detecting architecture."; exit 1 -#esac -# -#if [ "$arch" != "$backuparch" ]; then -# echo "WARNING: you are trying to restore a $backuparch backup on a $arch system" -# echo " Compiled plugins and other binaries will NOT be restored." -# echo -# read -r -p "Are you sure you want to continue? [y/N] " ok -# -# case "$ok" in -# Y | y ) : ;; -# * ) exit 1 -# esac -#fi -# -#backupdist=$(eval $(echo $(tar -xzOf $backupfile $(basename $backupfile .tar.gz)/nagiosxi.tar.gz | tar -xzOf - usr/local/nagiosxi/var/xi-sys.cfg |cat|grep ^dist\=));echo $dist) -# -#if [ "$dist" != "$backupdist" ]; then -# SPECIAL_BACKUP=1 -# -# echo "WARNING: you are trying to restore a $backupdist backup on a $dist system" -# echo " Compiled plugins and other binaries as well as httpd configurations" -# echo " will NOT be restored." -# echo "" -# echo " You will need to re-download the Nagios XI tarball, and re-install" -# echo " the subcomponents for this system. More info here:" -# echo " https://assets.nagios.com/downloads/nagiosxi/docs/Backing-Up-And-Restoring-Nagios-XI.pdf" -# echo "" -# read -r -p "Are you sure you want to continue? [y/N] " ok -# -# case "$ok" in -# Y | y ) : ;; -# * ) exit 1 -# esac -#fi - ############################## # MAKE TEMP RESTORE DIRECTORY ############################## @@ -133,112 +87,7 @@ $BASEDIR/manage_services.sh stop ndo2db $BASEDIR/manage_services.sh stop npcd -############################## -# RESTORE DIRS -############################## rootdir=/ -#echo "Restoring directories to ${rootdir}..." -# -## Nagios Core -#echo "Restoring Nagios Core..." -#if [ "$arch" == "$backuparch" ] && [ $SPECIAL_BACKUP -eq 0 ]; then -# rm -rf /usr/local/nagios -# cd $rootdir && tar xzf $backupdir/nagios.tar.gz -#else -# rm -rf /usr/local/nagios/etc /usr/local/nagios/share /usr/local/nagios/var -# cd $rootdir && tar --exclude="usr/local/nagios/bin" --exclude="usr/local/nagios/sbin" --exclude="usr/local/nagios/libexec" -xzf $backupdir/nagios.tar.gz -# cd $rootdir && tar --wildcards 'usr/local/nagios/libexec/*.*' -xzf $backupdir/nagios.tar.gz -#fi -# -## Restore ramdisk if it exists -#if [ -f "$backupdir/ramdisk.nagios" ]; then -# echo "Updating ramdisk configuration..." -# cp $backupdir/ramdisk.nagios /etc/sysconfig/nagios -#fi -# -## Nagios XI -#echo "Restoring Nagios XI..." -#if [ "$arch" == "$backuparch" ] && [ $SPECIAL_BACKUP -eq 0 ]; then -# rm -rf /usr/local/nagiosxi -# cd $rootdir && tar xzfps $backupdir/nagiosxi.tar.gz -#else -# mv $BASEDIR/../var/xi-sys.cfg /tmp/xi-sys.cfg -# mv $BASEDIR/../var/certs /tmp/certs -# mv $BASEDIR/../var/keys /tmp/keys -# -# rm -rf /usr/local/nagiosxi -# cd $rootdir && tar xzfps $backupdir/nagiosxi.tar.gz -# -# cp -r /tmp/xi-sys.cfg $BASEDIR/../var/xi-sys.cfg -# rm -f /tmp/xi-sys.cfg -# -# # Check for certs -# mkdir -p $BASEDIR/../var/certs -# cp -r /tmp/certs $BASEDIR/../var/ -# -# rm -rf /tmp/certs -# -# # Check for keys -# mkdir -p $BASEDIR/../var/keys -# cp -r /tmp/keys $BASEDIR/../var/ -# -# rm -rf /tmp/keys -#fi -# -## NagiosQL -#if [ -d "/var/www/html/nagiosql" ]; then -# -# echo "Restoring NagiosQL..." -# rm -rf /var/www/html/nagiosql -# cd $rootdir && tar xzfps $backupdir/nagiosql.tar.gz -# -# # NagiosQL etc -# echo "Restoring NagiosQL backups..." -# rm -rf /etc/nagiosql -# cd $rootdir && tar xzfps $backupdir/nagiosql-etc.tar.gz -# -#fi -# -## NRDP -#echo "Restoring NRDP backups..." -#rm -rf /usr/local/nrdp -#cd $rootdir && tar xzfps $backupdir/nrdp.tar.gz -# -## MRTG -#if [ -f $backupdir/mrtg.tar.gz ]; then -# echo "Restoring MRTG..." -# rm -rf /var/lib/mrtg -# cd $rootdir && tar xzfps $backupdir/mrtg.tar.gz -# cp -rp $backupdir/conf.d /etc/mrtg/ -# cp -p $backupdir/mrtg.cfg /etc/mrtg/ -# chown $apacheuser:$nagiosgroup /etc/mrtg/conf.d /etc/mrtg/mrtg.cfg -#fi -#cd $backupdir -# -## SNMP configs and MIBS -#if [ -f $backupdir/etc-snmp.tar.gz ]; then -# echo "Restoring SNMP configuration files..." -# cd $rootdir && tar xzfps $backupdir/etc-snmp.tar.gz -#fi -#if [ -f $backupdir/usr-share-snmp.tar.gz ]; then -# echo "Restoring SNMP MIBs..." -# cd $rootdir && tar xzfps $backupdir/usr-share-snmp.tar.gz -#fi -# -# Nagvis -#if [ -f $backupdir/nagvis.tar.gz ]; then -# echo "Restoring Nagvis backups..." -# rm -rf /usr/local/nagvis -# cd $rootdir && tar xzfps $backupdir/nagvis.tar.gz -# chown -R $apacheuser:$nagiosgroup /usr/local/nagvis -#fi -# -## nagios user home -#if [ -f $backupdir/home-nagios.tar.gz ]; then -# echo "Restoring nagios home dir..." -# cd $rootdir && tar xzfps $backupdir/home-nagios.tar.gz -#fi - # RE-IMPORT ALL XI CFG VARS . $BASEDIR/../var/xi-sys.cfg php $BASEDIR/import_xiconfig.php > $BASEDIR/config.dat @@ -356,46 +205,6 @@ fi echo "Restarting database servers..." $BASEDIR/manage_services.sh restart mysqld -############################### -## RESTORE CRONJOB ENTRIES -############################### -#echo "Restoring Apache cronjobs..." -#if [[ "$distro" == "Ubuntu" ]] || [[ "$distro" == "Debian" ]]; then -# cp $backupdir/cron/apache /var/spool/cron/crontabs/$apacheuser -#else -# cp $backupdir/cron/apache /var/spool/cron/apache -#fi - -############################## -# RESTORE SUDOERS -############################## -# Not necessary - -############################### -## RESTORE LOGROTATE -############################### -#echo "Restoring logrotate config files..." -#cp -rp $backupdir/logrotate/nagiosxi /etc/logrotate.d - -############################### -## RESTORE APACHE CONFIG FILES -############################### -#if [ $SPECIAL_BACKUP -eq 0 ]; then -# echo "Restoring Apache config files..." -# cp -rp $backupdir/httpd/nagios.conf $httpdconfdir -# cp -rp $backupdir/httpd/nagiosxi.conf $httpdconfdir -# cp -rp $backupdir/httpd/nagiosmobile.conf $httpdconfdir -# cp -rp $backupdir/httpd/nagvis.conf $httpdconfdir -# cp -rp $backupdir/httpd/nrdp.conf $httpdconfdir -# if [ -d "/etc/apache2/sites-available" ]; then -# cp -rp $backupdir/httpd/default-ssl.conf /etc/apache2/sites-available -# else -# cp -rp $backupdir/httpd/ssl.conf $httpdconfdir -# fi -#else -# echo "Skipping Apache config files restoration" -#fi - ############################## # RESTART SERVICES ############################## diff --git a/failover/rsync_xi.sh b/failover/rsync_xi.sh index 8215182..c20b948 100755 --- a/failover/rsync_xi.sh +++ b/failover/rsync_xi.sh @@ -99,10 +99,6 @@ do_rsync() { rsync -avun --delete --delete-after $1 ${secondary}:${1} } -do_rsync2() { - rsync -avu --delete --delete-after $1 ${secondary}:${1} -} - # Only backup NagiosQL if it exists if [ -d "/var/www/html/nagiosql" ]; then echo "Backing up NagiosQL..." diff --git a/nrpe.cfg b/nrpe.cfg new file mode 100644 index 0000000..454523a --- /dev/null +++ b/nrpe.cfg @@ -0,0 +1,310 @@ +############################################################################# +# Sample NRPE Config File +# Written by: Ethan Galstad (nagios@nagios.org) +# +# Last Modified: 12-11-2006 +# +# NOTES: +# This is a sample configuration file for the NRPE daemon. It needs to be +# located on the remote host that is running the NRPE daemon, not the host +# from which the check_nrpe client is being executed. +############################################################################# + + +# PID FILE +# The name of the file in which the NRPE daemon should write it's process ID +# number. The file is only written if the NRPE daemon is started by the root +# user and is running in standalone mode. + +pid_file=/var/run/nrpe.pid + + + +# PORT NUMBER +# Port number we should wait for connections on. +# NOTE: This must be a non-priviledged port (i.e. > 1024). +# NOTE: This option is ignored if NRPE is running under either inetd or xinetd + +server_port=9666 + + + +# SERVER ADDRESS +# Address that nrpe should bind to in case there are more than one interface +# and you do not want nrpe to bind on all interfaces. +# NOTE: This option is ignored if NRPE is running under either inetd or xinetd + +#server_address=192.168.1.1 + + + +# NRPE USER +# This determines the effective user that the NRPE daemon should run as. +# You can either supply a username or a UID. +# +# NOTE: This option is ignored if NRPE is running under either inetd or xinetd + +nrpe_user=nrpe + + + +# NRPE GROUP +# This determines the effective group that the NRPE daemon should run as. +# You can either supply a group name or a GID. +# +# NOTE: This option is ignored if NRPE is running under either inetd or xinetd + +nrpe_group=nrpe + + + +# ALLOWED HOST ADDRESSES +# This is an optional comma-delimited list of IP address or hostnames +# that are allowed to talk to the NRPE daemon. +# +# Note: The daemon only does rudimentary checking of the client's IP +# address. I would highly recommend adding entries in your /etc/hosts.allow +# file to allow only the specified host to connect to the port +# you are running this daemon on. +# +# NOTE: This option is ignored if NRPE is running under either inetd or xinetd + +#allowed_hosts=127.0.0.1,192.168.0.2 + + + +# COMMAND ARGUMENT PROCESSING +# This option determines whether or not the NRPE daemon will allow clients +# to specify arguments to commands that are executed. This option only works +# if the daemon was configured with the --enable-command-args configure script +# option. +# +# *** ENABLING THIS OPTION IS A SECURITY RISK! *** +# Read the SECURITY file for information on some of the security implications +# of enabling this variable. +# +# Values: 0=do not allow arguments, 1=allow command arguments + +dont_blame_nrpe=1 + + + +# COMMAND PREFIX +# This option allows you to prefix all commands with a user-defined string. +# A space is automatically added between the specified prefix string and the +# command line from the command definition. +# +# *** THIS EXAMPLE MAY POSE A POTENTIAL SECURITY RISK, SO USE WITH CAUTION! *** +# Usage scenario: +# Execute restricted commmands using sudo. For this to work, you need to add +# the nagios user to your /etc/sudoers. An example entry for alllowing +# execution of the plugins from might be: +# +# nagios ALL=(ALL) NOPASSWD: /usr/lib/nagios/plugins/ +# +# This lets the nagios user run all commands in that directory (and only them) +# without asking for a password. If you do this, make sure you don't give +# random users write access to that directory or its contents! + +# command_prefix=/usr/bin/sudo + + + +# DEBUGGING OPTION +# This option determines whether or not debugging messages are logged to the +# syslog facility. +# Values: 0=debugging off, 1=debugging on + +debug=0 + + + +# COMMAND TIMEOUT +# This specifies the maximum number of seconds that the NRPE daemon will +# allow plugins to finish executing before killing them off. + +command_timeout=120 + + + +# CONNECTION TIMEOUT +# This specifies the maximum number of seconds that the NRPE daemon will +# wait for a connection to be established before exiting. This is sometimes +# seen where a network problem stops the SSL being established even though +# all network sessions are connected. This causes the nrpe daemons to +# accumulate, eating system resources. Do not set this too low. + +# connection_timeout=300 + + + +# WEEK RANDOM SEED OPTION +# This directive allows you to use SSL even if your system does not have +# a /dev/random or /dev/urandom (on purpose or because the necessary patches +# were not applied). The random number generator will be seeded from a file +# which is either a file pointed to by the environment valiable $RANDFILE +# or $HOME/.rnd. If neither exists, the pseudo random number generator will +# be initialized and a warning will be issued. +# Values: 0=only seed from /dev/[u]random, 1=also seed from weak randomness + +#allow_weak_random_seed=1 + + + +# INCLUDE CONFIG FILE +# This directive allows you to include definitions from an external config file. + +#include= + + + +# INCLUDE CONFIG DIRECTORY +# This directive allows you to include definitions from config files (with a +# .cfg extension) in one or more directories (with recursion). + +#include_dir= +#include_dir= + +include_dir=/usr/local/nagios/etc/local_conf + + +# COMMAND DEFINITIONS +# Command definitions that this daemon will run. Definitions +# are in the following format: +# +# command[]= +# +# When the daemon receives a request to return the results of +# it will execute the command specified by the argument. +# +# Unlike Nagios, the command line cannot contain macros - it must be +# typed exactly as it should be executed. +# +# Note: Any plugins that are used in the command lines must reside +# on the machine that this daemon is running on! The examples below +# assume that you have plugins installed in a /usr/local/nagios/libexec +# directory. Also note that you will have to modify the definitions below +# to match the argument format the plugins expect. Remember, these are +# examples only! + +# The following examples use hardcoded command arguments... + +## command[check_users]=/usr/local/nagios/libexec/check_users -w 5 -c 10 +## command[check_load]=/usr/local/nagios/libexec/check_load -w 15,10,5 -c 30,25,20 +#command[check_disk1]=/usr/local/nagios/libexec/check_disk -w 20 -c 10 -p /dev/sda1 +## command[check_disk2]=/usr/local/nagios/libexec/check_disk -w 20 -c 10 -p /dev/hdb1 +## command[check_zombie_procs]=/usr/local/nagios/libexec/check_procs -w 5 -c 10 -s Z +## command[check_total_procs]=/usr/local/nagios/libexec/check_procs -w 150 -c 200 +#command[check_root]=/usr/local/nagios/libexec/check_disk -w 20% -c 10% / + +#command[check_asterisk]=/usr/local/nagios/libexec/check_asterisk.pl -m mgr --host 127.0.0.1 -u nagios -p N0WayJ0se --warning zap=2 --critical zap=3 + +# The following examples allow user-supplied arguments and can +# only be used if the NRPE daemon was compiled with support for +# command arguments *AND* the dont_blame_nrpe directive in this +# config file is set to '1'... + +command[check_users]=/usr/local/nagios/libexec/check_users -w $ARG1$ -c $ARG2$ + +command[check_load]=/usr/local/nagios/libexec/check_load -w $ARG1$ -c $ARG2$ $ARG3$ +command[check_cpu]=/usr/local/nagios/libexec/check_cpu.pl -c ALL -W $ARG1$:$ARG2$ -i $ARG3$:$ARG4$ +command[check_cpu_system]=/usr/local/nagios/libexec/check_cpu.pl -c ALL -s $ARG1$ -W $ARG2$ $ARG3$ +command[check_cpu_user]=/usr/local/nagios/libexec/check_cpu.pl -c ALL -u $ARG1$ $ARG2$ +command[check_swap]=/usr/local/nagios/libexec/check_swap -w $ARG1$ -c $ARG2$ $ARG3$ +command[check_mem]=/usr/bin/perl /usr/local/nagios/libexec/check_mem.pl -f -w $ARG1$ -c $ARG2$ +command[check_active_mem]=/usr/local/nagios/libexec/check_linux_active_mem.pl -w $ARG1$ -c $ARG2$ + +command[check_proc]=/usr/local/nagios/libexec/check_procs -w $ARG1$ -c $ARG2$ $ARG3$ +command[check_procs]=/usr/local/nagios/libexec/check_procs -w $ARG1$ -c $ARG2$ -s $ARG3$ +command[check_proclist]=/usr/local/nagios/libexec/check_proclist_linux $ARG1$ +command[check_daemon]=/usr/local/nagios/libexec/check_procs -c $ARG1$ -C $ARG2$ + +command[check_om]=/usr/local/nagios/libexec/check_om_pu.pl +command[check_ipmi_sun_chassis]=/usr/local/nagios/libexec/check_ipmi_sun_chassis.pl +command[check_ide_smart]=/usr/local/nagios/libexec/check_ide_smart -d $ARG1$ $ARG2$ +command[check_sensors]=/usr/local/nagios/libexec/check_sensors $ARG1$ + +command[check_ifoperstatus]=/usr/local/nagios/libexec/check_ifoperstatus -k $ARG1$ -H $ARG2$ $ARG3$ +command[check_ifstatus]=/usr/local/nagios/libexec/check_ifstatus -C $ARG1$ -H $ARG2$ -p $ARG3$ $ARG4$ + +#command[check_disk]=/usr/local/nagios/libexec/check_disk -w $ARG1$ -c $ARG2$ -p $ARG3$ +command[check_disk]=/usr/local/nagios/libexec/check_disk -w $ARG1$ -c $ARG2$ $ARG3$ $ARG4$ $ARG5$ +command[check_all_disk]=/usr/local/nagios/libexec/check_disk -w $ARG1$ -c $ARG2$ +command[check_disk_class]=/usr/local/nagios/libexec/check_disk_pu.pl -C $ARG1$ -p +command[check_disk_class_all]=/usr/local/nagios/libexec/check_disk_pu.pl -C $ARG1$ -w $ARG2$ -c $ARG3$ -t $ARG4$ -p + +command[check_tws_procs]=/usr/local/nagios/libexec/check_maestro_procs.sh +command[check_tws_stdlistsz]=/usr/local/nagios/libexec/check_tws_stdlistsz.pl + +command[check_mounts]=/usr/local/nagios/libexec/check_mounted_disks.pl + +command[check_faxq]=/usr/local/nagios/libexec/check_faxq.sh $ARG1$ $ARG2$ + +command[check_dummy]=/usr/local/nagios/libexec/check_dummy $ARG1$ Testing + +command[check_files]=/usr/local/nagios/libexec/check_file.pl $ARG1$ $ARG2$ +command[check_file_age]=/usr/local/nagios/libexec/check_file_age -f $ARG1$ $ARG2$ + +command[check_by_ssh]=/usr/local/nagios/libexec/check_by_ssh -H $ARG1$ -C $ARG2$ $ARG3$ +command[check_ssh]=/usr/local/nagios/libexec/check_ssh $ARG1$ $ARG2$ + +command[check_cluster]=/usr/local/nagios/libexec/check_cluster $ARG1$ $ARG2$ + +command[check_dbi]=/usr/local/nagios/libexec/check_dbi -d $ARG1$ $ARG2$ +command[check_mysql]=/usr/local/nagios/libexec/check_mysql $ARG1$ +command[check_oracle]=/usr/local/nagios/libexec/check_oracle $ARG1$ $ARG2$ + +command[check_dig]=/usr/local/nagios/libexec/check_dig -l $ARG1$ $ARG2$ +command[check_dns]=/usr/local/nagios/libexec/check_dns -H $ARG1$ $ARG2$ + +command[check_ntp]=/usr/local/nagios/libexec/check_ntp -H $ARG1$ $ARG2$ +command[check_ntp_peer]=/usr/local/nagios/libexec/check_ntp_peer -H $ARG1$ $ARG2$ +command[check_ntp_time]=/usr/local/nagios/libexec/check_ntp_time -H $ARG1$ $ARG2$ +command[check_time]=/usr/local/nagios/libexec/check_time -H $ARG1$ $ARG2$ + +command[check_disk_smb]=/usr/local/nagios/libexec/check_disk_smb -H $ARG1$ -s $ARG2$ -u $ARG3$ -p $ARG4$ -w $ARG5$ -c $ARG6$ $ARG7$ + +command[check_icmp]=/usr/local/nagios/libexec/check_icmp $ARG1$ +command[check_fping]=/usr/local/nagios/libexec/check_fping $ARG1$ -w $ARG2$ -c $ARG3$ $ARG4$ +command[check_ping]=/usr/local/nagios/libexec/check_ping -H $ARG1$ -w $ARG2$ -c $ARG3$ $ARG4$ + +command[check_ftp]=/usr/local/nagios/libexec/check_ftp -H $ARG1$ -p $ARG2$ $ARG3$ + +command[check_http]=/usr/local/nagios/libexec/check_http $ARG1$ $ARG2$ + +command[check_imap]=/usr/local/nagios/libexec/check_imap -H $ARG1$ -p $ARG2$ $ARG3$ + +command[check_ldap]=/usr/local/nagios/libexec/check_ldap -H $ARG1$ -b $ARG2$ $ARG3$ + +command[check_log]=/usr/local/nagios/libexec/check_log -F $ARG1$ -O $ARG2$ -q $ARG3$ $ARG4$ + +command[check_mailq]=/usr/local/nagios/libexec/check_mailq -w $ARG1$ -c $ARG2$ $ARG3$ + +command[check_real]=/usr/local/nagios/libexec/check_real -H $ARG1$ $ARG2$ + +command[check_rpc]=/usr/local/nagios/libexec/check_rpc -H $ARG1$ -C $ARG2$ $ARG3$ + +command[check_tcp]=/usr/local/nagios/libexec/check_tcp -H $ARG1$ -p $ARG2$ $ARG3$ + +command[check_udp]=/usr/local/nagios/libexec/check_udp -H $ARG1$ -p $ARG2$ $ARG3$ + +command[check_tws_procs]=/usr/local/nagios/libexec/check_maestro_procs.sh +command[check_tws_stdlistsz]=/usr/local/nagios/libexec/check_tws_stdlistsz.pl +command[check_tws_carryfwd]=/usr/local/nagios/libexec/check_tws_carryf.pl +command[check_tws_unlink]=/usr/local/nagios/libexec/check_tws_unlink.pl +command[check_tws_msgfilesz]=/usr/local/nagios/libexec/check_tws_msgfilesz.pl + +command[check_asm_disk]=sudo -u oracle /usr/local/nagios/libexec/check_asm_disk -w $ARG1$ -c $ARG2$ + +command[check_tsm_backups]=/usr/local/nagios/libexec/check_tsm_backup.sh -w $ARG1$ -c $ARG2$ + +command[check_multipath]=sudo /usr/local/nagios/libexec/check_multipath -s -n unknown -m $ARG1$ -o $ARG2$ + +#command[check_nagios]=/usr/local/monitoring/nagios/libexec/check_nagios -F /usr/local/monitoring/nagios/var/status.dat -e 5 -C /usr/local/monitoring/nagios/etc/nagios.cfg +command[check_nagios]=/usr/local/monitoring/nagios/libexec/check_nagios -F $ARG1$ -C $ARG2$ $ARG3$ +command[check_nagios_latency]=/usr/local/monitoring/nagios/libexec/check_nagios_latency.pl + +command[check_log3]=/usr/local/nagios/libexec/check_log3.pl -l '$ARG1$' -p '$ARG2$' '$ARG3$' '$ARG4$' $ARG5$ + + + diff --git a/pu/naemon_configs/x.x b/pu/naemon_configs/x.x deleted file mode 100644 index 42167df..0000000 --- a/pu/naemon_configs/x.x +++ /dev/null @@ -1,104319 +0,0 @@ - #====================================================================================== - # Dell OOB Server host definition - #====================================================================================== - - define host { - use Dell Agent-free Server - host_name essesx204v-netmgt - alias essesx204v-netmgt.Princeton.EDU - address essesx204v-netmgt - display_name essesx204v-netmgt - icon_image idrac.png - hostgroups Dell Agent-free Servers - statusmap_image idrac.png - action_url http://essesx204v-netmgt - _dell_comm_params SNMP,$USER33$,2,3,1,161,UDP/IPv4 - notes Protocol selected : SNMP - } - - define service { - use Dell Device Inventory Information - host_name essesx204v-netmgt - service_description Dell Server Information - check_command check_dell_oob_server_component_snmp!/usr/local/monitoring/nagios/dell/config/objects/essesx204v-netmgt.cfg!info - } - - define service { - use Dell Traps - host_name essesx204v-netmgt - service_description Dell Server Traps - } - - define service { - use Dell Device Health Status - host_name essesx204v-netmgt - service_description Dell Server Overall Health Status - check_command check_dell_oob_server_component_snmp!/usr/local/monitoring/nagios/dell/config/objects/essesx204v-netmgt.cfg!ghs - } - - #====================================================================================== - # Dell OOB Server host definition - #====================================================================================== - - define host { - use Dell Agent-free Server - host_name essesx205v-netmgt - alias essesx205v-netmgt.Princeton.EDU - address essesx205v-netmgt - display_name essesx205v-netmgt - icon_image idrac.png - hostgroups Dell Agent-free Servers - statusmap_image idrac.png - action_url http://essesx205v-netmgt - _dell_comm_params SNMP,$USER33$,2,3,1,161,UDP/IPv4 - notes Protocol selected : SNMP - } - - define service { - use Dell Device Inventory Information - host_name essesx205v-netmgt - service_description Dell Server Information - check_command check_dell_oob_server_component_snmp! "/usr/local/monitoring/nagios/dell/config/objects/essesx205v-netmgt.cfg"! info - } - - define service { - use Dell Traps - host_name essesx205v-netmgt - service_description Dell Server Traps - } - - define service { - use Dell Device Health Status - host_name essesx205v-netmgt - service_description Dell Server Overall Health Status - check_command check_dell_oob_server_component_snmp! "/usr/local/monitoring/nagios/dell/config/objects/essesx205v-netmgt.cfg"! ghs - } - - #====================================================================================== - # Dell OOB Server host definition - #====================================================================================== - - define host { - use Dell Agent-free Server - host_name essesx206v-netmgt - alias essesx206v-netmgt - address essesx206v-netmgt - display_name essesx206v-netmgt - icon_image idrac.png - hostgroups Dell Agent-free Servers - statusmap_image idrac.png - action_url http://essesx206v-netmgt - _dell_comm_params SNMP,IMS_m0nit0r,2,3,1,161,UDP/IPv4 - notes Protocol selected : SNMP - } - - define service { - use Dell Device Inventory Information - host_name essesx206v-netmgt - service_description Dell Server Information - check_command check_dell_oob_server_component_snmp! "/usr/local/monitoring/nagios/dell/config/objects/essesx206v-netmgt.cfg"! info - } - - define service { - use Dell Traps - host_name essesx206v-netmgt - service_description Dell Server Traps - } - - define service { - use Dell Device Health Status - host_name essesx206v-netmgt - service_description Dell Server Overall Health Status - check_command check_dell_oob_server_component_snmp! "/usr/local/monitoring/nagios/dell/config/objects/essesx206v-netmgt.cfg"! ghs - } - - #====================================================================================== - # Dell OOB Server host definition - #====================================================================================== - - define host { - use Dell Agent-free Server - host_name essesx207v-netmgt - alias essesx207v-netmgt - address essesx207v-netmgt - display_name essesx207v-netmgt - icon_image idrac.png - hostgroups Dell Agent-free Servers - statusmap_image idrac.png - action_url http://essesx207v-netmgt - _dell_comm_params SNMP,IMS_m0nit0r,2,3,1,161,UDP/IPv4 - notes Protocol selected : SNMP - } - - define service { - use Dell Device Inventory Information - host_name essesx207v-netmgt - service_description Dell Server Information - check_command check_dell_oob_server_component_snmp! "/usr/local/monitoring/nagios/dell/config/objects/essesx207v-netmgt.cfg"! info - } - - define service { - use Dell Traps - host_name essesx207v-netmgt - service_description Dell Server Traps - } - - define service { - use Dell Device Health Status - host_name essesx207v-netmgt - service_description Dell Server Overall Health Status - check_command check_dell_oob_server_component_snmp! "/usr/local/monitoring/nagios/dell/config/objects/essesx207v-netmgt.cfg"! ghs - } - - #====================================================================================== - # Dell OOB Server host definition - #====================================================================================== - - define host { - use Dell Agent-free Server - host_name essesx208v-netmgt - alias essesx208v-netmgt - address essesx208v-netmgt - display_name essesx208v-netmgt - icon_image idrac.png - hostgroups Dell Agent-free Servers - statusmap_image idrac.png - action_url http://essesx208v-netmgt - _dell_comm_params SNMP,IMS_m0nit0r,2,3,1,161,UDP/IPv4 - notes Protocol selected : SNMP - } - - define service { - use Dell Device Inventory Information - host_name essesx208v-netmgt - service_description Dell Server Information - check_command check_dell_oob_server_component_snmp! "/usr/local/monitoring/nagios/dell/config/objects/essesx208v-netmgt.cfg"! info - } - - define service { - use Dell Traps - host_name essesx208v-netmgt - service_description Dell Server Traps - } - - define service { - use Dell Device Health Status - host_name essesx208v-netmgt - service_description Dell Server Overall Health Status - check_command check_dell_oob_server_component_snmp! "/usr/local/monitoring/nagios/dell/config/objects/essesx208v-netmgt.cfg"! ghs - } - - #====================================================================================== - # Dell OOB Server host definition - #====================================================================================== - - define host { - use Dell Agent-free Server - host_name essesx209v-netmgt - alias essesx209v-netmgt - address essesx209v-netmgt - display_name essesx209v-netmgt - icon_image idrac.png - hostgroups Dell Agent-free Servers - statusmap_image idrac.png - action_url http://essesx209v-netmgt - _dell_comm_params SNMP,IMS_m0nit0r,2,3,1,161,UDP/IPv4 - notes Protocol selected : SNMP - } - - define service { - use Dell Device Inventory Information - host_name essesx209v-netmgt - service_description Dell Server Information - check_command check_dell_oob_server_component_snmp! "/usr/local/monitoring/nagios/dell/config/objects/essesx209v-netmgt.cfg"! info - } - - define service { - use Dell Traps - host_name essesx209v-netmgt - service_description Dell Server Traps - } - - define service { - use Dell Device Health Status - host_name essesx209v-netmgt - service_description Dell Server Overall Health Status - check_command check_dell_oob_server_component_snmp! "/usr/local/monitoring/nagios/dell/config/objects/essesx209v-netmgt.cfg"! ghs - } - - #====================================================================================== - # Dell OOB Server host definition - #====================================================================================== - - define host { - use Dell Agent-free Server - host_name essesx210v-netmgt - alias essesx210v-netmgt - address essesx210v-netmgt - display_name essesx210v-netmgt - icon_image idrac.png - hostgroups Dell Agent-free Servers - statusmap_image idrac.png - action_url http://essesx210v-netmgt - _dell_comm_params SNMP,IMS_m0nit0r,2,3,1,161,UDP/IPv4 - notes Protocol selected : SNMP - } - - define service { - use Dell Device Inventory Information - host_name essesx210v-netmgt - service_description Dell Server Information - check_command check_dell_oob_server_component_snmp! "/usr/local/monitoring/nagios/dell/config/objects/essesx210v-netmgt.cfg"! info - } - - define service { - use Dell Traps - host_name essesx210v-netmgt - service_description Dell Server Traps - } - - define service { - use Dell Device Health Status - host_name essesx210v-netmgt - service_description Dell Server Overall Health Status - check_command check_dell_oob_server_component_snmp! "/usr/local/monitoring/nagios/dell/config/objects/essesx210v-netmgt.cfg"! ghs - } - - #====================================================================================== - # Dell OOB Server host definition - #====================================================================================== - - define host { - use Dell Agent-free Server - host_name essesx222v-netmgt - alias essesx222v-netmgt - address essesx222v-netmgt - display_name essesx222v-netmgt - icon_image idrac.png - hostgroups Dell Agent-free Servers - statusmap_image idrac.png - action_url http://essesx222v-netmgt - _dell_comm_params SNMP,IMS_m0nit0r,2,3,1,161,UDP/IPv4 - notes Protocol selected : SNMP - } - - define service { - use Dell Device Inventory Information - host_name essesx222v-netmgt - service_description Dell Server Information - check_command check_dell_oob_server_component_snmp! "/usr/local/monitoring/nagios/dell/config/objects/essesx222v-netmgt.cfg"! info - } - - define service { - use Dell Traps - host_name essesx222v-netmgt - service_description Dell Server Traps - } - - define service { - use Dell Device Health Status - host_name essesx222v-netmgt - service_description Dell Server Overall Health Status - check_command check_dell_oob_server_component_snmp! "/usr/local/monitoring/nagios/dell/config/objects/essesx222v-netmgt.cfg"! ghs - } - - #====================================================================================== - # Dell OOB Server host definition - #====================================================================================== - - define host { - use Dell Agent-free Server - host_name essesx224v-netmgt - alias essesx224v-netmgt - address essesx224v-netmgt - display_name essesx224v-netmgt - icon_image idrac.png - hostgroups Dell Agent-free Servers - statusmap_image idrac.png - action_url http://essesx224v-netmgt - _dell_comm_params SNMP,IMS_m0nit0r,2,3,1,161,UDP/IPv4 - notes Protocol selected : SNMP - } - - define service { - use Dell Device Inventory Information - host_name essesx224v-netmgt - service_description Dell Server Information - check_command check_dell_oob_server_component_snmp! "/usr/local/monitoring/nagios/dell/config/objects/essesx224v-netmgt.cfg"! info - } - - define service { - use Dell Traps - host_name essesx224v-netmgt - service_description Dell Server Traps - } - - define service { - use Dell Device Health Status - host_name essesx224v-netmgt - service_description Dell Server Overall Health Status - check_command check_dell_oob_server_component_snmp! "/usr/local/monitoring/nagios/dell/config/objects/essesx224v-netmgt.cfg"! ghs - } - - #====================================================================================== - # Dell OOB Server host definition - #====================================================================================== - - define host { - use Dell Agent-free Server - host_name essesx225v-netmgt - alias essesx225v-netmgt - address essesx225v-netmgt - display_name essesx225v-netmgt - icon_image idrac.png - hostgroups Dell Agent-free Servers - statusmap_image idrac.png - action_url http://essesx225v-netmgt - _dell_comm_params SNMP,IMS_m0nit0r,2,3,1,161,UDP/IPv4 - notes Protocol selected : SNMP - } - - define service { - use Dell Device Inventory Information - host_name essesx225v-netmgt - service_description Dell Server Information - check_command check_dell_oob_server_component_snmp! "/usr/local/monitoring/nagios/dell/config/objects/essesx225v-netmgt.cfg"! info - } - - define service { - use Dell Traps - host_name essesx225v-netmgt - service_description Dell Server Traps - } - - define service { - use Dell Device Health Status - host_name essesx225v-netmgt - service_description Dell Server Overall Health Status - check_command check_dell_oob_server_component_snmp! "/usr/local/monitoring/nagios/dell/config/objects/essesx225v-netmgt.cfg"! ghs - } - - #====================================================================================== - # Dell OOB Server host definition - #====================================================================================== - - define host { - use Dell Agent-free Server - host_name essesx226v-netmgt - alias essesx226v-netmgt - address essesx226v-netmgt - display_name essesx226v-netmgt - icon_image idrac.png - hostgroups Dell Agent-free Servers - statusmap_image idrac.png - action_url http://essesx226v-netmgt - _dell_comm_params SNMP,IMS_m0nit0r,2,3,1,161,UDP/IPv4 - notes Protocol selected : SNMP - } - - define service { - use Dell Device Inventory Information - host_name essesx226v-netmgt - service_description Dell Server Information - check_command check_dell_oob_server_component_snmp! "/usr/local/monitoring/nagios/dell/config/objects/essesx226v-netmgt.cfg"! info - } - - define service { - use Dell Traps - host_name essesx226v-netmgt - service_description Dell Server Traps - } - - define service { - use Dell Device Health Status - host_name essesx226v-netmgt - service_description Dell Server Overall Health Status - check_command check_dell_oob_server_component_snmp! "/usr/local/monitoring/nagios/dell/config/objects/essesx226v-netmgt.cfg"! ghs - } - - #====================================================================================== - # Dell OOB Server host definition - #====================================================================================== - - define host { - use Dell Agent-free Server - host_name essesx227v-netmgt - alias essesx227v-netmgt - address essesx227v-netmgt - display_name essesx227v-netmgt - icon_image idrac.png - hostgroups Dell Agent-free Servers - statusmap_image idrac.png - action_url http://essesx227v-netmgt - _dell_comm_params SNMP,IMS_m0nit0r,2,3,1,161,UDP/IPv4 - notes Protocol selected : SNMP - } - - define service { - use Dell Device Inventory Information - host_name essesx227v-netmgt - service_description Dell Server Information - check_command check_dell_oob_server_component_snmp! "/usr/local/monitoring/nagios/dell/config/objects/essesx227v-netmgt.cfg"! info - } - - define service { - use Dell Traps - host_name essesx227v-netmgt - service_description Dell Server Traps - } - - define service { - use Dell Device Health Status - host_name essesx227v-netmgt - service_description Dell Server Overall Health Status - check_command check_dell_oob_server_component_snmp! "/usr/local/monitoring/nagios/dell/config/objects/essesx227v-netmgt.cfg"! ghs - } - - #====================================================================================== - # Dell OOB Server host definition - #====================================================================================== - - define host { - use Dell Agent-free Server - host_name essesx270v-netmgt - alias essesx270v-netmgt - address essesx270v-netmgt - display_name essesx270v-netmgt - icon_image idrac.png - hostgroups Dell Agent-free Servers - statusmap_image idrac.png - action_url http://essesx270v-netmgt - _dell_comm_params SNMP,IMS_m0nit0r,2,3,1,161,UDP/IPv4 - notes Protocol selected : SNMP - } - - define service { - use Dell Device Inventory Information - host_name essesx270v-netmgt - service_description Dell Server Information - check_command check_dell_oob_server_component_snmp! "/usr/local/monitoring/nagios/dell/config/objects/essesx270v-netmgt.cfg"! info - } - - define service { - use Dell Traps - host_name essesx270v-netmgt - service_description Dell Server Traps - } - - define service { - use Dell Device Health Status - host_name essesx270v-netmgt - service_description Dell Server Overall Health Status - check_command check_dell_oob_server_component_snmp! "/usr/local/monitoring/nagios/dell/config/objects/essesx270v-netmgt.cfg"! ghs - } - - #====================================================================================== - # Dell OOB Server host definition - #====================================================================================== - - define host { - use Dell Agent-free Server - host_name sdpldap201l-netmgt - alias sdpldap201l-netmgt.Princeton.EDU - address sdpldap201l-netmgt - display_name sdpldap201l-netmgt - icon_image idrac.png - hostgroups Dell Agent-free Servers - statusmap_image idrac.png - action_url http://sdpldap201l-netmgt - _dell_comm_params SNMP,$USER33$,2,3,1,161,UDP/IPv4 - notes Protocol selected : SNMP - } - - define service { - use Dell Device Inventory Information - host_name sdpldap201l-netmgt - service_description Dell Server Information - check_command check_dell_oob_server_component_snmp! "/usr/local/monitoring/nagios/dell/config/objects/sdpldap201l-netmgt.cfg"! info - } - - define service { - use Dell Traps - host_name sdpldap201l-netmgt - service_description Dell Server Traps - } - - define service { - use Dell Device Health Status - host_name sdpldap201l-netmgt - service_description Dell Server Overall Health Status - check_command check_dell_oob_server_component_snmp! "/usr/local/monitoring/nagios/dell/config/objects/sdpldap201l-netmgt.cfg"! ghs - } - -############################################################################### -# DELL_COMMANDS.CFG - SAMPLE COMMAND DEFINITIONS FOR NAGIOS Core -# -# Last Modified: 8-Oct-2014 -# -# NOTES: This config file provides you with some example command definitions -# that you can reference in host, service, and contact definitions. -# -# You don't need to keep commands in a separate file from your other -# object definitions. This has been done just to make things easier to -# understand. -# Copyright (c) 2014 Dell Inc. -# All Rights Reserved. -############################################################################### - - -################################################################################ -# -# SAMPLE NOTIFICATION COMMANDS -# -# These are some example notification commands. They may or may not work on -# your system without modification. As an example, some systems will require -# you to use "/usr/bin/mailx" instead of "/usr/bin/mail" in the commands below. -# -################################################################################ - - -define command { - command_name notify-dell-host-by-email - command_line /usr/bin/printf "%b" "***** Nagios *****\n\nNotification Type: $NOTIFICATIONTYPE$\nHost: $HOSTNAME$\nState: $HOSTSTATE$\nAddress: $HOSTADDRESS$\nInfo: $HOSTOUTPUT$\n\nDate/Time: $LONGDATETIME$\n" | /bin/mail -s "** $NOTIFICATIONTYPE$ Host Alert: $HOSTNAME$ is $HOSTSTATE$ **" $CONTACTEMAIL$ - } - -# 'notify-service-by-email' command definition -define command { - command_name notify-dell-service-by-email - command_line /usr/bin/printf "%b" "***** Nagios *****\n\nNotification Type: $NOTIFICATIONTYPE$\n\nService: $SERVICEDESC$\nHost: $HOSTALIAS$\nAddress: $HOSTADDRESS$\nState: $SERVICESTATE$\n\nDate/Time: $LONGDATETIME$\n\nAdditional Info:\n\n$SERVICEOUTPUT$\n" | /bin/mail -s "** $NOTIFICATIONTYPE$ Service Alert: $HOSTALIAS$/$SERVICEDESC$ is $SERVICESTATE$ **" $CONTACTEMAIL$ - } - - define command { - command_name check_dell_oob_server_component_snmp - command_line perl /usr/local/monitoring/nagios/dell/scripts/dell_check_idrac_snmp.pl -H $HOSTADDRESS$ -F $ARG1$ -i $ARG2$ - } - - define command { - command_name check_dell_oob_server_component_wsman - command_line perl /usr/local/monitoring/nagios/dell/scripts/dell_check_idrac_wsman.pl -H $HOSTADDRESS$ -F $ARG1$ -i $ARG2$ - } - - - -################################################################################ -# -# SAMPLE HOST CHECK COMMANDS -# -################################################################################ - - -# This command checks to see if a host is "alive" by pinging it -# The check must result in a 100% packet loss or 5 second (5000ms) round trip -# average time to produce a critical error. -# Note: Five ICMP echo packets are sent (determined by the '-p 5' argument) - -# 'check-host-alive' command definition -define command { - command_name check-dell-host-alive - command_line $USER1$/check_ping -H $HOSTADDRESS$ -w 3000.0,80% -c 5000.0,100% -p 5 - } - - - - - - -############################################################################### -# DELL_CONTACTS.CFG - SAMPLE CONTACT/CONTACTGROUP DEFINITIONS -# -# Last Modified: 8-Oct-2014 -# -# NOTES: This config file provides you with some example contact and contact -# group definitions that you can reference in host and service -# definitions. -# -# You don't need to keep these definitions in a separate file from your -# other object definitions. This has been done just to make things -# easier to understand. -# Copyright (c) 2014 Dell Inc. -# All Rights Reserved. -############################################################################### - - - -############################################################################### -############################################################################### -# -# CONTACTS -# -############################################################################### -############################################################################### - -# Just one contact defined by default - the Nagios admin (that's you) -# This contact definition inherits a lot of default values from the 'generic-contact' -# template which is defined elsewhere. - -define contact { - contact_name delladmin ; Short name of user - use Dell-contact ; Inherit default values from generic-contact template (defined above) - alias Dell Nagios Admin ; Full name of user - - email nagios@localhost ; <<***** CHANGE THIS TO YOUR EMAIL ADDRESS ****** - } - - - -############################################################################### -############################################################################### -# -# CONTACT GROUPS -# -############################################################################### -############################################################################### - -# We only have one contact in this simple configuration file, so there is -# no need to create more than one contact group. - -define contactgroup { - contactgroup_name delladmins - alias Nagios Administrators - members ESS Page, ESS UNIX List - } -############################################################################### -# DELL_TEMPLATES.CFG - SAMPLE OBJECT TEMPLATES -# -# Last Modified: 8-Oct-2014 -# -# NOTES: This config file provides you with some example object definition -# templates that are refered by other host, service, contact, etc. -# definitions in other config files. -# -# You don't need to keep these definitions in a separate file from your -# other object definitions. This has been done just to make things -# easier to understand. -# Copyright (c) 2014 Dell Inc. -# All Rights Reserved. -############################################################################### - - - -############################################################################### -############################################################################### -# -# CONTACT TEMPLATES -# -############################################################################### -############################################################################### - -# Generic contact definition template - This is NOT a real contact, just a template! - -define contact { - name Dell-contact ; The name of this contact template - service_notification_period Dell-24x7 ; service notifications can be sent anytime - host_notification_period Dell-24x7 ; host notifications can be sent anytime - service_notification_options w,u,c,r,f,s ; send notifications for all service states, flapping events, and scheduled downtime events - host_notification_options d,u,r,f,s ; send notifications for all host states, flapping events, and scheduled downtime events - service_notification_commands notify-dell-service-by-email ; send service notifications via email - host_notification_commands notify-dell-host-by-email ; send host notifications via email - register 0 ; DONT REGISTER THIS DEFINITION - ITS NOT A REAL CONTACT, JUST A TEMPLATE! - } - - - - - -############################################################################### -# -# HOST TEMPLATES -# -############################################################################### - -################################# -# Dell Host templates -################################## -define host { - name Dell Device ; The name of this host template - check_period Dell-24x7 ; By default, Linux hosts are checked round the clock - check_interval 5 ; Actively check the host in minutes interval - retry_interval 3 ; Schedule host check retries in minutes interval - max_check_attempts 3 ; - check_command check-dell-host-alive - notification_period dellworkhours ; Linux delladmins hate to be woken up, so we only notify during the day - notification_interval 120 ; Resend notifications every 2 hours - notification_options d,u,r ; Only send notifications for specific host states - contact_groups delladmins ; Notifications get sent to the delladmins by default - register 0 ; DONT REGISTER THIS DEFINITION - ITS NOT A REAL HOST, JUST A TEMPLATE! - } - -define host { - name Dell Agent-free Server ; The name of this host template - use Dell Device - register 0 ; DONT REGISTER THIS DEFINITION - ITS NOT A REAL HOST, JUST A TEMPLATE! - } - -################################# -# Dell Service templates -################################## - -define service { - name Dell-Service ; The 'name' of this service template - active_checks_enabled 1 ; Active service checks are enabled - passive_checks_enabled 1 ; Passive service checks are enabled/accepted - parallelize_check 1 ; Active service checks should be parallelized (disabling this can lead to major performance problems) - obsess_over_service 1 ; We should obsess over this service (if necessary) - check_freshness 0 ; Default is to NOT check service 'freshness' - notifications_enabled 1 ; Service notifications are enabled - event_handler_enabled 1 ; Service event handler is enabled - flap_detection_enabled 1 ; Flap detection is enabled - #failure_prediction_enabled 1 ; Failure prediction is enabled - process_perf_data 1 ; Process performance data - retain_status_information 1 ; Retain status information across program restarts - retain_nonstatus_information 1 ; Retain non-status information across program restarts - is_volatile 0 ; The service is not volatile - check_period Dell-24x7 ; The service can be checked at any time of the day - max_check_attempts 2 ; Re-check the service up to 3 times in order to determine its final (hard) state - normal_check_interval 2 ; Check the service in minutes interval under normal conditions - retry_check_interval 2 ; Re-check the service in minutes interval until a hard state can be determined - contact_groups delladmins ; Notifications get sent out to everyone in the 'delladmins' group - notification_options w,u,c,r ; Send notifications about warning, unknown, critical, and recovery events - notification_interval 720 ; Re-notify about service problems every hour - notification_period Dell-24x7 ; Notifications can be sent out at any time - register 0 ; DONT REGISTER THIS DEFINITION - ITS NOT A REAL SERVICE, JUST A TEMPLATE! - } - - -define service { - name Dell Device Health Status - use Dell-Service - register 0 - service_description Dell Device Overall Health Status - normal_check_interval 2 ; Polling interval in minutes - retry_check_interval 2 - contact_groups delladmins -} - - - define service { - name Dell Device Inventory Information - use Dell-Service - register 0 - service_description Dell Device Inventory Information - normal_check_interval 1440 ; Polling interval in minutes - notification_interval 1440 - retry_check_interval 60 - contact_groups delladmins -} - - define service { - name Dell Device Component Status - use Dell-Service - register 0 - service_description Dell Device Component Status - normal_check_interval 2 ; Polling interval in minutes - retry_check_interval 2 - contact_groups delladmins -} - -define service { - name Dell Traps - use Dell-Service - register 0 - service_description Dell SNMP Trap Service - is_volatile 1 - flap_detection_enabled 0 - check_command check_trap_OK - #check_command check-dell-host-alive - active_checks_enabled 0 - max_check_attempts 1 - normal_check_interval 1 - retry_check_interval 1 - passive_checks_enabled 1 - check_period Dell-24x7 - #notification_interval 1 - notification_interval 31536000 - contact_groups delladmins -} - - -########################################## -#Dell Host Group Templates -########################################## -define hostgroup { - hostgroup_name Dell Agent-free Servers - alias Dell Agent-free Servers - } - -############################################################################### -# DELL_TIME.CFG - SAMPLE TIME DEFINITIONS -# Last Modified: 8-Oct-2014 -# NOTES: This config file provides you with some example time definitions that -# you can reference in host and service definitions. -# -# You don't need to keep these definitions in a separate file from your -# other object definitions. This has been done just to make things -# easier to understand. -# Copyright (c) 2014 Dell Inc. -# All Rights Reserved. -############################################################################### - -define timeperiod { - timeperiod_name Dell-24x7 - alias 24 Hours A Day, 7 Days A Week - sunday 00:00-24:00 - monday 00:00-24:00 - tuesday 00:00-24:00 - wednesday 00:00-24:00 - thursday 00:00-24:00 - friday 00:00-24:00 - saturday 00:00-24:00 - } - - -# 'workhours' timeperiod definition -define timeperiod { - timeperiod_name dellworkhours - alias Normal Work Hours - monday 09:00-17:00 - tuesday 09:00-17:00 - wednesday 09:00-17:00 - thursday 09:00-17:00 - friday 09:00-17:00 - } - - - - -define hostdependency { - dependent_hostgroup_name NS PrivateDMZ - host_name Gearman NS PrivateDMZ - notification_failure_criteria d -} - -define hostdependency { - dependent_hostgroup_name NS PublicDMZ - host_name Gearman NS PublicDMZ - notification_failure_criteria d -} - -define hostdependency { - dependent_hostgroup_name NS Trust - host_name Gearman NS Trust - notification_failure_criteria d -} - -define hostdependency { - dependent_hostgroup_name NS Untrust, NS Restricted - host_name Gearman NS Untrust - notification_failure_criteria d -} - -define hostdependency { - dependent_hostgroup_name 151 PrivateDMZ - host_name Gearman 151 PrivateDMZ - notification_failure_criteria d -} - -define hostdependency { - dependent_hostgroup_name 151 PublicDMZ - host_name Gearman 151 PublicDMZ - notification_failure_criteria d -} - -define hostdependency { - dependent_hostgroup_name 151 Trust - host_name Gearman 151 Trust - notification_failure_criteria d -} - -define hostdependency { - dependent_hostgroup_name 151 Untrust, 151 Restricted, Clusters, CISDR, Email, ESX, F5 Load Balancers, Firewalls, Kaltura Live, KMA, Net, Netmgmt, IAM, SharePoint, Solaris, TSM, Webcheck, Webcheck_csg, Webcheck_Roxen - host_name Gearman 151 Untrust - notification_failure_criteria d -} - - - -define servicedependency { - dependent_hostgroup_name NS PrivateDMZ - dependent_service_description .* - host_name monitor - service_description Gearman worker NS PrivateDMZ - notification_failure_criteria c -} - -define servicedependency { - dependent_hostgroup_name NS PublicDMZ - dependent_service_description .* - host_name monitor - service_description Gearman worker NS PublicDMZ - notification_failure_criteria c -} - -define servicedependency { - dependent_hostgroup_name NS Trust - dependent_service_description .* - host_name monitor - service_description Gearman worker NS Trust - notification_failure_criteria c -} - -define servicedependency { - dependent_hostgroup_name NS Untrust, NS Restricted - dependent_service_description .* - host_name monitor - service_description Gearman worker NS Untrust - notification_failure_criteria c -} - -define servicedependency { - dependent_hostgroup_name 151 PrivateDMZ - dependent_service_description .* - host_name monitor - service_description Gearman worker 151 PrivateDMZ - notification_failure_criteria c -} - -define servicedependency { - dependent_hostgroup_name 151 PublicDMZ - dependent_service_description .* - host_name monitor - service_description Gearman worker 151 PublicDMZ - notification_failure_criteria c -} - -define servicedependency { - dependent_hostgroup_name 151 Trust - dependent_service_description .* - host_name monitor - service_description Gearman worker 151 Trust - notification_failure_criteria c -} - -define servicedependency { - dependent_hostgroup_name 151 Untrust, 151 Restricted - dependent_service_description .* - host_name monitor - service_description Gearman worker 151 Untrust - notification_failure_criteria c -} - - - -define servicedependency { - hostgroup_name Windows Prod - dependent_service_description nrpe_win_.*, !nrpe_win_agent_status - use NRPE_Win_Dependency -} - -define servicedependency { - hostgroup_name Physical Prod Windows - dependent_service_description snmp_win_.*, !snmp_win_alive - use SNMP_Win_Dependency -} - -define servicedependency { - hostgroup_name Windows Dev/QA - dependent_service_description nrpe_wintest_.*, !nrpe_wintest_agent_status - use NRPE_Win_NonProd_Dependency -} - -define servicedependency { - hostgroup_name Windows Dev/QA - dependent_service_description snmp_wintest_.*, !snmp_wintest_alive - use SNMP_Win_NonProd_Dependency -} - -define servicedependency { - hostgroup_name Linux Prod, Solaris - dependent_service_description nrpe_unix_.*, !nrpe_unix_agent_status - use NRPE_Unix_Dependency -} - -define servicedependency { - hostgroup_name Physical Prod Linux - dependent_service_description snmp_unix_.*, !snmp_unix_alive - use SNMP_Unix_Dependency -} - -define servicedependency { - hostgroup_name Linux Dev/QA - dependent_service_description nrpe_unixtest_.*, !nrpe_unixtest_agent_status - use NRPE_Unix_NonProd_Dependency -} - -define servicedependency { - hostgroup_name Linux Dev/QA, !CPanel Dev/QA, !Linux DevQA - no SNMP - dependent_service_description snmp_unixtest_.*, !snmp_unixtest_alive - use SNMP_Unix_NonProd_Dependency -} - -define host { - host_name ais101l - alias ais101l.Princeton.EDU - address 10.6.56.26 - contacts AIS Mon CustomApps - _contacts ais-mon-customapps@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 EISFW -} - - -define host { - host_name ais102l - alias ais102l.Princeton.EDU - address 10.6.52.122 - contacts AIS Mon CustomApps - _contacts ais-mon-customapps@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 Trust -} - - -define host { - host_name ais103l - alias ais103l.Princeton.EDU - address 10.6.48.159 - contacts AIS Mon CustomApps - _contacts ais-mon-customapps@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name ais104l - alias ais104l.Princeton.EDU - address 10.6.48.160 - contacts AIS Mon CustomApps - _contacts ais-mon-customapps@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name ais111l - alias ais111l.Princeton.EDU - address 10.6.52.133 - contacts AIS Mon CustomApps - _contacts ais-mon-customapps@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 Trust -} - - -define host { - host_name ais113l - alias ais113l.Princeton.EDU - address 10.6.49.79 - _contacts csegers@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name ais302l - alias ais302l.Princeton.EDU - address 10.6.48.249 - contacts AIS Mon CustomApps - _contacts ais-mon-customapps@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name ais307l - alias ais307l.Princeton.EDU - address 10.6.52.115 - contacts AIS Mon CustomApps - _contacts ais-mon-customapps@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 Trust -} - - -define host { - host_name ais309l - alias ais309l.Princeton.EDU - address 10.6.48.126 - contacts AIS Mon CustomApps - _contacts ais-mon-customapps@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name ais310l - alias ais310l.Princeton.EDU - address 10.6.49.23 - contacts AIS Mon CustomApps - _contacts ais-mon-customapps@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name ais311l - alias ais311l.Princeton.EDU - address 10.6.52.123 - contacts AIS Mon CustomApps - _contacts ais-mon-customapps@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 Trust -} - - -define host { - host_name ais312l - alias ais312l.Princeton.EDU - address 10.6.49.43 - contacts R. Carl Segers - _contacts rsegers@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name ais315l - alias ais315l.Princeton.EDU - _alias1 suitcase-qa - address 10.6.49.109 - contacts David L. Herrington - _contacts daveh@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name ais318l - alias ais318l.Princeton.EDU - address 10.6.49.191 - contacts R. Carl Segers - _contacts rsegers@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name ais320l - alias ais320l.Princeton.EDU - _alias1 api-store-dev - _alias2 apistore-dev - _alias3 devops-dev - _alias4 elk-dev - _alias5 git-dev - _alias6 jenks-dev - _alias7 jira-dev - _alias8 nexus-dev - _alias9 sonar-dev - address 10.6.50.32 - contacts George R. Kopf, Software Infrastructure Services - _contacts gkopf@princeton.edu, sisters@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name ais321l - alias ais321l.Princeton.EDU - address 10.6.50.33 - contacts George R. Kopf - _contacts gkopf@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name ais322l - alias ais322l.Princeton.EDU - _alias1 cdp-build01 - address 10.6.50.34 - contacts George R. Kopf - _contacts gkopf@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name ais323l - alias ais323l.Princeton.EDU - _alias1 api1-dev - address 10.6.49.206 - contacts George R. Kopf, Software Infrastructure Services - _contacts gkopf@princeton.edu, sisters@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name ais324l - alias ais324l.Princeton.EDU - _alias1 api-dev - _alias2 esb-dev - _alias3 esb1-dev - address 10.6.49.209 - contacts George R. Kopf, Software Infrastructure Services - _contacts sisters@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name ais325l - alias ais325l.Princeton.EDU - _alias1 wso2stats-dev - address 10.6.49.210 - contacts Software Infrastructure Services - _contacts sisters@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name ais326l - alias ais326l.Princeton.EDU - _alias1 art-node1-dev - address 10.6.50.36 - contacts George R. Kopf, Software Infrastructure Services - _contacts sisters@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name ais327l - alias ais327l.Princeton.EDU - _alias1 art-hub1-dev - address 10.6.50.39 - contacts George R. Kopf, Software Infrastructure Services - _contacts sisters@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name ais329l - alias ais329l.Princeton.EDU - address 10.6.52.81 - contacts Asim Shahab - _contacts ashahab@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 Trust -} - - -define host { - host_name ais330l - alias ais330l.Princeton.EDU - address 10.6.49.198 - contacts ECM Admin Notify - _contacts ecm-admin-notify@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name aisiw108l - alias aisiw108l.Princeton.EDU - address 10.6.53.18 - contacts monocle - _contacts monocle@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 Trust -} - - -define host { - host_name aisiw110l - alias aisiw110l.Princeton.EDU - _alias1 dwqual - address 140.180.221.89 - contacts monocle - _contacts monocle@princeton.edu, unix@princeton.edu - use UNIX Dev/QA NS PublicDMZ -} - - -define host { - host_name aisiw302l - alias aisiw302l.Princeton.EDU - address 10.6.52.31 - contacts monocle - _contacts monocle@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 Trust -} - - -define host { - host_name aisiw303l - alias aisiw303l.Princeton.EDU - address 10.6.48.246 - contacts monocle - _contacts monocle@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name aisiw338l - alias aisiw338l.Princeton.EDU - address 10.6.52.40 - contacts monocle - _contacts monocle@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 Trust -} - - -define host { - host_name aisiw341l - alias aisiw341l.Princeton.EDU - address 10.6.52.74 - contacts monocle - _contacts monocle@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 Trust -} - - -define host { - host_name aisiw344l - alias aisiw344l.Princeton.EDU - _alias1 dwsand - address 10.6.49.246 - contacts monocle - _contacts monocle@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name aisiw345l - alias aisiw345l.Princeton.EDU - _alias1 dwdevl - address 10.6.49.248 - contacts monocle - _contacts monocle@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name aissmb325l - alias aissmb325l.Princeton.EDU - _alias1 testsamba - address 10.6.49.86 - contacts Storage and Automation HostMaster Admin account - _contacts sahmadm@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name ais208l - alias ais208l.Princeton.EDU - address 128.112.130.57 - contacts Joanne M. Smart - _contacts jsmart@princeton.edu, unix@princeton.edu - use UNIX Dev/QA -} - - -define host { - host_name ais209l - alias ais209l.Princeton.EDU - address 128.112.130.96 - contacts Joanne M. Smart - _contacts jsmart@princeton.edu, unix@princeton.edu - use UNIX Dev/QA -} - - -define host { - host_name ais210l - alias ais210l.Princeton.EDU - address 128.112.130.115 - contacts Joanne M. Smart - _contacts jsmart@princeton.edu, unix@princeton.edu - use UNIX Dev/QA -} - - -define host { - host_name ais211l - alias ais211l.Princeton.EDU - address 10.6.52.134 - contacts AIS Mon CustomApps - _contacts ais-mon-customapps@princeton.edu, unix@princeton.edu - use UNIX Production NS Trust -} - - -define host { - host_name ais212l - alias ais212l.Princeton.EDU - address 10.6.48.161 - contacts AIS Mon CustomApps - _contacts ais-mon-customapps@princeton.edu, unix@princeton.edu - use UNIX Production NS PrivateDMZ -} - - -define host { - host_name ais213l - alias ais213l.Princeton.EDU - address 10.6.49.78 - contacts R. Carl Segers - _contacts rsegers@princeton.edu, unix@princeton.edu - use UNIX Production NS PrivateDMZ -} - - -define host { - host_name ais216l - alias ais216l.Princeton.EDU - address 140.180.220.158 - contacts David L. Herrington - _contacts daveh@princeton.edu, unix@princeton.edu - use UNIX Production NS PublicDMZ -} - - -define host { - host_name ais218l - alias ais218l.Princeton.EDU - _alias1 api-store - _alias2 apistore - _alias3 devops - _alias4 elk - _alias5 git - _alias6 jenks - _alias7 jira - _alias8 nexus - _alias9 sonar - address 10.6.50.144 - contacts George R. Kopf, Software Infrastructure Services - _contacts sisters@princeton.edu, unix@princeton.edu - use UNIX Production 151 PrivateDMZ -} - - -define host { - host_name ais222l - alias ais222l.Princeton.EDU - _alias1 ais-gitlab01 - address 10.6.48.38 - contacts AIS Mon CustomApps, George R. Kopf, Kevin D. Hoffman - _contacts kh6@princeton.edu, unix@princeton.edu - use UNIX Production NS PrivateDMZ -} - - -define host { - host_name ais223l - alias ais223l.Princeton.EDU - _alias1 api-prod01 - _alias2 api1 - address 10.6.47.15 - contacts George R. Kopf, Software Infrastructure Services - _contacts sisters@princeton.edu, unix@princeton.edu - use UNIX Production NS Untrust -} - - -define host { - host_name ais224l - alias ais224l.Princeton.EDU - _alias1 api2 - address 10.6.47.16 - contacts George R. Kopf, Software Infrastructure Services - _contacts sisters@princeton.edu, unix@princeton.edu - use UNIX Production NS Untrust -} - - -define host { - host_name ais225l - alias ais225l.Princeton.EDU - _alias1 wso2stats - address 10.6.48.22 - contacts George R. Kopf, Software Infrastructure Services - _contacts sisters@princeton.edu, unix@princeton.edu - use UNIX Production NS PrivateDMZ -} - - -define host { - host_name aisiw207l - alias aisiw207l.Princeton.EDU - address 10.6.48.251 - contacts monocle - _contacts monocle@princeton.edu, unix@princeton.edu - use UNIX Production NS PrivateDMZ -} - - -define host { - host_name aisiw208l - alias aisiw208l.Princeton.EDU - address 10.6.48.252 - contacts monocle - _contacts monocle@princeton.edu, unix@princeton.edu - use UNIX Production NS PrivateDMZ -} - - -define host { - host_name aisiw212l - alias aisiw212l.Princeton.EDU - _alias1 dwprod - _alias2 twprod - _alias3 iwprod - address 140.180.221.90 - contacts monocle - _contacts monocle@princeton.edu, unix@princeton.edu - use UNIX Production 151 PublicDMZ -} - - -define host { - host_name aisiw213l - alias aisiw213l.Princeton.EDU - address 10.6.53.45 - contacts monocle - _contacts monocle@princeton.edu, unix@princeton.edu - use UNIX Production NS Trust -} - - -define host { - host_name aissmb225l - alias aissmb225l.Princeton.EDU - _alias1 tango - _alias2 dms-smbserve - _alias3 dmsdrop - _alias4 isserv224 - address 10.6.49.226 - _contacts ess-list@princeton.edu, unix@princeton.edu - use UNIX Production NS PrivateDMZ -} - - -define host { - host_name ais-sn200w - alias ais-sn200w.Princeton.EDU - address 10.6.49.41 - contacts Helen Shpits - _contacts hshpits@princeton.edu, winmail@princeton.edu - use Windows Dev/QA NS PrivateDMZ -} - - -define host { - host_name ais-sn300w - alias ais-sn300w.Princeton.EDU - address 10.6.49.42 - contacts Helen Shpits, Matt S. Marnett, Stephen J Kim - _contacts hshpits@princeton.edu, mmarnett@princeton.edu, stephen.kim@princeton.edu - use Windows Dev/QA NS PrivateDMZ -} - - -define host { - host_name ais114w - alias ais114w.Princeton.EDU - address 10.6.48.115 - contacts Joanne M. Smart - _contacts jsmart@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name ais115w - alias ais115w.Princeton.EDU - address 10.6.49.221 - contacts Joanne M. Smart - _contacts jsmart@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name ais313w - alias ais313w.Princeton.EDU - address 10.6.48.83 - contacts Asim Shahab - _contacts ashahab@princeton.edu, winmail@princeton.edu - use Windows Dev/QA NS PrivateDMZ -} - - -define host { - host_name ais316w - alias ais316w.Princeton.EDU - _alias1 psoftint - address 10.6.49.128 - contacts Asim Shahab - _contacts ashahab@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name ais317w - alias ais317w.Princeton.EDU - address 10.6.49.185 - contacts Lakshmi Annamalai, R. Carl Segers - _contacts lannamal@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name ais319w - alias ais319w.Princeton.EDU - address 10.6.49.202 - contacts Asim Shahab - _contacts ashahab@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name ais320w - alias ais320w.Princeton.EDU - address 10.6.48.108 - contacts Asim Shahab - _contacts ashahab@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name ais331w - alias ais331w.Princeton.EDU - address 10.6.50.73 - contacts Thomas E. Dommermuth - _contacts tdommer@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name aisfrevvo100w - alias aisfrevvo100w.Princeton.EDU - _alias1 frevvo-qa - address 140.180.221.6 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PublicDMZ -} - - -define host { - host_name aisfrevvo300w - alias aisfrevvo300w.Princeton.EDU - address 140.180.220.65 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PublicDMZ -} - - -define host { - host_name aisfsa100w - alias aisfsa100w.Princeton.EDU - _alias1 issm-qa - address 10.6.53.7 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 Trust -} - - -define host { - host_name aisfsaprtl100w - alias aisfsaprtl100w.Princeton.EDU - _alias1 davisic-portal-test - address 140.180.220.78 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PublicDMZ -} - - -define host { - host_name aisgold6web100w - alias aisgold6web100w.Princeton.EDU - _alias1 tcowebadmin-qa - address 140.180.220.147 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PublicDMZ -} - - -define host { - host_name aisgold6web300w - alias aisgold6web300w.Princeton.EDU - _alias1 tcowebadmin-dev - address 140.180.220.148 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Dev/QA NS PublicDMZ -} - - -define host { - host_name aisgold7100w - alias aisgold7100w.Princeton.EDU - address 140.180.221.51 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PublicDMZ -} - - -define host { - host_name aisgold7101w - alias aisgold7101w.Princeton.EDU - address 140.180.221.52 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PublicDMZ -} - - -define host { - host_name aisgold7102w - alias aisgold7102w.Princeton.EDU - address 140.180.221.53 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PublicDMZ -} - - -define host { - host_name aisgold7300w - alias aisgold7300w.Princeton.EDU - address 140.180.221.48 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PublicDMZ -} - - -define host { - host_name aisgold7301w - alias aisgold7301w.Princeton.EDU - address 140.180.221.49 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PublicDMZ -} - - -define host { - host_name aisgold7302w - alias aisgold7302w.Princeton.EDU - address 140.180.221.50 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PublicDMZ -} - - -define host { - host_name aishmsres100w - alias aishmsres100w.Princeton.EDU - address 10.6.49.125 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name aishmsres101w - alias aishmsres101w.Princeton.EDU - _alias1 rescenter-qual - address 140.180.220.185 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PublicDMZ -} - - -define host { - host_name aishmsres102w - alias aishmsres102w.Princeton.EDU - address 10.6.49.215 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name aishmsres110w - alias aishmsres110w.Princeton.EDU - address 140.180.221.41 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PublicDMZ -} - - -define host { - host_name aishmsres111w - alias aishmsres111w.Princeton.EDU - _alias1 rescenter2-qual - address 140.180.221.63 - contacts pac_usapps - _contacts pac_usapps@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PublicDMZ -} - - -define host { - host_name aishmsres120w - alias aishmsres120w.Princeton.EDU - address 10.6.50.3 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name aishmsres121w - alias aishmsres121w.Princeton.EDU - _alias1 rescenter-pcpy - address 140.180.220.184 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PublicDMZ -} - - -define host { - host_name aishmsres122w - alias aishmsres122w.Princeton.EDU - address 10.6.49.244 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name aishmsres202w - alias aishmsres202w.Princeton.EDU - address 10.6.49.253 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name aishmsres300w - alias aishmsres300w.Princeton.EDU - address 10.6.49.227 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name aishmsres301w - alias aishmsres301w.Princeton.EDU - _alias1 rescenter-devl - address 140.180.220.182 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PublicDMZ -} - - -define host { - host_name aishmsres302w - alias aishmsres302w.Princeton.EDU - address 10.6.50.2 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name aisinfoed100w - alias aisinfoed100w.Princeton.EDU - _alias1 infoed-qual - address 10.6.49.112 - contacts pac_app_integration - _contacts pac_app_integration_list@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name aisinfoed120w - alias aisinfoed120w.Princeton.EDU - _alias1 infoed-pcpy - address 140.180.221.78 - contacts pac_app_integration - _contacts pac_app_integration_list@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PublicDMZ -} - - -define host { - host_name aisinfoed300w - alias aisinfoed300w.Princeton.EDU - _alias1 infoed-devl - address 10.6.49.21 - contacts pac_app_integration - _contacts pac_app_integration_list@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name aisiw105w - alias aisiw105w.Princeton.EDU - _alias1 tableaud - address 10.6.48.229 - contacts monocle - _contacts monocle@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name aisiw106w - alias aisiw106w.Princeton.EDU - address 10.6.49.11 - contacts monocle - _contacts monocle@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name aisob101w - alias aisob101w.Princeton.EDU - _alias1 onbaseqaauth - address 10.6.49.143 - contacts ECM Admin Notify - _contacts ecm-admin-notify@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name aisob102w - alias aisob102w.Princeton.EDU - _alias1 onbase150 - _alias2 onbaseqa - address 10.6.51.63 - contacts ECM Admin Notify - _contacts ecm-admin-notify@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name aisob110w - alias aisob110w.Princeton.EDU - address 10.6.57.41 - contacts ECM Admin Notify - _contacts ecm-admin-notify@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 EISFW -} - - -define host { - host_name aisob111w - alias aisob111w.Princeton.EDU - address 10.6.57.42 - contacts ECM Admin Notify - _contacts ecm-admin-notify@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 EISFW -} - - -define host { - host_name aisob113w - alias aisob113w.Princeton.EDU - address 10.6.53.80 - contacts ECM Admin Notify - _contacts ecm-admin-notify@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 Trust -} - - -define host { - host_name aisob114w - alias aisob114w.Princeton.EDU - address 10.6.53.79 - contacts ECM Admin Notify - _contacts ecm-admin-notify@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 Trust -} - - -define host { - host_name aisob116w - alias aisob116w.Princeton.EDU - _alias1 onbasebtqa - address 10.6.53.81 - contacts ECM Admin Notify - _contacts ecm-admin-notify@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 Trust -} - - -define host { - host_name aisob117w - alias aisob117w.Princeton.EDU - address 10.6.53.82 - contacts ECM Admin Notify - _contacts ecm-admin-notify@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 Trust -} - - -define host { - host_name aisob118w - alias aisob118w.Princeton.EDU - address 10.6.53.83 - contacts ECM Admin Notify - _contacts ecm-admin-notify@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 Trust -} - - -define host { - host_name aisob119w - alias aisob119w.Princeton.EDU - address 10.6.48.96 - contacts ECM Admin Notify - _contacts ecm-admin-notify@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name aisob301tstw - alias aisob301tstw.Princeton.EDU - _alias1 onbasetestauth - address 10.6.51.49 - contacts ECM Admin Notify - _contacts ecm-admin-notify@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name aisob301w - alias aisob301w.Princeton.EDU - _alias1 onbasedevauth - address 10.6.51.56 - contacts ECM Admin Notify - _contacts ecm-admin-notify@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name aisob302tstw - alias aisob302tstw.Princeton.EDU - _alias1 onbasetest - address 10.6.50.98 - contacts ECM Admin Notify - _contacts ecm-admin-notify@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name aisob302w - alias aisob302w.Princeton.EDU - _alias1 onbase350 - _alias2 onbasedev - address 10.6.51.34 - contacts ECM Admin Notify - _contacts ecm-admin-notify@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name aisob310tstw - alias aisob310tstw.Princeton.EDU - address 10.6.57.35 - contacts ECM Admin Notify - _contacts ecm-admin-notify@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 EISFW -} - - -define host { - host_name aisob310w - alias aisob310w.Princeton.EDU - address 10.6.57.38 - contacts ECM Admin Notify - _contacts ecm-admin-notify@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 EISFW -} - - -define host { - host_name aisob311tstw - alias aisob311tstw.Princeton.EDU - address 10.6.57.36 - contacts ECM Admin Notify - _contacts ecm-admin-notify@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 EISFW -} - - -define host { - host_name aisob311w - alias aisob311w.Princeton.EDU - address 10.6.57.37 - contacts ECM Admin Notify - _contacts ecm-admin-notify@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 EISFW -} - - -define host { - host_name aisob313tstw - alias aisob313tstw.Princeton.EDU - address 10.6.53.70 - contacts ECM Admin Notify - _contacts ecm-admin-notify@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 Trust -} - - -define host { - host_name aisob313w - alias aisob313w.Princeton.EDU - address 10.6.53.76 - contacts ECM Admin Notify - _contacts ecm-admin-notify@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 Trust -} - - -define host { - host_name aisob314tstw - alias aisob314tstw.Princeton.EDU - address 10.6.53.68 - contacts ECM Admin Notify - _contacts ecm-admin-notify@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 Trust -} - - -define host { - host_name aisob314w - alias aisob314w.Princeton.EDU - address 10.6.53.77 - contacts ECM Admin Notify - _contacts ecm-admin-notify@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 Trust -} - - -define host { - host_name aisob315tstw - alias aisob315tstw.Princeton.EDU - address 10.6.51.48 - contacts ECM Admin Notify - _contacts ecm-admin-notify@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name aisob315w - alias aisob315w.Princeton.EDU - _alias1 obfindocsdev - address 10.6.51.36 - contacts ECM Admin Notify - _contacts ecm-admin-notify@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name aisob316w - alias aisob316w.Princeton.EDU - _alias1 onbasebtdev - address 10.6.53.75 - contacts ECM Admin Notify - _contacts ecm-admin-notify@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 Trust -} - - -define host { - host_name aisob317w - alias aisob317w.Princeton.EDU - address 10.6.53.74 - contacts ECM Admin Notify - _contacts ecm-admin-notify@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 Trust -} - - -define host { - host_name aisob318tstw - alias aisob318tstw.Princeton.EDU - address 10.6.53.71 - contacts ECM Admin Notify - _contacts ecm-admin-notify@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 Trust -} - - -define host { - host_name aisob318w - alias aisob318w.Princeton.EDU - address 10.6.53.73 - contacts ECM Admin Notify - _contacts ecm-admin-notify@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 Trust -} - - -define host { - host_name aisob319tstw - alias aisob319tstw.Princeton.EDU - address 10.6.51.47 - contacts ECM Admin Notify - _contacts ecm-admin-notify@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name aisob319w - alias aisob319w.Princeton.EDU - address 10.6.51.37 - contacts ECM Admin Notify - _contacts ecm-admin-notify@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name aisparking100w - alias aisparking100w.Princeton.EDU - _alias1 flexqual - address 10.6.48.78 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name aisparking101w - alias aisparking101w.Princeton.EDU - _alias1 flexportqual - address 10.6.48.98 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name aisparking300w - alias aisparking300w.Princeton.EDU - _alias1 flexdevl - address 10.6.48.109 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name aisparking301w - alias aisparking301w.Princeton.EDU - _alias1 flexportdevl - address 10.6.49.7 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name aissimfony7100w - alias aissimfony7100w.Princeton.EDU - address 140.180.220.164 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PublicDMZ -} - - -define host { - host_name aissimfony7101w - alias aissimfony7101w.Princeton.EDU - address 10.6.51.33 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name aissimfony7102w - alias aissimfony7102w.Princeton.EDU - _alias1 simphony7-qual - address 140.180.220.60 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PublicDMZ -} - - -define host { - host_name aissimfony7103w - alias aissimfony7103w.Princeton.EDU - address 140.180.220.165 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PublicDMZ -} - - -define host { - host_name aissimfony7300w - alias aissimfony7300w.Princeton.EDU - address 140.180.220.104 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PublicDMZ -} - - -define host { - host_name aissimfony7301w - alias aissimfony7301w.Princeton.EDU - address 10.6.49.237 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name aissimfony7302w - alias aissimfony7302w.Princeton.EDU - _alias1 simphony7-devl - address 140.180.220.160 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PublicDMZ -} - - -define host { - host_name aissimfony7303w - alias aissimfony7303w.Princeton.EDU - address 140.180.220.163 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PublicDMZ -} - - -define host { - host_name aistopaz100w - alias aistopaz100w.Princeton.EDU - _alias1 research02 - address 10.6.49.223 - contacts pac_app_integration - _contacts pac_app_integration_list@princeton.edu, winmail@princeton.edu - use Windows Dev/QA NS PrivateDMZ -} - - -define host { - host_name aistopaz110w - alias aistopaz110w.Princeton.EDU - _alias1 research-cpy - address 10.6.49.15 - contacts pac_app_integration - _contacts pac_app_integration_list@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name aistopaz300w - alias aistopaz300w.Princeton.EDU - _alias1 research03 - address 10.6.49.64 - contacts pac_app_integration - _contacts pac_app_integration_list@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name aistopaz310w - alias aistopaz310w.Princeton.EDU - address 10.6.49.16 - contacts pac_app_integration - _contacts pac_app_integration_list@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name aisupc102w - alias aisupc102w.Princeton.EDU - address 10.6.56.16 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Dev/QA -} - - -define host { - host_name aisupc103w - alias aisupc103w.Princeton.EDU - address 10.6.56.17 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Dev/QA -} - - -define host { - host_name aisupc310w - alias aisupc310w.Princeton.EDU - address 10.6.48.81 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name ais-mars - alias ais-mars.Princeton.EDU - address 10.6.48.122 - contacts AIS Mon CustomApps - _contacts ais-mon-customapps@princeton.edu, winmail@princeton.edu - use Windows Dev/QA NS PrivateDMZ -} - - -define host { - host_name ais202w - alias ais202w.Princeton.EDU - address 10.6.49.111 - use Windows Dev/QA NS PrivateDMZ - contacts esiddiqi -} - - -define host { - host_name ais207w - alias ais207w.Princeton.EDU - _alias1 psterm2 - address 10.6.50.142 - contacts Thomas E. Dommermuth - _contacts tdommer@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name ais214w - alias ais214w.Princeton.EDU - address 10.6.48.223 - contacts Timothy J. Hogan - _contacts thogan@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name ais217w - alias ais217w.Princeton.EDU - address 10.6.50.91 - contacts Thomas E. Dommermuth - _contacts tdommer@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name ais226w - alias ais226w.Princeton.EDU - address 10.6.49.229 - contacts Austin Bye - _contacts abye@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name aiscerberus200w - alias aiscerberus200w.Princeton.EDU - address 10.6.49.129 - contacts ECM Admin Notify - _contacts ecm-admin-notify@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name aisdvcts200w - alias aisdvcts200w.Princeton.EDU - _alias1 dvc-ts - address 10.6.49.200 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name aisfrevvo200w - alias aisfrevvo200w.Princeton.EDU - _alias1 frevvo-prod - address 140.180.221.44 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name aisfsa201w - alias aisfsa201w.Princeton.EDU - _alias1 issm-prod - address 140.180.221.91 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name aisfsaprtl200w - alias aisfsaprtl200w.Princeton.EDU - _alias1 davisic-portal - address 140.180.220.79 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name aisgold6web200w - alias aisgold6web200w.Princeton.EDU - address 140.180.221.40 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name aisgold7200w - alias aisgold7200w.Princeton.EDU - address 140.180.221.54 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name aisgold7201w - alias aisgold7201w.Princeton.EDU - address 140.180.221.55 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name aisgold7202w - alias aisgold7202w.Princeton.EDU - address 140.180.221.56 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name aishmsres200w - alias aishmsres200w.Princeton.EDU - address 10.6.49.241 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name aishmsres201w - alias aishmsres201w.Princeton.EDU - _alias1 rescenter-prod - address 140.180.220.183 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name aishmsres210w - alias aishmsres210w.Princeton.EDU - address 10.6.51.35 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Production 151 PrivateDMZ -} - - -define host { - host_name aishmsres211w - alias aishmsres211w.Princeton.EDU - address 140.180.221.79 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Production 151 PublicDMZ -} - - -define host { - host_name aishwscbord200w - alias aishwscbord200w.Princeton.EDU - address 10.6.48.127 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Production 151 PrivateDMZ -} - - -define host { - host_name aisinfoed200w - alias aisinfoed200w.Princeton.EDU - _alias1 eria-irb - address 10.6.49.230 - contacts pac_app_integration - _contacts pac_app_integration_list@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name aisiw205w - alias aisiw205w.Princeton.EDU - address 10.6.48.224 - contacts monocle - _contacts monocle@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name aisiw206w - alias aisiw206w.Princeton.EDU - _alias1 tableau - address 10.6.48.230 - contacts monocle - _contacts monocle@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name aisiw209w - alias aisiw209w.Princeton.EDU - _alias1 tableaupublic - address 140.180.220.109 - contacts monocle - _contacts monocle@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name aisiw210w - alias aisiw210w.Princeton.EDU - address 10.6.49.245 - contacts monocle - _contacts monocle@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name aisob115w - alias aisob115w.Princeton.EDU - _alias1 obfindocsqa - address 10.6.51.62 - contacts ECM Admin Notify - _contacts ecm-admin-notify@princeton.edu, winmail@princeton.edu - use Windows Dev/QA NS PrivateDMZ -} - - -define host { - host_name aisob201w - alias aisob201w.Princeton.EDU - _alias1 onbaseauth - address 10.6.51.14 - contacts ECM Admin Notify - _contacts ecm-admin-notify@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name aisob202w - alias aisob202w.Princeton.EDU - _alias1 onbase - _alias2 onbase250 - address 10.6.50.8 - contacts ECM Admin Notify - _contacts ecm-admin-notify@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name aisob210w - alias aisob210w.Princeton.EDU - address 10.6.57.43 - contacts ECM Admin Notify - _contacts ecm-admin-notify@princeton.edu, winmail@princeton.edu - use Windows Production NS EISFW -} - - -define host { - host_name aisob211w - alias aisob211w.Princeton.EDU - address 10.6.57.44 - contacts ECM Admin Notify - _contacts ecm-admin-notify@princeton.edu, winmail@princeton.edu - use Windows Production NS EISFW -} - - -define host { - host_name aisob213w - alias aisob213w.Princeton.EDU - address 10.6.52.30 - contacts ECM Admin Notify - _contacts ecm-admin-notify@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 Trust -} - - -define host { - host_name aisob214w - alias aisob214w.Princeton.EDU - address 10.6.53.86 - contacts ECM Admin Notify - _contacts ecm-admin-notify@princeton.edu, winmail@princeton.edu - use Windows Production NS Trust -} - - -define host { - host_name aisob215w - alias aisob215w.Princeton.EDU - _alias1 obfindocs - address 10.6.50.6 - contacts ECM Admin Notify - _contacts ecm-admin-notify@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name aisob216w - alias aisob216w.Princeton.EDU - _alias1 onbasebt - address 10.6.53.69 - contacts ECM Admin Notify - _contacts ecm-admin-notify@princeton.edu, winmail@princeton.edu - use Windows Production NS Trust -} - - -define host { - host_name aisob217w - alias aisob217w.Princeton.EDU - address 10.6.53.87 - contacts ECM Admin Notify - _contacts ecm-admin-notify@princeton.edu, winmail@princeton.edu - use Windows Production NS Trust -} - - -define host { - host_name aisob218w - alias aisob218w.Princeton.EDU - address 10.6.53.88 - contacts ECM Admin Notify - _contacts ecm-admin-notify@princeton.edu, winmail@princeton.edu - use Windows Dev/QA NS Trust -} - - -define host { - host_name aisob219w - alias aisob219w.Princeton.EDU - address 10.6.49.251 - contacts ECM Admin Notify - _contacts ecm-admin-notify@princeton.edu, winmail@princeton.edu - use Windows Dev/QA NS PrivateDMZ -} - - -define host { - host_name aisparking200w - alias aisparking200w.Princeton.EDU - _alias1 flexprod - address 10.6.49.57 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name aisparking201w - alias aisparking201w.Princeton.EDU - _alias1 flexportprod - address 140.180.220.107 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name aissimfony7200w - alias aissimfony7200w.Princeton.EDU - address 10.6.52.98 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Production NS Untrust -} - - -define host { - host_name aissimfony7201w - alias aissimfony7201w.Princeton.EDU - address 10.6.52.101 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Production NS Untrust -} - - -define host { - host_name aissimfony7202w - alias aissimfony7202w.Princeton.EDU - _alias1 simphony7-prod - address 140.180.220.240 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Production NS Untrust -} - - -define host { - host_name aissimfony7203w - alias aissimfony7203w.Princeton.EDU - address 10.6.49.153 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Production NS Untrust -} - - -define host { - host_name aisstargate200w - alias aisstargate200w.Princeton.EDU - address 10.6.48.197 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name aistopaz200w - alias aistopaz200w.Princeton.EDU - _alias1 research01 - address 10.6.48.59 - contacts pac_app_integration - _contacts pac_app_integration_list@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name aisupc202w - alias aisupc202w.Princeton.EDU - address 10.6.54.22 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Production NS EISFW -} - - -define host { - host_name aisupc203w - alias aisupc203w.Princeton.EDU - address 10.6.54.23 - contacts pac_usapps - _contacts pac_usapps_list@princeton.edu, winmail@princeton.edu - use Windows Production NS EISFW -} - - -define host { - host_name aruba-cppm-01 - alias aruba-cppm-01.Princeton.EDU - _alias1 cppm-01 - address 128.112.128.11 - contacts Networking - _contacts networking@princeton.edu - use Aruba ClearPass -} - - -define host { - host_name aruba-cppm-02 - alias aruba-cppm-02.Princeton.EDU - _alias1 cpinsight - _alias2 cppm-02 - address 128.112.128.14 - contacts Networking - _contacts networking@princeton.edu - use Aruba ClearPass -} - - -define host { - host_name aruba-cppm-03 - alias aruba-cppm-03.Princeton.EDU - _alias1 cppm-03 - address 128.112.129.64 - contacts Networking - _contacts networking@princeton.edu - use Aruba ClearPass -} - - -define host { - host_name aruba-cppm-04 - alias aruba-cppm-04.Princeton.EDU - _alias1 cppm-04 - address 128.112.129.68 - contacts Networking - _contacts networking@princeton.edu - use Aruba ClearPass -} - - -define host { - host_name aruba-cppm-05 - alias aruba-cppm-05.Princeton.EDU - _alias1 aruba-cppm-05 - address 128.112.128.28 - contacts Networking - _contacts networking@princeton.edu - use Aruba ClearPass -} - - - -define host { - host_name dns1a.aws - alias dns1a.aws.Princeton.EDU - address 10.21.1.10 - contacts CISDR - use generic-host -} - - -define host { - host_name dns1c.aws - alias dns1c.aws.Princeton.EDU - address 10.21.1.138 - contacts CISDR - use generic-host -} - - - - -define host { - host_name cisdrroxen100l - alias cisdrroxen100l.Princeton.EDU - address 140.180.220.173 - contacts OIT CSG Reports - _contacts csgrpts@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PublicDMZ -} - - -define host { - host_name cisdrroxen101l - alias cisdrroxen101l.Princeton.EDU - address 10.6.62.30 - contacts OIT CSG Reports - _contacts csgrpts@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 Untrust -} - - -define host { - host_name cisdrroxen300l - alias cisdrroxen300l.Princeton.EDU - address 140.180.220.181 - contacts OIT CSG Reports - _contacts csgrpts@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PublicDMZ -} - - -define host { - host_name cisdrswh100l - alias cisdrswh100l.Princeton.EDU - address 10.6.62.20 - contacts Collaborative Services Group, Dwight D. Bashore - _contacts csg@princeton.edu, dbashore@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 Untrust -} - - -define host { - host_name cisdrswh300l - alias cisdrswh300l.Princeton.EDU - address 10.6.62.21 - contacts Collaborative Services Group, Dwight D. Bashore - _contacts csg@princeton.edu, dbashore@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 Untrust -} - - -define host { - host_name cisdrroxen200l - alias cisdrroxen200l.Princeton.EDU - address 140.180.220.179 - contacts OIT CSG Reports - _contacts csgrpts@princeton.edu, unix@princeton.edu - use UNIX Production NS PublicDMZ -} - - -define host { - host_name cisdrroxen201l - alias cisdrroxen201l.Princeton.EDU - address 140.180.220.180 - contacts OIT CSG Reports - _contacts csgrpts@princeton.edu, unix@princeton.edu - use UNIX Production 151 PublicDMZ -} - - -define host { - host_name cisdrroxen202l - alias cisdrroxen202l.Princeton.EDU - address 10.6.62.182 - contacts OIT CSG Reports - _contacts csgrpts@princeton.edu, unix@princeton.edu - use UNIX Production NS Untrust -} - - -define host { - host_name cisdrroxen203l - alias cisdrroxen203l.Princeton.EDU - address 10.6.62.183 - contacts OIT CSG Reports - _contacts csgrpts@princeton.edu, unix@princeton.edu - use UNIX Production NS Untrust -} - - -define host { - host_name cisdrroxen204l - alias cisdrroxen204l.Princeton.EDU - address 10.6.62.184 - contacts OIT CSG Reports - _contacts csgrpts@princeton.edu, unix@princeton.edu - use UNIX Production NS Untrust -} - - -define host { - host_name cisdrroxen205l - alias cisdrroxen205l.Princeton.EDU - address 10.6.62.185 - contacts OIT CSG Reports - _contacts csgrpts@princeton.edu, unix@princeton.edu - use UNIX Production 151 Untrust -} - - -define host { - host_name cisdrroxen206l - alias cisdrroxen206l.Princeton.EDU - address 140.180.220.154 - contacts OIT CSG Reports - _contacts csgrpts@princeton.edu, unix@princeton.edu - use UNIX Production NS PublicDMZ -} - - -define host { - host_name cisdrswh200l - alias cisdrswh200l.Princeton.EDU - address 10.6.62.26 - contacts Collaborative Services Group, Dwight D. Bashore - _contacts csg@princeton.edu, dbashore@princeton.edu, unix@princeton.edu - use UNIX Production NS Untrust -} - - -define host { - host_name cisdrswh201l - alias cisdrswh201l.Princeton.EDU - address 10.6.62.29 - contacts Collaborative Services Group, Dwight D. Bashore - _contacts csg@princeton.edu, dbashore@princeton.edu, unix@princeton.edu - use UNIX Production 151 Untrust -} - - -define host { - host_name csgkaltura300l - alias csgkaltura300l.Princeton.EDU - address 10.6.54.19 - contacts Collaborative Services Group - _contacts csg@princeton.edu, unix@princeton.edu - use UNIX Dev/QA -} - - -define host { - host_name csglists301l - alias csglists301l.Princeton.EDU - address 128.112.131.219 - contacts Collaborative Services Group - _contacts csg@princeton.edu, unix@princeton.edu - use UNIX Dev/QA -} - - -define host { - host_name csgsawmill200l - alias csgsawmill200l.Princeton.EDU - _alias1 webstats - address 128.112.131.71 - contacts Dwight D. Bashore, Identity and Access Management - _contacts dbashore@princeton.edu, iam@princeton.edu, unix@princeton.edu - use UNIX Production -} - - -define host { - host_name csgsawmill300l - alias csgsawmill300l.Princeton.EDU - _alias1 webstatsdev - address 128.112.131.57 - contacts Dwight D. Bashore, Identity and Access Management - _contacts dbashore@princeton.edu, iam@princeton.edu, unix@princeton.edu - use UNIX Dev/QA -} - - -define host { - host_name csgsmtp101l - alias csgsmtp101l.Princeton.EDU - address 140.180.220.186 - contacts CISDR Group of EIS, Christopher L. Kranz - _contacts cisdr@princeton.edu, clk@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PublicDMZ -} - - -define host { - host_name csgkaltura201l - alias csgkaltura201l.Princeton.EDU - address 10.6.54.12 - contacts Collaborative Services Group - _contacts csg@princeton.edu, unix@princeton.edu - use UNIX Production -} - - -define host { - host_name csgkaltura202l - alias csgkaltura202l.Princeton.EDU - address 10.6.54.18 - contacts Collaborative Services Group - _contacts csg@princeton.edu, unix@princeton.edu - use UNIX Production -} - - -define host { - host_name csglists200l - alias csglists200l.Princeton.EDU - _alias1 new-listserv - address 128.112.133.202 - contacts CISDR - _contacts iam@princeton.edu, unix@princeton.edu - use UNIX Production -} - - -define host { - host_name csgsmtp202l - alias csgsmtp202l.Princeton.edu - address 140.180.223.155 - contacts CISDR - _contacts iam@princeton.edu, unix@princeton.edu - use UNIX Production NS EISFW -} - - -define host { - host_name csgsmtp203l - alias csgsmtp203l.Princeton.edu - address 140.180.223.156 - contacts CISDR - _contacts iam@princeton.edu, unix@princeton.edu - use UNIX Production NS EISFW -} - - -define host { - host_name csgtools200l - alias csgtools200l.Princeton.EDU - address 10.6.50.184 - contacts Collaborative Services Group, Dwight D. Bashore - _contacts csg@princeton.edu, dbashore@princeton.edu, unix@princeton.edu - use UNIX Production NS PrivateDMZ -} - - -define host { - host_name csgcas104w - alias csgcas104w.Princeton.EDU - address 10.6.61.16 - contacts Collaborative Services Group - _contacts csg@princeton.edu, winmail@princeton.edu - use Windows Dev/QA -} - - -define host { - host_name csgcas105w - alias csgcas105w.Princeton.EDU - address 10.6.61.17 - contacts Collaborative Services Group - _contacts csg@princeton.edu, winmail@princeton.edu - use Windows Dev/QA -} - - -define host { - host_name csgcas301w - alias csgcas301w.Princeton.EDU - address 128.112.131.161 - contacts Collaborative Services Group - _contacts csg@princeton.edu, winmail@princeton.edu - use Windows Dev/QA -} - - -define host { - host_name csgcas311w - alias csgcas311w.Princeton.EDU - address 128.112.135.53 - contacts John P. Sophy - _contacts jsophy@princeton.edu, winmail@princeton.edu - use Windows Dev/QA -} - - -define host { - host_name csghub102w - alias csghub102w.Princeton.EDU - address 10.6.60.208 - contacts Collaborative Services Group - _contacts csg@princeton.edu, winmail@princeton.edu - use Windows Dev/QA -} - - -define host { - host_name csghub103w - alias csghub103w.Princeton.EDU - address 10.6.60.209 - contacts Collaborative Services Group - _contacts csg@princeton.edu, winmail@princeton.edu - use Windows Dev/QA -} - - -define host { - host_name csghub302w - alias csghub302w.Princeton.EDU - address 128.112.128.247 - contacts Collaborative Services Group - _contacts csg@princeton.edu, winmail@princeton.edu - use Windows Dev/QA -} - - -define host { - host_name csglists300l - alias csglists300l.Princeton.EDU - address 128.112.134.81 - contacts Identity and Access Management - _contacts iam@princeton.edu, unix@princeton.edu - use UNIX Dev/QA -} - - -define host { - host_name csgmbx100w - alias csgmbx100w.Princeton.EDU - address 128.112.133.99 - contacts Collaborative Services Group - _contacts csg@princeton.edu, winmail@princeton.edu - use Windows Dev/QA -} - - -define host { - host_name csgmbx300w - alias csgmbx300w.Princeton.EDU - address 128.112.130.100 - contacts Collaborative Services Group - _contacts csg@princeton.edu, winmail@princeton.edu - use Windows Dev/QA -} - - -define host { - host_name csgmbx303w - alias csgmbx303w.Princeton.edu - address 128.112.130.124 - contacts CISDR Group of EIS - _contacts cisdr@princeton.edu, winmail@princeton.edu - use Windows Dev/QA -} - - -define host { - host_name csgsmtp100l - alias csgsmtp100l.Princeton.edu - address 140.180.223.157 - contacts Collaborative Services Group - _contacts csg@princeton.edu, winmail@princeton.edu - use UNIX Dev/QA -} - - -define host { - host_name csgspapp102w - alias csgspapp102w.Princeton.EDU - _alias1 spapp01-qa - _alias2 spsearch-qa - _alias3 provost-secure-qa-search - _alias4 mysitesearch-qa - address 10.6.52.182 - contacts Sharepoint Admin - _contacts csg@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 Trust -} - - -define host { - host_name csgspapp103w - alias csgspapp103w.Princeton.EDU - _alias1 spapp02-qa - address 10.6.52.197 - contacts Sharepoint Admin - _contacts csg@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 Trust -} - - -define host { - host_name csgspdb100w - alias csgspdb100w.Princeton.EDU - address 10.6.52.201 - contacts Sharepoint Admin - _contacts winmail@princeton.edu - use Windows Dev/QA 151 Trust -} - - -define host { - host_name csgspdb101w - alias csgspdb101w.Princeton.EDU - address 10.6.52.199 - contacts Sharepoint Admin - _contacts winmail@princeton.edu - use Windows Dev/QA 151 Trust -} - - -define host { - host_name csgspfe100w - alias csgspfe100w.Princeton.EDU - _alias1 spfe01-qa - address 10.6.55.57 - contacts Sharepoint Admin - _contacts winmail@princeton.edu - use Windows Dev/QA 151 EISFW -} - - -define host { - host_name csgspfe101w - alias csgspfe101w.Princeton.EDU - _alias1 spfe02-qa - _alias2 sp-search-qa - address 10.6.55.58 - contacts Sharepoint Admin - _contacts winmail@princeton.edu - use Windows Dev/QA 151 EISFW -} - - -define host { - host_name csgtools300l - alias csgtools300l.Princeton.EDU - address 10.6.49.146 - contacts Collaborative Services Group, Dwight D. Bashore - _contacts csg@princeton.edu, dbashore@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name csgum107w - alias csgum107w.Princeton.EDU - address 128.112.131.38 - contacts Identity and Access Management - _contacts iam@princeton.edu, silviaf@princeton.edu, winmail@princeton.edu - use Windows Dev/QA -} - - -define host { - host_name csgwowza300w - alias csgwowza300w.Princeton.EDU - address 10.6.54.11 - contacts Collaborative Services Group - _contacts csg@princeton.edu, winmail@princeton.edu - use Windows Dev/QA -} - - -define host { - host_name csgcas204w - alias csgcas204w.Princeton.EDU - address 10.6.60.144 - contacts Collaborative Services Group - _contacts csg@princeton.edu, winmail@princeton.edu - use Windows Production -} - - -define host { - host_name csgcas205w - alias csgcas205w.Princeton.EDU - address 10.6.60.145 - contacts Collaborative Services Group - _contacts csg@princeton.edu, winmail@princeton.edu - use Windows Production -} - - -define host { - host_name csgcas206w - alias csgcas206w.Princeton.EDU - address 10.6.60.146 - contacts Collaborative Services Group - _contacts csg@princeton.edu, unix@princeton.edu - use Windows Production -} - - -define host { - host_name csgcas207w - alias csgcas207w.Princeton.EDU - address 10.6.60.147 - contacts Collaborative Services Group - _contacts csg@princeton.edu, unix@princeton.edu - use Windows Production -} - - -define host { - host_name csghub208w - alias csghub208w.Princeton.EDU - address 10.6.60.210 - contacts Collaborative Services Group - _contacts csg@princeton.edu, winmail@princeton.edu - use Windows Production -} - - -define host { - host_name csghub209w - alias csghub209w.Princeton.EDU - address 10.6.60.211 - contacts Collaborative Services Group - _contacts csg@princeton.edu, unix@princeton.edu - use Windows Production -} - - -define host { - host_name csgmbx206w - alias csgmbx206w.Princeton.EDU - address 10.6.52.105 - contacts Collaborative Services Group - _contacts csg@princeton.edu, winmail@princeton.edu - use Windows Production NS Trust -} - - -define host { - host_name csgmbx207w - alias csgmbx207w.Princeton.EDU - address 10.6.52.106 - contacts Collaborative Services Group - _contacts csg@princeton.edu, winmail@princeton.edu - use Windows Production NS Trust -} - - -define host { - host_name csgmbx217w - alias csgmbx217w.Princeton.EDU - address 10.6.52.54 - contacts John P. Sophy - _contacts jsophy@princeton.edu, winmail@princeton.edu - use Windows Production 151 Trust -} - - -define host { - host_name csgdocave200w - alias csgdocave200w.Princeton.EDU - address 10.6.52.200 - contacts Sharepoint Admin - _contacts Sharepoint Admin, winmail@princeton.edu - use Windows Production NS Trust -} - - -define host { - host_name csgechoess200w - alias csgechoess200w.Princeton.EDU - _alias1 echoess - _alias2 echo360 - _alias3 encoder13 - address 140.180.221.5 - contacts CISDR, Dwight D. Bashore - _contacts cisdr@princeton.edu, dbashore@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name csgechomp201w - alias csgechomp201w.Princeton.EDU - _alias1 echomp1 - address 140.180.221.7 - contacts CISDR, Dwight D. Bashore - _contacts cisdr@princeton.edu, dbashore@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name csgechomp202w - alias csgechomp202w.Princeton.EDU - _alias1 echomp2 - address 140.180.221.8 - contacts CISDR, Dwight D. Bashore - _contacts cisdr@princeton.edu, dbashore@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name csglync221w - alias csglync221w.Princeton.EDU - address 10.6.61.23 - contacts Collaborative Services Group - _contacts csg@princeton.edu, iam@princeton.edu, silviaf@princeton.edu, winmail@princeton.edu - use Windows Production -} - - -define host { - host_name csglync222w - alias csglync222w.Princeton.EDU - address 10.6.61.24 - contacts Collaborative Services Group - _contacts csg@princeton.edu, iam@princeton.edu, silviaf@princeton.edu, winmail@princeton.edu - use Windows Production -} - - -define host { - host_name csglync227w - alias csglync227w.Princeton.EDU - address 128.112.130.193 - contacts CISDR - _contacts iam@princeton.edu, silviaf@princeton.edu, winmail@princeton.edu - use Windows Production -} - - -define host { - host_name csglync228w - alias csglync228w.Princeton.EDU - address 10.6.61.30 - contacts CISDR - _contacts iam@princeton.edu, silviaf@princeton.edu, winmail@princeton.edu - use Windows Production -} - - -define host { - host_name csglync229w - alias csglync229w.Princeton.EDU - address 10.6.61.31 - contacts Collaborative Services Group - _contacts csg@princeton.edu, iam@princeton.edu, winmail@princeton.edu - use Windows Production -} - - -define host { - host_name csglyncdb225w - alias csglyncdb225w.Princeton.EDU - address 10.6.51.20 - contacts CISDR - _contacts iam@princeton.edu, silviaf@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name csglyncdb226w - alias csglyncdb226w.Princeton.EDU - address 10.6.51.21 - contacts CISDR - _contacts iam@princeton.edu, silviaf@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name csglynce223w - alias csglynce223w.Princeton.EDU - address 192.168.4.5 - contacts CISDR - _contacts iam@princeton.edu, silviaf@princeton.edu, winmail@princeton.edu - use Windows Production -} - - -define host { - host_name csglynce224w - alias csglynce224w.Princeton.EDU - address 192.168.4.6 - contacts CISDR - _contacts iam@princeton.edu, silviaf@princeton.edu, winmail@princeton.edu - use Windows Production -} - - -define host { - host_name csglyncm218w - alias csglyncm218w.Princeton.EDU - address 128.112.134.180 - contacts CISDR - _contacts iam@princeton.edu, silviaf@princeton.edu, winmail@princeton.edu - use Windows Production -} - - -define host { - host_name csgmbx215w - alias csgmbx215w.Princeton.EDU - address 10.6.52.22 - contacts John P. Sophy - _contacts jsophy@princeton.edu, winmail@princeton.edu - use Windows Production NS Trust -} - - -define host { - host_name csgsp200w - alias csgsp200w.Princeton.EDU - _alias1 csgspapp1 - _alias2 spapp01 - address 10.6.52.207 - contacts Sharepoint Admin - _contacts winmail@princeton.edu - use Windows Production 151 Trust -} - - -define host { - host_name csgsp201w - alias csgsp201w.Princeton.EDU - _alias1 csgspapp2 - _alias2 spapp02 - address 10.6.52.208 - contacts Sharepoint Admin - _contacts winmail@princeton.edu - use Windows Production NS Trust -} - - -define host { - host_name csgsp202w - alias csgsp202w.Princeton.EDU - _alias1 csgspfe1 - _alias2 spfe01 - _alias3 sp-search - _alias4 mysite-search - _alias5 project-search - _alias6 provost-secure-search - address 10.6.55.59 - contacts Sharepoint Admin - _contacts csg@princeton.edu, winmail@princeton.edu - use Windows Production NS EISFW -} - - -define host { - host_name csgsp203w - alias csgsp203w.Princeton.EDU - _alias1 csgspfe2 - _alias2 spfe02 - address 10.6.55.60 - contacts Sharepoint Admin - _contacts csg@princeton.edu, winmail@princeton.edu - use Windows Production NS EISFW -} - - -define host { - host_name csgsp204w - alias csgsp204w.Princeton.EDU - _alias1 csgspfe3 - _alias2 spfe03 - address 10.6.55.61 - contacts Sharepoint Admin - _contacts csg@princeton.edu, winmail@princeton.edu - use Windows Production NS EISFW -} - - -define host { - host_name csgspdb202w - alias csgspdb202w.Princeton.EDU - address 10.6.52.206 - contacts Sharepoint Admin - _contacts winmail@princeton.edu - use Windows Production NS Trust -} - - -define host { - host_name csgspdb203w - alias csgspdb203w.Princeton.EDU - address 10.6.52.215 - contacts Sharepoint Admin - _contacts winmail@princeton.edu - use Windows Production NS Trust -} - - -define host { - host_name csgwowza201w - alias csgwowza201w.Princeton.EDU - _alias1 puwowzalive1 - address 140.180.219.161 - contacts CISDR, Dwight D. Bashore - _contacts cisdr@princeton.edu, winmail@princeton.edu - use Windows Production NS EISFW -} - - -define host { - host_name csgwowza202w - alias csgwowza202w.Princeton.EDU - _alias1 puwowzalive2 - address 140.180.219.162 - contacts CISDR, Dwight D. Bashore - _contacts cisdr@princeton.edu, dbashore@princeton.edu, iam@princeton.edu, winmail@princeton.edu - use Windows Production 151 EISFW -} - - -define host { - host_name dascpan100l - alias dascpan100l.Princeton.EDU - _alias1 cpan-das-qa - _alias2 cpanel-das-qa - _alias3 cpanel-das-qa-alumtran - _alias4 cpanel-das-qa-aosapp - _alias5 cpanel-das-qa-cbeiwapp - _alias6 cpanel-das-qa-ccbapp - _alias7 cpanel-das-qa-ccdwapp - _alias8 cpanel-das-qa-clever - _alias9 cpanel-das-qa-cleverapp - _alias10 cpanel-das-qa-coiforms - _alias11 cpanel-das-qa-csdpapp - _alias12 cpanel-das-qa-daveh - _alias13 cpanel-das-qa-descetha - _alias14 cpanel-das-qa-dossier - _alias15 cpanel-das-qa-dossier2 - _alias16 cpanel-das-qa-ffpubsapp - _alias17 cpanel-das-qa-genpurch - _alias18 cpanel-das-qa-hdcpanel - _alias19 cpanel-das-qa-hisjpapp - _alias20 cpanel-das-qa-hlsapp - _alias21 cpanel-das-qa-husbyapp - _alias22 cpanel-das-qa-intlctra - _alias23 cpanel-das-qa-intldaymatch - _alias24 cpanel-das-qa-jkchu - _alias25 cpanel-das-qa-jshadow - _alias26 cpanel-das-qa-lapaappl - _alias27 cpanel-das-qa-lsrf - _alias28 cpanel-das-qa-maeiw - _alias29 cpanel-das-qa-mathapps - _alias30 cpanel-das-qa-mathsent - _alias31 cpanel-das-qa-mcgraw - _alias32 cpanel-das-qa-media - _alias33 cpanel-das-qa-molbiodb - _alias34 cpanel-das-qa-moldbupdate - _alias35 cpanel-das-qa-molgsinterview - _alias36 cpanel-das-qa-molqcbwb - _alias37 cpanel-das-qa-nandapps - _alias38 cpanel-das-qa-odocweb - _alias39 cpanel-das-qa-ohdcpanl - _alias40 cpanel-das-qa-oitcpanel - _alias41 cpanel-das-qa-oitdas - _alias42 cpanel-das-qa-oitdaspu - _alias43 cpanel-das-qa-oitdcf - _alias44 cpanel-das-qa-oitdivrs - _alias45 cpanel-das-qa-oitforms - _alias46 cpanel-das-qa-options - _alias47 cpanel-das-qa-paanetapp - _alias48 cpanel-das-qa-pccmapps - _alias49 cpanel-das-qa-pcs - _alias50 cpanel-das-qa-pcs2 - _alias51 cpanel-das-qa-phidossr - _alias52 cpanel-das-qa-pibapps - _alias53 cpanel-das-qa-picsimwb - _alias54 cpanel-das-qa-piiapps - _alias55 cpanel-das-qa-pnipurch - _alias56 cpanel-das-qa-pnisipap - _alias57 cpanel-das-qa-polapps - _alias58 cpanel-das-qa-poldosr - _alias59 cpanel-das-qa-polfalljiw - _alias60 cpanel-das-qa-polgsexam - _alias61 cpanel-das-qa-polsenth - _alias62 cpanel-das-qa-polthpostap - _alias63 cpanel-das-qa-ppplapps - _alias64 cpanel-das-qa-prvdata - _alias65 cpanel-das-qa-psafety - _alias66 cpanel-das-qa-psrc - _alias67 cpanel-das-qa-puvisa - _alias68 cpanel-das-qa-pwp - _alias69 cpanel-das-qa-ratliff - _alias70 cpanel-das-qa-raupload - _alias71 cpanel-das-qa-shipcalc - _alias72 cpanel-das-qa-sinsiapp - _alias73 cpanel-das-qa-sslamp - _alias74 cpanel-das-qa-stevea - _alias75 cpanel-das-qa-studtrav - _alias76 cpanel-das-qa-surpdcap - _alias77 cpanel-das-qa-surplus - _alias78 cpanel-das-qa-telecom - _alias79 cpanel-das-qa-uchv - _alias80 cpanel-das-qa-umattermapapp - _alias81 cpanel-das-qa-umwellness - _alias82 cpanel-das-qa-versions - _alias83 cpanel-das-qa-wasfrevvosvc - _alias84 cpanel-das-qa-webpanel - _alias85 cpanel-das-qa-websurvy - _alias86 cpanel-das-qa-wildcard - _alias87 cpanel-das-qa-wwsgrweb - _alias88 cpanel-redirects-qa - _alias89 das-lamp01-qa - address 128.112.52.21 - contacts CISDR Group of EIS, David L. Herrington, Mark A. Ratliff, Steve Albin - _contacts cisdr@princeton.edu, daveh@princeton.edu, ratliff@princeton.edu, stevea@princeton.edu, unix@princeton.edu - use UNIX Dev/QA -} - - - - -define host { - host_name dng202w - alias dng202w.Princeton.EDU - address 140.180.220.123 - contacts Kevin R. Guilbault - _contacts kg3@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name dng204w - alias dng204w.Princeton.EDU - address 10.6.49.127 - contacts Kevin R. Guilbault - _contacts kg3@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - -define host { - host_name dng205w - alias dng205w.Princeton.EDU - address 140.180.221.121 - use Windows Dev/QA NS PublicDMZ - contacts University Services IT Support -} - - - -define host { - host_name eis176l - alias eis176l.Princeton.EDU - address 10.6.52.229 - contacts DBA Important List - _contacts dbas@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 Trust -} - - -define host { - host_name eis178l - alias eis178l.Princeton.EDU - address 10.6.52.234 - contacts DBA Important List - _contacts dbas@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 Trust -} - - -define host { - host_name eis308l - alias eis308l.Princeton.EDU - address 128.112.134.126 - _contacts ess-list@princeton.edu, unix@princeton.edu - use UNIX Dev/QA -} - - -define host { - host_name eis319l - alias eis319l.Princeton.EDU - address 10.6.53.8 - contacts DBA Important List - _contacts dbas@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 Trust -} - - -define host { - host_name eis344l - alias eis344l.Princeton.EDU - address 10.6.48.234 - contacts DBA Important List - _contacts dbas@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name eis368l - alias eis368l.Princeton.EDU - address 10.6.52.220 - contacts DBA Important List - _contacts dbas@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 Trust -} - - -define host { - host_name eis369l - alias eis369l.Princeton.EDU - address 10.6.52.221 - contacts DBA Important List - _contacts dbas@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 Trust -} - - -define host { - host_name eis374l - alias eis374l.Princeton.EDU - address 10.6.48.84 - contacts DBA Important List - _contacts dbas@princeton.edu, unix@princeton.edu - use UNIX Dev/QA NS PrivateDMZ -} - - -define host { - host_name eis376l - alias eis376l.Princeton.EDU - address 10.6.53.41 - contacts DBA Important List - _contacts pb@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 Trust -} - - -define host { - host_name eis377l - alias eis377l.Princeton.EDU - address 10.6.53.58 - contacts DBA Important List - _contacts dbas@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 Trust -} - - -define host { - host_name eiscpan100l - alias eiscpan100l.Princeton.EDU - _alias1 cpanel7-qa-server - address 140.180.221.46 - contacts CISDR Group of EIS, David L. Herrington, Mark A. Ratliff - _contacts cisdr@princeton.edu, daveh@princeton.edu, ratliff@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PublicDMZ -} - - -define host { - host_name eiscpan101l - alias eiscpan101l.Princeton.EDU - address 140.180.220.36 - contacts CISDR Group of EIS - _contacts cisdr@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PublicDMZ -} - - -define host { - host_name eiscpan102l - alias eiscpan102l.Princeton.EDU - address 128.112.52.23 - contacts Cpanel Admins, Steve Albin - _contacts stevea@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 Untrust -} - - -define host { - host_name eiscpan301l - alias eiscpan301l.Princeton.EDU - address 128.112.52.45 - contacts Cpanel Admins, Steve Albin - _contacts stevea@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 Untrust -} - - -define host { - host_name eiscups300l - alias eiscups300l.Princeton.EDU - address 10.6.49.235 - contacts ESS Storage, Martin Harriss - _contacts ess-storage@princeton.edu, martin@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name eisdba301l - alias eisdba301l.Princeton.EDU - address 10.6.52.253 - contacts DBA Important List - _contacts dbas@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 Trust -} - - -define host { - host_name eisdba302l - alias eisdba302l.Princeton.EDU - address 10.6.52.254 - contacts DBA Important List - _contacts dbas@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 Trust -} - - -define host { - host_name eisdba303l - alias eisdba303l.Princeton.EDU - address 10.6.49.205 - contacts DBA Important List - _contacts dbas@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name eisfax300l - alias eisfax300l.Princeton.EDU - address 10.6.52.204 - contacts Martin Harriss - _contacts martin@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 Trust -} - - -define host { - host_name eisglob100l - alias eisglob100l.Princeton.EDU - address 140.180.221.107 - contacts Daniel Chin, ESS Storage - _contacts dchin@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PublicDMZ -} - - -define host { - host_name eisoid101l - alias eisoid101l.Princeton.EDU - address 10.6.57.18 - contacts DBA Important List - _contacts dbas@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 EISFW -} - - -define host { - host_name eisoid102l - alias eisoid102l.Princeton.EDU - address 10.6.57.25 - contacts DBA Important List - _contacts dbas@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 EISFW -} - - -define host { - host_name eisvnet300l - alias eisvnet300l.Princeton.EDU - address 10.6.49.38 - contacts Igor V. Gubenko, Networking - _contacts igubenko@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name eis230l - alias eis230l.Princeton.EDU - address 10.6.53.51 - contacts DBA Important List - _contacts dbas@princeton.edu, unix@princeton.edu - use UNIX Production 151 Trust -} - - -define host { - host_name eis254l - alias eis254l.Princeton.EDU - address 10.6.52.132 - contacts DBA Important List - _contacts dbas@princeton.edu, unix@princeton.edu - use UNIX Production NS Trust -} - - -define host { - host_name eis256l - alias eis256l.Princeton.EDU - address 10.6.49.87 - contacts DBA Important List - _contacts dbas@princeton.edu, unix@princeton.edu - use UNIX Production NS PrivateDMZ -} - - -define host { - host_name eis286l - alias eis286l.Princeton.EDU - address 10.6.52.85 - contacts DBA Important List - _contacts dbas@princeton.edu, unix@princeton.edu - use UNIX Production NS Trust -} - - -define host { - host_name eis289l - alias eis289l.Princeton.EDU - address 10.6.53.4 - contacts DBA Important List - _contacts dbas@princeton.edu, unix@princeton.edu - use UNIX Production NS Trust -} - - -define host { - host_name eis290l - alias eis290l.Princeton.EDU - address 10.6.53.6 - contacts DBA Important List - _contacts dbas@princeton.edu, unix@princeton.edu - use UNIX Production NS Trust -} - - -define host { - host_name eis294l - alias eis294l.Princeton.EDU - address 10.6.53.78 - contacts DBA Important List, Todd S. Whitaker - _contacts unix@princeton.edu, whitaker@princeton.edu - use UNIX Production NS Trust -} - - -define host { - host_name eiscups200l - alias eiscups200l.Princeton.EDU - address 10.6.49.236 - contacts ESS Storage - _contacts ess-storage@princeton.edu, unix@princeton.edu - use UNIX Dev/QA NS PrivateDMZ -} - - -define host { - host_name eisess200l - alias eisess200l.Princeton.EDU - _alias1 nautilus - address 10.6.61.28 - _contacts ess-list@princeton.edu, unix@princeton.edu - use UNIX Production -} - - -define host { - host_name eisess201l - alias eisess201l.Princeton.EDU - address 10.6.61.29 - _contacts ess-list@princeton.edu, unix@princeton.edu - use UNIX Production -} - - -define host { - host_name eisess202l - alias eisess202l.Princeton.EDU - _alias1 epoxy1 - address 140.180.219.143 - _contacts unix@princeton.edu - use UNIX Production NS EISFW -} - - -define host { - host_name eisess203l - alias eisess203l.Princeton.EDU - _alias1 epoxy2 - address 140.180.219.144 - _contacts unix@princeton.edu - use UNIX Production 151 EISFW -} - - -define host { - host_name eisess204l - alias eisess204l.Princeton.EDU - _alias1 epoxy3 - address 140.180.219.163 - _contacts unix@princeton.edu - use UNIX Production NS EISFW -} - - -define host { - host_name eisess205l - alias eisess205l.Princeton.EDU - address 140.180.220.48 - _contacts ess-list@princeton.edu, unix@princeton.edu - use UNIX Dev/QA NS PublicDMZ -} - - -define host { - host_name eisfax200l - alias eisfax200l.Princeton.EDU - address 10.6.52.35 - _contacts ess-list@princeton.edu, unix@princeton.edu - use UNIX Dev/QA NS Trust -} - - -define host { - host_name eisnet201l - alias eisnet201l.Princeton.EDU - address 10.6.50.131 - contacts Hajar Niroomand, Networking - _contacts hajar@princeton.edu, unix@princeton.edu - use UNIX Production NS PrivateDMZ -} - - -define host { - host_name eisnet202l - alias eisnet202l.Princeton.EDU - address 140.180.221.88 - contacts Networking - _contacts networking@princeton.edu, unix@princeton.edu - use UNIX Production NS PublicDMZ -} - - -define host { - host_name eisoid201l - alias eisoid201l.Princeton.EDU - _alias1 oranamesrvr1 - _alias2 oranamesrvr4 - address 10.6.57.32 - contacts DBA Important List - _contacts dbas@princeton.edu, unix@princeton.edu - use UNIX Production NS EISFW -} - - -define host { - host_name eisoid202l - alias eisoid202l.Princeton.EDU - _alias1 oranamesrvr2 - address 10.6.57.33 - contacts DBA Important List - _contacts dbas@princeton.edu, unix@princeton.edu - use UNIX Production NS EISFW -} - - -define host { - host_name eisoid203l - alias eisoid203l.Princeton.EDU - _alias1 oranamesrvr3 - address 10.6.57.34 - contacts DBA Important List - _contacts dbas@princeton.edu, unix@princeton.edu - use UNIX Production NS EISFW -} - - -define host { - host_name eistsm200l - alias eistsm200l.Princeton.EDU - address 10.6.49.240 - contacts ESS Storage, Martin Harriss - _contacts ess-storage@princeton.edu, martin@princeton.edu, unix@princeton.edu - use UNIX Dev/QA NS PrivateDMZ -} - - -define host { - host_name eistsm206l - alias eistsm206l.Princeton.EDU - address 128.112.128.104 - contacts ESS Storage - _contacts ess-storage@princeton.edu, unix@princeton.edu - use UNIX Production NS Untrust -} - - -define host { - host_name eistsm207l - alias eistsm207l.Princeton.EDU - _alias1 tsm7 - address 128.112.128.112 - contacts ESS Storage - _contacts ess-storage@princeton.edu, unix@princeton.edu - use UNIX Dev/QA NS Untrust -} - - -define host { - host_name eistsm208l - alias eistsm208l.Princeton.EDU - _alias1 tsm8 - address 128.112.128.113 - contacts ESS Storage - _contacts ess-storage@princeton.edu, unix@princeton.edu - use UNIX Production NS Untrust -} - - -define host { - host_name eistsm210l - alias eistsm210l.Princeton.EDU - _alias1 tsm10 - address 128.112.128.118 - contacts ESS Storage - _contacts ess-storage@princeton.edu, unix@princeton.edu - use UNIX Dev/QA NS Untrust -} - - -define host { - host_name eistsm211l - alias eistsm211l.Princeton.EDU - _alias1 tsm11 - address 128.112.128.116 - contacts ESS Storage - _contacts ess-storage@princeton.edu, unix@princeton.edu - use UNIX Production NS Untrust -} - - -define host { - host_name eis155w - alias eis155w.Princeton.EDU - address 10.6.49.58 - contacts DBA Important List - _contacts dbas@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name eis345w - alias eis345w.Princeton.EDU - address 10.6.49.55 - contacts DBA Important List - _contacts dbas@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name eis370w - alias eis370w.Princeton.EDU - address 10.6.49.113 - contacts DBA Important List - _contacts dbas@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name eisctxappdna100 - alias eisctxappdna100.Princeton.EDU - address 10.6.50.67 - contacts Sarah Kampel - _contacts skampel@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name eisctxddc100w - alias eisctxddc100w.Princeton.EDU - address 10.6.49.3 - contacts Sarah Kampel - _contacts skampel@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name eisctxddc101w - alias eisctxddc101w.Princeton.EDU - address 10.6.49.140 - contacts Sarah Kampel - _contacts skampel@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name eisctxdir100w - alias eisctxdir100w.Princeton.EDU - address 10.6.50.65 - contacts Sarah Kampel - _contacts skampel@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name eisctxpvs100w - alias eisctxpvs100w.Princeton.EDU - address 10.6.50.192 - contacts Sarah Kampel - _contacts skampel@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name eisctxpvs101w - alias eisctxpvs101w.Princeton.EDU - address 10.6.50.191 - contacts Sarah Kampel - _contacts skampel@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name eisctxsf100w - alias eisctxsf100w.Princeton.EDU - address 10.6.49.207 - contacts Sarah Kampel - _contacts skampel@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name eisctxsf101w - alias eisctxsf101w.Princeton.EDU - address 10.6.50.60 - contacts Sarah Kampel - _contacts skampel@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name eisctxsql100w - alias eisctxsql100w.Princeton.EDU - address 10.6.53.25 - contacts Sarah Kampel - _contacts skampel@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 Trust -} - - -define host { - host_name eisctxsql101w - alias eisctxsql101w.Princeton.EDU - address 10.6.53.26 - contacts Sarah Kampel - _contacts skampel@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 Trust -} - - -define host { - host_name eisctxwem100w - alias eisctxwem100w.Princeton.EDU - address 10.6.50.40 - contacts Sarah Kampel - _contacts skampel@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name eisctxwem101w - alias eisctxwem101w.Princeton.EDU - address 10.6.50.59 - contacts Sarah Kampel - _contacts skampel@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name eisiws300w - alias eisiws300w.Princeton.EDU - address 10.6.51.44 - contacts ESS Storage - _contacts ess-storage@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name eissql100w - alias eissql100w.Princeton.EDU - address 10.6.50.14 - contacts DBA Important List - _contacts dbas@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name eissql101w - alias eissql101w.Princeton.EDU - address 10.6.50.15 - contacts DBA Important List - _contacts dbas@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name eissql102w - alias eissql102w.Princeton.EDU - address 10.6.50.16 - contacts DBA Important List - _contacts dbas@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name eissql104w - alias eissql104w.Princeton.EDU - address 10.6.51.72 - contacts DBA Important List - _contacts dbas@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name eissql105w - alias eissql105w.Princeton.EDU - address 10.6.51.69 - contacts DBA Important List - _contacts dbas@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name eissql106w - alias eissql106w.Princeton.EDU - address 10.6.51.26 - contacts DBA Important List - _contacts dbas@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name eissql113w - alias eissql113w.Princeton.EDU - address 10.6.53.22 - contacts Christopher M. Stewart, DBA Important List - _contacts cs2@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 Trust -} - - -define host { - host_name eissql305w - alias eissql305w.Princeton.EDU - address 10.6.48.227 - contacts DBA Important List - _contacts dbas@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name eissql306w - alias eissql306w.Princeton.EDU - address 10.6.48.226 - contacts DBA Important List - _contacts dbas@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name eisssrs301w - alias eisssrs301w.Princeton.EDU - address 10.6.50.185 - contacts Christopher M. Stewart, DBA Important List - _contacts cs2@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 Untrust -} - - -define host { - host_name eiswszeta102w - alias eiswszeta102w.Princeton.EDU - address 10.6.51.55 - _contacts winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name eisxendc100w - alias eisxendc100w.Princeton.EDU - address 10.6.48.139 - _contacts ess-list@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name eisxendc101w - alias eisxendc101w.Princeton.EDU - address 10.6.48.140 - _contacts ess-list@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name eiszeta100w - alias eiszeta100w.Princeton.EDU - address 10.6.51.3 - contacts John P. Sophy - _contacts jsophy@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name eis-fwmgr - alias eis-fwmgr.Princeton.EDU - address 128.112.130.95 - contacts epm-list - _contacts winmail@princeton.edu - use Windows Production -} - - -define host { - host_name eis253w - alias eis253w.Princeton.EDU - address 10.6.48.75 - contacts DBA Important List - _contacts dbas@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name eis255w - alias eis255w.Princeton.EDU - address 10.6.49.85 - contacts DBA Important List - _contacts dbas@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name eisctxappdna200 - alias eisctxappdna200.Princeton.EDU - address 10.6.50.68 - contacts Sarah Kampel - _contacts skampel@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name eisctxddc200w - alias eisctxddc200w.Princeton.EDU - address 10.6.50.61 - contacts Sarah Kampel - _contacts skampel@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name eisctxddc201w - alias eisctxddc201w.Princeton.EDU - address 10.6.50.62 - contacts Sarah Kampel - _contacts skampel@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name eisctxdir200w - alias eisctxdir200w.Princeton.EDU - address 10.6.50.66 - contacts Sarah Kampel - _contacts skampel@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name eisctxlic200w - alias eisctxlic200w.Princeton.EDU - address 10.6.50.30 - contacts Sarah Kampel - _contacts skampel@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name eisctxpvs200w - alias eisctxpvs200w.Princeton.EDU - address 10.6.50.193 - contacts ESS Ops, Sarah Kampel - _contacts skampel@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name eisctxpvs201w - alias eisctxpvs201w.Princeton.EDU - address 10.6.50.57 - contacts ESS Ops, Sarah Kampel - _contacts skampel@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name eisctxsf200w - alias eisctxsf200w.Princeton.EDU - address 10.6.49.131 - contacts Sarah Kampel - _contacts skampel@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name eisctxsf201w - alias eisctxsf201w.Princeton.EDU - address 10.6.49.139 - contacts Sarah Kampel - _contacts skampel@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name eisctxsql200w - alias eisctxsql200w.Princeton.EDU - address 10.6.53.15 - contacts Sarah Kampel - _contacts skampel@princeton.edu, winmail@princeton.edu - use Windows Production NS Trust -} - - -define host { - host_name eisctxsql201w - alias eisctxsql201w.Princeton.EDU - address 10.6.53.24 - contacts Sarah Kampel - _contacts skampel@princeton.edu, winmail@princeton.edu - use Windows Production NS Trust -} - - -define host { - host_name eisctxwem200w - alias eisctxwem200w.Princeton.EDU - address 10.6.50.41 - contacts Sarah Kampel - _contacts skampel@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name eisctxwem201w - alias eisctxwem201w.Princeton.EDU - address 10.6.50.64 - contacts Sarah Kampel - _contacts skampel@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name eishpdm200w - alias eishpdm200w.Princeton.EDU - address 140.180.221.86 - contacts Sarah Kampel - _contacts dbalan@princeton.edu, winmail@princeton.edu - use Windows Production 151 PublicDMZ -} - - -define host { - host_name eisiws200w - alias eisiws200w.Princeton.EDU - address 10.6.51.45 - contacts ESS Storage - _contacts ess-storage@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name eislmt200w - alias eislmt200w.Princeton.EDU - address 10.6.50.127 - contacts ESS Storage, Martin Harriss - _contacts martin@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name eisnet200w - alias eisnet200w.Princeton.EDU - address 10.6.48.247 - contacts Networking - _contacts networking@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name eissql203w - alias eissql203w.Princeton.EDU - address 10.6.50.174 - contacts DBA Important List - _contacts dbas@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name eissql204w - alias eissql204w.Princeton.EDU - address 10.6.50.175 - contacts DBA Important List - _contacts dbas@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name eissql205w - alias eissql205w.Princeton.EDU - address 10.6.50.177 - contacts Christopher M. Stewart - _contacts cs2@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name eissql206w - alias eissql206w.Princeton.EDU - address 10.6.50.157 - contacts DBA Important List - _contacts dbas@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name eissql207w - alias eissql207w.Princeton.EDU - address 10.6.50.158 - contacts DBA Important List - _contacts dbas@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name eissql209w - alias eissql209w.Princeton.EDU - address 10.6.49.120 - contacts DBA Important List - _contacts dbas@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name eissql210w - alias eissql210w.Princeton.EDU - address 10.6.51.70 - contacts DBA Important List - _contacts dbas@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name eissql211w - alias eissql211w.Princeton.EDU - address 10.6.51.71 - contacts DBA Important List - _contacts dbas@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name eissql212w - alias eissql212w.Princeton.EDU - address 10.6.48.153 - contacts DBA Important List - _contacts dbas@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name eissql213w - alias eissql213w.Princeton.EDU - address 10.6.53.46 - contacts Christopher M. Stewart, DBA Important List - _contacts cs2@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 Trust -} - - -define host { - host_name eisssrs201w - alias eisssrs201w.Princeton.EDU - address 10.6.51.0 - contacts Christopher M. Stewart, DBA Important List - _contacts cs2@princeton.edu, winmail@princeton.edu - use Windows Production NS Untrust -} - - -define host { - host_name eisvone200w - alias eisvone200w.Princeton.EDU - address 10.6.52.86 - contacts ESS Storage - _contacts ess-storage@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 Trust -} - - -define host { - host_name eisvone201w - alias eisvone201w.Princeton.EDU - address 10.6.53.34 - contacts ESS Storage - _contacts ess-storage@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 Trust -} - - -define host { - host_name eisws201w - alias eisws201w.Princeton.EDU - address 10.6.50.92 - contacts Nicholas A. Delo - _contacts ndelo@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name eisws202w - alias eisws202w.Princeton.EDU - address 10.6.49.228 - contacts ESS Ops, Sarah Kampel - _contacts skampel@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name essesx200v - alias essesx200v.Princeton.EDU - address 10.6.52.61 - _IP_MAC1 10.6.52.61 <=> b8:ca:3a:64:5d:d0 - _SUBNET1 fw-servernet-3 (Trust - VLAN 1049 - .52) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, RK, C2 - _date_created 2017-02-22 - _date_changed 2017-06-20 - check_command check_https_host - notes 151 Forrestal Rd. - _contacts winmail@princeton.edu - use UNIX Production 151 Trust -} - - -define host { - host_name essesx201v - alias essesx201v.Princeton.EDU - address 10.6.52.43 - _IP_MAC1 10.6.52.43 <=> 24:6e:96:39:6e:b4 - _SUBNET1 fw-servernet-3 (Trust - VLAN 1049 - .52) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room MR,RK,C1 - _date_created 2017-04-13 - _date_changed 2017-06-20 - check_command check_https_host - notes New South - contacts Jeffrey L. Firestone - _contacts jf19@princeton.edu, unix@princeton.edu - use UNIX Production NS Trust -} - - -define host { - host_name essesx202v - alias essesx202v.Princeton.EDU - address 10.6.52.62 - _IP_MAC1 10.6.52.62 <=> ba:ca:3a:64:66:21 - _SUBNET1 fw-servernet-3 (Trust - VLAN 1049 - .52) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR,RK,C1 - _date_created 2017-04-13 - _date_changed 2017-09-14 - check_command check_https_host - notes 151 Forrestal Rd. - contacts Jeffrey L. Firestone - _contacts jf19@princeton.edu, unix@princeton.edu - use UNIX Production 151 Trust -} - - -define host { - host_name essesx203v - alias essesx203v.Princeton.EDU - address 10.6.52.63 - _IP_MAC1 10.6.52.63 <=> bc:30:5b:f8:c1:dc - _SUBNET1 fw-servernet-3 (Trust - VLAN 1049 - .52) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room MR,RK,C5 - _date_created 2017-04-13 - _date_changed 2017-06-20 - check_command check_https_host - notes New South - contacts Jeffrey L. Firestone - _contacts jf19@princeton.edu, unix@princeton.edu - use UNIX Production NS Trust -} - - -define host { - host_name essesx204v - alias essesx204v.Princeton.EDU - address 10.6.52.64 - _IP_MAC1 10.6.52.64 <=> a4:ba:db:15:13:13 - _SUBNET1 fw-servernet-3 (Trust - VLAN 1049 - .52) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR,RK,C4 - _date_created 2017-04-13 - _date_changed 2017-06-20 - check_command check_https_host - notes 151 Forrestal Rd. - contacts Jeffrey L. Firestone - _contacts jf19@princeton.edu, unix@princeton.edu - use UNIX Production 151 Trust -} - - -define host { - host_name essesx205v - alias essesx205v.Princeton.EDU - address 10.6.52.65 - _IP_MAC1 10.6.52.65 <=> ec:f4:bb:d0:64:c3 - _SUBNET1 fw-servernet-3 (Trust - VLAN 1049 - .52) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room MR,RK,J3 - _date_created 2017-04-13 - _date_changed 2017-06-20 - check_command check_https_host - notes New South - contacts Jeffrey L. Firestone - _contacts jf19@princeton.edu, unix@princeton.edu - use UNIX Production NS Trust -} - - -define host { - host_name essesx206v - alias essesx206v.Princeton.EDU - address 10.6.52.66 - _IP_MAC1 10.6.52.66 <=> ec:f4:bb:d6:d0:5c - _SUBNET1 fw-servernet-3 (Trust - VLAN 1049 - .52) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR,RK,C3 - _date_created 2017-04-13 - _date_changed 2017-06-20 - check_command check_https_host - notes 151 Forrestal Rd. - contacts Jeffrey L. Firestone - _contacts jf19@princeton.edu, unix@princeton.edu - use UNIX Production 151 Trust -} - - -define host { - host_name essesx207v - alias essesx207v.Princeton.EDU - address 10.6.52.67 - _IP_MAC1 10.6.52.67 <=> a4:ba:db:40:92:f0 - _SUBNET1 fw-servernet-3 (Trust - VLAN 1049 - .52) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room MR,RK,I3 - _date_created 2017-04-13 - _date_changed 2017-06-20 - check_command check_https_host - notes New South - contacts Jeffrey L. Firestone - _contacts jf19@princeton.edu, unix@princeton.edu - use UNIX Production NS Trust -} - - -define host { - host_name essesx208v - alias essesx208v.Princeton.EDU - address 10.6.52.68 - _IP_MAC1 10.6.52.68 <=> 0:1b:21:90:26:18 - _SUBNET1 fw-servernet-3 (Trust - VLAN 1049 - .52) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room MR,RK,J2 - _date_created 2017-04-13 - _date_changed 2017-06-20 - check_command check_https_host - notes New South - contacts Jeffrey L. Firestone - _contacts jf19@princeton.edu, unix@princeton.edu - use UNIX Production NS Trust -} - - -define host { - host_name essesx209v - alias essesx209v.Princeton.EDU - address 10.6.52.69 - _IP_MAC1 10.6.52.69 <=> 0:1b:21:c8:5:70 - _SUBNET1 fw-servernet-3 (Trust - VLAN 1049 - .52) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room MR,RK,I2 - _date_created 2017-04-13 - _date_changed 2017-06-20 - check_command check_https_host - notes New South - contacts Jeffrey L. Firestone - _contacts jf19@princeton.edu, unix@princeton.edu - use UNIX Production NS Trust -} - - -define host { - host_name essesx210v - alias essesx210v.Princeton.EDU - address 10.6.53.3 - _IP_MAC1 10.6.53.3 <=> ec:f4:bb:ed:fb:67 - _SUBNET1 fw-servernet-3 (Trust - VLAN 1049 - .52) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room MR,RK,I4 - _date_created 2017-04-13 - _date_changed 2017-06-20 - check_command check_https_host - notes New South - contacts Jeffrey L. Firestone - _contacts jf19@princeton.edu, unix@princeton.edu - use UNIX Production NS Trust -} - - -define host { - host_name essesx211v - alias essesx211v.Princeton.EDU - address 10.6.52.87 - _IP_MAC1 10.6.52.87 <=> 24:6e:96:2a:7c:c0 - _SUBNET1 fw-servernet-3 (Trust - VLAN 1049 - .52) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MP,RK,C3 - _date_created 2017-04-13 - _date_changed 2017-10-25 - check_command check_https_host - notes 151 Forrestal Rd. - contacts Jeffrey L. Firestone - _contacts jf19@princeton.edu, unix@princeton.edu - use UNIX Production 151 Trust -} - - -define host { - host_name essesx212v - alias essesx212v.Princeton.EDU - address 10.6.52.114 - _IP_MAC1 10.6.52.114 <=> 24:6e:96:2a:55:14 - _SUBNET1 fw-servernet-3 (Trust - VLAN 1049 - .52) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR,RK,C3 - _date_created 2017-04-13 - _date_changed 2017-10-25 - check_command check_https_host - notes 151 Forrestal Rd. - contacts Jeffrey L. Firestone - _contacts jf19@princeton.edu, unix@princeton.edu - use UNIX Production 151 Trust -} - - -define host { - host_name essesx213v - alias essesx213v.Princeton.EDU - address 10.6.52.121 - _IP_MAC1 10.6.52.121 <=> 24:6e:96:39:94:7c - _SUBNET1 fw-servernet-3 (Trust - VLAN 1049 - .52) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR,RK,C1 - _date_created 2017-04-13 - _date_changed 2017-06-20 - check_command check_https_host - notes 151 Forrestal Rd. - contacts Jeffrey L. Firestone - _contacts jf19@princeton.edu, unix@princeton.edu - use UNIX Production 151 Trust -} - - -define host { - host_name essesx214v - alias essesx214v.Princeton.EDU - address 10.6.52.125 - _IP_MAC1 10.6.52.125 <=> bc:30:5b:ef:a6:c1 - _SUBNET1 fw-servernet-3 (Trust - VLAN 1049 - .52) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room MR,RK,C1 - _date_created 2017-04-13 - _date_changed 2017-06-20 - check_command check_https_host - notes New South - contacts Jeffrey L. Firestone - _contacts jf19@princeton.edu, unix@princeton.edu - use UNIX Production NS Trust -} - - -define host { - host_name essesx215v - alias essesx215v.Princeton.EDU - address 10.6.52.138 - _IP_MAC1 10.6.52.138 <=> bc:30:5b:ef:e3:65 - _SUBNET1 fw-servernet-3 (Trust - VLAN 1049 - .52) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR,RK,C3 - _date_created 2017-04-13 - _date_changed 2017-06-20 - check_command check_https_host - notes 151 Forrestal Rd. - contacts Jeffrey L. Firestone - _contacts jf19@princeton.edu, unix@princeton.edu - use UNIX Production 151 Trust -} - - -define host { - host_name essesx216v - alias essesx216v.Princeton.EDU - address 10.6.52.171 - _IP_MAC1 10.6.52.171 <=> b8:ca:3a:69:3c:c4 - _SUBNET1 fw-servernet-3 (Trust - VLAN 1049 - .52) - _department Office of the Vice President for Information Technology - _building 151 Forrestal Rd. - _room MR, RK, C3 - _date_created 2016-09-20 - _date_changed 2017-06-20 - check_command check_https_host - notes 151 Forrestal Rd. - _contacts unix@princeton.edu - use UNIX Production 151 Trust -} - - -define host { - host_name essesx217v - alias essesx217v.Princeton.EDU - address 10.6.52.177 - _IP_MAC1 10.6.52.177 <=> bc:30:5b:f8:e2:98 - _SUBNET1 fw-servernet-3 (Trust - VLAN 1049 - .52) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR,RK,C3 - _date_created 2017-04-13 - _date_changed 2017-06-20 - check_command check_https_host - notes 151 Forrestal Rd. - contacts Jeffrey L. Firestone - _contacts jf19@princeton.edu, unix@princeton.edu - use UNIX Production 151 Trust -} - - -define host { - host_name essesx218v - alias essesx218v.Princeton.EDU - address 10.6.52.178 - _IP_MAC1 10.6.52.178 <=> b8:ca:3a:69:46:c0 - _SUBNET1 fw-servernet-3 (Trust - VLAN 1049 - .52) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room MR,RK,J2 - _date_created 2017-04-13 - _date_changed 2017-06-20 - check_command check_https_host - notes New South - contacts Jeffrey L. Firestone - _contacts jf19@princeton.edu, unix@princeton.edu - use UNIX Production NS Trust -} - - -define host { - host_name essesx220v - alias essesx220v.Princeton.EDU - address 10.6.52.213 - _IP_MAC1 10.6.52.213 <=> ec:f4:bb:c2:74:44 - _SUBNET1 fw-servernet-3 (Trust - VLAN 1049 - .52) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR,RK,C1 - _date_created 2017-04-13 - _date_changed 2017-06-20 - check_command check_https_host - notes 151 Forrestal Rd. - contacts Jeffrey L. Firestone - _contacts jf19@princeton.edu, unix@princeton.edu - use UNIX Production 151 Trust -} - - -define host { - host_name essesx221v - alias essesx221v.Princeton.EDU - address 10.6.52.216 - _IP_MAC1 10.6.52.216 <=> ec:f4:bb:c2:72:fe - _SUBNET1 fw-servernet-3 (Trust - VLAN 1049 - .52) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room MR,RK,J3 - _date_created 2017-04-13 - _date_changed 2017-06-20 - check_command check_https_host - notes New South - contacts Jeffrey L. Firestone - _contacts jf19@princeton.edu, unix@princeton.edu - use UNIX Production NS Trust -} - - -define host { - host_name essesx222v - alias essesx222v.Princeton.EDU - address 10.6.52.217 - _IP_MAC1 10.6.52.217 <=> ec:f4:bb:d6:cc:fe - _SUBNET1 fw-servernet-3 (Trust - VLAN 1049 - .52) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room MR,RK,I3 - _date_created 2017-04-13 - _date_changed 2017-06-20 - check_command check_https_host - notes New South - contacts Jeffrey L. Firestone - _contacts jf19@princeton.edu, unix@princeton.edu - use UNIX Production NS Trust -} - - -define host { - host_name essesx270v - alias essesx270v.Princeton.EDU - address 10.6.52.218 - _IP_MAC1 10.6.52.218 <=> ec:f4:bb:dd:f6:d4 - _SUBNET1 fw-servernet-3 (Trust - VLAN 1049 - .52) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR,RK,C1 - _date_created 2017-04-13 - _date_changed 2017-06-20 - check_command check_https_host - contacts Jeffrey L. Firestone - _contacts jf19@princeton.edu, unix@princeton.edu - use UNIX Production 151 Trust -} - - -define host { - host_name essesx224v - alias essesx224v.Princeton.EDU - address 10.6.52.219 - _IP_MAC1 10.6.52.219 <=> ec:f4:bb:ee:a7:80 - _SUBNET1 fw-servernet-3 (Trust - VLAN 1049 - .52) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR,RK,C2 - _date_created 2017-04-13 - _date_changed 2017-06-20 - check_command check_https_host - contacts Jeffrey L. Firestone - _contacts jf19@princeton.edu, unix@princeton.edu - use UNIX Production 151 Trust -} - - -define host { - host_name essesx225v - alias essesx225v.Princeton.EDU - address 10.6.52.239 - _IP_MAC1 10.6.52.239 <=> 24:6e:96:b:2e:fe - _SUBNET1 fw-servernet-3 (Trust - VLAN 1049 - .52) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room MR,RK,I3 - _date_created 2017-04-13 - _date_changed 2017-06-20 - check_command check_https_host - contacts Jeffrey L. Firestone - _contacts jf19@princeton.edu, unix@princeton.edu - use UNIX Production NS Trust -} - - -define host { - host_name essesx226v - alias essesx226v.Princeton.EDU - address 10.6.52.247 - _IP_MAC1 10.6.52.247 <=> 24:6e:96:a:9f:41 - _SUBNET1 fw-servernet-3 (Trust - VLAN 1049 - .52) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR,RK,C2 - _date_created 2017-04-13 - _date_changed 2017-06-20 - check_command check_https_host - contacts Jeffrey L. Firestone - _contacts jf19@princeton.edu, unix@princeton.edu - use UNIX Production 151 Trust -} - - -define host { - host_name essesx227v - alias essesx227v.Princeton.EDU - address 10.6.52.58 - _IP_MAC1 10.6.52.58 <=> 24:6e:96:50:20:64 - _SUBNET1 fw-servernet-3 (Trust - VLAN 1049 - .52) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR,RK,C02 - _date_created 2017-03-24 - _date_changed 2017-04-12 - check_command check_https_host - contacts Jeffrey L. Firestone - _contacts jf19@princetonedu, winmail@princeton.edu - use UNIX Production 151 Trust -} - - -define host { - host_name essesx228v - alias essesx228v.Princeton.EDU - address 10.6.52.38 - check_command check_https_host - notes New South - contacts Jeffrey L. Firestone - use UNIX Production NS Trust -} - - -define host { - host_name essesx229v - alias essesx229v.Princeton.EDU - address 10.6.52.39 - check_command check_https_host - notes New South - contacts Jeffrey L. Firestone - use UNIX Production NS Trust -} - - - define host { - host_name essesx240v - alias essesx240v.Princeton.EDU - address 10.6.53.47 - check_command check_https_host - notes 87 Prospect - contacts Jeffrey L. Firestone - use UNIX Production NS Trust -} - - - define host { - host_name essesx241v - alias essesx241v.Princeton.EDU - address 10.6.53.48 - check_command check_https_host - notes 87 Prospect - contacts Jeffrey L. Firestone - use UNIX Production NS Trust -} - - -define host { - host_name essesx242v - alias essesx242v.Princeton.EDU - address 10.6.53.52 - check_command check_https_host - notes 87 Prospect - contacts ESS Ops - use UNIX Production NS Trust -} - - - define host { - host_name essesx250v - alias essesx250v.Princeton.EDU - address 10.6.52.118 - check_command check_https_host - notes New South - contacts ESS Ops - use UNIX Production NS Trust -} - - - define host { - host_name essesx251v - alias essesx251v.Princeton.EDU - address 10.6.52.155 - check_command check_https_host - notes 151 Forrestal Rd. - contacts ESS Ops - use UNIX Production 151 Trust -} - - - define host { - host_name essesx260v - alias essesx260v.Princeton.EDU - address 10.6.53.96 - check_command check_https_host - notes New South - contacts ESS Ops - use UNIX Production NS Trust -} - - - define host { - host_name essesx261v - alias essesx261v.Princeton.EDU - address 10.6.53.97 - check_command check_https_host - notes New South - contacts ESS Ops - use UNIX Production NS Trust -} - - -define host { - host_name essesx262v - alias essesx262v.Princeton.EDU - address 10.6.53.99 - check_command check_https_host - notes 151 Forrestal Rd. - contacts ESS Ops - use UNIX Production 151 Trust -} - - -define host { - host_name essesx263v - alias essesx263v.Princeton.EDU - address 10.6.53.98 - check_command check_https_host - notes 151 Forrestal Rd. - contacts ESS Ops - use UNIX Production 151 Trust -} - - -define host { - host_name essesx290v - alias essesx290v.Princeton.EDU - address 10.6.59.230 - _IP_MAC1 10.6.59.230 <=> c:c4:7a:9:a3:1e - _SUBNET1 pci-vm-mgmt - _department Office of the Vice President for Information Technology - _building 151 Forrestal Rd. - _room MR, RK, M19 - _date_created 2014-10-14 - _date_changed 2015-01-12 - check_command check_https_host - notes 151 Forrestal Rd. - _contacts unix@princeton.edu, winmail@princeton.edu - use UNIX Production -} - - -define host { - host_name essesx291v - alias essesx291v.Princeton.EDU - address 10.6.59.232 - _IP_MAC1 10.6.59.232 <=> c:c4:7a:9:a0:ca - _SUBNET1 pci-vm-mgmt - _department Office of the Vice President for Information Technology - _building 151 Forrestal Rd. - _room MR, RK, M19 - _date_created 2014-10-23 - _date_changed 2015-01-12 - check_command check_https_host - notes 151 Forrestal Rd. - _contacts unix@princeton.edu, winmail@princeton.edu - use UNIX Production -} - - -define host { - host_name essesx292v - alias essesx292v.Princeton.EDU - address 10.6.59.231 - _IP_MAC1 10.6.59.231 <=> c:c4:7a:9:a0:86 - _SUBNET1 pci-vm-mgmt - _department Office of the Vice President for Information Technology - _building 151 Forrestal Rd. - _room MR, RK, M19 - _date_created 2014-10-14 - _date_changed 2015-01-12 - check_command check_https_host - notes 151 Forrestal Rd. - _contacts unix@princeton.edu, winmail@princeton.edu - use UNIX Production -} - - -define host { - host_name ess305l - alias ess305l.Princeton.EDU - address 10.6.52.82 - _contacts ess-list@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 Trust -} - - -define host { - host_name ess307l - alias ess307l.Princeton.EDU - address 10.6.51.29 - contacts Kevin D. Hoffman - _contacts kh6@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name essconjur300l - alias essconjur300l.Princeton.EDU - address 10.6.53.33 - contacts ESS Storage - _contacts ess-storage@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 Trust -} - - -define host { - host_name essgit100l - alias essgit100l.Princeton.EDU - address 10.6.49.154 - contacts Jeffrey L. Firestone, none - _contacts jf19@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name essgit101l - alias essgit101l.Princeton.EDU - address 10.6.50.48 - contacts ESS Storage, Kevin D. Hoffman - _contacts kh6@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name essoel300l - alias essoel300l.Princeton.EDU - address 10.6.48.17 - _contacts ess-list@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name essproxy300l - alias essproxy300l.Princeton.EDU - address 10.6.51.30 - contacts Nicholas A. Delo - _contacts ndelo@princeton.edu, unix@princeton.edu - use UNIX Dev/QA NS PrivateDMZ -} - - -define host { - host_name esspup101l - alias esspup101l.Princeton.EDU - address 10.6.50.47 - contacts ESS Storage, Kevin D. Hoffman - _contacts kh6@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name essrundeck100l - alias essrundeck100l.Princeton.EDU - address 10.6.57.39 - contacts ESS Storage, Nicholas A. Delo - _contacts ndelo@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 EISFW -} - - -define host { - host_name essrundeck101l - alias essrundeck101l.Princeton.EDU - address 10.6.57.40 - contacts ESS Storage, Nicholas A. Delo - _contacts ndelo@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 EISFW -} - - -define host { - host_name essrundeck102l - alias essrundeck102l.Princeton.EDU - address 10.6.52.210 - contacts Nicholas A. Delo - _contacts ndelo@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 Trust -} - -define host { - host_name essrundeck201l - alias essrundeck201l.Princeton.EDU - address 10.6.57.49 - use UNIX Dev/QA 151 EISFW - contacts ESS UNIX List -} - - - -define host { - host_name essgit200l - alias essgit200l.Princeton.EDU - address 10.6.50.106 - contacts ESS Ops, Nicholas A. Delo - _contacts ndelo@princeton.edu, unix@princeton.edu - use UNIX Production NS PrivateDMZ -} - - -define host { - host_name essproxy200l - alias essproxy200l.Princeton.EDU - address 10.6.51.31 - contacts Nicholas A. Delo - _contacts ndelo@princeton.edu, unix@princeton.edu - use UNIX Production NS PrivateDMZ -} - - -define host { - host_name esspup200l - alias esspup200l.Princeton.EDU - address 140.180.220.74 - _contacts ess-list@princeton.edu, unix@princeton.edu - use UNIX Dev/QA NS PublicDMZ -} - - -define host { - host_name esspup201l - alias esspup201l.Princeton.EDU - _alias1 ess-puppet01 - address 10.6.50.165 - contacts George R. Kopf, Kevin D. Hoffman - _contacts kh6@princeton.edu, unix@princeton.edu - use UNIX Production NS PrivateDMZ -} - -define host { - host_name essrundeck202l - alias essrundeck202l.Princeton.EDU - address 10.6.52.102 - use UNIX Dev/QA NS Trust - contacts ESS UNIX List -} - - - -define host { - host_name ess-2008r2test - alias ess-2008r2test.Princeton.EDU - address 10.6.51.27 - contacts Nicholas A. Delo - _contacts ndelo@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name ess-2012r2test - alias ess-2012r2test.Princeton.EDU - address 10.6.48.168 - _contacts winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name ess-2016test - alias ess-2016test.Princeton.EDU - address 10.6.48.27 - contacts ESS Ops - _contacts sv-list@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name ess100w - alias ess100w.Princeton.EDU - address 10.6.48.176 - _contacts ess-list@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name esschoco100w - alias esschoco100w.Princeton.EDU - address 10.6.53.17 - contacts Nicholas A. Delo - _contacts ndelo@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 Trust -} - - -define host { - host_name esschoco300w - alias esschoco300w.Princeton.EDU - address 10.6.53.14 - contacts Nicholas A. Delo - _contacts ndelo@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 Trust -} - - -define host { - host_name essctxddc300w - alias essctxddc300w.Princeton.EDU - address 10.6.49.195 - _contacts dbalan@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name essctxsf300w - alias essctxsf300w.Princeton.EDU - address 10.6.49.196 - _contacts dbalan@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name essctxxa300w - alias essctxxa300w.Princeton.EDU - address 10.6.49.197 - _contacts dbalan@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name essnick2019test - alias essnick2019test.Princeton.EDU - address 10.6.48.174 - use Windows Dev/QA 151 PrivateDMZ - contacts Nicholas Delo -} - - -define host { - host_name essnicksdev300w - alias essnicksdev300w.Princeton.EDU - address 10.6.49.9 - contacts Nicholas A. Delo - _contacts ndelo@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name essorch101w - alias essorch101w.Princeton.EDU - address 10.6.52.51 - contacts Nicholas A. Delo - _contacts ndelo@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 Trust -} - - -define host { - host_name essorch300w - alias essorch300w.Princeton.EDU - address 10.6.49.184 - _contacts ess-list@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name esspatchtest300 - alias esspatchtest300.Princeton.EDU - address 10.6.63.6 - use Windows Dev/QA 151 Untrust - contacts Jennifer L. Curatola -} - - -define host { - host_name essrundeck100w - alias essrundeck100w.Princeton.EDU - address 10.6.53.85 - contacts ESS Storage - _contacts ess-storage@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 Trust -} - - -define host { - host_name esssma100w - alias esssma100w.Princeton.EDU - address 10.6.52.60 - contacts Nicholas A. Delo - _contacts ndelo@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 Trust -} - - -define host { - host_name essvmbkp100w - alias essvmbkp100w.Princeton.EDU - address 10.6.48.193 - contacts Chi M. Lu, Daniel Chin, ESS Storage, Storage and Automation HostMaster Admin account - _contacts clu@princeton.edu, dchin@princeton.edu, ess-storage@princeton.edu, sahmadm@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name essvprox100w - alias essvprox100w.Princeton.EDU - address 10.6.48.49 - contacts ESS Storage - _contacts ess-storage@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name essvprox101w - alias essvprox101w.Princeton.EDU - address 10.6.51.61 - contacts ESS Storage - _contacts ess-storage@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name esswsus300w - alias esswsus300w.Princeton.EDU - address 10.6.49.148 - contacts ESS Ops, Sarah Kampel - _contacts skampel@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name esschoco200w - alias esschoco200w.Princeton.EDU - address 10.6.53.16 - contacts Nicholas A. Delo - _contacts ndelo@princeton.edu, winmail@princeton.edu - use Windows Production NS Trust -} - - -define host { - host_name esscode200w - alias esscode200w.Princeton.EDU - address 10.6.49.145 - contacts ESS Windows List, Jeffrey L. Firestone - _contacts jf19@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name essconsole200w - alias essconsole200w.Princeton.EDU - address 10.6.48.13 - _contacts ess-list@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name essconsole201w - alias essconsole201w.Princeton.EDU - address 10.6.49.1 - _contacts ess-list@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name essdem200w - alias essdem200w.Princeton.EDU - address 10.6.48.16 - contacts Kevin D. Hoffman - _contacts kh6@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name essdhcp200w - alias essdhcp200w.Princeton.EDU - address 10.6.52.20 - _contacts ess-list@princeton.edu, winmail@princeton.edu - use Windows Production NS Trust -} - - -define host { - host_name essorch201w - alias essorch201w.Princeton.EDU - address 10.6.52.52 - contacts Nicholas A. Delo - _contacts ndelo@princeton.edu, winmail@princeton.edu - use Windows Dev/QA NS Trust -} - - -define host { - host_name essrds290w - alias essrds290w.Princeton.EDU - address 10.6.59.237 - _contacts ess-list@princeton.edu, winmail@princeton.edu - use Windows Production -} - - -define host { - host_name essrundeck203w - alias essrundeck203w.Princeton.EDU - address 10.6.52.112 - use Windows Dev/QA NS Trust - contacts ESS Windows List -} - - -define host { - host_name esssan202w - alias esssan202w.Princeton.EDU - address 10.6.53.40 - contacts ESS Storage, Storage and Automation HostMaster Admin account - _contacts sahmadm@princeton.edu, winmail@princeton.edu - use Windows Production NS Trust -} - - -define host { - host_name esssma200w - alias esssma200w.Princeton.EDU - address 10.6.52.36 - contacts Nicholas A. Delo - _contacts ndelo@princeton.edu, winmail@princeton.edu - use Windows Production NS Trust -} - - -define host { - host_name essvc201w - alias essvc201w.Princeton.EDU - _alias1 essvc200w - _alias2 essvc201l - address 10.6.48.80 - _contacts ess-list@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name essvmbkp200w - alias essvmbkp200w.Princeton.EDU - address 10.6.49.167 - contacts ESS Storage, Storage and Automation HostMaster Admin account - _contacts ess-storage@princeton.edu, sahmadm@princeton.edu, winmail@princeton.edu - use Windows Production 151 PrivateDMZ -} - - -define host { - host_name essvmbkp201w - alias essvmbkp201w.Princeton.EDU - address 10.6.49.201 - contacts ESS Storage, Storage and Automation HostMaster Admin account - _contacts ess-storage@princeton.edu, sahmadm@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name esswsus200w - alias esswsus200w.Princeton.EDU - address 10.6.49.147 - contacts ESS Ops, Sarah Kampel - _contacts skampel@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name fac-egn-desigo - alias fac-egn-desigo.Princeton.EDU - address 10.6.50.55 - _IP_MAC1 10.6.50.55 <=> 0:50:56:93:7:f0 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Engineering and Construction Department - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2014-03-26 - _date_changed 2017-05-02 - contacts Gary Brancato - _contacts garyb@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name fac-eng-301w - alias fac-eng-301w.Princeton.EDU - address 10.6.50.54 - _IP_MAC1 10.6.50.54 <=> 0:50:56:93:2a:e7 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Engineering and Construction Department - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2013-08-22 - _date_changed 2017-05-02 - contacts Gary Brancato - _contacts garyb@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name fac-geodev - alias fac-geodev.Princeton.EDU - address 10.6.50.112 - _IP_MAC1 10.6.50.112 <=> 0:50:56:93:5:3e - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Facilities Finance and Administrative Services - _building 151 Forrestal Rd. - _room MR, VM - - _date_created 2013-10-31 - _date_changed 2018-03-23 - contacts Dawn F. McCall, Matthew L. Woodmansee - _contacts dmccall@princeton.edu, mw20@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name fac-geoprod - alias fac-geoprod.Princeton.EDU - address 140.180.221.124 - _IP_MAC1 10.6.50.125 <=> 0:50:56:93:5:3f - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Facilities Finance and Administrative Services - _building New South - _room MR, VM - - _date_created 2013-10-31 - _date_changed 2018-03-23 - contacts Dawn F. McCall, Matthew L. Woodmansee - _contacts dmccall@princeton.edu, mw20@princeton.edu, winmail@princeton.edu - use Windows Production NS Untrust -} - - -define host { - host_name fac-geoqa - alias fac-geoqa.Princeton.EDU - address 10.6.50.113 - _IP_MAC1 10.6.50.113 <=> 0:50:56:93:5:3d - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Facilities Finance and Administrative Services - _building 151 Forrestal Rd. - _room MR, VM - - _date_created 2013-10-31 - _date_changed 2018-03-23 - contacts Dawn F. McCall, Matthew L. Woodmansee - _contacts dmccall@princeton.edu, mw20@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name fac-lutronqa - alias fac-lutronqa.Princeton.EDU - address 10.6.50.26 - _IP_MAC1 10.6.50.26 <=> 0:50:56:93:5:39 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Engineering and Construction Department - _building 151 Forrestal Rd. - _room MR, VM - - _date_created 2013-10-28 - _date_changed 2017-03-21 - contacts Arthur T. Murphy - _contacts amurphy@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name fac-spcacst101w - alias fac-spcacst101w.Princeton.EDU - address 10.6.49.91 - _IP_MAC1 10.6.49.91 <=> 0:50:56:93:50:fd - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Site Protection - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2016-04-13 - _date_changed 2016-07-28 - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams - _contacts tuccillo@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name fac-spcacst102w - alias fac-spcacst102w.Princeton.EDU - address 10.6.49.171 - use Windows Dev/QA 151 PrivateDMZ - contacts tuccillo -} - - -define host { - host_name fac-spcacst103w - alias fac-spcacst103w.Princeton.EDU - address 10.6.50.163 - use Windows Dev/QA 151 PrivateDMZ - contacts tuccillo -} - - -define host { - host_name fac-spcacst104w - alias fac-spcacst104w.Princeton.EDU - address 10.6.50.31 - _IP_MAC1 10.6.50.31 <=> 0:50:56:93:cc:22 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room mr, vm, - - _date_created 2017-03-31 - _date_changed 2017-03-31 - contacts Edith M. Rzomp - _contacts erzomp@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name fac-spcacsts108 - alias fac-spcacsts108.Princeton.EDU - address 10.6.48.131 - _IP_MAC1 10.6.48.131 <=> 0:50:56:93:41:90 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2018-04-06 - _date_changed 2018-04-06 - contacts Edith M. Rzomp - _contacts erzomp@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name fac-spcactdb102 - alias fac-spcactdb102.Princeton.EDU - address 10.6.49.92 - _IP_MAC1 10.6.49.92 <=> 0:50:56:93:4a:e8 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Site Protection - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2016-04-13 - _date_changed 2016-07-28 - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams - _contacts tuccillo@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name fac-spcactdb103 - alias fac-spcactdb103.Princeton.EDU - address 10.6.49.39 - _IP_MAC1 10.6.49.39 <=> 0:50:56:93:5e:82 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room mr, vm, - - _date_created 2016-04-28 - _date_changed 2016-07-28 - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams - _contacts tuccillo@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name fac-spcactha105 - alias fac-spcactha105.Princeton.EDU - address 10.6.50.195 - _IP_MAC1 10.6.50.195 <=> 0:50:56:93:ef:27 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2017-09-14 - _date_changed 2017-09-14 - contacts Edith M. Rzomp - _contacts erzomp@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name fac-spcactha106 - alias fac-spcactha106.Princeton.EDU - address 10.6.50.164 - use Windows Dev/QA 151 PrivateDMZ - contacts tuccillo -} - - -define host { - host_name fac-webctrl100w - alias fac-webctrl100w.Princeton.EDU - address 10.6.50.43 - _IP_MAC1 10.6.50.43 <=> 0:50:56:93:4:87 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Engineering and Construction Department - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2014-04-25 - _date_changed 2017-05-02 - contacts Gary Brancato - _contacts garyb@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name fac-webctrl300w - alias fac-webctrl300w.Princeton.EDU - address 10.6.50.56 - _IP_MAC1 10.6.50.56 <=> 0:50:56:93:4:88 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Engineering and Construction Department - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2014-04-25 - _date_changed 2017-05-02 - contacts Gary Brancato - _contacts garyb@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name fac101w - alias fac101w.Princeton.EDU - address 10.6.49.214 - _IP_MAC1 10.6.49.214 <=> 0:50:56:0:5a:27 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Security and Access - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2011-05-06 - _date_changed 2016-11-22 - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams - _contacts tuccillo@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name fac102w - alias fac102w.Princeton.EDU - address 10.6.49.177 - use Windows Dev/QA 151 PrivateDMZ - contacts tuccillo -} - - -define host { - host_name fac103w-gisqa - alias fac103w-gisqa.Princeton.EDU - _alias1 gisqa - address 10.6.48.189 - _IP_MAC1 10.6.48.189 <=> 0:50:56:93:57:8f - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Facilities Finance and Administrative Services - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2015-04-27 - _date_changed 2018-03-23 - contacts Dawn F. McCall, Matthew L. Woodmansee - _contacts dmccall@princeton.edu, mw20@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name fac103wsaltots - alias fac103wsaltots.Princeton.EDU - address 10.6.49.138 - use Windows Dev/QA 151 PrivateDMZ - contacts Mark R. Williams -} - - -define host { - host_name fac107w-afqa - alias fac107w-afqa.Princeton.EDU - address 10.6.50.114 - _IP_MAC1 10.6.50.114 <=> 0:50:56:93:2f:5b - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Facilities Finance and Administrative Services - _building New South - _room MR, VM - - _date_created 2013-06-10 - _date_changed 2017-10-10 - contacts Mark Lewis, Matthew L. Woodmansee - _contacts cl3@princeton.edu, winmail@princeton.edu - use Windows Dev/QA NS PrivateDMZ -} - - -define host { - host_name fac108w-awqa - alias fac108w-awqa.Princeton.EDU - _alias1 tigerspaceqa - address 10.6.50.115 - _IP_MAC1 10.6.50.115 <=> 0:50:56:93:2f:5a - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Facilities Finance and Administrative Services - _building 151 Forrestal Rd. - _room MR, VM - - _date_created 2013-06-10 - _date_changed 2017-10-10 - contacts Mark Lewis, Matthew L. Woodmansee - _contacts cl3@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name fac111w - alias fac111w.Princeton.EDU - address 140.180.220.33 - _IP_MAC1 140.180.220.33 <=> 0:50:56:93:d0:f3 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2018-01-08 - _date_changed 2018-01-08 - contacts Michael Zhong - _contacts mzhong@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PublicDMZ -} - - -define host { - host_name fac112w - alias fac112w.Princeton.EDU - address 140.180.220.63 - _IP_MAC1 140.180.220.63 <=> 0:50:56:93:2f:ca - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2018-01-11 - _date_changed 2018-01-11 - contacts Michael Zhong - _contacts mzhong@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PublicDMZ -} - - -define host { - host_name fac113w - alias fac113w.Princeton.EDU - _alias1 ifacilitiesqa - address 140.180.221.33 - _IP_MAC1 140.180.221.33 <=> 0:50:56:93:1d:ae - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2018-01-12 - _date_changed 2018-03-19 - contacts Michael Zhong - _contacts mzhong@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PublicDMZ -} - - -define host { - host_name fac114w - alias fac114w.Princeton.EDU - address 140.180.221.73 - _IP_MAC1 140.180.221.73 <=> 0:50:56:93:6f:46 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2018-01-19 - _date_changed 2018-01-19 - contacts Michael Zhong - _contacts mzhong@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PublicDMZ -} - - -define host { - host_name fac115w - alias fac115w.Princeton.EDU - address 140.180.220.217 - use Windows Dev/QA 151 PublicDMZ - contacts slmgeo -} - - -define host { - host_name fac115w-x100 - alias fac115w-x100.Princeton.EDU - address 10.6.49.59 - _IP_MAC1 10.6.49.59 <=> 0:50:56:93:2e:2 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Facilities Finance and Administrative Services - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2016-01-11 - _date_changed 2017-10-24 - contacts Quoc B. Nguyen - _contacts quoc@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name fac303w-esridev - alias fac303w-esridev.Princeton.EDU - address 10.6.48.142 - _IP_MAC1 10.6.48.142 <=> 0:50:56:93:9:cd - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Facilities Finance and Administrative Services - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2015-02-10 - _date_changed 2016-07-28 - contacts Matthew L. Woodmansee - _contacts mw20@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name fac303w-gisdev - alias fac303w-gisdev.Princeton.EDU - address 10.6.51.22 - _IP_MAC1 10.6.51.22 <=> 0:50:56:93:c7:b9 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2018-01-26 - _date_changed 2018-01-26 - contacts Matthew L. Woodmansee - _contacts mw20@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name fac307w-afdev - alias fac307w-afdev.Princeton.EDU - address 10.6.50.118 - _IP_MAC1 10.6.50.118 <=> 0:50:56:93:2f:57 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Facilities Finance and Administrative Services - _building New South - _room MR, VM - - _date_created 2013-06-10 - _date_changed 2017-10-10 - contacts Mark Lewis, Matthew L. Woodmansee - _contacts cl3@princeton.edu, winmail@princeton.edu - use Windows Dev/QA NS PrivateDMZ -} - - -define host { - host_name fac308w-awdev - alias fac308w-awdev.Princeton.EDU - _alias1 tigerspacedev - address 10.6.50.119 - _IP_MAC1 10.6.50.119 <=> 0:50:56:93:2f:56 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Facilities Finance and Administrative Services - _building New South - _room MR, VM - - _date_created 2013-06-10 - _date_changed 2017-10-10 - contacts Mark Lewis, Matthew L. Woodmansee - _contacts cl3@princeton.edu, winmail@princeton.edu - use Windows Dev/QA NS PrivateDMZ -} - - -define host { - host_name fac309wsaltodev - alias fac309wsaltodev.Princeton.EDU - address 10.6.49.2 - _IP_MAC1 10.6.49.2 <=> 0:50:56:93:63:db - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Site Protection - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2015-10-12 - _date_changed 2016-08-19 - contacts Facilities NT Administrator - _contacts facntadm@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name fac312w - alias fac312w.Princeton.EDU - address 140.180.221.66 - _IP_MAC1 140.180.221.66 <=> 0:50:56:93:d6:4d - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2017-11-10 - _date_changed 2017-11-10 - contacts Michael Zhong - _contacts mzhong@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PublicDMZ -} - - -define host { - host_name fac313w - alias fac313w.Princeton.EDU - address 140.180.220.62 - _IP_MAC1 140.180.220.62 <=> 0:50:56:93:81:30 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2018-01-11 - _date_changed 2018-01-11 - contacts Michael Zhong - _contacts mzhong@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PublicDMZ -} - - -define host { - host_name fac314w - alias fac314w.Princeton.EDU - address 10.6.51.113 - use Windows Dev/QA 151 PrivateDMZ - contacts slmgeo -} - - -define host { - host_name facsaltodb100w - alias facsaltodb100w.Princeton.EDU - address 10.6.52.126 - use Windows Dev/QA 151 Trust - contacts DBA Important List -} - - -define host { - host_name facsaltodb101w - alias facsaltodb101w.Princeton.EDU - address 10.6.53.130 - use Windows Dev/QA 151 Trust - contacts DBA Important List -} - - -define host { - host_name maximosourceqa - alias maximosourceqa.Princeton.EDU - address 10.6.48.123 - _IP_MAC1 10.6.48.123 <=> 0:50:56:93:4c:4e - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Facilities Finance and Administrative Services - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2014-12-15 - _date_changed 2014-12-15 - contact_groups Maximo - _contacts mzhong@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name fac-anaqua1 - alias fac-anaqua1.Princeton.EDU - address 10.6.49.122 - _IP_MAC1 10.6.49.122 <=> 0:50:56:93:39:75 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2016-07-12 - _date_changed 2016-08-19 - contacts Facilities NT Administrator - _contacts facntadm@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name fac-evnts2hv200 - alias fac-evnts2hv200.Princeton.EDU - address 10.6.50.1 - _IP_MAC1 10.6.50.1 <=> 0:50:56:93:b7:4c - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2017-03-07 - _date_changed 2017-04-06 - contacts Adam C. Boltz, FACJZADM, facmcadm - _contacts aboltz@princeton.edu, facjzadm@princeton.edu, facmcadm@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name fac-goshin200w - alias fac-goshin200w.Princeton.EDU - address 10.6.50.123 - _IP_MAC1 10.6.50.123 <=> 0:50:56:93:8:63 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2017-06-08 - _date_changed 2017-11-03 - contacts FACJZADM, James D. Kane, Jeffrey M. Zodda - _contacts facjzadm@princeton.edu, jkane@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name fac-infoctr1 - alias fac-infoctr1.Princeton.EDU - address 10.6.50.197 - _IP_MAC1 10.6.50.197 <=> b8:ca:3a:5d:d6:78 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Engineering and Construction Department - _building New South - _room MR,RK,C-01 - _date_created 2013-06-05 - _date_changed 2017-09-26 - contacts Gary Brancato - _contacts garyb@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name fac-infoctr3 - alias fac-infoctr3.Princeton.EDU - address 10.6.48.163 - _IP_MAC1 10.6.48.163 <=> 0:50:56:93:7d:d8 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Engineering and Construction Department - _building New South - _room MR, VM, - - _date_created 2015-03-13 - _date_changed 2016-07-28 - contacts Gary Brancato - _contacts garyb@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name fac-keys200w - alias fac-keys200w.Princeton.EDU - address 10.6.50.188 - _IP_MAC1 10.6.50.188 <=> 0:50:56:93:18:b3 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2017-07-26 - _date_changed 2017-09-13 - contacts FACJZADM, Facilities NT Administrator - _contacts facjzadm@princeton.edu, facntadm@princeton.edu, winmail@princeton.edu - use Windows Dev/QA NS PrivateDMZ -} - - -define host { - host_name fac-larprime - alias fac-larprime.Princeton.EDU - address 10.6.48.162 - _IP_MAC1 10.6.48.162 <=> 0:50:56:93:10:fd - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Engineering and Construction Department - _building New South - _room MR, VM, - - _date_created 2015-03-13 - _date_changed 2016-07-28 - contacts Gary Brancato - _contacts garyb@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name fac-lssxibo - alias fac-lssxibo.Princeton.EDU - address 10.6.50.249 - _IP_MAC1 10.6.50.249 <=> 0:50:56:93:8:c - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Security and Access - _building New South - _room MR, VM, - - _date_created 2014-04-15 - _date_changed 2017-11-03 - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams - _contacts tuccillo@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name fac-lumewave200 - alias fac-lumewave200.Princeton.EDU - address 10.6.49.178 - _IP_MAC1 10.6.49.178 <=> 0:50:56:93:a5:76 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2017-04-26 - _date_changed 2017-04-26 - contacts Jeffrey M. Zodda - _contacts jzodda@princeton.edu, winmail@princeton.edu - use Windows Dev/QA NS PrivateDMZ -} - - -define host { - host_name fac-lutlarsprd - alias fac-lutlarsprd.Princeton.EDU - address 10.6.48.86 - _IP_MAC1 10.6.48.86 <=> 0:50:56:93:30:de - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2017-01-09 - _date_changed 2017-01-09 - contacts Jeffrey M. Zodda - _contacts jzodda@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name fac-lutronprod - alias fac-lutronprod.Princeton.EDU - address 10.6.50.28 - _IP_MAC1 10.6.50.28 <=> 0:50:56:93:5:3a - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Engineering and Construction Department - _building New South - _room MR, VM - - _date_created 2013-10-28 - _date_changed 2017-03-21 - contacts Arthur T. Murphy - _contacts amurphy@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name fac-lutronprod2 - alias fac-lutronprod2.Princeton.EDU - address 10.6.50.29 - _IP_MAC1 10.6.50.29 <=> 0:50:56:93:4:a0 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Engineering and Construction Department - _building New South - _room MR, VM, - - _date_created 2014-05-08 - _date_changed 2017-03-21 - contacts Arthur T. Murphy - _contacts amurphy@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name fac-palm3 - alias fac-palm3.Princeton.EDU - address 10.6.49.69 - _IP_MAC1 10.6.49.69 <=> 0:50:56:93:28:93 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Facilities Finance and Administrative Services - _building New South - _room MR, VM, - - _date_created 2016-03-21 - _date_changed 2017-12-14 - contacts FACJZADM, Jeffrey M. Zodda - _contacts facjzadm@princeton.edu, jzodda@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name fac-rds-200w - alias fac-rds-200w.Princeton.EDU - _alias1 facrds200w - address 10.6.48.154 - _IP_MAC1 10.6.48.154 <=> 0:50:56:93:5e:3e - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Engineering and Construction Department - _building New South - _room MR, VM, - - _date_created 2011-08-04 - _date_changed 2015-02-24 - notification_period Except 11:55-12:10 - contacts Gary Brancato - _contacts garyb@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name fac-rds-201w - alias fac-rds-201w.Princeton.EDU - address 10.6.48.143 - _IP_MAC1 10.6.48.143 <=> 0:50:56:93:5a:9d - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Engineering and Construction Department - _building New South - _room MR, VM, - - _date_created 2015-01-26 - _date_changed 2016-07-28 - notification_period Except 11:55-12:10 - contacts Gary Brancato - _contacts garyb@princeton.edu, winmail@princeton.edu - use Windows Production -} - - -define host { - host_name fac-spcacfdb207 - alias fac-spcacfdb207.Princeton.EDU - address 10.6.49.93 - _IP_MAC1 10.6.49.93 <=> 0:50:56:93:16:f6 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Site Protection - _building New South - _room MR, VM, - - _date_created 2016-04-13 - _date_changed 2016-07-28 - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams - _contacts tuccillo@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name fac-spcacs204w - alias fac-spcacs204w.Princeton.EDU - address 10.6.49.94 - _IP_MAC1 10.6.49.94 <=> 0:50:56:93:49:c8 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Site Protection - _building New South - _room MR, VM, - - _date_created 2016-04-13 - _date_changed 2016-07-28 - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams - _contacts tuccillo@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name fac-spcacsdb205 - alias fac-spcacsdb205.Princeton.EDU - address 10.6.49.95 - _IP_MAC1 10.6.49.95 <=> 0:50:56:93:7:10 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Site Protection - _building New South - _room MR, VM, - - _date_created 2016-04-13 - _date_changed 2016-07-28 - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams - _contacts tuccillo@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name fac-spcacsf206w - alias fac-spcacsf206w.Princeton.EDU - address 10.6.49.96 - _IP_MAC1 10.6.49.96 <=> 0:50:56:93:6:ac - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Site Protection - _building New South - _room MR, VM, - - _date_created 2016-04-13 - _date_changed 2016-07-28 - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams - _contacts tuccillo@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name fac-spcacsha210 - alias fac-spcacsha210.Princeton.EDU - address 10.6.50.111 - use Windows Dev/QA NS PrivateDMZ - contacts Edith M. Rzomp -} - - -define host { - host_name fac-spcacsts208 - alias fac-spcacsts208.Princeton.EDU - address 10.6.49.97 - _IP_MAC1 10.6.49.97 <=> 0:50:56:93:1b:40 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Site Protection - _building New South - _room MR, VM, - - _date_created 2016-04-13 - _date_changed 2016-07-28 - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams - _contacts tuccillo@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name fac-spcacsts209 - alias fac-spcacsts209.Princeton.EDU - address 10.6.49.159 - use Windows Production 151 PrivateDMZ - contacts DBA Important List -} - - -define host { - host_name fac-spreports - alias fac-spreports.Princeton.EDU - address 10.6.50.37 - _IP_MAC1 10.6.50.37 <=> 0:50:56:93:97:f1 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2017-03-31 - _date_changed 2017-03-31 - contacts Edith M. Rzomp - _contacts erzomp@princeton.edu, winmail@princeton.edu - use Windows Dev/QA NS PrivateDMZ -} - - -define host { - host_name fac-stprosvcs - alias fac-stprosvcs.Princeton.EDU - address 10.6.50.250 - _IP_MAC1 10.6.50.250 <=> 0:50:56:93:4:a3 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Security and Access - _building New South - _room MR, VM, - - _date_created 2014-05-13 - _date_changed 2017-11-03 - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams - _contacts tuccillo@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name fac-termsvr1 - alias fac-termsvr1.Princeton.EDU - address 10.6.49.44 - _IP_MAC1 10.6.49.44 <=> 0:50:56:93:57:ef - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Facilities Finance and Administrative Services - _building New South - _room MR, VM, - - _date_created 2016-03-21 - _date_changed 2017-12-21 - contacts FACJZADM, Jeffrey M. Zodda - _contacts facjzadm@princeton.edu, jzodda@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name fac-trimble - alias fac-trimble.Princeton.EDU - address 10.6.48.54 - _IP_MAC1 10.6.48.54 <=> 0:50:56:93:26:f4 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Facilities Finance and Administrative Services - _building New South - _room MR, VM, - - _date_created 2014-07-02 - _date_changed 2018-03-23 - contacts Dawn F. McCall, Matthew L. Woodmansee - _contacts dmccall@princeton.edu, mw20@princeton.edu, winmail@princeton.edu - use Windows Production -} - - -define host { - host_name fac-willo3-200w - alias fac-willo3-200w.Princeton.EDU - address 10.6.51.23 - _IP_MAC1 10.6.51.23 <=> 0:50:56:93:7f:ae - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2017-12-08 - _date_changed 2017-12-08 - contact_groups Maximo - _contacts mzhong@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name fac-willow2 - alias fac-willow2.Princeton.EDU - address 10.6.48.212 - _IP_MAC1 10.6.48.212 <=> 0:50:56:93:3f:6d - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Facilities Finance and Administrative Services - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2015-07-01 - _date_changed 2017-12-14 - contacts FACJZADM, Jeffrey M. Zodda, facmcadm - _contacts facjzadm@princeton.edu, facmcadm@princeton.edu, jzodda@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name fac201w - alias fac201w.Princeton.EDU - address 10.6.50.248 - _IP_MAC1 10.6.50.248 <=> 0:50:56:0:5b:27 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Security and Access - _building New South - _room MR, VM, - - _date_created 2011-05-06 - _date_changed 2017-11-03 - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams - _contacts tuccillo@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name fac202w - alias fac202w.Princeton.EDU - address 10.6.51.85 - use Windows Dev/QA NS PrivateDMZ - contacts Mark R. Williams -} - - -define host { - host_name fac203-publish - alias fac203-publish.Princeton.EDU - address 10.6.49.67 - _IP_MAC1 10.6.49.67 <=> 0:50:56:93:66:70 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Facilities Finance and Administrative Services - _building New South - _room MR, VM, - - _date_created 2016-03-21 - _date_changed 2018-03-23 - contacts Dawn F. McCall, Matthew L. Woodmansee - _contacts dmccall@princeton.edu, mw20@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name fac203w-gisprod - alias fac203w-gisprod.Princeton.EDU - _alias1 gis - address 140.180.220.131 - _IP_MAC1 140.180.220.131 <=> 0:50:56:93:70:73 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Facilities Finance and Administrative Services - _building New South - _room MR, VM, - - _date_created 2015-04-27 - _date_changed 2017-11-29 - contacts Dawn F. McCall, Matthew L. Woodmansee - _contacts dmccall@princeton.edu, mw20@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name fac206wsaltots - alias fac206wsaltots.Princeton.EDU - address 10.6.49.254 - use Windows Dev/QA NS PrivateDMZ - contacts tuccillo -} - - -define host { - host_name fac207w - alias fac207w.Princeton.EDU - address 10.6.50.162 - _IP_MAC1 10.6.50.162 <=> 0:50:56:93:50:a5 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Facilities Finance and Administrative Services - _building New South - _room MR, VM - - _date_created 2013-02-04 - _date_changed 2017-07-17 - contacts Jeffrey M. Zodda - _contacts jzodda@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name fac207wsaltojs - alias fac207wsaltojs.Princeton.EDU - address 10.6.51.102 - use Windows Dev/QA NS PrivateDMZ - contacts markrw -} - - -define host { - host_name fac208w-afprod - alias fac208w-afprod.Princeton.EDU - address 10.6.50.139 - _IP_MAC1 10.6.50.139 <=> 0:50:56:93:2f:59 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Facilities Finance and Administrative Services - _building 151 Forrestal Rd. - _room MR, VM - - _date_created 2013-06-10 - _date_changed 2017-10-10 - contacts Mark Lewis, Matthew L. Woodmansee - _contacts cl3@princeton.edu, winmail@princeton.edu - use Windows Production 151 PrivateDMZ -} - - -define host { - host_name fac209w-awprod - alias fac209w-awprod.Princeton.EDU - _alias1 tigerspace - address 140.180.220.254 - _IP_MAC1 140.180.220.254 <=> 0:50:56:93:2f:58 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Facilities Finance and Administrative Services - _building 151 Forrestal Rd. - _room MR, VM - - _date_created 2013-06-10 - _date_changed 2017-10-10 - contacts Mark Lewis, Matthew L. Woodmansee - _contacts cl3@princeton.edu, winmail@princeton.edu - use Windows Production 151 PublicDMZ -} - - -define host { - host_name fac211w - alias fac211w.Princeton.EDU - _alias1 maximo - address 140.180.220.166 - _IP_MAC1 140.180.220.166 <=> 0:50:56:93:2c:ce - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2018-02-14 - _date_changed 2018-04-10 - contact_groups Maximo - contacts Robert J. Kuhn - _contacts mzhong@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name fac212w - alias fac212w.Princeton.EDU - _alias1 ezmaxmobile - address 140.180.221.39 - _IP_MAC1 140.180.221.39 <=> 0:50:56:93:90:3f - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2018-02-20 - _date_changed 2018-04-10 - contact_groups Maximo - contacts Robert J. Kuhn - _contacts mzhong@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name fac213w - alias fac213w.Princeton.EDU - _alias1 ifacilities - address 140.180.221.37 - _IP_MAC1 140.180.221.37 <=> 0:50:56:93:3:53 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2018-02-14 - _date_changed 2018-04-10 - contact_groups Maximo - contacts Robert J. Kuhn - _contacts mzhong@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name fac214w-centric - alias fac214w-centric.Princeton.EDU - _alias1 pcs - _alias2 facnet - address 140.180.220.89 - _IP_MAC1 140.180.220.89 <=> 0:50:56:93:77:68 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Facilities Finance and Administrative Services - _building New South - _room MR, VM, - - _date_created 2014-10-08 - _date_changed 2016-07-28 - contacts Matthew L. Woodmansee - _contacts mw20@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name fac214w - alias fac214w.Princeton.EDU - address 140.180.221.38 - _IP_MAC1 140.180.221.38 <=> 0:50:56:93:be:fa - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2018-02-14 - _date_changed 2018-02-14 - contact_groups Maximo - _contacts mzhong@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name fac215w - alias fac215w.Princeton.EDU - address 140.180.220.218 - use Windows Dev/QA NS PublicDMZ - contacts slmgeo -} - - -define host { - host_name fac216w-xibo - alias fac216w-xibo.Princeton.EDU - address 10.6.48.93 - _IP_MAC1 10.6.48.93 <=> 0:50:56:93:46:ec - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Facilities Finance and Administrative Services - _building New South - _room MR, VM, - - _date_created 2015-02-18 - _date_changed 2017-12-14 - contacts FACJZADM - _contacts facjzadm@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name fac219w-tsw - alias fac219w-tsw.Princeton.EDU - address 10.6.48.202 - _IP_MAC1 10.6.48.202 <=> 0:50:56:93:60:59 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Site Protection - _building New South - _room MR, VM, - - _date_created 2015-05-28 - _date_changed 2017-12-18 - contacts Alex J. Trosko, Facilities NT Administrator - _contacts ajtrosko@princeton.edu, facntadm@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name fac221w-acad - alias fac221w-acad.Princeton.EDU - address 10.6.48.245 - _IP_MAC1 10.6.48.245 <=> 0:50:56:93:4b:47 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Facilities Finance and Administrative Services - _building New South - _room MR, VM, - - _date_created 2015-09-22 - _date_changed 2016-07-28 - contacts Matthew L. Woodmansee - _contacts mw20@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name fac222w-acad - alias fac222w-acad.Princeton.EDU - address 10.6.51.114 - use Windows Dev/QA NS PrivateDMZ - contacts Viviane Bassily -} - - -define host { - host_name fac223w-jadwin - alias fac223w-jadwin.Princeton.EDU - address 10.6.49.46 - _IP_MAC1 10.6.49.46 <=> 0:50:56:93:4b:61 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Engineering and Construction Department - _building New South - _room MR, VM, - - _date_created 2015-11-24 - _date_changed 2017-06-16 - contacts Arthur T. Murphy - _contacts amurphy@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name fac223w-x200 - alias fac223w-x200.Princeton.EDU - address 10.6.49.60 - _IP_MAC1 10.6.49.60 <=> 0:50:56:93:5f:57 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Facilities Finance and Administrative Services - _building New South - _room MR, VM, - - _date_created 2016-01-11 - _date_changed 2018-01-12 - contacts Mark Lewis - _contacts cl3@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name fac224w-tcam - alias fac224w-tcam.Princeton.EDU - address 10.6.48.239 - _IP_MAC1 10.6.48.239 <=> 0:50:56:93:13:29 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Office of the University Architect - _building New South - _room MR, VM, - - _date_created 2016-04-05 - _date_changed 2017-12-14 - contacts FACJZADM, Joshua E. Linkov - _contacts facjzadm@princeton.edu, jlinkov@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name fac225w-tcam - alias fac225w-tcam.Princeton.EDU - address 10.6.48.236 - _IP_MAC1 10.6.48.236 <=> 0:50:56:93:4e:e6 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Office of the University Architect - _building New South - _room MR, VM, - - _date_created 2016-04-05 - _date_changed 2017-12-14 - contacts FACJZADM, Joshua E. Linkov - _contacts facjzadm@princeton.edu, jlinkov@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name fac226-olive - alias fac226-olive.Princeton.EDU - address 140.180.220.141 - _IP_MAC1 140.180.220.141 <=> 0:50:56:93:46:50 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2016-07-19 - _date_changed 2017-06-02 - contacts FACJZADM, Facilities NT Administrator, facmcadm - _contacts facjzadm@princeton.edu, facmcadm@princeton.edu, facntadm@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name fac230w-led - alias fac230w-led.Princeton.EDU - address 10.6.49.166 - _IP_MAC1 10.6.49.166 <=> 0:50:56:93:6e:b7 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2016-07-22 - _date_changed 2016-08-19 - contacts Facilities NT Administrator - _contacts facntadm@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name facsaltodb200w - alias facsaltodb200w.Princeton.EDU - address 10.6.53.190 - use Windows Dev/QA NS Trust - contacts DBA Important List -} - - -define host { - host_name facsaltodb201w - alias facsaltodb201w.Princeton.EDU - address 10.6.53.191 - use Windows Dev/QA NS Trust - contacts DBA Important List -} - - -define host { - host_name lar-watchdog2 - alias lar-watchdog2.Princeton.EDU - address 140.180.220.120 - _IP_MAC1 140.180.220.120 <=> 0:50:56:93:1a:e4 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Research Resources - _building New South - _room MR, VM, - - _date_created 2016-04-28 - _date_changed 2016-04-28 - contacts Alvin A. Daniel - _contacts alvind@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name maximo1 - alias maximo1.Princeton.EDU - address 140.180.221.68 - _IP_MAC1 140.180.221.68 <=> 0:50:56:0:71:27 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Facilities Finance and Administrative Services - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2011-08-03 - _date_changed 2018-04-10 - contact_groups Maximo - _contacts mzhong@princeton.edu, winmail@princeton.edu - use Windows Production 151 PublicDMZ -} - - -define host { - host_name maximo2 - alias maximo2.Princeton.EDU - address 140.180.221.69 - _IP_MAC1 140.180.221.69 <=> 0:50:56:0:72:27 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Facilities Finance and Administrative Services - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2011-08-03 - _date_changed 2018-04-10 - contact_groups Maximo - _contacts mzhong@princeton.edu, winmail@princeton.edu - use Windows Production 151 PublicDMZ -} - - -define host { - host_name maximo3 - alias maximo3.Princeton.EDU - address 140.180.221.70 - _IP_MAC1 140.180.221.70 <=> 0:50:56:93:0:51 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Facilities Finance and Administrative Services - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2012-08-31 - _date_changed 2018-04-10 - contact_groups Maximo - _contacts mzhong@princeton.edu, winmail@princeton.edu - use Windows Production 151 PublicDMZ -} - - - - - - -define host { - host_name fin103w - alias fin103w.Princeton.EDU - address 140.180.220.80 - contacts George R. Fleming Jr. - _contacts fleming@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PublicDMZ -} - - -define host { - host_name fin302w - alias fin302w.Princeton.EDU - address 10.6.50.129 - contacts Erik D. Johnston - _contacts erik@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name fincopiers100w - alias fincopiers100w.Princeton.EDU - _alias1 printcanonqa - address 10.6.48.155 - contacts Erik D. Johnston - _contacts erik@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - -define host { - host_name fint300w - alias fint300w.Princeton.EDU - address 10.6.49.183 - use Windows Dev/QA 151 PrivateDMZ - contacts kkaushik -} - - -define host { - host_name fint301w - alias fint301w.Princeton.EDU - address 10.6.49.231 - use Windows Dev/QA 151 PrivateDMZ - contacts kkaushik -} - - -define host { - host_name fint302w - alias fint302w.Princeton.EDU - address 10.6.49.234 - use Windows Dev/QA 151 PrivateDMZ - contacts kkaushik -} - - -define host { - host_name fint303w - alias fint303w.Princeton.EDU - address 10.6.51.95 - use Windows Dev/QA 151 PrivateDMZ - contacts kkaushik -} - - - -define host { - host_name fin203w - alias fin203w.Princeton.EDU - _alias1 creditrelease - _alias2 driverlist - address 140.180.220.81 - contacts George R. Fleming Jr. - _contacts fleming@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name fincopiers200w - alias fincopiers200w.Princeton.EDU - _alias1 printcanon - address 10.6.49.174 - contacts Erik D. Johnston - _contacts erik@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name iamcaproxy100l - alias iamcaproxy100l.Princeton.EDU - address 10.6.48.61 - use UNIX Dev/QA 151 PrivateDMZ - contacts iam -} - - -define host { - host_name iamcas300l - alias iamcas300l.Princeton.EDU - _alias1 authdev-a - address 10.6.55.63 - _IP_MAC1 10.6.55.63 <=> 0:50:56:93:92:a4 - _SUBNET1 lb-servernet-4 (EISFW - VLAN 4072 - .55) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2017-07-11 - _date_changed 2017-12-12 - contacts Identity and Access Management - _contacts iam@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 EISFW -} - - -define host { - host_name iamcas301l - alias iamcas301l.Princeton.EDU - _alias1 authdev-b - address 10.6.55.67 - _IP_MAC1 10.6.55.67 <=> 0:50:56:93:21:6 - _SUBNET1 lb-servernet-4 (EISFW - VLAN 4072 - .55) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2017-07-19 - _date_changed 2017-12-12 - contacts Identity and Access Management - _contacts iam@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 EISFW -} - - -define host { - host_name iamcas102l.aws - alias iamcas102l.aws.Princeton.EDU - address 10.21.1.96 - use UNIX Dev/QA AWS Untrust - contacts iam -} - - -define host { - host_name iamcas103l.aws - alias iamcas103l.aws.Princeton.EDU - address 10.21.1.218 - use UNIX Dev/QA AWS Untrust - contacts iam -} - - -define host { - host_name iamprox100l - alias iamprox100l.Princeton.EDU - address 10.6.56.39 - _IP_MAC1 10.6.56.39 <=> 0:50:56:93:b:16 - _SUBNET1 lb-servernet-5 (EISFW - VLAN 4073 - .56) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2016-04-01 - _date_changed 2016-04-01 - contacts Identity and Access Management - _contacts iam@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 EISFW -} - - -define host { - host_name iamprox101l - alias iamprox101l.Princeton.EDU - address 10.6.56.40 - _IP_MAC1 10.6.56.40 <=> 0:50:56:93:62:a0 - _SUBNET1 lb-servernet-5 (EISFW - VLAN 4073 - .56) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2016-04-01 - _date_changed 2016-04-01 - contacts Identity and Access Management - _contacts iam@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 EISFW -} - - -define host { - host_name iamprox102l - alias iamprox102l.Princeton.EDU - address 10.6.56.41 - _IP_MAC1 10.6.56.41 <=> 0:50:56:93:2d:b0 - _SUBNET1 lb-servernet-5 (EISFW - VLAN 4073 - .56) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2016-04-01 - _date_changed 2016-04-01 - contacts Identity and Access Management - _contacts iam@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 EISFW -} - - -define host { - host_name iamprox103l - alias iamprox103l.Princeton.EDU - address 10.6.56.48 - _IP_MAC1 10.6.56.48 <=> 0:50:56:93:75:fd - _SUBNET1 lb-servernet-5 (EISFW - VLAN 4073 - .56) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2017-11-21 - _date_changed 2017-11-21 - contacts Identity and Access Management, Simon C. Lee - _contacts simonlee@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 EISFW -} - - -define host { - host_name iamprox300l - alias iamprox300l.Princeton.EDU - address 10.6.56.37 - _IP_MAC1 10.6.56.37 <=> 0:50:56:93:1f:e - _SUBNET1 lb-servernet-5 (EISFW - VLAN 4073 - .56) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2016-02-15 - _date_changed 2016-02-15 - contacts Identity and Access Management - _contacts iam@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 EISFW -} - - -define host { - host_name iamprox301l - alias iamprox301l.Princeton.EDU - address 10.6.56.38 - _IP_MAC1 10.6.56.38 <=> 0:50:56:93:44:c9 - _SUBNET1 lb-servernet-5 (EISFW - VLAN 4073 - .56) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2016-03-14 - _date_changed 2016-03-14 - contacts Identity and Access Management - _contacts iam@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 EISFW -} - - -define host { - host_name iamroxen300l - alias iamroxen300l.Princeton.EDU - address 10.6.48.79 - _IP_MAC1 10.6.48.79 <=> 0:50:56:93:49:42 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2016-04-11 - _date_changed 2016-10-31 - contacts CISDR Group of EIS, Identity and Access Management, John Wagner - _contacts csg@princeton.edu, iam@princeton.edu, jwagner@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name iamroxen301l - alias iamroxen301l.Princeton.EDU - address 10.6.62.178 - _IP_MAC1 10.6.62.178 <=> 0:50:56:93:79:9f - _SUBNET1 lb-servernet-2 (Untrust - VLAN 1045 - .62) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2016-04-11 - _date_changed 2016-05-20 - contacts CISDR Group of EIS, Identity and Access Management, John Wagner - _contacts csg@princeton.edu, iam@princeton.edu, jwagner@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 Untrust -} - - -define host { - host_name iamshib303l - alias iamshib303l.Princeton.EDU - address 140.180.221.43 - _IP_MAC1 140.180.221.43 <=> 0:50:56:93:7e:a - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room mr, vm, - - _date_created 2017-09-01 - _date_changed 2018-03-17 - contacts Identity and Access Management, John Wagner - _contacts jwagner@princeton.edu, unix@princeton.edu - use UNIX Dev/QA NS PublicDMZ -} - - -define host { - host_name iamweb300l - alias iamweb300l.Princeton.EDU - address 10.6.48.55 - use UNIX Dev/QA 151 Untrust - contacts Software Infrastructure Services -} - - -define host { - host_name iamxythos100l - alias iamxythos100l.Princeton.EDU - address 10.6.54.51 - _IP_MAC1 10.6.54.51 <=> 0:50:56:93:13:f2 - _SUBNET1 lb-servernet-3 (EISFW - VLAN 4071 - .54) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2016-08-09 - _date_changed 2016-09-08 - contacts Identity and Access Management - _contacts iam@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 EISFW -} - - -define host { - host_name iamxythos101l - alias iamxythos101l.Princeton.EDU - address 10.6.54.52 - _IP_MAC1 10.6.54.52 <=> 0:50:56:93:1f:29 - _SUBNET1 lb-servernet-3 (EISFW - VLAN 4071 - .54) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2016-08-09 - _date_changed 2016-09-08 - contacts Identity and Access Management - _contacts iam@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 EISFW -} - - -define host { - host_name iamxythos300l - alias iamxythos300l.Princeton.EDU - address 10.6.54.55 - _IP_MAC1 10.6.54.55 <=> 0:50:56:93:18:c4 - _SUBNET1 lb-servernet-3 (EISFW - VLAN 4071 - .54) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2016-08-09 - _date_changed 2016-09-08 - contacts Identity and Access Management - _contacts iam@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 EISFW -} - - -define host { - host_name iamxythos301l - alias iamxythos301l.Princeton.EDU - address 10.6.54.56 - _IP_MAC1 10.6.54.56 <=> 0:50:56:93:5e:e - _SUBNET1 lb-servernet-3 (EISFW - VLAN 4071 - .54) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2016-08-09 - _date_changed 2016-09-08 - contacts Identity and Access Management - _contacts iam@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 EISFW -} - - -define host { - host_name iamcas202l.aws - alias iamcas202l.aws.Princeton.EDU - address 10.21.1.89 - use UNIX Dev/QA AWS Untrust - contacts iam -} - - -define host { - host_name iamcas203l.aws - alias iamcas203l.aws.Princeton.EDU - address 10.21.1.192 - use UNIX Dev/QA AWS Untrust - contacts iam -} - - -define host { - host_name iamprox200l - alias iamprox200l.Princeton.EDU - address 10.6.56.42 - contacts Identity and Access Management - _contacts iam@princeton.edu, unix@princeton.edu - use UNIX Production NS EISFW -} - - -define host { - host_name iamprox201l - alias iamprox201l.Princeton.EDU - address 10.6.56.43 - contacts Identity and Access Management - _contacts iam@princeton.edu, unix@princeton.edu - use UNIX Production NS EISFW -} - - -define host { - host_name iamtools200l - alias iamtools200l.Princeton.EDU - _alias1 custodian - address 10.6.49.170 - contacts Identity and Access Management - _contacts iam@princeton.edu, unix@princeton.edu - use UNIX Production NS PrivateDMZ -} - - -define host { - host_name iamxythos200l - alias iamxythos200l.Princeton.EDU - address 10.6.54.53 - contacts CISDR Group of EIS - _contacts cisdr@princeton.edu, unix@princeton.edu - use UNIX Production NS EISFW -} - - -define host { - host_name iamxythos201l - alias iamxythos201l.Princeton.EDU - address 10.6.54.54 - contacts CISDR Group of EIS - _contacts cisdr@princeton.edu, unix@princeton.edu - use UNIX Production NS EISFW -} - - - -define host { - host_name iamadfs100w - alias iamadfs100w.Princeton.EDU - address 10.6.55.48 - _IP_MAC1 10.6.55.48 <=> 0:50:56:93:1d:41 - _SUBNET1 lb-servernet-4 (EISFW - VLAN 4072 - .55) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2015-10-23 - _date_changed 2015-10-30 - contacts Identity and Access Management - _contacts iam@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 EISFW -} - - -define host { - host_name iamadfs101w - alias iamadfs101w.Princeton.EDU - address 10.6.55.49 - _IP_MAC1 10.6.55.49 <=> 0:50:56:93:29:f6 - _SUBNET1 lb-servernet-4 (EISFW - VLAN 4072 - .55) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2015-10-23 - _date_changed 2015-10-30 - contacts Identity and Access Management - _contacts iam@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 EISFW -} - - -define host { - host_name iamadfs300w - alias iamadfs300w.Princeton.EDU - address 10.6.55.66 - _IP_MAC1 10.6.55.66 <=> 0:50:56:93:3b:da - _SUBNET1 lb-servernet-4 (EISFW - VLAN 4072 - .55) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room mr, vm, - - _date_created 2016-08-04 - _date_changed 2016-08-04 - contacts Identity and Access Management - _contacts iam@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 EISFW -} - - -define host { - host_name iamcacomp100w - alias iamcacomp100w.Princeton.EDU - address 10.6.48.39 - use Windows Dev/QA 151 PrivateDMZ - contacts iam -} - - -define host { - host_name iamdirsync100w - alias iamdirsync100w.Princeton.EDU - address 140.180.220.156 - _IP_MAC1 140.180.220.156 <=> 0:50:56:93:43:3e - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room mr, vm, - - _date_created 2016-09-15 - _date_changed 2016-09-15 - contacts John P. Sophy - _contacts jsophy@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PublicDMZ -} - - -define host { - host_name iamduo100w - alias iamduo100w.Princeton.EDU - address 10.6.55.18 - _IP_MAC1 10.6.55.18 <=> 0:50:56:93:68:4e - _SUBNET1 lb-servernet-4 (EISFW - VLAN 4072 - .55) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2015-08-07 - _date_changed 2016-09-12 - contacts Identity and Access Management - _contacts iam@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 EISFW -} - - -define host { - host_name iamduo101w - alias iamduo101w.Princeton.EDU - address 10.6.55.37 - _IP_MAC1 10.6.55.37 <=> 0:50:56:93:24:22 - _SUBNET1 lb-servernet-4 (EISFW - VLAN 4072 - .55) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2015-08-07 - _date_changed 2016-09-12 - contacts Identity and Access Management - _contacts iam@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 EISFW -} - - -define host { - host_name iamethos100w - alias iamethos100w.Princeton.EDU - address 10.6.55.71 - use Windows Dev/QA 151 EISFW - contacts iam -} - - -define host { - host_name iamethos101w - alias iamethos101w.Princeton.EDU - address 10.6.55.72 - use Windows Dev/QA 151 EISFW - contacts iam -} - - -define host { - host_name iamlds300w - alias iamlds300w.Princeton.EDU - address 140.180.221.94 - use Windows Dev/QA 151 PublicDMZ - contacts iam -} - - -define host { - host_name iamlds301w - alias iamlds301w.Princeton.EDU - address 140.180.221.95 - use Windows Dev/QA 151 PublicDMZ - contacts iam -} - - -define host { - host_name iamload100w - alias iamload100w.Princeton.EDU - address 10.6.51.58 - _IP_MAC1 10.6.51.58 <=> 0:50:56:93:85:b8 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2018-03-23 - _date_changed 2018-03-23 - contacts Identity and Access Management, Simon C. Lee - _contacts simonlee@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name iamload101w - alias iamload101w.Princeton.EDU - address 10.6.51.59 - _IP_MAC1 10.6.51.59 <=> 0:50:56:93:f6:39 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2018-03-23 - _date_changed 2018-03-23 - contacts Identity and Access Management, Simon C. Lee - _contacts simonlee@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name iammim100w - alias iammim100w.Princeton.EDU - address 10.6.52.161 - use Windows Dev/QA 151 Trust - contacts iam -} - - -define host { - host_name iammim300w - alias iammim300w.Princeton.EDU - address 10.6.51.65 - use Windows Dev/QA 151 PrivateDMZ - contacts iam -} - - - -define host { - host_name iammim301w - alias iammim301w.Princeton.EDU - address 10.6.53.95 - use Windows Dev/QA 151 Trust - contacts iam -} - - -define host { - host_name iammimdb101w - alias iammimdb101w.Princeton.EDU - address 10.6.52.162 - use Windows Dev/QA 151 Trust - contacts DBA Important List -} - - -define host { - host_name iammimdb102w - alias iammimdb102w.Princeton.EDU - address 10.6.52.167 - use Windows Dev/QA 151 Trust - contacts DBA Important List -} - - -define host { - host_name iammimdb301w - alias iammimdb301w.Princeton.EDU - address 10.6.53.240 - use Windows Dev/QA 151 Trust - contacts DBA Important List -} - - -define host { - host_name iammimweb100w - alias iammimweb100w.Princeton.EDU - address 10.6.51.104 - use Windows Dev/QA 151 PrivateDMZ - contacts iam -} - - -define host { - host_name iammimweb101w - alias iammimweb101w.Princeton.EDU - address 10.6.51.103 - use Windows Dev/QA 151 PrivateDMZ - contacts iam -} - - -define host { - host_name iammimweb300w - alias iammimweb300w.Princeton.EDU - address 10.6.57.21 - use Windows Dev/QA 151 Untrust - contacts iam -} - - -define host { - host_name iammimweb301w - alias iammimweb301w.Princeton.EDU - address 10.6.57.23 - use Windows Dev/QA 151 Untrust - contacts iam -} - - -define host { - host_name iamshib100w - alias iamshib100w.Princeton.EDU - address 10.6.54.44 - _IP_MAC1 10.6.54.44 <=> 0:50:56:93:76:d1 - _SUBNET1 lb-servernet-3 (EISFW - VLAN 4071 - .54) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2015-11-17 - _date_changed 2015-11-30 - contacts Identity and Access Management - _contacts iam@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 EISFW -} - - -define host { - host_name iamshib101w - alias iamshib101w.Princeton.EDU - address 10.6.54.41 - _IP_MAC1 10.6.54.41 <=> 0:50:56:93:32:95 - _SUBNET1 lb-servernet-3 (EISFW - VLAN 4071 - .54) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2015-11-17 - _date_changed 2015-11-24 - contacts Identity and Access Management - _contacts iam@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 EISFW -} - - -define host { - host_name iamshib102w.aws - alias iamshib102w.aws.Princeton.EDU - address 10.21.1.25 - use Windows Dev/QA AWS Untrust - contacts iam -} - - -define host { - host_name iamshib103w.aws - alias iamshib103w.aws.Princeton.EDU - address 10.21.1.179 - use Windows Dev/QA AWS Untrust - contacts iam -} - - -define host { - host_name iamshib104w - alias iamshib104w.Princeton.EDU - address 10.6.54.20 - use Windows Dev/QA 151 EISFW - contacts iam -} - - -define host { - host_name iamshib105w - alias iamshib105w.Princeton.EDU - address 10.6.54.21 - use Windows Dev/QA 151 EISFW - contacts iam -} - - -define host { - host_name iamshib300w - alias iamshib300w.Princeton.EDU - address 10.6.54.47 - _IP_MAC1 10.6.54.47 <=> 0:50:56:93:43:84 - _SUBNET1 lb-servernet-3 (EISFW - VLAN 4071 - .54) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2015-07-07 - _date_changed 2016-02-16 - contacts John Wagner - _contacts jwagner@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 EISFW -} - - -define host { - host_name iamshib301w - alias iamshib301w.Princeton.EDU - address 10.6.54.26 - use Windows Dev/QA 151 EISFW - contacts iam -} - - -define host { - host_name iamshib302w - alias iamshib302w.Princeton.EDU - address 10.6.54.36 - _IP_MAC1 10.6.54.36 <=> 0:50:56:93:de:85 - _SUBNET1 lb-servernet-3 (EISFW - VLAN 4071 - .54) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room mr, vm, - - _date_created 2017-02-27 - _date_changed 2018-03-17 - contacts John Wagner - _contacts jwagner@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 EISFW -} - - -define host { - host_name iamshibtest100w - alias iamshibtest100w.Princeton.EDU - address 10.6.49.204 - _IP_MAC1 10.6.49.204 <=> 0:50:56:93:18:e5 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room mr, vm, - - _date_created 2016-11-07 - _date_changed 2016-11-07 - contacts Identity and Access Management - _contacts iam@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name iamtools100w - alias iamtools100w.Princeton.EDU - address 10.6.51.12 - use Windows Dev/QA 151 PrivateDMZ - contacts iam -} - - -define host { - host_name iamwebsvc100w - alias iamwebsvc100w.Princeton.EDU - address 10.6.51.38 - use Windows Dev/QA 151 PrivateDMZ - contacts iam -} - - - -define host { - host_name iamadfs200w - alias iamadfs200w.Princeton.EDU - address 10.6.55.50 - contacts Identity and Access Management - _contacts iam@princeton.edu, winmail@princeton.edu - use Windows Production NS EISFW -} - - -define host { - host_name iamadfs201w - alias iamadfs201w.Princeton.EDU - address 10.6.55.51 - contacts Identity and Access Management - _contacts iam@princeton.edu, winmail@princeton.edu - use Windows Production NS EISFW -} - - -define host { - host_name iambuilder - alias iambuilder.Princeton.EDU - address 10.6.49.22 - contacts Identity and Access Management - _contacts iam@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name iamcas200w - alias iamcas200w.Princeton.EDU - _alias1 auth-a - address 10.6.55.40 - contacts Identity and Access Management - _contacts iam@princeton.edu, winmail@princeton.edu - use Windows Production NS EISFW -} - - -define host { - host_name iamcas201w - alias iamcas201w.Princeton.EDU - _alias1 auth-b - address 10.6.55.41 - contacts Identity and Access Management - _contacts iam@princeton.edu, winmail@princeton.edu - use Windows Production NS EISFW -} - - -define host { - host_name iamcert200w - alias iamcert200w.Princeton.EDU - address 140.180.220.209 - use Windows Dev/QA NS PublicDMZ - contacts iam -} - - -define host { - host_name iamconsole - alias iamconsole.Princeton.EDU - address 10.6.49.217 - contacts Identity and Access Management - _contacts iam@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name iamdirsync200w - alias iamdirsync200w.Princeton.EDU - address 140.180.220.157 - contacts John P. Sophy - _contacts jsophy@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name iamduo200w - alias iamduo200w.Princeton.EDU - address 10.6.55.38 - contacts Identity and Access Management - _contacts iam@princeton.edu, winmail@princeton.edu - use Windows Production NS EISFW -} - - -define host { - host_name iamduo201w - alias iamduo201w.Princeton.EDU - address 10.6.55.39 - contacts Identity and Access Management - _contacts iam@princeton.edu, winmail@princeton.edu - use Windows Production NS EISFW -} - - -define host { - host_name iamencoder204w - alias iamencoder204w.Princeton.EDU - _alias1 encoder04 - address 10.6.48.103 - contacts Dwight D. Bashore, Identity and Access Management - _contacts dbashore@princeton.edu, iam@princeton.edu, winmail@princeton.edu - use Windows Production PrivateDMZ -} - - -define host { - host_name iamencoder205w - alias iamencoder205w.Princeton.EDU - _alias1 encoder05 - address 10.6.48.200 - contacts Dwight D. Bashore, Identity and Access Management - _contacts dbashore@princeton.edu, iam@princeton.edu, winmail@princeton.edu - use Windows Production PrivateDMZ -} - - -define host { - host_name iamencoder206w - alias iamencoder206w.Princeton.EDU - _alias1 encoder06 - address 10.6.48.201 - contacts Dwight D. Bashore, Identity and Access Management - _contacts dbashore@princeton.edu, iam@princeton.edu, winmail@princeton.edu - use Windows Production PrivateDMZ -} - - -define host { - host_name iamethos200w - alias iamethos200w.Princeton.EDU - address 10.6.55.73 - contacts Keith B. Martin - _contacts kbmartin@princeton.edu, winmail@princeton.edu - use Windows Production NS EISFW -} - - -define host { - host_name iamethos201w - alias iamethos201w.Princeton.EDU - address 10.6.55.74 - contacts Keith B. Martin - _contacts kbmartin@princeton.edu, winmail@princeton.edu - use Windows Production NS EISFW -} - - -define host { - host_name iamscript200w - alias iamscript200w.Princeton.EDU - address 10.6.52.127 - contacts Jason B. Rappaport - _contacts jasonrap@princeton.edu, winmail@princeton.edu - use Windows Production NS Trust -} - - -define host { - host_name iamshib200w - alias iamshib200w.Princeton.EDU - address 10.6.54.42 - contacts Identity and Access Management - _contacts iam@princeton.edu, winmail@princeton.edu - use Windows Production 151 EISFW -} - - -define host { - host_name iamshib201w - alias iamshib201w.Princeton.EDU - address 10.6.54.43 - contacts Identity and Access Management - _contacts iam@princeton.edu, winmail@princeton.edu - use Windows Production NS EISFW -} - - -define host { - host_name iamshib202w.aws - alias iamshib202w.aws.Princeton.EDU - address 10.21.1.87 - use Windows Dev/QA AWS Untrust - contacts iam -} - - -define host { - host_name iamshib203w.aws - alias iamshib203w.aws.Princeton.EDU - address 10.21.1.227 - use Windows Dev/QA AWS Untrust - contacts iam -} - - -define host { - host_name iamshib204w - alias iamshib204w.Princeton.EDU - address 10.6.54.24 - use Windows Dev/QA 151 EISFW - contacts iam -} - - -define host { - host_name iamshib205w - alias iamshib205w.Princeton.EDU - address 10.6.54.25 - use Windows Dev/QA 151 EISFW - contacts iam -} - - -define host { - host_name iamsvn200w - alias iamsvn200w.Princeton.EDU - _alias1 source - address 10.6.48.156 - contacts Identity and Access Management - _contacts iam@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name iamtools - alias iamtools.Princeton.EDU - address 10.6.48.172 - contacts Identity and Access Management - _contacts iam@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name iamweb200w - alias iamweb200w.Princeton.EDU - address 140.180.220.88 - contacts Identity and Access Management - _contacts iam@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name ais201w - alias ais201w.Princeton.EDU - address 10.6.50.146 - contacts Thomas E. Dommermuth - _contacts tdommer@princeton.edu, winmail@princeton.edu - use Windows Production 151 PrivateDMZ -} - - -define host { - host_name ais204l - alias ais204l.Princeton.EDU - address 140.180.219.145 - contacts AIS Mon CustomApps - _contacts ais-mon-customapps@princeton.edu, unix@princeton.edu - use UNIX Production 151 EISFW -} - - -define host { - host_name amu202w - alias amu202w.Princeton.EDU - address 10.6.59.69 - contacts Cathryn Goodwin, Matt S. Marnett - _contacts mmarnett@princeton.edu, winmail@princeton.edu - use Windows Production 151 EISFW -} - - -define host { - host_name cses01 - alias cses01.Princeton.EDU - _alias1 csesdev - address 128.112.130.194 - contacts CSES Internal - System Generated, Computational Science and Engineering Support - _contacts csesa@princeton.edu, csesi@princeton.edu, unix@princeton.edu - use UNIX Dev/QA -} - - -define host { - host_name dascrl200w - alias dascrl200w.Princeton.EDU - address 140.180.221.76 - contacts George R. Fleming Jr. - _contacts fleming@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name dba300w - alias dba300w.Princeton.EDU - address 10.6.52.44 - contacts DBA Important List - _contacts dbas@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 Trust -} - - -define host { - host_name devprov01 - alias devprov01.Princeton.EDU - address 10.6.52.222 - contacts Identity and Access Management, Security and Data Protection - _contacts iam@princeton.edu, sdp@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 Trust -} - - -define host { - host_name dngbboard200w - alias dngbboard200w.Princeton.EDU - address 10.6.49.233 - contacts David O. Goetz, Sarah Salati Bavuso, USSNTADM - _contacts dgoetz@princeton.edu, salati@princeton.edu, ussntadm@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name eis105w - alias eis105w.Princeton.EDU - address 10.6.50.83 - contacts CISDR Group of EIS - _contacts cisdr@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name eissql302w - alias eissql302w.Princeton.EDU - address 10.6.50.20 - contacts DBA Important List - _contacts dbas@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name eissql303w - alias eissql303w.Princeton.EDU - address 10.6.50.21 - contacts DBA Important List - _contacts dbas@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name eissql304w - alias eissql304w.Princeton.EDU - address 10.6.50.22 - contacts DBA Important List - _contacts dbas@princeton.edu, winmail@princeton.edu - use Windows Production 151 PrivateDMZ -} - - -define host { - host_name eisssrs200w - alias eisssrs200w.Princeton.EDU - address 10.6.50.4 - contacts Christopher M. Stewart - _contacts cs2@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name eisssrs300w - alias eisssrs300w.Princeton.EDU - address 10.6.50.103 - contacts DBA Important List - _contacts dbas@princeton.edu, winmail@princeton.edu - use Windows Dev/QA PrivateDMZ -} - - -define host { - host_name harris - alias harris.Princeton.EDU - address 128.112.200.103 - _contacts unix@princeton.edu - use UNIX Dev/QA -} - - -define host { - host_name mol201l - alias mol201l.Princeton.EDU - _alias1 chlamylibrary-old - _alias2 csmolbio - _alias3 devenport-mice-db - _alias4 mol-evaluation - _alias5 mol-grading - _alias6 mol-plossfreezer - _alias7 mol-receptor - _alias8 mol-refeeder - _alias9 mol-senior-thesis - _alias10 molbioit - _alias11 ms2-screen - _alias12 msoegss - _alias13 petrylabdb - _alias14 proteomics-r - _alias15 proteomics-request - _alias16 zfstockdb - address 140.180.221.11 - contacts Matthew H. Cahn - _contacts mcahn@princeton.edu, unix@princeton.edu - use UNIX Production 151 PublicDMZ -} - - -define host { - host_name nismaster4-dev - alias nismaster4-dev.Princeton.EDU - _alias1 nismaster-qa - _alias2 nismaster-dev - address 128.112.129.188 - _contacts ess-list@princeton.edu, unix@princeton.edu - use UNIX Dev/QA -} - - -define host { - host_name nisslave-dev - alias nisslave-dev.Princeton.EDU - address 128.112.128.15 - _contacts ess-list@princeton.edu, unix@princeton.edu - use UNIX Dev/QA -} - - -define host { - host_name oa - alias oa.Princeton.EDU - address 140.180.221.18 - contacts Richard M. Curtis - _contacts rcurtis@princeton.edu, winmail@princeton.edu - use Windows Production 151 PublicDMZ -} - - -define host { - host_name orp200w - alias orp200w.Princeton.EDU - address 10.6.50.183 - contacts Joseph P. Keane - _contacts jkeane@princeton.edu, winmail@princeton.edu - use Windows Production PrivateDMZ -} - - -define host { - host_name printgpd - alias printgpd.Princeton.EDU - _alias1 printxerox - address 10.6.49.208 - _contacts ess-list@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name prov01 - alias prov01.Princeton.EDU - _alias1 idm - address 10.6.52.227 - contacts Identity and Access Management, Security and Data Protection - _contacts iam@princeton.edu, sdp@princeton.edu, unix@princeton.edu - use UNIX Production NS Trust -} - - -define host { - host_name raas03 - alias raas03.Princeton.EDU - _alias1 raas03.rc - address 128.112.130.63 - contacts CSES Internal - System Generated, Computational Science and Engineering Support - _contacts csesi@princeton.edu - use UNIX Production -} - - - - -define host { - host_name aiste304w - alias aiste304w.Princeton.EDU - address 10.6.50.89 - contacts Lakshmi Annamalai, R. Carl Segers - _contacts lannamal@princeton.edu, winmail@princeton.edu - use Windows Dev/QA NS PrivateDMZ -} - - -define host { - host_name amu201w - alias amu201w.Princeton.EDU - address 10.6.59.9 - contacts Cathryn Goodwin, Matt S. Marnett - _contacts mmarnett@princeton.edu, winmail@princeton.edu - use Windows Production 151 EISFW -} - - -define host { - host_name chm-dmac200w - alias chm-dmac200w.Princeton.EDU - address 10.6.50.187 - _contacts lamarque@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name das101w - alias das101w.Princeton.EDU - address 140.180.220.205 - contacts George R. Fleming Jr. - _contacts fleming@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PublicDMZ -} - - -define host { - host_name das300w - alias das300w.Princeton.edu - address 140.180.220.208 - contacts George R. Fleming Jr. - _contacts fleming@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PublicDMZ -} - - -define host { - host_name dba301w - alias dba301w.Princeton.EDU - address 10.6.52.55 - contacts DBA Important List - _contacts dbas@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 Trust -} - - -define host { - host_name eis206w - alias eis206w.Princeton.EDU - _alias1 exws - address 10.6.53.57 - contacts CISDR Group of EIS - _contacts cisdr@princeton.edu, winmail@princeton.edu - use Windows Production NS Trust -} - - -define host { - host_name eisprtmgt201w - alias eisprtmgt201w.Princeton.EDU - _alias1 printmgtgpd - address 128.112.129.193 - _contacts ess-list@princeton.edu, winmail@princeton.edu - use Windows Production -} - - -define host { - host_name eisrds201w - alias eisrds201w.Princeton.EDU - address 128.112.101.138 - _contacts ess-list@princeton.edu, winmail@princeton.edu - use Windows Production NS Untrust -} - - -define host { - host_name eissql202w - alias eissql202w.Princeton.EDU - address 10.6.50.156 - contacts Christopher M. Stewart - _contacts cs2@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name mol200l - alias mol200l.Princeton.EDU - _alias1 molbio-review - _alias2 www.molbio - _alias3 hhmi - _alias4 proteomics - _alias5 py - _alias6 molbiolabs - _alias7 jonikaslab - _alias8 www.molbio1 - address 140.180.221.10 - contacts Matthew H. Cahn - _contacts mcahn@princeton.edu, unix@princeton.edu - use UNIX Production NS PublicDMZ -} - - -define host { - host_name mol202w - alias mol202w.Princeton.EDU - _alias1 devenport-mice - address 10.6.50.138 - contacts Matthew H. Cahn - _contacts mcahn@princeton.edu, winmail@princeton.edu - use Windows Production 151 PrivateDMZ -} - - -define host { - host_name nismaster3 - alias nismaster3.Princeton.EDU - address 128.112.128.27 - _contacts ess-list@princeton.edu, unix@princeton.edu - use UNIX Production -} - - -define host { - host_name ntprintserver - alias ntprintserver.Princeton.edu - address 10.6.49.247 - contacts Chi M. Lu - _contacts clu@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name printdell - alias printdell.Princeton.EDU - address 10.6.49.188 - _contacts ess-list@princeton.edu, winmail@princeton.edu - use Windows Production 151 PrivateDMZ -} - - -define host { - host_name printhp - alias printhp.Princeton.EDU - address 10.6.49.211 - _contacts ess-list@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name qaprov01 - alias qaprov01.Princeton.EDU - _alias1 idmqa - address 10.6.52.223 - contacts Identity and Access Management, Security and Data Protection - _contacts iam@princeton.edu, sdp@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 Trust -} - - -define host { - host_name sdp100w - alias sdp100w.Princeton.edu - address 10.6.61.11 - contacts Identity and Access Management - _contacts iam@princeton.edu, winmail@princeton.edu - use Windows Dev/QA -} - - -define host { - host_name sdp101w - alias sdp101w.Princeton.EDU - address 10.6.61.12 - contacts Identity and Access Management - _contacts iam@princeton.edu, winmail@princeton.edu - use Windows Dev/QA -} - - -define host { - host_name sdp102w - alias sdp102w.Princeton.EDU - address 10.6.50.84 - contacts Identity and Access Management - _contacts iam@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name sdp202w - alias sdp202w.Princeton.EDU - _alias1 ca - address 128.112.129.35 - contacts Identity and Access Management, Security and Data Protection - _contacts iam@princeton.edu, sdp@princeton.edu, winmail@princeton.edu - use Windows Production -} - - -define host { - host_name sdpalc200w - alias sdpalc200w.Princeton.EDU - address 10.6.54.50 - contacts Identity and Access Management - _contacts iam@princeton.edu, winmail@princeton.edu - use Windows Production NS EISFW -} - - -define host { - host_name webhead01-qa - alias webhead01-qa.Princeton.EDU - _alias1 novus01-qa - address 10.6.54.37 - contacts Brian K. Osborne, Michael D. Muzzie, Web Development Services - _contacts bosborne@princeton.edu, mdmuzzie@princeton.edu, unix@princeton.edu, webservices@princeton.edu - use UNIX Dev/QA 151 EISFW -} - - -define host { - host_name webhead02-qa - alias webhead02-qa.Princeton.EDU - _alias1 novus02-qa - address 10.6.54.48 - contacts Brian K. Osborne, Michael D. Muzzie, Web Development Services - _contacts bosborne@princeton.edu, mdmuzzie@princeton.edu, unix@princeton.edu, webservices@princeton.edu - use UNIX Dev/QA 151 EISFW -} - - - - -define host { - host_name ims302 - alias ims302.Princeton.EDU - address 128.112.131.12 - contacts ESS Storage - _contacts ess-storage@princeton.edu, unix@princeton.edu - use UNIX Dev/QA -} - - -define host { - host_name ims303 - alias ims303.Princeton.EDU - address 128.112.131.27 - contacts ESS Storage - _contacts ess-storage@princeton.edu, unix@princeton.edu - use UNIX Dev/QA -} - - -define host { - host_name ims311 - alias ims311.Princeton.EDU - address 128.112.128.183 - contacts Martin Harriss - _contacts martin@princeton.edu, unix@princeton.edu - use UNIX Dev/QA -} - - -define host { - host_name ims314 - alias ims314.Princeton.EDU - address 140.180.221.25 - parents eisfw - contacts Igor V. Gubenko, Joseph M. Karam, Networking - _contacts igubenko@princeton.edu, jkaram@princeton.edu, networking@princeton.edu - use Gearman Worker Dev/QA -} - - -define host { - host_name ims315 - alias ims315.Princeton.EDU - address 140.180.221.26 - parents eisfw - contacts Igor V. Gubenko, Joseph M. Karam, Networking - _contacts igubenko@princeton.edu, jkaram@princeton.edu, networking@princeton.edu - use Gearman Worker Dev/QA -} - - -define host { - host_name ims316 - alias ims316.Princeton.EDU - address 128.112.134.25 - contacts Igor V. Gubenko, Joseph M. Karam, Networking - _contacts igubenko@princeton.edu, jkaram@princeton.edu, networking@princeton.edu - use UNIX Dev/QA -} - - -define host { - host_name ims317 - alias ims317.Princeton.EDU - address 128.112.134.66 - contacts Igor V. Gubenko, Joseph M. Karam, Networking - _contacts igubenko@princeton.edu, jkaram@princeton.edu, networking@princeton.edu - use UNIX Dev/QA -} - - -define host { - host_name ims318 - alias ims318.Princeton.EDU - address 128.112.129.21 - contacts Igor V. Gubenko, Joseph M. Karam, Networking - _contacts networking@princeton.edu - use UNIX Dev/QA -} - - -define host { - host_name ims319 - alias ims319.Princeton.EDU - address 128.112.129.23 - contacts Igor V. Gubenko, Joseph M. Karam, Networking - _contacts networking@princeton.edu - use UNIX Dev/QA -} - - -define host { - host_name ims320 - alias ims320.Princeton.EDU - address 10.6.48.77 - contacts Igor V. Gubenko, Joseph M. Karam, Networking - _contacts igubenko@princeton.edu, jkaram@princeton.edu, networking@princeton.edu - use UNIX Dev/QA -} - - -define host { - host_name ims321 - alias ims321.Princeton.EDU - address 10.6.52.26 - contacts Igor V. Gubenko, Joseph M. Karam, Networking - _contacts igubenko@princeton.edu, jkaram@princeton.edu, networking@princeton.edu - use UNIX Dev/QA -} - - -define host { - host_name ims204 - alias ims204.Princeton.edu - _alias1 monitoring - _alias2 graphs - address 128.112.129.122 - contacts Igor V. Gubenko, Joseph M. Karam, Networking - _contacts igubenko@princeton.edu, jkaram@princeton.edu, networking@princeton.edu - use UNIX Production -} - - -define host { - host_name ims205 - alias ims205.Princeton.edu - address 128.112.129.145 - contacts Igor V. Gubenko, Joseph M. Karam, Networking - _contacts igubenko@princeton.edu, jkaram@princeton.edu, networking@princeton.edu - use UNIX Production -} - - -define host { - host_name ims211 - alias ims211.Princeton.EDU - address 10.6.50.96 - contacts ESS Storage - _contacts ess-storage@princeton.edu, unix@princeton.edu - use UNIX Production NS PrivateDMZ -} - - -define host { - host_name ims214 - alias ims214.Princeton.EDU - _alias1 printserve - _alias2 printserver - _alias3 faxserver - _alias4 fax - address 128.112.131.58 - contacts ESS Storage - _contacts ess-storage@princeton.edu, unix@princeton.edu - use UNIX Production -} - - -define host { - host_name ims215 - alias ims215.princeton.edu - _alias1 printserve2 - address 128.112.132.6 - contacts ESS Storage - _contacts ess-storage@princeton.edu, unix@princeton.edu - use UNIX Production -} - - -define host { - host_name ims218 - alias ims218.Princeton.EDU - address 10.6.51.39 - contacts Igor V. Gubenko, Joseph M. Karam, Networking - _contacts igubenko@princeton.edu, jkaram@princeton.edu, networking@princeton.edu, unix@princeton.edu - use Gearman Worker Production -} - - -define host { - host_name ims219 - alias ims219.Princeton.EDU - address 10.6.51.40 - contacts Igor V. Gubenko, Joseph M. Karam, Networking - _contacts igubenko@princeton.edu, jkaram@princeton.edu, networking@princeton.edu, unix@princeton.edu - use Gearman Worker Production -} - - -define host { - host_name ims220 - alias ims220.Princeton.EDU - address 10.6.50.172 - contacts Igor V. Gubenko, Joseph M. Karam, Networking - _contacts igubenko@princeton.edu, jkaram@princeton.edu, networking@princeton.edu, unix@princeton.edu - use Gearman Worker Production -} - - -define host { - host_name ims221 - alias ims221.Princeton.EDU - address 10.6.50.136 - contacts Igor V. Gubenko, Joseph M. Karam, Networking - _contacts igubenko@princeton.edu, jkaram@princeton.edu, networking@princeton.edu, unix@princeton.edu - use Gearman Worker Production -} - - -define host { - host_name ims222 - alias ims222.Princeton.EDU - address 10.6.53.23 - contacts Igor V. Gubenko, Joseph M. Karam, Networking - _contacts igubenko@princeton.edu, jkaram@princeton.edu, networking@princeton.edu, unix@princeton.edu - use Gearman Worker Production -} - - -define host { - host_name ims223 - alias ims223.Princeton.EDU - address 10.6.53.20 - contacts Igor V. Gubenko, Joseph M. Karam, Networking - _contacts igubenko@princeton.edu, jkaram@princeton.edu, networking@princeton.edu, unix@princeton.edu - use Gearman Worker Production -} - - -define host { - host_name ims224 - alias ims224.Princeton.EDU - address 140.180.221.20 - contacts Igor V. Gubenko, Joseph M. Karam, Networking - _contacts igubenko@princeton.edu, jkaram@princeton.edu, networking@princeton.edu, unix@princeton.edu - use Gearman Worker Production -} - - -define host { - host_name ims225 - alias ims225.Princeton.EDU - address 140.180.220.13 - parents eisfw - contacts Igor V. Gubenko, Joseph M. Karam, Networking - _contacts igubenko@princeton.edu, jkaram@princeton.edu, networking@princeton.edu - use Gearman Worker Production -} - - - - - - -define host { - host_name mon302l - alias mon302l.Princeton.EDU - address 10.6.55.64 - contacts Igor V. Gubenko - _contacts igubenko@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 EISFW -} - - -define host { - host_name mon303l - alias mon303l.Princeton.EDU - address 10.6.55.65 - contacts Igor V. Gubenko - _contacts igubenko@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 EISFW -} - - -define host { - host_name mon204l - alias mon204l.Princeton.EDU - address 10.6.55.54 - contacts Igor V. Gubenko - _contacts igubenko@princeton.edu, unix@princeton.edu - use UNIX Production NS EISFW -} - - -define host { - host_name mon205l - alias mon205l.Princeton.EDU - address 10.6.55.55 - contacts Igor V. Gubenko - _contacts igubenko@princeton.edu, unix@princeton.edu - use UNIX Production NS EISFW -} - - -define host { - host_name mon300w - alias mon300w.Princeton.EDU - address 10.6.49.53 - contacts Igor V. Gubenko - _contacts igubenko@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name mon301w - alias mon301w.Princeton.EDU - address 10.6.49.54 - contacts Igor V. Gubenko - _contacts igubenko@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name mon200w - alias mon200w.Princeton.EDU - address 10.6.49.70 - contacts Igor V. Gubenko - _contacts igubenko@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name mon201w - alias mon201w.Princeton.EDU - address 10.6.49.71 - contacts Igor V. Gubenko - _contacts igubenko@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name mon202w - alias mon202w.Princeton.EDU - address 10.6.49.72 - contacts Igor V. Gubenko - _contacts igubenko@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name mon203w - alias mon203w.Princeton.EDU - address 10.6.49.73 - contacts Igor V. Gubenko - _contacts igubenko@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name airwave-development - alias airwave-development.Princeton.EDU - _alias1 airwave-dev - address 128.112.132.244 - contacts Networking - _contacts networking@princeton.edu - use Networking device -} - - -define host { - host_name airwave-failover - alias airwave-failover.Princeton.EDU - address 128.112.128.63 - contacts Networking - _contacts networking@princeton.edu - use Networking device -} - - -define host { - host_name airwave-rap - alias airwave-rap.Princeton.EDU - address 128.112.131.247 - contacts Networking - _contacts networking@princeton.edu - use Networking device -} - - -define host { - host_name airwave1 - alias airwave-administrative.Princeton.EDU - _alias1 airwave-administrative - _alias2 airwave-aruba - address 128.112.129.16 - contacts Networking - _contacts networking@princeton.edu - use Networking device -} - - -define host { - host_name airwave2 - alias airwave-dormnet.Princeton.EDU - _alias1 airwave-dormnet - _alias2 airwave-cisco - address 128.112.133.136 - contacts Networking - _contacts networking@princeton.edu - use Networking device -} - - -define host { - host_name airwave4 - alias airwave4.Princeton.EDU - _alias1 airwave-four - _alias2 airwave-academic-east - address 128.112.128.51 - contacts Networking - _contacts networking@princeton.edu - use Networking device -} - - -define host { - host_name airwave5 - alias airwave5.Princeton.EDU - _alias1 airwave-five - _alias2 airwave-academic-west - address 128.112.128.67 - contacts Networking - _contacts networking@princeton.edu - use Networking device -} - - -define host { - host_name airwave6 - alias airwave6.Princeton.EDU - _alias1 airwave-six - _alias2 airwave-dorm-central - address 128.112.128.69 - contacts Networking - _contacts networking@princeton.edu - use Networking device -} - - -define host { - host_name airwave7 - alias airwave7.Princeton.EDU - _alias1 airwave-seven - _alias2 airwave-dorm-east-west - address 128.112.128.80 - contacts Networking - _contacts networking@princeton.edu - use Networking device -} - - -define host { - host_name backupvpn1 - alias backupvpn1.Princeton.EDU - address 140.180.226.53 - contacts Networking - _contacts networking@princeton.edu - use Networking device -} - - -define host { - host_name backupvpn2 - alias backupvpn2.Princeton.EDU - address 140.180.226.102 - contacts Networking - _contacts networking@princeton.edu - use Networking device -} - - -define host { - host_name netbkup200l - alias netbkup200l.Princeton.EDU - address 10.6.50.245 - contacts Hajar Niroomand, Networking - _contacts hajar@princeton.edu, unix@princeton.edu - use UNIX Production NS PrivateDMZ -} - - -define host { - host_name netbmfgw200l - alias netbmfgw200l.Princeton.EDU - address 10.6.48.99 - contacts Networking - _contacts networking@princeton.edu, unix@princeton.edu - use UNIX Production NS PrivateDMZ -} - - -define host { - host_name netvclock200l - alias netvclock200l.Princeton.EDU - _alias1 vclock - address 140.180.220.26 - contacts Hajar Niroomand, Networking - _contacts hajar@princeton.edu, unix@princeton.edu - use UNIX Production NS PublicDMZ -} - - -define host { - host_name netvirtu01 - alias netvirtu01.Princeton.EDU - address 140.180.225.102 - contacts Networking - _contacts networking@princeton.edu - use Networking device -} - - -define host { - host_name netvirtu02 - alias netvirtu02.Princeton.EDU - address 140.180.225.85 - contacts Networking - _contacts networking@princeton.edu - use Networking device -} - - -define host { - host_name raritan-87pr-core - alias raritan-87pr-core.Princeton.EDU - address 172.18.194.97 - contacts Networking - _contacts networking@princeton.edu - use Networking device -} - - -define host { - host_name raritan-87pr-core2 - alias raritan-87pr-core2.Princeton.EDU - address 172.18.194.96 - contacts Networking - _contacts networking@princeton.edu - use Networking device -} - - -define host { - host_name raritan-87pr-network-lab - alias raritan-87pr-network-lab.Princeton.EDU - address 172.18.3.30 - contacts Erick W. Burd, Networking - _contacts eburd@princeton.edu, networking@princeton.edu - use Networking device -} - - -define host { - host_name raritan-hpcrc - alias raritan-hpcrc.Princeton.EDU - address 172.18.194.98 - contacts Networking - _contacts networking@princeton.edu - use Networking device -} - - -define host { - host_name raritan-newsouth-machineroom-oob - alias raritan-newsouth-machineroom-oob.Princeton.EDU - address 172.18.3.179 - contacts Networking - _contacts networking@princeton.edu - use Networking device -} - - -define host { - host_name raritan-newsouth-machineroom - alias raritan-newsouth-machineroom.Princeton.EDU - address 172.18.194.99 - contacts Networking - _contacts networking@princeton.edu - use Networking device -} - - - - - - -define host { - host_name sdpldap100l - alias sdpldap100l.Princeton.EDU - _alias1 ldapqa-a - _alias2 alumniqa-a - _alias3 dumperqa-a - address 10.6.63.106 - contacts Identity and Access Management - _contacts iam@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 EISFW -} - - -define host { - host_name sdpldap101l - alias sdpldap101l.Princeton.EDU - _alias1 dumperqa-b - _alias2 ldapqa-b - _alias3 alumniqa-b - address 10.6.63.102 - contacts Identity and Access Management - _contacts iam@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 EISFW -} - - -define host { - host_name sdpldap300l - alias sdpldap300l.Princeton.EDU - _alias1 ldapdev-a - _alias2 dumpdev-a - _alias3 alumnidev-a - address 10.6.63.118 - contacts Identity and Access Management, Simon C. Lee - _contacts iam@princeton.edu, simonlee@princeton.edu - use UNIX Dev/QA 151 EISFW -} - - -define host { - host_name sdpoam100l - alias sdpoam100l.Princeton.EDU - address 10.6.52.172 - contacts Identity and Access Management - _contacts iam@princeton.edu, unix@princeton.edu - use UNIX Dev/QA NS Trust -} - - -define host { - host_name sdpoam101l - alias sdpoam101l.Princeton.EDU - address 10.6.52.173 - contacts Identity and Access Management - _contacts iam@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 Trust -} - - -define host { - host_name sdpobi100l - alias sdpobi100l.Princeton.EDU - address 10.6.50.77 - contacts Identity and Access Management - _contacts iam@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name sdpohs100l - alias sdpohs100l.Princeton.EDU - address 10.6.57.28 - contacts Identity and Access Management, Security and Data Protection - _contacts iam@princeton.edu, sdp@princeton.edu, unix@princeton.edu - use UNIX Dev/QA NS EISFW -} - - -define host { - host_name sdpohs101l - alias sdpohs101l.Princeton.EDU - address 10.6.57.29 - contacts Identity and Access Management, Security and Data Protection - _contacts iam@princeton.edu, sdp@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 EISFW -} - - -define host { - host_name sdpovd100l - alias sdpovd100l.Princeton.EDU - address 10.6.57.26 - contacts Identity and Access Management, Security and Data Protection - _contacts iam@princeton.edu, sdp@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 EISFW -} - - -define host { - host_name sdpovd101l - alias sdpovd101l.Princeton.EDU - address 10.6.57.27 - contacts Identity and Access Management, Security and Data Protection - _contacts iam@princeton.edu, sdp@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 EISFW -} - - -define host { - host_name sdpprox100l - alias sdpprox100l.Princeton.EDU - address 10.6.56.18 - contacts Identity and Access Management - _contacts iam@princeton.edu, unix@princeton.edu - use UNIX Dev/QA -} - - -define host { - host_name sdpprox101l - alias sdpprox101l.Princeton.EDU - address 10.6.56.19 - contacts Identity and Access Management - _contacts iam@princeton.edu, unix@princeton.edu - use UNIX Dev/QA -} - - -define host { - host_name sdpprox301l - alias sdpprox301l.Princeton.EDU - address 10.6.57.22 - contacts Identity and Access Management - _contacts iam@princeton.edu, unix@princeton.edu - use UNIX Dev/QA -} - - -define host { - host_name sdpldap200l - alias sdpldap200l.Princeton.EDU - address 10.6.63.107 - contacts Identity and Access Management - _contacts iam@princeton.edu, unix@princeton.edu - use UNIX Production NS EISFW -} - - -define host { - host_name sdpldap201l - alias sdpldap201l.Princeton.EDU - address 10.6.63.103 - contacts Identity and Access Management - _contacts iam@princeton.edu, unix@princeton.edu - use UNIX Production NS EISFW -} - - -define host { - host_name sdpoam200l - alias sdpoam200l.Princeton.EDU - address 10.6.52.175 - contacts Identity and Access Management - _contacts iam@princeton.edu, unix@princeton.edu - use UNIX Production NS Trust -} - - -define host { - host_name sdpoam201l - alias sdpoam201l.Princeton.EDU - address 10.6.52.176 - contacts Identity and Access Management - _contacts iam@princeton.edu, unix@princeton.edu - use UNIX Production NS Trust -} - - -define host { - host_name sdpobi200l - alias sdpobi200l.Princeton.EDU - address 10.6.52.48 - contacts Identity and Access Management - _contacts iam@princeton.edu, unix@princeton.edu - use UNIX Production NS Trust -} - - -define host { - host_name sdpohs200l - alias sdpohs200l.Princeton.EDU - address 10.6.63.114 - contacts Identity and Access Management - _contacts iam@princeton.edu, unix@princeton.edu - use UNIX Production NS EISFW -} - - -define host { - host_name sdpohs201l - alias sdpohs201l.Princeton.EDU - address 10.6.63.115 - contacts Identity and Access Management - _contacts iam@princeton.edu, unix@princeton.edu - use UNIX Production NS EISFW -} - - -define host { - host_name sdpovd200l - alias sdpovd200l.Princeton.EDU - address 10.6.57.30 - contacts Identity and Access Management - _contacts iam@princeton.edu, unix@princeton.edu - use UNIX Production NS EISFW -} - - -define host { - host_name sdpovd201l - alias sdpovd201l.Princeton.EDU - address 10.6.57.31 - contacts Identity and Access Management - _contacts iam@princeton.edu, unix@princeton.edu - use UNIX Production NS EISFW -} - - -define host { - host_name sdpprox200l - alias sdpprox200l.Princeton.EDU - address 10.6.56.20 - contacts Identity and Access Management - _contacts iam@princeton.edu, unix@princeton.edu - use UNIX Production NS EISFW -} - - -define host { - host_name sdpprox201l - alias sdpprox201l.Princeton.EDU - address 10.6.56.21 - contacts Identity and Access Management - _contacts iam@princeton.edu, unix@princeton.edu - use UNIX Production NS EISFW -} - - -define host { - host_name sdprsa200l - alias sdprsa200l.Princeton.EDU - address 10.6.48.71 - contacts Identity and Access Management - _contacts iam@princeton.edu, unix@princeton.edu, winmail@princeton.edu - use UNIX Production NS PrivateDMZ -} - - -define host { - host_name sdprsa201l - alias sdprsa201l.Princeton.EDU - address 10.6.48.72 - contacts Identity and Access Management - _contacts iam@princeton.edu, unix@princeton.edu, winmail@princeton.edu - use UNIX Production NS PrivateDMZ -} - - -define host { - host_name puqa01.zeta.adtest - alias puqa01.zeta.adtest.Princeton.EDU - _alias1 adqa-a.princeton.edu. - address 10.6.48.146 - contacts Identity and Access Management - _contacts iam@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name sdp300w - alias sdp300w.Princeton.EDU - _alias1 zeta-rms - address 10.6.48.33 - contacts Identity and Access Management - _contacts iam@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name sdpcas100w - alias sdpcas100w.Princeton.EDU - _alias1 authqa-a - address 10.6.55.42 - contacts Identity and Access Management - _contacts iam@princeton.edu, winmail@princeton.edu - use Windows Dev/QA NS EISFW -} - - -define host { - host_name sdpcas101w - alias sdpcas101w.Princeton.EDU - _alias1 authqa-b - address 10.6.55.43 - contacts Identity and Access Management - _contacts iam@princeton.edu, winmail@princeton.edu - use Windows Dev/QA NS EISFW -} - - -define host { - host_name sdpepo100w - alias sdpepo100w.Princeton.EDU - _alias1 epp-eval - address 10.6.49.224 - contacts css-alert - _contacts css-alert@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name winqa01.adtest - alias winqa01.adtest.Princeton.EDU - address 10.6.48.91 - contacts Identity and Access Management - _contacts iam@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name pdom05.pu.win - alias pdom05.pu.win.Princeton.EDU - _alias1 ad-a.princeton.edu. - address 10.6.48.144 - contacts Identity and Access Management - _contacts iam@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name pdom06.pu.win - alias pdom06.pu.win.Princeton.EDU - _alias1 ad-d.princeton.edu. - address 10.6.48.166 - contacts Identity and Access Management - _contacts iam@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name pdom07.pu.win - alias pdom07.pu.win.Princeton.EDU - _alias1 ad-c.princeton.edu. - address 10.6.48.30 - contacts Identity and Access Management - _contacts iam@princeton.edu, winmail@princeton.edu - use Windows Production 151 PrivateDMZ -} - - -define host { - host_name pdom08.pu.win - alias pdom08.pu.win.Princeton.EDU - _alias1 ad-b.princeton.edu. - address 10.6.48.145 - contacts Identity and Access Management - _contacts iam@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name sdp200w - alias sdp200w.Princeton.EDU - _alias1 tools-a - _alias2 tools-temp - address 128.112.131.229 - contacts Identity and Access Management - _contacts iam@princeton.edu, winmail@princeton.edu - use Windows Production NS Untrust -} - - -define host { - host_name sdp201w - alias sdp201w.Princeton.EDU - _alias1 tools-b - _alias2 guestaccountqa - address 10.6.54.33 - contacts Identity and Access Management - _contacts iam@princeton.edu, winmail@princeton.edu - use Windows Production NS EISFW -} - - -define host { - host_name sdp205w - alias sdp205w.Princeton.EDU - _alias1 builder - address 10.6.50.140 - contacts Identity and Access Management - _contacts iam@princeton.edu, winmail@princeton.edu - use Windows Production 151 PrivateDMZ -} - - -define host { - host_name sdpcas202w - alias sdpcas202w.Princeton.EDU - address 10.6.55.21 - contacts Identity and Access Management - _contacts iam@princeton.edu, winmail@princeton.edu - use Windows Production NS EISFW -} - - -define host { - host_name sdpcas203w - alias sdpcas203w.Princeton.EDU - address 10.6.55.22 - contacts Identity and Access Management - _contacts iam@princeton.edu, winmail@princeton.edu - use Windows Production NS EISFW -} - - -define host { - host_name sdpenc200w - alias sdpenc200w.Princeton.EDU - address 10.6.52.76 - contacts Dean A. Plante - _contacts dplante@princeton.edu, winmail@princeton.edu - use Windows Production NS Trust -} - - -define host { - host_name sdpepo200w - alias sdpepo200w.Princeton.EDU - _alias1 janeway - address 140.180.221.29 - contacts css-alert - _contacts css-alert@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name sdpidp202w - alias sdpidp202w.Princeton.EDU - address 10.6.54.34 - contacts Identity and Access Management - _contacts iam@princeton.edu, winmail@princeton.edu - use Windows Production NS EISFW -} - - -define host { - host_name sdpidp203w - alias sdpidp203w.Princeton.EDU - address 10.6.54.35 - contacts Identity and Access Management - _contacts iam@princeton.edu, winmail@princeton.edu - use Windows Production NS EISFW -} - - -define host { - host_name sdptools200w - alias sdptools200w.Princeton.EDU - _alias1 iamnewtools - address 10.6.54.45 - contacts Identity and Access Management - _contacts iam@princeton.edu, winmail@princeton.edu - use Windows Production NS EISFW -} - - -define host { - host_name sdpvm200w - alias sdpvm200w.Princeton.EDU - address 10.6.48.105 - contacts Information Security - _contacts protect@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name win04.win - alias win04.win.Princeton.EDU - address 10.6.48.10 - contacts Identity and Access Management - _contacts iam@princeton.edu, winmail@princeton.edu - use Windows Production 151 PrivateDMZ -} - - -define host { - host_name esm - alias esm.Princeton.EDU - address 128.112.133.222 - contacts Networking, Ruth D Gittens - _contacts rgittens@princeton.edu - use UNIX Production -} - - -define host { - host_name receiver01 - alias receiver01.Princeton.EDU - address 128.112.134.226 - contacts Networking - _contacts networking@princeton.edu - use UNIX Production -} - - -define host { - host_name receiver02 - alias receiver02.Princeton.EDU - address 128.112.128.22 - contacts Networking - _contacts networking@princeton.edu - use UNIX Production -} - - -define host { - host_name receiver03 - alias receiver03.Princeton.EDU - address 128.112.128.20 - contacts Networking - _contacts networking@princeton.edu - use UNIX Production -} - - -define host { - host_name siem-ace - alias siem-ace.Princeton.EDU - address 128.112.134.246 - contacts Networking - _contacts networking@princeton.edu - use UNIX Production -} - - -define host { - host_name siem-adm - alias siem-adm.Princeton.EDU - address 128.112.130.132 - contacts Networking, Security and Data Protection - _contacts networking@princeton.edu, sdp@princeton.edu - use UNIX Production -} - - -define host { - host_name siem-dem - alias siem-dem.Princeton.EDU - address 128.112.133.222 - contacts Networking, Security and Data Protection - _contacts networking@princeton.edu, sdp@princeton.edu - use UNIX Production -} - - -define host { - host_name siem-elm - alias siem-elm.Princeton.EDU - address 128.112.129.243 - contacts Networking, Security and Data Protection - _contacts networking@princeton.edu, sdp@princeton.edu - use UNIX Production -} - - -define host { - host_name isserv215 - alias isserv215.Princeton.EDU - address 10.6.48.114 - contact_groups DBA Page - contacts DBA Important List - _contacts dbas@princeton.edu, unix@princeton.edu - use Solaris Production -} - - -define host { - host_name isserv216 - alias isserv216.Princeton.EDU - address 10.6.51.24 - contact_groups DBA Page - contacts DBA Important List - _contacts dbas@princeton.edu, unix@princeton.edu - use Solaris Production -} - - -define host { - host_name ss100l - alias ss100l.Princeton.EDU - _alias1 mme-q1-linux - address 140.180.220.30 - contacts Mark J. Pellecchia, Thomas J. Francais - _contacts markpe@princeton.edu, tjf@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PublicDMZ -} - - -define host { - host_name ss304l - alias ss304l.Princeton.EDU - _alias1 appleupdatedev - address 140.180.220.46 - contacts Mark J. Pellecchia - _contacts markpe@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PublicDMZ -} - - -define host { - host_name ss308l - alias ss308l.Princeton.EDU - address 140.180.220.188 - contacts Mark J. Pellecchia - _contacts markpe@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PublicDMZ -} - - -define host { - host_name ss200l - alias ss200l.Princeton.EDU - _alias1 appleupdate - address 140.180.221.3 - contacts Mark J. Pellecchia, Phillip M. Immordino, Thomas J. Francais - _contacts markpe@princeton.edu, pimmo@princeton.edu, tjf@princeton.edu, unix@princeton.edu - use UNIX Production NS PublicDMZ -} - - -define host { - host_name ss209l - alias ss209l.Princeton.EDU - _alias1 mme-linoldprod - address 140.180.221.19 - contacts Mark J. Pellecchia, Phillip M. Immordino, Thomas J. Francais - _contacts markpe@princeton.edu, pimmo@princeton.edu, tjf@princeton.edu, unix@princeton.edu - use UNIX Production NS PublicDMZ -} - - -define host { - host_name ss101w - alias ss101w.Princeton.EDU - address 10.6.48.76 - contacts Kristian A. Kauker - _contacts kkauker@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name ss103w - alias ss103w.Princeton.EDU - _alias1 ssprint-qa1 - address 10.6.49.48 - contacts Adam A. Ouellette - _contacts aouellet@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name ss104w - alias ss104w.Princeton.EDU - _alias1 ssmobile-qa1 - address 10.6.49.49 - contacts Adam A. Ouellette - _contacts aouellet@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name ss105w - alias ss105w.Princeton.EDU - _alias1 ssprint-qa2 - address 10.6.49.50 - contacts Adam A. Ouellette - _contacts aouellet@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name ss303w - alias ss303w.Princeton.EDU - address 140.180.220.61 - contacts Mark J. Pellecchia, Thomas J. Francais - _contacts markpe@princeton.edu, tjf@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PublicDMZ -} - - -define host { - host_name ss305w - alias ss305w.Princeton.EDU - _alias1 papercutdev - address 10.6.48.164 - contacts Adam A. Ouellette - _contacts aouellet@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name ss306w - alias ss306w.Princeton.EDU - address 10.6.48.187 - contacts Adam A. Ouellette - _contacts aouellet@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name ssvr108w - alias ssvr108w.Princeton.EDU - address 10.6.48.63 - contacts Charlayne H. Beavers - _contacts cbeavers@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name ssvr308w - alias ssvr308w.Princeton.EDU - address 10.6.48.32 - contacts Charlayne H. Beavers - _contacts cbeavers@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name ss211w - alias ss211w.Princeton.EDU - address 140.180.221.17 - contacts Thomas J. Francais - _contacts tjf@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name ss212w - alias ss212w.Princeton.EDU - address 10.6.48.73 - contacts Kristian A. Kauker - _contacts kkauker@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name ss213w - alias ss213w.Princeton.EDU - _alias1 eatonipm - address 10.6.48.147 - contacts NetOps - _contacts netops@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name ss214w - alias ss214w.Princeton.EDU - address 10.6.48.181 - contacts Phillip M. Immordino - _contacts pimmo@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name ss215w - alias ss215w.Princeton.EDU - _alias1 printquota - address 140.180.220.72 - contacts Adam A. Ouellette, George R. Fleming Jr. - _contacts adam.ouellette@princeton.edu, fleming@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name ss217w - alias ss217w.Princeton.EDU - _alias1 winactivate - address 10.6.48.186 - contacts Phillip M. Immordino - _contacts pimmo@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name ss219w - alias ss219w.Princeton.EDU - _alias1 ssprint-prod1 - address 10.6.48.95 - contacts Adam A. Ouellette - _contacts aouellet@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name ss220w - alias ss220w.Princeton.EDU - _alias1 ssmobile-prod1 - address 10.6.48.148 - contacts Adam A. Ouellette - _contacts aouellet@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name ss221w - alias ss221w.Princeton.EDU - _alias1 ssprint-prod2 - address 10.6.48.233 - contacts Adam A. Ouellette - _contacts aouellet@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name ss224w - alias ss224w.Princeton.EDU - _alias1 mme-casper - _alias2 mme-p1 - _alias3 scs-casper - address 140.180.220.58 - contacts Mark J. Pellecchia, Phillip M. Immordino, Thomas J. Francais - _contacts markpe@princeton.edu, pimmo@princeton.edu, tjf@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name ssepo223w - alias ssepo223w.Princeton.EDU - _alias1 epoagenthandler - address 140.180.220.112 - contacts Phillip M. Immordino - _contacts pimmo@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name ssvr208w - alias ssvr208w.Princeton.EDU - address 140.180.220.150 - contacts Charlayne H. Beavers - _contacts cbeavers@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name ssvr209w - alias ssvr209w.Princeton.EDU - address 10.6.48.157 - contacts Adam A. Ouellette, Charlayne H. Beavers, Dianne M. Wolochowicz, Mariann S. Miller, Phillip M. Immordino - _contacts cbeavers@princeton.edu, dianne@princeton.edu, mariannm@princeton.edu, pimmo@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name andlchaos300l - alias andlchaos300l.Princeton.EDU - address 140.180.220.191 - _IP_MAC1 140.180.220.191 <=> 0:50:56:93:32:9f - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2017-04-24 - _date_changed 2017-12-18 - contacts Forrest M. Meggers - _contacts fmeggers@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PublicDMZ -} - - -define host { - host_name asbb106l - alias asbb106l.Princeton.EDU - _alias1 lti-qa - address 140.180.220.252 - _IP_MAC1 140.180.220.252 <=> 0:50:56:93:11:10 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Academic Technology Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2013-06-20 - _date_changed 2018-04-03 - contacts Kim Y. Huang - _contacts kimhuang@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PublicDMZ -} - - - -define host { - host_name asbb107l - alias asbb107l.Princeton.EDU - address 140.180.221.102 - use UNIX Dev/QA 151 PublicDMZ - contacts kimhuang -} - - -define host { - host_name asoar301l - alias asoar301l.Princeton.EDU - _alias1 oawaiverdev - address 140.180.220.29 - _IP_MAC1 140.180.220.29 <=> 0:50:56:93:4:64 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Academic Technology Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2014-09-02 - _date_changed 2016-03-28 - contacts Monika C. Mevenkamp - _contacts monikam@princeton.edu - use UNIX Dev/QA 151 PublicDMZ -} - - -define host { - host_name asweb100l - alias asweb100l.Princeton.EDU - _alias1 atsweb-qa - _alias2 almagest-qa - _alias3 iat-qa - _alias4 webfeeds-qa - _alias5 etcweb-qa - _alias6 m-map-qa - address 10.6.50.69 - _IP_MAC1 10.6.50.69 <=> 0:50:56:93:2f:5d - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Academic Technology Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2013-06-13 - _date_changed 2017-05-30 - contacts Kevin R. Perry - _contacts perry@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name asweb300l - alias asweb300l.Princeton.EDU - _alias1 etcweb-dev - _alias2 almagest-dev - _alias3 atsweb-dev - _alias4 webfeeds-dev - _alias5 iat-dev - address 10.6.50.70 - _IP_MAC1 10.6.50.70 <=> 0:50:56:93:3a:90 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Academic Technology Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2013-05-01 - _date_changed 2017-05-30 - contacts Kevin R. Perry - _contacts perry@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name autom100l - alias autom100l.Princeton.EDU - address 10.6.55.24 - use UNIX Dev/QA 151 EISFW - contacts Networking -} - - -define host { - host_name autom101l - alias autom101l.Princeton.EDU - address 10.6.55.25 - use UNIX Dev/QA 151 EISFW - contacts Networking -} - - -define host { - host_name autom102l - alias autom102l.Princeton.EDU - address 10.6.48.173 - use UNIX Dev/QA 151 PrivateDMZ - contacts Networking -} - - -define host { - host_name cisdr103l - alias cisdr103l.Princeton.EDU - _alias1 oar-dev - address 10.6.49.82 - _IP_MAC1 10.6.49.82 <=> 0:50:56:93:35:c - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2016-02-10 - _date_changed 2016-03-03 - contacts Monika C. Mevenkamp - _contacts monikam@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name ele101l - alias ele101l.Princeton.EDU - address 128.112.134.51 - _IP_MAC1 128.112.134.51 <=> 0:50:56:93:4:7b - _SUBNET1 princeton-net - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2014-04-18 - _date_changed 2017-03-30 - contacts Computational Science and Engineering Support - _contacts csesa@princeton.edu, unix@princeton.edu - use UNIX Dev/QA -} - - -define host { - host_name ele301l - alias ele301l.Princeton.EDU - address 10.6.50.5 - _IP_MAC1 10.6.50.5 <=> 0:50:56:93:bc:f9 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2017-08-23 - _date_changed 2017-08-23 - contacts Daniel E. Veith - _contacts dveith@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name ele303l - alias ele303l.Princeton.EDU - address 140.180.220.97 - _IP_MAC1 140.180.220.97 <=> 0:50:56:93:3f:7d - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Electrical Engineering - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2015-10-14 - _date_changed 2017-06-22 - contacts Computational Science and Engineering Support - _contacts csesa@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PublicDMZ -} - - -define host { - host_name ele304l - alias ele304l.Princeton.EDU - address 140.180.220.98 - _IP_MAC1 140.180.220.98 <=> 0:50:56:93:12:46 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Electrical Engineering - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2015-10-14 - _date_changed 2017-06-22 - contacts Computational Science and Engineering Support - _contacts csesa@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PublicDMZ -} - - -define host { - host_name ele305l - alias ele305l.Princeton.EDU - address 140.180.221.72 - _IP_MAC1 10.6.50.185 <=> 0:50:56:93:68:aa - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2017-08-29 - _date_changed 2017-08-29 - contacts Daniel E. Veith - _contacts dveith@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PublicDMZ -} - - -define host { - host_name epm100l - alias epm100l.Princeton.EDU - address 10.6.51.106 - use UNIX Dev/QA 151 PrivateDMZ - contacts John Shorey -} - - -define host { - host_name epm302l - alias epm302l.Princeton.EDU - address 10.6.49.124 - use UNIX Dev/QA 151 PrivateDMZ - contacts epm-list -} - - -define host { - host_name epm303l.aws - alias epm303l.aws.Princeton.EDU - address 10.21.28.185 - use UNIX Dev/QA AWS Untrust - contacts epm-list -} - - -define host { - host_name hoover1 - alias hoover1.Princeton.EDU - address 10.6.49.37 - _IP_MAC1 10.6.49.37 <=> 90:b1:1c:a:f5:2a - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 87 Prospect Ave. - _room MR, RK, A11 - _date_created 2012-11-09 - _date_changed 2015-11-16 - contacts Networking - _contacts networking@princeton.edu, unix@princeton.edu - use UNIX Dev/QA PrivateDMZ -} - - -define host { - host_name kima - alias kima.Princeton.EDU - address 10.6.52.137 - _IP_MAC1 10.6.52.137 <=> 0:50:56:93:24:87 - _SUBNET1 fw-servernet-3 (Trust - VLAN 1049 - .52) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2016-02-17 - _date_changed 2016-02-17 - _contacts ess-list@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 Trust -} - - -define host { - host_name mcgrawect200l - alias mcgrawect200l.Princeton.EDU - _alias1 etc - _alias2 gravitas - _alias3 zibaldone - address 140.180.220.106 - _IP_MAC1 140.180.220.106 <=> 0:50:56:93:5c:ea - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department McGraw Center for Teaching and Learning - _building New South - _room MR, VM, - - _date_created 2015-12-21 - _date_changed 2016-08-12 - contacts Ben Johnston, Sorat Tungkasiri - _contacts benj@princeton.edu, stungkas@princeton.edu, unix@princeton.edu - use UNIX Production NS PublicDMZ -} - - -define host { - host_name mol100l - alias mol100l.Princeton.EDU - _alias1 hhmi-dev - _alias2 proteomics-dev - _alias3 molbio-drupal-dev - _alias4 py-dev - _alias5 molbio-devold - _alias6 molbiolabs-dev - _alias7 jonikaslab-dev - address 10.6.48.64 - _IP_MAC1 10.6.48.64 <=> 0:50:56:93:0:32 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2011-05-25 - _date_changed 2016-08-16 - contacts Matthew H. Cahn - _contacts mcahn@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name mol101l - alias mol101l.Princeton.EDU - _alias1 csmolbio-qa - _alias2 devenport-mice-db-qa - _alias3 zfstockdb-test - _alias4 ms2-screen-test - _alias5 csmolbio-test - _alias6 mol-senior-thesis-test - _alias7 mol-refeeder-test - _alias8 mol-receptor-test - _alias9 petrylabdb-test - _alias10 mol-grading-test - _alias11 mol-evaluation-test - _alias12 kanglabdb-test - _alias13 proteomics-r-test - _alias14 proteomics-request-test - _alias15 molbioit-test - _alias16 mol-plossfreezer-test - _alias17 chlamylibrary-test - address 10.6.48.65 - _IP_MAC1 10.6.48.65 <=> 0:50:56:93:0:f2 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2012-07-11 - _date_changed 2017-08-09 - contacts Matthew H. Cahn - _contacts mcahn@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name mol103l - alias mol103l.Princeton.EDU - _alias1 election-test - address 140.180.220.235 - _IP_MAC1 140.180.220.235 <=> 0:50:56:93:1:24 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2012-11-27 - _date_changed 2017-05-12 - contacts Samuel S. Wang - _contacts pnihostdb@princeton.edu, sswang@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PublicDMZ -} - - -define host { - host_name mol300l - alias mol300l.Princeton.EDU - _alias1 hhmi-sandbox - _alias2 molbio-sandbox - _alias3 molbio-sandbox-admin - _alias4 proteomics-sandbox - _alias5 py-sandbox - address 10.6.48.66 - _IP_MAC1 10.6.48.66 <=> 0:50:56:93:0:31 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2011-05-25 - _date_changed 2014-09-12 - contacts Matthew H. Cahn - _contacts mcahn@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name mol301l - alias mol301l.Princeton.EDU - _alias1 csmolbio-dev - _alias2 devenport-mice-db-dev - _alias3 zfstockdb-dev - _alias4 ms2-screen-dev - _alias5 mol-xwiki-dev - _alias6 mol-senior-thesis-dev - _alias7 mol-refeeder-dev - _alias8 mol-receptor-dev - _alias9 petrylabdb-dev - _alias10 mol-grading-dev - _alias11 mol-evaluation-dev - _alias12 kanglabdb-dev - _alias13 proteomics-r-dev - _alias14 proteomics-request-dev - _alias15 mol-plossfreezer-dev - _alias16 maxzwilson-dev - _alias17 chlamylibrary-dev - address 10.6.48.67 - _IP_MAC1 10.6.48.67 <=> 0:50:56:93:0:f1 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2012-07-11 - _date_changed 2017-08-09 - contacts Matthew H. Cahn - _contacts mcahn@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name oaamx101l - alias oaamx101l.Princeton.EDU - address 140.180.220.95 - _IP_MAC1 140.180.220.95 <=> 0:50:56:93:78:f7 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Alumni Council - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2015-10-02 - _date_changed 2017-09-12 - contacts CISDR Group of EIS - _contacts cisdr@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PublicDMZ -} - - -define host { - host_name odoc100l - alias odoc100l.Princeton.EDU - address 10.6.48.88 - _IP_MAC1 10.6.48.88 <=> 0:50:56:93:1a:ea - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2013-12-20 - _date_changed 2014-10-09 - contacts Marvin E. Waterman - _contacts mwaterma@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name odoc200l - alias odoc200l.Princeton.EDU - address 140.180.220.40 - _IP_MAC1 140.180.220.40 <=> 0:50:56:93:1a:eb - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room MR, VM, - - _date_created 2013-12-20 - _date_changed 2014-10-09 - contacts Marvin E. Waterman - _contacts mwaterma@princeton.edu, unix@princeton.edu - use UNIX Production NS PublicDMZ -} - - -define host { - host_name odoc300l - alias odoc300l.Princeton.EDU - address 10.6.48.87 - _IP_MAC1 10.6.48.87 <=> 0:50:56:93:68:a8 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2013-12-17 - _date_changed 2014-10-09 - contacts Marvin E. Waterman - _contacts mwaterma@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name pcs300l - alias pcs300l.Princeton.EDU - _alias1 pace-center - address 140.180.221.1 - _IP_MAC1 140.180.221.1 <=> 0:50:56:93:19:f9 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Pace Center - _building 151 Forrestal Rd. - _room VM, MR, - - _date_created 2013-01-04 - _date_changed 2017-07-03 - contacts Justin T. Kazlauskas - _contacts jk14@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PublicDMZ -} - - -define host { - host_name pol100l - alias pol100l.Princeton.EDU - _alias1 pol-swirl - address 128.112.132.123 - _IP_MAC1 128.112.132.123 <=> 0:50:56:93:7d:1b - _SUBNET1 princeton-net - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2013-11-06 - _date_changed 2017-06-22 - contacts Andre Rivera - _contacts andreriv@princeton.edu, unix@princeton.edu - use UNIX Dev/QA -} - - -define host { - host_name pol101l - alias pol101l.Princeton.EDU - _alias1 pol-jobber-test - address 128.112.133.151 - _IP_MAC1 128.112.133.151 <=> 0:50:56:93:1b:7 - _SUBNET1 princeton-net - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2014-01-15 - _date_changed 2017-06-22 - contacts Andre Rivera - _contacts andreriv@princeton.edu, unix@princeton.edu - use UNIX Dev/QA -} - - -define host { - host_name prescott - alias prescott.Princeton.EDU - address 128.112.134.248 - _IP_MAC1 128.112.134.248 <=> 0:50:56:93:0:ce - _SUBNET1 princeton-net - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2012-06-06 - _date_changed 2013-07-23 - _contacts ess-list@princeton.edu, unix@princeton.edu - use UNIX Dev/QA -} - - -define host { - host_name prson-proj-dev - alias prson-proj-dev.Princeton.EDU - address 140.180.220.99 - _IP_MAC1 140.180.220.99 <=> 0:50:56:93:11:8c - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Psychology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2015-10-23 - _date_changed 2015-10-23 - contacts Diana I. Tamir - _contacts dtamir@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PublicDMZ -} - - -define host { - host_name reg102l - alias reg102l.Princeton.EDU - address 10.6.54.38 - _IP_MAC1 10.6.54.38 <=> 0:50:56:93:6d:f3 - _SUBNET1 lb-servernet-3 (EISFW - VLAN 4071 - .54) - _department Office of the Registrar - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2016-06-23 - _date_changed 2017-06-08 - contacts Brian K. Osborne, Ghani Zahid, Michael D. Muzzie - _contacts bosborne@princeton.edu, gzahid@princeton.edu, mdmuzzie@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 EISFW -} - - -define host { - host_name reg301l - alias reg301l.Princeton.EDU - address 10.6.54.39 - _IP_MAC1 10.6.54.39 <=> 0:50:56:93:35:cc - _SUBNET1 lb-servernet-3 (EISFW - VLAN 4071 - .54) - _department Office of the Registrar - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2016-06-23 - _date_changed 2017-06-08 - contacts Brian K. Osborne, Ghani Zahid, Michael D. Muzzie - _contacts bosborne@princeton.edu, gzahid@princeton.edu, mdmuzzie@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 EISFW -} - - -define host { - host_name sas100l - alias sas100l.Princeton.EDU - address 10.6.47.11 - use UNIX Dev/QA 151 Untrust - contacts mhood -} - - -define host { - host_name sas101l - alias sas101l.Princeton.EDU - address 10.6.47.12 - use UNIX Dev/QA 151 Untrust - contacts mhood -} - - -define host { - host_name sas102l - alias sas102l.Princeton.EDU - address 10.6.47.13 - use UNIX Dev/QA 151 Untrust - contacts mhood -} - - -define host { - host_name sas103l - alias sas103l.Princeton.EDU - address 10.6.47.14 - use UNIX Dev/QA 151 Untrust - contacts mhood -} - - -define host { - host_name sas104l - alias sas104l.Princeton.EDU - address 10.6.49.12 - use UNIX Dev/QA 151 PrivateDMZ - contacts mhood -} - - -define host { - host_name sas105l - alias sas105l.Princeton.EDU - address 10.6.49.13 - use UNIX Dev/QA 151 PrivateDMZ - contacts mhood -} - - -define host { - host_name sas106l - alias sas106l.Princeton.EDU - address 10.6.49.14 - use UNIX Dev/QA 151 PrivateDMZ - contacts mhood -} - - -define host { - host_name sas108l - alias sas108l.Princeton.EDU - address 10.6.50.45 - use UNIX Dev/QA 151 PrivateDMZ - contacts George Kopf -} - - -define host { - host_name sas109l - alias sas109l.Princeton.EDU - address 10.6.50.85 - use UNIX Dev/QA 151 PrivateDMZ - contacts George Kopf -} - - -define host { - host_name sas110l - alias sas110l.Princeton.EDU - address 140.180.221.123 - use UNIX Dev/QA 151 Untrust - contacts Software Infrastructure Services -} - - -define host { - host_name sas111l - alias sas111l.Princeton.EDU - address 10.6.50.181 - use UNIX Dev/QA 151 PrivateDMZ - contacts Software Infrastructure Services -} - - -define host { - host_name sas112l - alias sas112l.Princeton.EDU - address 140.180.220.238 - use UNIX Dev/QA 151 PublicDMZ - contacts Software Infrastructure Services -} - - -define host { - host_name sas113l - alias sas113l.Princeton.EDU - address 10.6.51.96 - use UNIX Dev/QA 151 PrivateDMZ - contacts sisters -} - - -define host { - host_name sas114l - alias sas114l.Princeton.EDU - address 10.6.51.107 - use UNIX Dev/QA 151 PrivateDMZ - contacts Software Infrastructure Services -} - - -define host { - host_name sas115l - alias sas115l.Princeton.EDU - address 10.6.51.108 - use UNIX Dev/QA 151 PrivateDMZ - contacts Software Infrastructure Services -} - - -define host { - host_name sas116l - alias sas116l.Princeton.EDU - address 10.6.51.109 - use UNIX Dev/QA 151 PrivateDMZ - contacts Software Infrastructure Services -} - - -define host { - host_name sas300l - alias sas300l.Princeton.EDU - address 10.6.51.41 - use UNIX Dev/QA 151 PrivateDMZ - contacts George Kopf -} - - -define host { - host_name sas301l - alias sas301l.Princeton.EDU - address 10.6.48.177 - use UNIX Dev/QA 151 PrivateDMZ - contacts George Kopf -} - - -define host { - host_name sas302l - alias sas302l.Princeton.EDU - address 10.6.49.134 - use UNIX Dev/QA 151 PrivateDMZ - contacts George Kopf -} - - -define host { - host_name sas303l - alias sas303l.Princeton.EDU - address 10.6.49.135 - use UNIX Dev/QA 151 PrivateDMZ - contacts George Kopf -} - - -define host { - host_name sas307l - alias sas307l.Princeton.EDU - address 10.6.50.141 - use UNIX Dev/QA 151 PrivateDMZ - contacts Software Infrastructure Services -} - - -define host { - host_name sas308l - alias sas308l.Princeton.EDU - address 10.6.48.29 - use UNIX Dev/QA 151 PrivateDMZ - contacts Software Infrastructure Services -} - - -define host { - host_name sas309l - alias sas309l.Princeton.EDU - address 10.6.49.156 - use UNIX Dev/QA 151 PrivateDMZ - contacts Software Infrastructure Services -} - - -define host { - host_name sas310l - alias sas310l.Princeton.EDU - address 10.6.50.167 - use UNIX Dev/QA 151 PrivateDMZ - contacts Software Infrastructure Services -} - - -define host { - host_name sas311l - alias sas311l.Princeton.EDU - address 10.6.50.155 - use UNIX Dev/QA 151 PrivateDMZ - contacts Software Infrastructure Services -} - - -define host { - host_name sas312l - alias sas312l.Princeton.EDU - address 10.6.49.222 - use UNIX Dev/QA 151 PrivateDMZ - contacts sisters -} - - -define host { - host_name sasiw100l - alias sasiw100l.Princeton.EDU - address 10.6.48.34 - use UNIX Dev/QA NS PrivateDMZ - contacts monocle -} - - -define host { - host_name sasiw101l - alias sasiw101l.Princeton.EDU - address 10.6.52.97 - use UNIX Dev/QA 151 Trust - contacts monocle -} - - -define host { - host_name sasiw103l - alias sasiw103l.Princeton.EDU - address 10.6.48.12 - use UNIX Dev/QA 151 PrivateDMZ - contacts monocle -} - - -define host { - host_name sasiw113l - alias sasiw113l.Princeton.EDU - address 10.6.50.117 - use UNIX Dev/QA 151 PrivateDMZ - contacts monocle -} - - -define host { - host_name sasiw117l - alias sasiw117l.Princeton.EDU - address 10.6.49.36 - use UNIX Dev/QA 151 PrivateDMZ - contacts monocle -} - - -define host { - host_name sasiw118l - alias sasiw118l.Princeton.EDU - address 10.6.53.250 - use UNIX Dev/QA 151 Trust - contacts monocle -} - - -define host { - host_name sasiw119l - alias sasiw119l.Princeton.EDU - address 10.6.50.102 - use UNIX Dev/QA 151 PrivateDMZ - contacts monocle -} - - -define host { - host_name sasiw350l - alias sasiw350l.Princeton.EDU - address 10.6.50.133 - use UNIX Dev/QA 151 PrivateDMZ - contacts monocle -} - - -define host { - host_name sasiw351l - alias sasiw351l.Princeton.EDU - address 10.6.53.238 - use UNIX Dev/QA 151 Trust - contacts monocle -} - - -define host { - host_name sdn-ctrl-vm - alias sdn-ctrl-vm.Princeton.EDU - address 10.6.48.221 - _IP_MAC1 10.6.48.221 <=> 0:50:56:93:56:99 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2015-07-13 - _date_changed 2015-07-16 - contacts Hyojoon Kim - _contacts hyojoonk@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name sdpprox300l - alias sdpprox300l.Princeton.EDU - _alias1 puaccessdev - address 10.6.50.78 - _IP_MAC1 10.6.50.78 <=> 0:50:56:93:2f:53 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2013-06-07 - _date_changed 2017-05-09 - contacts Identity and Access Management - _contacts iam@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name sdppua300l - alias sdppua300l.Princeton.EDU - address 10.6.50.79 - _IP_MAC1 10.6.50.79 <=> 0:50:56:93:2f:52 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2013-06-07 - _date_changed 2017-05-09 - contacts Identity and Access Management - _contacts iam@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name sdppua301l - alias sdppua301l.Princeton.EDU - address 10.6.50.80 - _IP_MAC1 10.6.50.80 <=> 0:50:56:93:11:15 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2013-06-24 - _date_changed 2017-05-09 - contacts Identity and Access Management - _contacts iam@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name sis100l - alias sis100l.Princeton.EDU - address 10.6.52.139 - use UNIX Dev/QA 151 Trust - contacts DBA Important List -} - - -define host { - host_name sis101l - alias sis101l.Princeton.EDU - address 10.6.52.145 - use UNIX Dev/QA 151 Trust - contacts DBA Important List -} - - -define host { - host_name sis102l - alias sis102l.Princeton.EDU - address 10.6.52.146 - use UNIX Dev/QA 151 Trust - contacts DBA Important List -} - - -define host { - host_name sis103l - alias sis103l.Princeton.EDU - address 10.6.53.56 - use UNIX Dev/QA 151 Trust - contacts DBA Important List -} - - -define host { - host_name sis104l - alias sis104l.Princeton.EDU - address 10.6.53.114 - use UNIX Dev/QA 151 Trust - contacts DBA Important List -} - - -define host { - host_name sis105l - alias sis105l.Princeton.EDU - address 10.6.53.115 - use UNIX Dev/QA 151 Trust - contacts DBA Important List -} - - -define host { - host_name sis106l - alias sis106l.Princeton.EDU - address 10.6.53.116 - use UNIX Dev/QA 151 Trust - contacts DBA Important List -} - - -define host { - host_name sis107l - alias sis107l.Princeton.EDU - address 10.6.53.117 - use UNIX Dev/QA 151 Trust - contacts DBA Important List -} - - -define host { - host_name sis108l - alias sis108l.Princeton.EDU - address 10.6.53.118 - use UNIX Dev/QA 151 Trust - contacts DBA Important List -} - - -define host { - host_name sis109l - alias sis109l.Princeton.EDU - address 10.6.53.119 - use UNIX Dev/QA 151 Trust - contacts DBA Important List -} - - -define host { - host_name sis110l - alias sis110l.Princeton.EDU - address 10.6.53.120 - use UNIX Dev/QA 151 Trust - contacts DBA Important List -} - - -define host { - host_name sis111l - alias sis111l.Princeton.EDU - address 10.6.53.121 - use UNIX Dev/QA 151 Trust - contacts DBA Important List -} - - -define host { - host_name sis112l - alias sis112l.Princeton.EDU - address 10.6.53.122 - use UNIX Dev/QA 151 Trust - contacts DBA Important List -} - - -define host { - host_name sis113l - alias sis113l.Princeton.EDU - address 10.6.53.123 - use UNIX Dev/QA 151 Trust - contacts DBA Important List -} - - -define host { - host_name sis114l - alias sis114l.Princeton.EDU - address 10.6.53.124 - use UNIX Dev/QA 151 Trust - contacts DBA Important List -} - - -define host { - host_name sis115l - alias sis115l.Princeton.EDU - address 10.6.53.125 - use UNIX Dev/QA 151 Trust - contacts DBA Important List -} - - -define host { - host_name sis119l - alias sis119l.Princeton.EDU - address 10.6.53.152 - use UNIX Dev/QA 151 Trust - contacts DBA Important List -} - - -define host { - host_name sis120l - alias sis120l.Princeton.EDU - address 10.6.53.153 - use UNIX Dev/QA 151 Trust - contacts DBA Important List -} - - -define host { - host_name sis123l - alias sis123l.Princeton.EDU - address 10.6.53.159 - use UNIX Dev/QA NS Trust - contacts DBA Important List -} - - -define host { - host_name sis124l - alias sis124l.Princeton.EDU - address 10.6.53.160 - use UNIX Dev/QA NS Trust - contacts DBA Important List -} - - -define host { - host_name sis300l - alias sis300l.Princeton.EDU - address 10.6.52.128 - use UNIX Dev/QA 151 Trust - contacts DBA Important List -} - - -define host { - host_name sis301l - alias sis301l.Princeton.EDU - address 10.6.52.129 - use UNIX Dev/QA 151 Trust - contacts DBA Important List -} - - -define host { - host_name sis302l - alias sis302l.Princeton.EDU - address 10.6.52.130 - use UNIX Dev/QA 151 Trust - contacts DBA Important List -} - - -define host { - host_name sis303l - alias sis303l.Princeton.EDU - address 10.6.52.141 - use UNIX Dev/QA 151 Trust - contacts DBA Important List -} - - -define host { - host_name sis304l - alias sis304l.Princeton.EDU - address 10.6.52.142 - use UNIX Dev/QA 151 Trust - contacts DBA Important List -} - - -define host { - host_name sis305l - alias sis305l.Princeton.EDU - address 10.6.52.140 - use UNIX Dev/QA 151 Trust - contacts DBA Important List -} - - -define host { - host_name sis306l - alias sis306l.Princeton.EDU - address 10.6.52.143 - use UNIX Dev/QA 151 Trust - contacts DBA Important List -} - - -define host { - host_name sis307l - alias sis307l.Princeton.EDU - address 10.6.52.144 - use UNIX Dev/QA 151 Trust - contacts DBA Important List -} - - -define host { - host_name sis308l - alias sis308l.Princeton.EDU - address 10.6.53.128 - use UNIX Dev/QA 151 Trust - contacts DBA Important List -} - - -define host { - host_name sis309l - alias sis309l.Princeton.EDU - address 10.6.53.126 - use UNIX Dev/QA 151 Trust - contacts DBA Important List -} - - -define host { - host_name sis311l - alias sis311l.Princeton.EDU - address 10.6.53.132 - use UNIX Dev/QA 151 Trust - contacts DBA Important List -} - - -define host { - host_name sis312l - alias sis312l.Princeton.EDU - address 10.6.53.133 - use UNIX Dev/QA 151 Trust - contacts DBA Important List -} - - -define host { - host_name sis314l - alias sis314l.Princeton.EDU - address 10.6.52.103 - use UNIX Dev/QA 151 Trust - contacts DBA Important List -} - - -define host { - host_name sis315l - alias sis315l.Princeton.EDU - address 10.6.52.148 - use UNIX Dev/QA 151 Trust - contacts DBA Important List -} - - -define host { - host_name sisdba301l - alias sisdba301l.Princeton.EDU - address 10.6.53.164 - use UNIX Dev/QA 151 Trust - contacts DBA Important List -} - - -define host { - host_name ssohdcsp100l - alias ssohdcsp100l.Princeton.EDU - address 10.6.49.144 - use UNIX Dev/QA 151 PrivateDMZ - contacts ohd-sec -} - - -define host { - host_name timeline101l - alias timeline101l.Princeton.EDU - address 10.6.56.22 - _IP_MAC1 10.6.56.22 <=> 0:50:56:93:7c:4c - _SUBNET1 lb-servernet-5 (EISFW - VLAN 4073 - .56) - _department Administrative Information Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2015-11-01 - _date_changed 2015-11-04 - contacts Kevin R. Perry - _contacts perry@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 EISFW -} - - -define host { - host_name timeline102l - alias timeline102l.Princeton.EDU - address 10.6.56.23 - _IP_MAC1 10.6.56.23 <=> 0:50:56:93:4c:70 - _SUBNET1 lb-servernet-5 (EISFW - VLAN 4073 - .56) - _department Administrative Information Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2015-11-01 - _date_changed 2015-11-04 - contacts Kevin R. Perry - _contacts perry@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 EISFW -} - - -define host { - host_name timeline103l - alias timeline103l.Princeton.EDU - address 10.6.49.19 - _IP_MAC1 10.6.49.19 <=> 0:50:56:93:41:99 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Administrative Information Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2015-11-01 - _date_changed 2015-11-01 - contacts Kevin R. Perry - _contacts perry@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name timeline104l - alias timeline104l.Princeton.EDU - address 10.6.49.10 - _IP_MAC1 10.6.49.10 <=> 0:50:56:93:12:f6 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2016-07-01 - _date_changed 2016-07-01 - contacts Kevin R. Perry - _contacts perry@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name timeline105l - alias timeline105l.Princeton.EDU - address 10.6.49.98 - _IP_MAC1 10.6.49.98 <=> 0:50:56:93:70:1a - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2016-07-01 - _date_changed 2016-07-01 - contacts Kevin R. Perry - _contacts perry@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name timeline301l - alias timeline301l.Princeton.EDU - _alias1 timeline-test - _alias2 timeline-dev - address 10.6.49.17 - _IP_MAC1 10.6.49.17 <=> 0:50:56:93:c:a0 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Administrative Information Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2015-11-01 - _date_changed 2015-12-17 - contacts Kevin R. Perry - _contacts perry@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name timeline302l - alias timeline302l.Princeton.EDU - address 10.6.49.18 - _IP_MAC1 10.6.49.18 <=> 0:50:56:93:1b:61 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Administrative Information Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2015-11-01 - _date_changed 2015-11-01 - contacts Kevin R. Perry - _contacts perry@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name updatespace - alias updatespace.Princeton.EDU - address 10.6.48.231 - _IP_MAC1 10.6.48.231 <=> 0:50:56:93:5a:46 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room VM, MR, - - _date_created 2015-08-11 - _date_changed 2015-08-11 - contacts Monika C. Mevenkamp - _contacts monikam@princeton.edu, unix@princeton.edu - use UNIX Dev/QA 151 PrivateDMZ -} - - -define host { - host_name uss310l - alias uss310l.Princeton.EDU - address 140.180.221.87 - use UNIX Dev/QA 151 PublicDMZ - contacts USS IT -} - - -define host { - host_name waseqa03l - alias waseqa03l.Princeton.EDU - address 140.180.221.30 - _IP_MAC1 140.180.221.30 <=> 0:50:56:93:f0:fa - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room mr, vm, - - _date_created 2017-08-25 - _date_changed 2017-08-25 - contacts Serge J. Goldstein - _contacts serge@princeton.edu, unix@princeton.edu - use UNIX Dev/QA NS PublicDMZ -} - - -define host { - host_name x110client01 - alias x110client01.Princeton.EDU - address 10.6.53.100 - use Oracle Exadata Dev/QA 151 Trust - contacts DBA Important List -} - - -define host { - host_name x110client02 - alias x110client02.Princeton.EDU - address 10.6.53.102 - use Oracle Exadata Dev/QA 151 Trust - contacts DBA Important List -} - - - -define host { - host_name adm-it2 - alias adm-it2.Princeton.EDU - address 10.6.48.85 - _IP_MAC1 10.6.48.85 <=> 0:50:56:93:2:af - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Admission - _building New South - _room MR, VM, - - _date_created 2015-08-25 - _date_changed 2015-08-25 - contacts Jonathan R. Bickel - _contacts jbickel@princeton.edu, unix@princeton.edu - use UNIX Production NS PrivateDMZ -} - - -define host { - host_name amu203l - alias amu203l.Princeton.EDU - _alias1 artimage - address 140.180.221.59 - _IP_MAC1 140.180.221.59 <=> 0:50:56:93:50:cb - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2013-02-20 - _date_changed 2017-10-30 - contacts Janet M. Strohl-Morgan - _contacts jstrohl@princeton.edu, unix@princeton.edu - use UNIX Production 151 PublicDMZ -} - - -define host { - host_name amu208l - alias amu208l.Princeton.EDU - address 10.6.49.203 - _IP_MAC1 10.6.49.203 <=> 0:50:56:93:55:f6 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Art Museum - _building New South - _room MR, VM, - - _date_created 2016-11-07 - _date_changed 2016-11-07 - contacts Daniel T. Brennan - _contacts dbrennan@princeton.edu, unix@princeton.edu - use UNIX Production NS PrivateDMZ -} - - -define host { - host_name amu211l - alias amu211l.Princeton.EDU - address 140.180.221.83 - use UNIX Dev/QA NS PublicDMZ - contacts mmarnett -} - - -define host { - host_name andvlab200l - alias andvlab200l.Princeton.EDU - address 140.180.221.24 - use UNIX Production NS PublicDMZ - contacts jmm14 -} - - -define host { - host_name art200l - alias art200l.Princeton.EDU - _alias1 artandarchaeology - _alias2 cms.artandarchaeology - _alias3 staging.artandarchaeology - _alias4 staging.cms.artandarchaeology - address 140.180.221.31 - _IP_MAC1 140.180.221.31 <=> 0:50:56:93:2a:e8 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room MR, VM, - - _date_created 2013-08-22 - _date_changed 2017-07-31 - contacts Julie A. Angarone - _contacts angarone@princeton.edu, unix@princeton.edu - use UNIX Dev/QA NS PublicDMZ -} - - -define host { - host_name as202l - alias as202l.Princeton.EDU - _alias1 wordnetweb - address 140.180.220.190 - _IP_MAC1 140.180.220.190 <=> 0:50:56:93:29:4e - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Computer Science - _building New South - _room MR, VM, - - _date_created 2017-03-29 - _date_changed 2017-04-13 - contacts Christiane D. Fellbaum, Randee I. Tengi - _contacts fellbaum@princeton.edu, rit@princeton.edu, unix@princeton.edu - use UNIX Production NS PublicDMZ -} - - -define host { - host_name asbb208l - alias asbb208l.Princeton.EDU - address 140.180.220.253 - _IP_MAC1 140.180.220.253 <=> 0:50:56:93:11:12 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Academic Technology Services, Office of Information Technology - _building New South - _room MR, VM, - - _date_created 2013-06-20 - _date_changed 2017-07-12 - contacts Kim Y. Huang - _contacts kimhuang@princeton.edu, unix@princeton.edu - use UNIX Production NS PublicDMZ -} - - -define host { - host_name asetc206l - alias asetc206l.Princeton.EDU - address 140.180.221.15 - _IP_MAC1 140.180.221.15 <=> 0:50:56:93:2a:f5 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Academic Technology Services, Office of Information Technology - _building New South - _room MR, VM, - - _date_created 2013-09-17 - _date_changed 2017-07-03 - contacts ATS System Administration - _contacts etcsys@princeton.edu, unix@princeton.edu - use UNIX Production NS PublicDMZ -} - - -define host { - host_name asoar201l - alias asoar201l.Princeton.EDU - _alias1 oawaiver - address 140.180.220.69 - _IP_MAC1 140.180.220.69 <=> 0:50:56:93:73:89 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room MR, VM, - - _date_created 2015-03-24 - _date_changed 2016-03-17 - contacts Monika C. Mevenkamp - _contacts monikam@princeton.edu, unix@princeton.edu - use UNIX Production NS PublicDMZ -} - - -define host { - host_name asweb200l - alias asweb200l.Princeton.EDU - _alias1 mobile-map - _alias2 m-map - _alias3 almagest - _alias4 atsweb - _alias5 etcweb - _alias6 iat - _alias7 webfeeds - address 140.180.221.4 - _IP_MAC1 140.180.221.4 <=> 0:50:56:93:11:49 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Academic Technology Services, Office of Information Technology - _building New South - _room MR, VM, - - _date_created 2013-07-16 - _date_changed 2017-07-03 - contacts Kevin R. Perry - _contacts perry@princeton.edu, unix@princeton.edu - use UNIX Production NS PublicDMZ -} - - -define host { - host_name atssitesdb200l - alias atssitesdb200l.Princeton.EDU - _alias1 sitesdb-new - address 10.6.51.60 - _IP_MAC1 10.6.51.60 <=> 0:50:56:93:54:37 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room mr, vm, - - _date_created 2018-03-28 - _date_changed 2018-04-10 - contacts Brian K. Osborne, wds-ops - _contacts bosborne@princeton.edu, unix@princeton.edu - use UNIX Dev/QA NS PrivateDMZ -} - - -define host { - host_name autom200l - alias autom200l.Princeton.EDU - address 10.6.55.33 - use UNIX Dev/QA NS EISFW - contacts Networking -} - - -define host { - host_name autom201l - alias autom201l.Princeton.EDU - address 10.6.55.34 - use UNIX Dev/QA NS EISFW - contacts Networking -} - - -define host { - host_name bunk - alias bunk.Princeton.EDU - address 10.6.52.180 - _IP_MAC1 10.6.52.180 <=> 0:50:56:93:78:b - _SUBNET1 fw-servernet-3 (Trust - VLAN 1049 - .52) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room MR, VM, - - _date_created 2016-05-18 - _date_changed 2016-05-18 - contacts D T. Moraski II - _contacts ess-list@princeton.edu, moraski2@princeton.edu, unix@princeton.edu - use UNIX Production NS Trust -} - - -define host { - host_name cisdr202l - alias cisdr202l.Princeton.EDU - _alias1 dataspace - address 140.180.220.105 - _IP_MAC1 140.180.220.105 <=> 0:50:56:93:40:7f - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room MR, VM, - - _date_created 2015-11-17 - _date_changed 2016-01-13 - contacts Monika C. Mevenkamp - _contacts monikam@princeton.edu, unix@princeton.edu - use UNIX Production NS PublicDMZ -} - - -define host { - host_name cisdr204l - alias cisdr204l.Princeton.EDU - _alias1 oar - address 140.180.220.49 - _IP_MAC1 140.180.220.49 <=> 0:50:56:93:5f:72 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room MR, VM, - - _date_created 2016-02-10 - _date_changed 2016-08-25 - contacts Monika C. Mevenkamp - _contacts monikam@princeton.edu, unix@princeton.edu - use UNIX Production NS PublicDMZ -} - - -define host { - host_name cla200l - alias cla200l.Princeton.EDU - _alias1 classics - address 140.180.221.42 - _IP_MAC1 140.180.221.42 <=> 0:50:56:93:6b:20 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room mr, vm, - - _date_created 2017-08-25 - _date_changed 2017-08-31 - contacts Kai C. Laidlaw, cla_scag - _contacts klaidlaw@princeton.edu, unix@princeton.edu - use UNIX Production NS PublicDMZ -} - - -define host { - host_name devrtools - alias devrtools.Princeton.EDU - address 10.6.48.62 - _IP_MAC1 10.6.48.62 <=> 0:50:56:93:72:39 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room MR, VM, - - _date_created 2014-12-02 - _date_changed 2016-11-16 - contacts Kathleen D. Haney, Nicholas DiPietro - _contacts dipietro@princeton.edu, kathyh@princeton.edu, unix@princeton.edu - use UNIX Dev/QA -} - - -define host { - host_name eis208l - alias eis208l.Princeton.EDU - address 10.6.53.59 - _IP_MAC1 10.6.53.59 <=> a4:ba:db:40:eb:4f - _SUBNET1 fw-servernet-3 (Trust - VLAN 1049 - .52) - _department Administrative Information Services, Office of Information Technology - _building New South - _room MR, RK, I3 - _date_created 2010-08-12 - _date_changed 2017-12-28 - contact_groups DBA Page - contacts DBA Important List - _contacts dbas@princeton.edu, unix@princeton.edu - use UNIX Production NS Trust -} - - -define host { - host_name eis222l - alias eis222l.Princeton.EDU - _alias1 loghost - address 128.112.129.171 - _IP_MAC1 128.112.129.171 <=> 0:50:56:93:3a:87 - _SUBNET1 princeton-net - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room MR, VM, - - _date_created 2013-04-23 - _date_changed 2015-09-29 - contacts ESS Ops - _contacts sv-list@princeton.edu, unix@princeton.edu - use UNIX Production -} - - -define host { - host_name ele200l - alias ele200l.Princeton.EDU - address 128.112.134.58 - _IP_MAC1 128.112.134.58 <=> 0:50:56:93:4:7c - _SUBNET1 princeton-net - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room MR, VM, - - _date_created 2014-04-18 - _date_changed 2017-03-30 - contacts Computational Science and Engineering Support - _contacts csesa@princeton.edu, unix@princeton.edu - use UNIX Production -} - - -define host { - host_name ele201l.ee - alias ele201l.ee.Princeton.EDU - _alias1 groups - address 140.180.221.28 - _IP_MAC1 140.180.221.28 <=> 0:50:56:93:dd:82 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room mr, vm, - - _date_created 2017-08-24 - _date_changed 2017-11-01 - contacts Daniel E. Veith - _contacts dveith@princeton.edu, unix@princeton.edu - use UNIX Dev/QA NS PublicDMZ -} - - -define host { - host_name ele203l - alias ele203l.Princeton.EDU - address 140.180.220.75 - use UNIX Production NS PublicDMZ - contacts eeweb -} - - -define host { - host_name epm201l - alias epm201l.Princeton.EDU - address 10.6.47.20 - use UNIX Dev/QA NS Untrust - contacts epm-list -} - - -define host { - host_name epm202l - alias epm202l.Princeton.EDU - address 10.6.47.19 - use UNIX Dev/QA NS Untrust - contacts epm-list -} - - -define host { - host_name erp200l - alias erp200l.Princeton.EDU - address 140.180.220.181 - use UNIX Dev/QA NS PublicDMZ - contacts Thomas E. Dommermuth -} - - -define host { - host_name iso-202l - alias iso-202l.Princeton.EDU - address 10.6.59.11 - _IP_MAC1 10.6.59.11 <=> 0:50:56:93:a9:7f - _SUBNET1 pci-servernet-1 (PCI - 1 - .59.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2017-03-22 - _date_changed 2017-03-29 - contacts Dean A. Plante - _contacts dplante@princeton.edu, unix@princeton.edu - use UNIX Production 151 Untrust -} - - -define host { - host_name iso200l-rencif - alias iso200l-rencif.Princeton.EDU - _alias1 ren-cif01 - address 140.180.220.119 - _IP_MAC1 140.180.220.119 <=> 0:50:56:93:55:49 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room MR, VM, - - _date_created 2016-05-06 - _date_changed 2016-05-06 - contacts Dean A. Plante - _contacts dplante@princeton.edu, unix@princeton.edu - use UNIX Production NS PublicDMZ -} - - -define host { - host_name isocis200l - alias isocis200l.Princeton.EDU - address 10.6.51.94 - use UNIX Dev/QA NS PrivateDMZ - contacts oit.security -} - - -define host { - host_name jefspecial200l - alias jefspecial200l.Princeton.EDU - _alias1 jefferson3volumes - address 140.180.220.175 - _IP_MAC1 140.180.220.175 <=> 0:50:56:93:ad:8 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Papers of Thomas Jefferson - _building New South - _room MR, VM, - - _date_created 2017-05-30 - _date_changed 2018-04-11 - contacts James P. McClure - _contacts mcclur@princeton.edu, unix@princeton.edu - use UNIX Production NS PublicDMZ -} - - -define host { - host_name mol203l - alias mol203l.Princeton.EDU - _alias1 old--gerrymander - _alias2 election - address 140.180.220.244 - _IP_MAC1 140.180.220.244 <=> 0:50:56:93:1:25 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2012-11-27 - _date_changed 2017-06-20 - contacts Samuel S. Wang - _contacts pnihostdb@princeton.edu, sswang@princeton.edu, unix@princeton.edu - use UNIX Production 151 PublicDMZ -} - - -define host { - host_name net200l-config - alias net200l-config.Princeton.EDU - address 10.6.48.188 - _IP_MAC1 10.6.48.188 <=> 0:50:56:93:9:fa - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Support Services, Office of Information Technology - _building New South - _room MR, VM, - - _date_created 2015-04-22 - _date_changed 2015-04-22 - contacts David Rinker - _contacts drinker@princeton.edu, unix@princeton.edu - use UNIX Production NS PrivateDMZ -} - - -define host { - host_name nismaster - alias nismaster.Princeton.EDU - address 128.112.128.108 - _IP_MAC1 128.112.128.108 <=> 90:b1:1c:e9:1d:db - _SUBNET1 princeton-net - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, RK, C04, C1B3 - _date_created 2001-07-24 - _date_changed 2014-03-04 - _contacts ess-list@princeton.edu, martin@princeton.edu, unix@princeton.edu - use UNIX Production -} - - -define host { - host_name nisslave11 - alias nisslave11.Princeton.EDU - address 128.112.134.146 - _IP_MAC1 128.112.134.146 <=> 0:50:56:93:b:8 - _SUBNET1 princeton-net - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room MR, VM - - _date_created 2013-03-26 - _date_changed 2013-07-23 - _contacts ess-list@princeton.edu, unix@princeton.edu - use UNIX Production -} - - -define host { - host_name nisslave12 - alias nisslave12.Princeton.EDU - address 128.112.134.137 - _IP_MAC1 128.112.134.137 <=> 0:50:56:93:b:6 - _SUBNET1 princeton-net - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room MR, VM, - - _date_created 2013-03-26 - _date_changed 2013-07-23 - _contacts ess-list@princeton.edu, unix@princeton.edu - use UNIX Production -} - - -define host { - host_name oaamx201l - alias oaamx201l.Princeton.EDU - address 140.180.220.102 - _IP_MAC1 140.180.220.102 <=> 0:50:56:93:5:43 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Alumni Council - _building New South - _room MR, VM, - - _date_created 2015-11-25 - _date_changed 2017-09-12 - contacts CISDR Group of EIS - _contacts cisdr@princeton.edu, unix@princeton.edu - use UNIX Production NS PublicDMZ -} - - -define host { - host_name oaamx202l - alias oaamx202l.Princeton.EDU - address 140.180.220.103 - _IP_MAC1 140.180.220.103 <=> 0:50:56:93:5a:d - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Alumni Council - _building New South - _room MR, VM, - - _date_created 2015-11-25 - _date_changed 2017-09-12 - contacts CISDR Group of EIS - _contacts cisdr@princeton.edu, unix@princeton.edu - use UNIX Production NS PublicDMZ -} - - -define host { - host_name oaapcvm203l - alias oaapcvm203l.Princeton.EDU - address 140.180.220.177 - _IP_MAC1 140.180.220.177 <=> 0:50:56:93:c:a4 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room mr, vm, - - _date_created 2017-12-14 - _date_changed 2017-12-14 - contacts Mibs Southerland - _contacts milbrey@princeton.edu, unix@princeton.edu - use UNIX Production NS PublicDMZ -} - - -define host { - host_name omar - alias omar.Princeton.EDU - address 10.6.52.179 - _IP_MAC1 10.6.52.179 <=> 0:50:56:93:31:1b - _SUBNET1 fw-servernet-3 (Trust - VLAN 1049 - .52) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room MR, VM, - - _date_created 2016-05-18 - _date_changed 2016-05-18 - contacts D T. Moraski II - _contacts ess-list@princeton.edu, moraski2@princeton.edu, unix@princeton.edu - use UNIX Production NS Trust -} - - -define host { - host_name opr202l - alias opr202l.Princeton.EDU - address 140.180.221.93 - use UNIX Production NS PublicDMZ - contacts appleton -} - - -define host { - host_name oss200l - alias oss200l.Princeton.EDU - _alias1 uc-sftpbkup - address 10.6.49.181 - _IP_MAC1 10.6.49.181 <=> 0:50:56:93:44:c0 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Support Services, Office of Information Technology - _building New South - _room mr, vm, - - _date_created 2016-08-19 - _date_changed 2016-08-19 - contacts Grant A. Weed - _contacts gweed@princeton.edu, unix@princeton.edu - use UNIX Production NS PrivateDMZ -} - - -define host { - host_name pol202l - alias pol202l.Princeton.EDU - address 140.180.220.87 - _IP_MAC1 140.180.220.87 <=> 0:50:56:93:23:ef - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Politics - _building New South - _room MR, VM, - - _date_created 2015-08-06 - _date_changed 2017-08-29 - contacts Politics Department - _contacts polhelp@princeton.edu, unix@princeton.edu - use UNIX Production NS PublicDMZ -} - - -define host { - host_name pol203l - alias pol203l.Princeton.EDU - address 140.180.220.187 - _IP_MAC1 140.180.220.187 <=> 0:50:56:93:7d:9f - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Politics - _building New South - _room MR,VM - _date_created 2017-02-28 - _date_changed 2017-09-12 - _contacts support@politics.princeton.edu, unix@princeton.edu - use UNIX Production NS PublicDMZ -} - - -define host { - host_name prson-proj-prod - alias prson-proj-prod.Princeton.EDU - address 140.180.220.100 - _IP_MAC1 140.180.220.100 <=> 0:50:56:93:a:c7 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Psychology - _building New South - _room MR, VM, - - _date_created 2015-10-23 - _date_changed 2015-10-23 - contacts Diana I. Tamir - _contacts dtamir@princeton.edu, unix@princeton.edu - use UNIX Production NS PublicDMZ -} - - -define host { - host_name reg203l - alias reg203l.Princeton.EDU - address 10.6.54.57 - _IP_MAC1 10.6.54.57 <=> 0:50:56:93:13:91 - _SUBNET1 lb-servernet-3 (EISFW - VLAN 4071 - .54) - _department Office of the Registrar - _building New South - _room MR, VM, - - _date_created 2016-06-23 - _date_changed 2017-06-08 - contacts Brian K. Osborne, Ghani Zahid, Michael D. Muzzie - _contacts bosborne@princeton.edu, gzahid@princeton.edu, mdmuzzie@princeton.edu, unix@princeton.edu - use UNIX Production NS EISFW -} - - -define host { - host_name sas200l - alias sas200l.Princeton.EDU - address 10.6.51.50 - use UNIX Production NS PrivateDMZ - contacts George Kopf -} - - -define host { - host_name sas201l - alias sas201l.Princeton.EDU - address 10.6.47.17 - use UNIX Production NS Untrust - contacts George Kopf -} - - -define host { - host_name sas202l - alias sas202l.Princeton.EDU - address 10.6.47.18 - use UNIX Production NS Untrust - contacts mhood -} - - -define host { - host_name sas204l - alias sas204l.Princeton.EDU - address 10.6.50.71 - use UNIX Production NS PrivateDMZ - contacts George Kopf -} - - -define host { - host_name sas205l - alias sas205l.Princeton.EDU - address 10.6.50.107 - use UNIX Production NS PrivateDMZ - contacts George Kopf -} - - -define host { - host_name sas206l - alias sas206l.Princeton.EDU - address 10.6.50.49 - use UNIX Production NS PrivateDMZ - contacts George Kopf -} - - -define host { - host_name sas207l - alias sas207l.Princeton.EDU - address 140.180.221.35 - use UNIX Dev/QA NS PublicDMZ - contacts Software Infrastructure Services -} - - -define host { - host_name sas208l - alias sas208l.Princeton.EDU - address 10.6.50.189 - use UNIX Dev/QA NS PrivateDMZ - contacts Software Infrastructure Services -} - - -define host { - host_name sas209l - alias sas209l.Princeton.EDU - address 10.6.51.9 - use UNIX Dev/QA NS PrivateDMZ - contacts Software Infrastructure Services -} - - -define host { - host_name sas210l - alias sas210l.Princeton.EDU - address 10.6.51.97 - use UNIX Dev/QA NS PrivateDMZ - contacts sisters -} - - -define host { - host_name sas211l - alias sas211l.Princeton.EDU - address 10.6.51.110 - use UNIX Dev/QA NS PrivateDMZ - contacts Software Infrastructure Services -} - - -define host { - host_name sas212l - alias sas212l.Princeton.EDU - address 10.6.51.111 - use UNIX Dev/QA NS PrivateDMZ - contacts Software Infrastructure Services -} - - -define host { - host_name sas213l - alias sas213l.Princeton.EDU - address 10.6.51.112 - use UNIX Dev/QA NS PrivateDMZ - contacts Software Infrastructure Services -} - - -define host { - host_name sasiw200l - alias sasiw200l.Princeton.EDU - address 10.6.48.237 - use UNIX Production NS PrivateDMZ - contacts monocle -} - - -define host { - host_name sasiw201l - alias sasiw201l.Princeton.EDU - address 10.6.53.93 - use UNIX Production NS Trust - contacts monocle -} - - -define host { - host_name sasiw203l - alias sasiw203l.Princeton.EDU - address 10.6.48.110 - use UNIX Production NS PrivateDMZ - contacts monocle -} - - -define host { - host_name sasiw217l - alias sasiw217l.Princeton.EDU - address 10.6.50.132 - use UNIX Dev/QA NS Untrust - contacts monocle -} - - -define host { - host_name sasiw218l - alias sasiw218l.Princeton.EDU - address 10.6.50.90 - use UNIX Dev/QA NS PrivateDMZ - contacts monocle -} - - -define host { - host_name sasiw219l - alias sasiw219l.Princeton.EDU - address 10.6.52.46 - use UNIX Dev/QA NS Trust - contacts monocle -} - - -define host { - host_name sasiw220l - alias sasiw220l.Princeton.EDU - address 10.6.53.243 - use UNIX Production NS Trust - contacts monocle -} - - -define host { - host_name sasiw221l - alias sasiw221l.Princeton.EDU - address 10.6.53.245 - use UNIX Production NS Trust - contacts monocle -} - - -define host { - host_name sasiw222l - alias sasiw222l.Princeton.EDU - address 10.6.53.246 - use UNIX Dev/QA NS Trust - contacts monocle -} - - -define host { - host_name sasiw223l - alias sasiw223l.Princeton.EDU - address 10.6.50.125 - use UNIX Dev/QA NS PrivateDMZ - contacts monocle -} - - -define host { - host_name sasiw224l - alias sasiw224l.Princeton.EDU - address 140.180.220.239 - use UNIX Dev/QA NS PublicDMZ - contacts monocle -} - - -define host { - host_name sentinel - alias sentinel.Princeton.EDU - address 128.112.128.134 - _IP_MAC1 128.112.128.134 <=> N/A - _SUBNET1 princeton-net - _department Support Services, Office of Information Technology - _building 87 Prospect Ave. - _room MR, MP, sentinel - _date_created 2009-02-24 - _date_changed 2016-10-28 - contacts Networking - _contacts networking@princeton.edu, unix@princeton.edu - use UNIX Production -} - - -define host { - host_name sis200l - alias sis200l.Princeton.EDU - address 10.6.52.181 - use UNIX Production NS Trust - contacts DBA Important List -} - - -define host { - host_name sis201l - alias sis201l.Princeton.EDU - address 10.6.53.134 - use UNIX Production NS Trust - contacts DBA Important List -} - - -define host { - host_name sis202l - alias sis202l.Princeton.EDU - address 10.6.53.135 - use UNIX Production NS Trust - contacts DBA Important List -} - - -define host { - host_name sis203l - alias sis203l.Princeton.EDU - address 10.6.53.136 - use UNIX Production NS Trust - contacts DBA Important List -} - - -define host { - host_name sis204l - alias sis204l.Princeton.EDU - address 10.6.53.137 - use UNIX Production NS Trust - contacts DBA Important List -} - - -define host { - host_name sis205l - alias sis205l.Princeton.EDU - address 10.6.53.138 - use UNIX Production NS Trust - contacts DBA Important List -} - - -define host { - host_name sis206l - alias sis206l.Princeton.EDU - address 10.6.53.139 - use UNIX Production NS Trust - contacts DBA Important List -} - - -define host { - host_name sis207l - alias sis207l.Princeton.EDU - address 10.6.53.140 - use UNIX Production NS Trust - contacts DBA Important List -} - - -define host { - host_name sis208l - alias sis208l.Princeton.EDU - address 10.6.53.141 - use UNIX Production NS Trust - contacts DBA Important List -} - - -define host { - host_name sis209l - alias sis209l.Princeton.EDU - address 10.6.53.142 - use UNIX Production NS Trust - contacts DBA Important List -} - - -define host { - host_name sis210l - alias sis210l.Princeton.EDU - address 10.6.53.145 - use UNIX Production NS Trust - contacts DBA Important List -} - - -define host { - host_name sis211l - alias sis211l.Princeton.EDU - address 10.6.53.147 - use UNIX Production NS Trust - contacts DBA Important List -} - - -define host { - host_name sis212l - alias sis212l.Princeton.EDU - address 10.6.53.148 - use UNIX Production NS Trust - contacts DBA Important List -} - - -define host { - host_name sis213l - alias sis213l.Princeton.EDU - address 10.6.53.149 - use UNIX Production NS Trust - contacts DBA Important List -} - - -define host { - host_name sis214l - alias sis214l.Princeton.EDU - address 10.6.53.150 - use UNIX Dev/QA NS Trust - contacts DBA Important List -} - - -define host { - host_name sis215l - alias sis215l.Princeton.EDU - address 10.6.53.151 - use UNIX Dev/QA NS Trust - contacts DBA Important List -} - - -define host { - host_name sis218l - alias sis218l.Princeton.EDU - address 10.6.53.157 - use UNIX Dev/QA NS Trust - contacts DBA Important List -} - - -define host { - host_name sis219l - alias sis219l.Princeton.EDU - address 10.6.53.158 - use UNIX Dev/QA NS Trust - contacts DBA Important List -} - - -define host { - host_name sis220l - alias sis220l.Princeton.EDU - address 10.6.53.161 - use UNIX Dev/QA NS Trust - contacts DBA Important List -} - - -define host { - host_name sis221l - alias sis221l.Princeton.EDU - address 10.6.53.162 - use UNIX Dev/QA NS Trust - contacts DBA Important List -} - - -define host { - host_name ssocms200 - alias ssocms200.Princeton.EDU - address 10.6.49.35 - _IP_MAC1 10.6.49.35 <=> 0:50:56:93:20:94 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Office of the Vice President for Information Technology - _building New South - _room MR,VM - _date_created 2015-11-16 - _date_changed 2016-06-10 - contacts Dean A. Plante - _contacts dplante@princeton.edu, unix@princeton.edu - use UNIX Production NS PrivateDMZ -} - - -define host { - host_name stuportal200l - alias stuportal200l.Princeton.EDU - _alias1 stuportal - address 140.180.221.16 - _IP_MAC1 140.180.221.16 <=> 0:50:56:93:e6:21 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room mr, vm, - - _date_created 2017-10-10 - _date_changed 2017-10-18 - contacts Serge J. Goldstein - _contacts serge@princeton.edu, unix@princeton.edu - use UNIX Production NS PublicDMZ -} - - -define host { - host_name timeline201l - alias timeline201l.Princeton.EDU - address 10.6.56.24 - _IP_MAC1 10.6.56.24 <=> 0:50:56:93:7d:f - _SUBNET1 lb-servernet-5 (EISFW - VLAN 4073 - .56) - _department Administrative Information Services, Office of Information Technology - _building New South - _room MR, VM - - _date_created 2015-12-21 - _date_changed 2015-12-21 - contacts Kevin R. Perry - _contacts perry@princeton.edu, unix@princeton.edu - use UNIX Production NS EISFW -} - - -define host { - host_name timeline202l - alias timeline202l.Princeton.EDU - address 10.6.56.25 - _IP_MAC1 10.6.56.25 <=> 0:50:56:93:38:92 - _SUBNET1 lb-servernet-5 (EISFW - VLAN 4073 - .56) - _department Administrative Information Services, Office of Information Technology - _building New South - _room MR, VM, - - _date_created 2015-12-21 - _date_changed 2015-12-21 - contacts Kevin R. Perry - _contacts perry@princeton.edu, unix@princeton.edu - use UNIX Production NS EISFW -} - - -define host { - host_name timeline203l - alias timeline203l.Princeton.EDU - address 10.6.49.56 - _IP_MAC1 10.6.49.56 <=> 0:50:56:93:64:2e - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Administrative Information Services, Office of Information Technology - _building New South - _room MR, VM, - - _date_created 2015-12-21 - _date_changed 2015-12-21 - contacts Kevin R. Perry - _contacts perry@princeton.edu, unix@princeton.edu - use UNIX Production NS PrivateDMZ -} - - -define host { - host_name timeline204l - alias timeline204l.Princeton.EDU - address 10.6.48.214 - _IP_MAC1 10.6.48.214 <=> 0:50:56:93:75:80 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Administrative Information Services, Office of Information Technology - _building New South - _room mr, vm - - _date_created 2016-08-02 - _date_changed 2016-08-08 - contacts Kevin R. Perry - _contacts perry@princeton.edu, unix@princeton.edu - use UNIX Production NS PrivateDMZ -} - - -define host { - host_name timeline205l - alias timeline205l.Princeton.EDU - address 10.6.49.160 - _IP_MAC1 10.6.49.160 <=> 0:50:56:93:2d:d0 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Administrative Information Services, Office of Information Technology - _building New South - _room mr, vm - - _date_created 2016-08-02 - _date_changed 2016-08-08 - contacts Kevin R. Perry - _contacts perry@princeton.edu, unix@princeton.edu - use UNIX Production NS PrivateDMZ -} - - -define host { - host_name waspprod03l - alias waspprod03l.Princeton.EDU - _alias1 wase - _alias2 wasenew - _alias3 wasenext - _alias4 wasp - address 140.180.220.82 - _IP_MAC1 140.180.220.82 <=> 0:50:56:93:38:f2 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Academic Technology Services, Office of Information Technology - _building New South - _room MR, VM, - - _date_created 2015-06-19 - _date_changed 2018-02-05 - contacts Kevin R. Perry, Serge J. Goldstein - _contacts perry@princeton.edu, serge@princeton.edu, unix@princeton.edu - use UNIX Production NS PublicDMZ -} - - -define host { - host_name wds-util - alias wds-util.Princeton.EDU - _alias1 sitesdb - _alias2 sitesdb-stage - _alias3 mysql - _alias4 build - address 10.6.48.242 - _IP_MAC1 10.6.48.242 <=> 0:50:56:93:61:7f - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Academic Technology Services, Office of Information Technology - _building New South - _room MR, VM, - - _date_created 2016-05-09 - _date_changed 2017-03-20 - contacts Brian K. Osborne, Michael D. Muzzie, Web Development Service - _contacts bosborne@princeton.edu, mdmuzzie@princeton.edu, unix@princeton.edu, wdsoit@princeton.edu - use UNIX Production NS PrivateDMZ -} - - -define host { - host_name webhead01 - alias webhead01.Princeton.EDU - _alias1 novus01 - address 10.6.54.49 - _IP_MAC1 10.6.54.49 <=> 0:50:56:93:0:43 - _SUBNET1 lb-servernet-3 (EISFW - VLAN 4071 - .54) - _department Academic Technology Services, Office of Information Technology - _building New South - _room MR, VM, - - _date_created 2011-09-12 - _date_changed 2017-09-14 - contacts Brian K. Osborne, Michael D. Muzzie, Web Development Services - _contacts bosborne@princeton.edu, mdmuzzie@princeton.edu, unix@princeton.edu, webservices@princeton.edu - use UNIX Production NS EISFW -} - - -define host { - host_name webhead02 - alias webhead02.Princeton.EDU - _alias1 novus02 - address 10.6.54.58 - _IP_MAC1 10.6.54.58 <=> 0:50:56:93:0:56 - _SUBNET1 lb-servernet-3 (EISFW - VLAN 4071 - .54) - _department Academic Technology Services, Office of Information Technology - _building New South - _room MR, VM, - - _date_created 2011-09-12 - _date_changed 2017-09-14 - contacts Brian K. Osborne, Michael D. Muzzie, Web Development Services - _contacts bosborne@princeton.edu, mdmuzzie@princeton.edu, unix@princeton.edu, webservices@princeton.edu - use UNIX Production NS EISFW -} - - -define host { - host_name x210client01 - alias x210client01.Princeton.EDU - address 10.6.53.107 - use UNIX Production NS Trust - contacts DBA Important List -} - - -define host { - host_name x210client02 - alias x210client02.Princeton.EDU - address 10.6.53.109 - use UNIX Production NS Trust - contacts DBA Important List -} - - - -define host { - host_name pudev02.pudev.windev - alias pudev02.pudev.windev.Princeton.EDU - _alias1 addev.princeton.edu. - address 10.6.49.107 - contacts Identity and Access Management - _contacts iam@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name windev02.windev - alias windev02.windev.Princeton.EDU - address 10.6.49.108 - contacts Identity and Access Management - _contacts iam@princeton.edu, winmail@princeton.edu - use Windows Dev/QA NS PrivateDMZ -} - - -define host { - host_name amu102w - alias amu102w.Princeton.EDU - address 10.6.49.52 - _IP_MAC1 10.6.49.52 <=> 0:50:56:93:29:1a - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Art Museum - _building New South - _room MR, VM, - - _date_created 2016-02-24 - _date_changed 2016-02-24 - contacts Matt S. Marnett - _contacts mmarnett@princeton.edu, winmail@princeton.edu - use Windows Dev/QA NS PrivateDMZ -} - - -define host { - host_name asmobile101w - alias asmobile101w.Princeton.EDU - address 10.6.50.10 - _IP_MAC1 10.6.50.10 <=> 0:50:56:93:50:94 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Academic Technology Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM - - _date_created 2013-01-17 - _date_changed 2017-03-20 - contacts James K. Chu - _contacts jkchu@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name ats-dia112w - alias ats-dia112w.Princeton.EDU - address 140.180.220.71 - _IP_MAC1 140.180.220.71 <=> 0:50:56:93:c:cd - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Academic Technology Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2015-03-30 - _date_changed 2015-12-15 - contacts George R. Fleming Jr. - _contacts fleming@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PublicDMZ -} - - -define host { - host_name ats-fvs112w - alias ats-fvs112w.Princeton.EDU - _alias1 fvstest - address 140.180.220.67 - _IP_MAC1 140.180.220.67 <=> 0:50:56:93:27:10 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Academic Technology Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2015-03-04 - _date_changed 2015-12-15 - contacts George R. Fleming Jr. - _contacts fleming@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PublicDMZ -} - - -define host { - host_name ats101w - alias ats101w.Princeton.EDU - address 140.180.220.77 - _IP_MAC1 140.180.220.77 <=> 0:50:56:93:3c:4b - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Academic Technology Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2015-05-28 - _date_changed 2015-05-28 - contacts George R. Fleming Jr. - _contacts fleming@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PublicDMZ -} - - - - - - -define host { - host_name cas301w - alias cas301w.Princeton.EDU - _alias1 avanti-dev - address 10.6.49.116 - _IP_MAC1 10.6.49.116 <=> 0:50:56:93:78:68 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room mr, vm, - - _date_created 2016-07-11 - _date_changed 2016-08-22 - contacts Kevin R. Guilbault - _contacts kg3@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name cch100w - alias cch100w.Princeton.EDU - address 140.180.221.99 - use Windows Dev/QA 151 PublicDMZ - contacts czimowsk -} - - -define host { - host_name cisdr-prep - alias cisdr-prep.Princeton.EDU - address 10.6.49.6 - use Windows Dev/QA 151 PrivateDMZ - contacts CISDR -} - - -define host { - host_name cisdr105w - alias cisdr105w.Princeton.EDU - address 10.6.48.40 - use Windows Dev/QA 151 PrivateDMZ - contacts CISDR Group of EIS -} - - -define host { - host_name cisdr300w - alias cisdr300w.Princeton.EDU - address 10.6.52.116 - _IP_MAC1 10.6.52.116 <=> 0:50:56:93:5e:17 - _SUBNET1 fw-servernet-3 (Trust - VLAN 1049 - .52) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2015-10-09 - _date_changed 2015-10-09 - contacts Mark A. Ratliff - _contacts ratliff@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 Trust -} - - -define host { - host_name cisdr301w - alias cisdr301w.Princeton.EDU - _alias1 oaworkflow-dev - address 10.6.48.254 - _IP_MAC1 10.6.48.254 <=> 0:50:56:93:40:69 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2015-10-09 - _date_changed 2017-03-17 - contacts Mark A. Ratliff, Monika C. Mevenkamp, Open Access Repository - _contacts oar@princeton.edu, ratliff@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name cisdredge102w - alias cisdredge102w.Princeton.EDU - address 140.180.220.248 - use Windows Dev/QA 151 PublicDMZ - contacts CISDR -} - - -define host { - host_name cisdrex100w - alias cisdrex100w.Princeton.EDU - address 140.180.220.249 - use Windows Dev/QA 151 PublicDMZ - contacts CISDR Group of EIS -} - - -define host { - host_name cisdrex101w - alias cisdrex101w.Princeton.EDU - address 140.180.221.125 - use Windows Dev/QA 151 PublicDMZ - contacts CISDR Group of EIS -} - - -define host { - host_name cisdrtc100l.aws - alias cisdrtc100l.aws.Princeton.EDU - address 10.21.28.242 - use UNIX Dev/QA AWS Untrust - contacts CISDR -} - -define host { - host_name csla100w - alias csla100w.Princeton.EDU - _alias1 flame - address 140.180.220.111 - _IP_MAC1 140.180.220.111 <=> 0:50:56:93:40:19 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Hellenic Studies - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2016-03-22 - _date_changed 2016-03-23 - contacts Alan M. Stahl - _contacts astahl@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PublicDMZ -} - - -define host { - host_name css300w - alias css300w.Princeton.EDU - _alias1 mme-windev - _alias2 mmedev0 - address 140.180.220.91 - _IP_MAC1 140.180.220.91 <=> 0:50:56:93:7:9c - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Support Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2016-03-08 - _date_changed 2016-05-23 - contacts Thomas J. Francais - _contacts tjf@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PublicDMZ -} - - -define host { - host_name css328w - alias css328w.Princeton.EDU - address 140.180.220.31 - use Windows Dev/QA 151 PublicDMZ - contacts casperadmindev -} - - -define host { - host_name das110w - alias das110w.Princeton.EDU - address 140.180.220.206 - _IP_MAC1 140.180.220.206 <=> 0:50:56:93:1:1b - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Administrative Information Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2012-11-07 - _date_changed 2017-05-09 - contacts George R. Fleming Jr. - _contacts fleming@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PublicDMZ -} - - -define host { - host_name das111w - alias das111w.Princeton.EDU - address 140.180.220.207 - _IP_MAC1 140.180.220.207 <=> 0:50:56:93:1:1a - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Administrative Information Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2012-11-07 - _date_changed 2017-05-09 - contacts George R. Fleming Jr. - _contacts fleming@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PublicDMZ -} - - -define host { - host_name dasdia112w - alias dasdia112w.Princeton.EDU - address 140.180.220.28 - _IP_MAC1 140.180.220.28 <=> 0:50:56:93:17:f1 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Administrative Information Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2014-08-26 - _date_changed 2015-12-15 - contacts George R. Fleming Jr. - _contacts fleming@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PublicDMZ -} - - -define host { - host_name dev-webqa-ogv - alias dev-webqa-ogv.Princeton.EDU - address 140.180.220.126 - _IP_MAC1 140.180.220.126 <=> 0:50:56:93:79:aa - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Development Technology Services, Office of Development - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2015-08-05 - _date_changed 2016-11-16 - contacts Jacqueline Golden, Kathleen D. Haney, Nicholas DiPietro - _contacts dipietro@princeton.edu, jfgolden@princeton.edu, kathyh@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PublicDMZ -} - - -define host { - host_name dev-webqa-tt - alias dev-webqa-tt.Princeton.EDU - address 10.6.48.225 - _IP_MAC1 10.6.48.225 <=> 0:50:56:93:48:87 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Development Technology Services, Office of Development - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2015-07-31 - _date_changed 2016-11-16 - contacts Jacqueline Golden, Kathleen D. Haney, Nicholas DiPietro - _contacts dipietro@princeton.edu, jfgolden@princeton.edu, kathyh@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name dev-webqa - alias dev-webqa.Princeton.EDU - address 10.6.48.100 - _IP_MAC1 10.6.48.100 <=> 0:50:56:93:8:e - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Information Strategy, Office of Development - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2014-04-15 - _date_changed 2016-11-16 - contacts Jacqueline Golden, Kathleen D. Haney, Nicholas DiPietro - _contacts dipietro@princeton.edu, jfgolden@princeton.edu, kathyh@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name dev100w - alias dev100w.Princeton.EDU - _alias1 devtabqa - address 10.6.49.194 - _IP_MAC1 10.6.49.194 <=> 0:50:56:93:27:ed - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room mr, vm, - - _date_created 2017-04-06 - _date_changed 2017-09-29 - contacts Nicholas DiPietro - _contacts dipietro@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name dev101w - alias dev101w.Princeton.EDU - address 10.6.51.10 - use Windows Dev/QA 151 PrivateDMZ - contacts uats -} - - -define host { - host_name dev102w - alias dev102w.Princeton.EDU - address 140.180.220.146 - use Windows Dev/QA 151 PublicDMZ - contacts uats -} - - -define host { - host_name devc - alias devc.Princeton.EDU - _alias1 stripesdev - address 10.6.49.187 - _IP_MAC1 10.6.49.187 <=> 0:50:56:93:61:6d - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room mr, vm, - - _date_created 2016-09-01 - _date_changed 2016-11-16 - contacts Kathleen D. Haney, Nicholas DiPietro - _contacts dipietro@princeton.edu, kathyh@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name devq - alias devq.Princeton.EDU - _alias1 stripesqa - address 10.6.49.173 - _IP_MAC1 10.6.49.173 <=> 0:50:56:93:4e:d9 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room mr, vm, - - _date_created 2016-08-31 - _date_changed 2016-11-16 - contacts Kathleen D. Haney, Nicholas DiPietro - _contacts dipietro@princeton.edu, kathyh@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name devtabtoolsqa - alias devtabtoolsqa.Princeton.EDU - address 10.6.48.203 - _IP_MAC1 10.6.48.203 <=> 0:50:56:93:44:ec - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Development Technology Services, Office of Development - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2015-06-16 - _date_changed 2016-11-16 - contacts Kathleen D. Haney, Nicholas DiPietro - _contacts dipietro@princeton.edu, kathyh@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name devtools - alias devtools.Princeton.EDU - address 10.6.48.97 - _IP_MAC1 10.6.48.97 <=> 0:50:56:93:5e:3f - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Information Strategy, Office of Development - _building 151 Forrestal Rd. - _room MR, VM - - _date_created 2014-02-28 - _date_changed 2017-09-01 - contacts Heather Campbell - _contacts hcampbel@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name dng203w - alias dng203w.Princeton.EDU - address 140.180.221.84 - use Windows Dev/QA 151 PublicDMZ - contacts ussntadm -} - - -define host { - host_name dng305w - alias dng305w.Princeton.EDU - address 140.180.221.120 - use Windows Dev/QA 151 PublicDMZ - contacts University Services IT Support -} - - -define host { - host_name dng306w - alias dng306w.Princeton.EDU - address 10.6.51.28 - use Windows Dev/QA 151 PrivateDMZ - contacts USSNTADM -} - - -define host { - host_name dsl300w - alias dsl300w.Princeton.EDU - _alias1 orientation-dev - address 10.6.49.75 - _IP_MAC1 10.6.49.75 <=> 0:50:56:93:16:cc - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Office of the Dean of Undergraduate Students - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2016-01-28 - _date_changed 2016-01-28 - contacts Gregory S. Blaha - _contacts gblaha@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name eis-fwmgrqa - alias eis-fwmgrqa.Princeton.EDU - address 10.6.52.240 - _IP_MAC1 10.6.52.240 <=> 0:50:56:93:4f:9d - _SUBNET1 fw-servernet-3 (Trust - VLAN 1049 - .52) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2015-08-17 - _date_changed 2016-09-26 - contacts epm-list - _contacts winmail@princeton.edu - use Windows Dev/QA 151 Trust -} - - -define host { - host_name epm300w - alias epm300w.Princeton.EDU - address 10.6.49.0 - use Windows Dev/QA 151 PrivateDMZ - contacts epm-list -} - - -define host { - host_name epm301w.aws - alias epm301w.aws.Princeton.EDU - address 10.21.31.1 - use Windows Dev/QA AWS Untrust - contacts epm-list -} - - -define host { - host_name erp302w - alias erp302w.Princeton.EDU - address 10.6.49.182 - use Windows Dev/QA 151 PrivateDMZ - contacts Thomas E. Dommermuth -} - - -define host { - host_name erp330w - alias erp330w.Princeton.EDU - address 10.6.51.18 - use Windows Dev/QA 151 PrivateDMZ - contacts Thomas E. Dommermuth -} - - -define host { - host_name essosd302w - alias essosd302w.Princeton.EDU - address 10.6.48.21 - _IP_MAC1 10.6.48.21 <=> 0:50:56:93:2f:5c - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2013-06-12 - _date_changed 2015-02-11 - _contacts ess-list@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name essprintsrvqa - alias essprintsrvqa.Princeton.EDU - address 10.6.50.122 - _IP_MAC1 10.6.50.122 <=> 0:50:56:1a:4e:27 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2010-04-26 - _date_changed 2017-06-30 - _contacts ess-list@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name gso100w - alias gso100w.Princeton.EDU - address 140.180.220.93 - _IP_MAC1 140.180.220.93 <=> 0:50:56:93:51:b8 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Office of the Dean of the Graduate School - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2015-10-02 - _date_changed 2015-10-20 - contacts Marvin E. Waterman - _contacts mwaterma@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PublicDMZ -} - - -define host { - host_name gso300w - alias gso300w.Princeton.EDU - address 140.180.220.94 - _IP_MAC1 140.180.220.94 <=> 0:50:56:93:66:8b - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Office of the Dean of the Graduate School - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2015-10-02 - _date_changed 2015-10-20 - contacts Marvin E. Waterman - _contacts mwaterma@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PublicDMZ -} - - -define host { - host_name gso301w - alias gso301w.Princeton.EDU - address 140.180.221.106 - use Windows Dev/QA 151 PublicDMZ - contacts gshelp -} - - -define host { - host_name isogate100w - alias isogate100w.Princeton.EDU - address 140.180.221.65 - use Windows Dev/QA 151 PublicDMZ - contacts Steven Niedzwiecki -} - - -define host { - host_name iss128w - alias iss128w.Princeton.EDU - address 10.6.50.0 - use Windows Dev/QA 151 PrivateDMZ - contacts Peter T Nowak -} - - -define host { - host_name iss129w - alias iss129w.Princeton.EDU - address 10.6.50.12 - use Windows Dev/QA 151 PrivateDMZ - contacts Peter T Nowak -} - - -define host { - host_name itms300w - alias itms300w.Princeton.EDU - _alias1 itms-dev1 - address 10.6.50.86 - _IP_MAC1 10.6.50.86 <=> 0:50:56:93:11:1a - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2013-06-26 - _date_changed 2017-05-30 - contacts Grant A. Weed - _contacts gweed@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name itms301w - alias itms301w.Princeton.EDU - _alias1 sentry911-dev - address 140.180.220.178 - _IP_MAC1 140.180.220.178 <=> 0:50:56:93:b:f0 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Support Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM - - _date_created 2013-08-12 - _date_changed 2017-07-31 - contacts Grant A. Weed - _contacts gweed@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PublicDMZ -} - - - -define host { - host_name landrdev - alias landrdev.Princeton.EDU - _alias1 new-landrdev - address 10.6.48.15 - _IP_MAC1 10.6.48.15 <=> 0:50:56:93:63:3d - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Administrative Information Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2012-08-31 - _date_changed 2016-12-09 - contacts Michael J. Zarillo - _contacts mzarillo@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name lss110w-tqa - alias lss110w-tqa.Princeton.EDU - address 10.6.50.58 - _IP_MAC1 10.6.50.58 <=> 0:50:56:93:1:34 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Security and Access - _building 151 Forrestal Rd. - _room MR, VM - - _date_created 2013-09-30 - _date_changed 2017-05-02 - contacts Facilities NT Administrator - _contacts facntadm@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name mccweb100w - alias mccweb100w.Princeton.EDU - address 10.6.48.51 - _IP_MAC1 10.6.48.51 <=> 0:50:56:93:26:e2 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Other - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2014-06-23 - _date_changed 2014-07-18 - contacts Charlotte C. Hussey - _contacts hussey@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name mccweb101w - alias mccweb101w.Princeton.EDU - address 10.6.48.52 - _IP_MAC1 10.6.48.52 <=> 0:50:56:93:26:e1 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Other - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2014-06-23 - _date_changed 2014-07-18 - contacts Charlotte C. Hussey - _contacts hussey@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name mol102w - alias mol102w.Princeton.EDU - _alias1 devenport-mice-qa - address 10.6.48.68 - _IP_MAC1 10.6.48.68 <=> 0:50:56:93:0:db - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Molecular Biology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2012-07-27 - _date_changed 2014-08-12 - contacts Matthew H. Cahn - _contacts mcahn@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name mol105w - alias mol105w.Princeton.EDU - address 10.6.49.220 - _IP_MAC1 10.6.49.220 <=> 0:50:56:93:46:40 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room mr, vm, - - _date_created 2016-12-07 - _date_changed 2016-12-07 - contacts Matthew H. Cahn - _contacts mcahn@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name mol302w - alias mol302w.Princeton.EDU - _alias1 devenport-mice-dev - address 10.6.48.69 - _IP_MAC1 10.6.48.69 <=> 0:50:56:93:0:d6 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Molecular Biology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2012-07-27 - _date_changed 2014-08-12 - contacts Matthew H. Cahn - _contacts mcahn@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name netnsm100w - alias netnsm100w.Princeton.EDU - address 10.6.49.4 - _IP_MAC1 10.6.49.4 <=> 0:50:56:93:23:c8 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2015-10-13 - _date_changed 2015-10-13 - contacts Networking - _contacts networking@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name odoc101w - alias odoc101w.Princeton.EDU - _alias1 prizesqa - address 10.6.48.89 - _IP_MAC1 10.6.48.89 <=> 0:50:56:93:1a:ec - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Office of the Dean of the College - _building New South - _room MR, VM - - _date_created 2013-12-23 - _date_changed 2015-04-23 - contacts ODOC Linux Admin-JG - _contacts docadmjg@princeton.edu, winmail@princeton.edu - use Windows Dev/QA NS PrivateDMZ -} - - -define host { - host_name odoc201w - alias odoc201w.Princeton.EDU - _alias1 ugprizes - _alias2 odocevents - _alias3 rsvp - address 140.180.220.41 - _IP_MAC1 140.180.220.41 <=> 0:50:56:93:1a:ee - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Office of the Dean of the College - _building New South - _room MR, VM - - _date_created 2013-12-23 - _date_changed 2015-04-23 - contacts ODOC Linux Admin-JG - _contacts docadmjg@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name odoc301w - alias odoc301w.Princeton.EDU - address 10.6.48.90 - _IP_MAC1 10.6.48.90 <=> 0:50:56:93:1a:ed - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Office of the Dean of the College - _building 151 Forrestal Rd. - _room MR, VM - - _date_created 2013-12-23 - _date_changed 2014-10-09 - contacts John S. Green III - _contacts jgreen@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - - -define host { - host_name opr302w - alias opr302w.Princeton.EDU - address 140.180.220.76 - _IP_MAC1 140.180.220.76 <=> 0:50:56:93:5e:4e - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Office of Population Research - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2014-10-30 - _date_changed 2015-05-20 - contacts Wayne W. Appleton - _contacts appleton@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PublicDMZ -} - - -define host { - host_name out301w - alias out301w.Princeton.EDU - address 10.6.51.100 - use Windows Dev/QA 151 PrivateDMZ - contacts Richard M. Curtis -} - - -define host { - host_name pcocr104w - alias pcocr104w.Princeton.EDU - address 10.6.51.82 - use Windows Dev/QA 151 PrivateDMZ - contacts pcotech -} - - -define host { - host_name pcocr105w - alias pcocr105w.Princeton.EDU - address 10.6.50.247 - use Windows Dev/QA 151 PrivateDMZ - contacts pcotech -} - - -define host { - host_name pcocrdb106w - alias pcocrdb106w.Princeton.EDU - address 10.6.53.242 - use Windows Dev/QA 151 Trust - contacts DBA Important List -} - - -define host { - host_name pcords101w - alias pcords101w.Princeton.EDU - address 10.6.50.94 - _IP_MAC1 10.6.50.94 <=> 0:50:56:93:2a:ac - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room mr, vm, - - _date_created 2017-05-18 - _date_changed 2017-05-18 - contacts Glenn R. Wemple - _contacts gwemple@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name pei300w - alias pei300w.Princeton.EDU - address 140.180.220.73 - _IP_MAC1 140.180.220.73 <=> 0:50:56:93:67:60 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Princeton Environmental Institute - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2015-07-20 - _date_changed 2015-07-20 - contacts Rajeshri D. Chokshi - _contacts rchokshi@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PublicDMZ -} - - -define host { - host_name psm101w - alias psm101w.Princeton.EDU - address 10.6.50.51 - use Windows Dev/QA 151 PrivateDMZ - contacts Ruth D. Gittens -} - - -define host { - host_name puqa02.zeta.adtest - alias puqa02.zeta.adtest.Princeton.EDU - _alias1 adqa-b.princeton.edu. - address 10.6.49.51 - _IP_MAC1 10.6.49.51 <=> 0:50:56:93:79:60 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room mr, vm, - - _date_created 2016-06-16 - _date_changed 2017-10-23 - contacts Identity and Access Management - _contacts iam@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name puqa05.zeta.adtest - alias puqa05.zeta.adtest.Princeton.EDU - address 10.21.1.40 - use Windows Dev/QA AWS Untrust - contacts iam -} - - -define host { - host_name puqa06.zeta.adtest - alias puqa06.zeta.adtest.Princeton.EDU - address 10.21.1.14 - use Windows Dev/QA AWS Untrust - contacts iam -} - - -define host { - host_name sas305w - alias sas305w.Princeton.EDU - address 10.6.49.155 - use Windows Dev/QA 151 PrivateDMZ - contacts rsegers -} - - -define host { - host_name sas306w - alias sas306w.Princeton.EDU - address 10.6.50.72 - use Windows Dev/QA 151 PrivateDMZ - contacts George Kopf -} - - -define host { - host_name sasemsterm100w - alias sasemsterm100w.Princeton.EDU - address 10.6.49.45 - use Windows Dev/QA 151 PrivateDMZ - contacts pac_usapps -} - - -define host { - host_name sasemsws100w - alias sasemsws100w.Princeton.EDU - address 140.180.221.82 - use Windows Dev/QA 151 PublicDMZ - contacts pac_usapps -} - - -define host { - host_name sasiw111w - alias sasiw111w.Princeton.EDU - address 10.6.53.89 - use Windows Dev/QA 151 Trust - contacts monocle -} - - -define host { - host_name sasiw112w - alias sasiw112w.Princeton.EDU - address 10.6.53.90 - use Windows Dev/QA 151 Trust - contacts monocle -} - - -define host { - host_name sasiw114w - alias sasiw114w.Princeton.EDU - address 10.6.53.239 - use Windows Dev/QA 151 Trust - contacts monocle -} - - -define host { - host_name sasiw116w - alias sasiw116w.Princeton.EDU - address 10.6.53.241 - use Windows Dev/QA 151 Trust - contacts monocle -} - - -define host { - host_name sasiw346w - alias sasiw346w.Princeton.EDU - address 10.6.53.35 - use Windows Dev/QA 151 Trust - contacts monocle -} - - -define host { - host_name sasiw347w - alias sasiw347w.Princeton.EDU - address 10.6.53.36 - use Windows Dev/QA 151 Trust - contacts monocle -} - - -define host { - host_name sasiw348w - alias sasiw348w.Princeton.EDU - address 10.6.53.39 - use Windows Dev/QA 151 Trust - contacts monocle -} - - -define host { - host_name sasiw349w - alias sasiw349w.Princeton.EDU - address 10.6.53.72 - use Windows Dev/QA 151 Trust - contacts monocle -} - - -define host { - host_name sasob100w - alias sasob100w.Princeton.EDU - address 10.6.53.19 - use Windows Dev/QA 151 Trust - contacts ECM Admin Notify -} - - -define host { - host_name sasob300tstw - alias sasob300tstw.Princeton.EDU - address 10.6.53.188 - use Windows Dev/QA 151 Trust - contacts ECM Admin Notify -} - - -define host { - host_name sasob300w - alias sasob300w.Princeton.EDU - address 10.6.53.237 - use Windows Dev/QA 151 Trust - contacts ECM Admin Notify -} - - -define host { - host_name sasspapp300w - alias sasspapp300w.Princeton.EDU - address 10.6.49.100 - use Windows Dev/QA 151 PrivateDMZ - contacts Sharepoint Admin -} - - -define host { - host_name sasspapp301w - alias sasspapp301w.Princeton.EDU - address 10.6.49.149 - use Windows Dev/QA 151 PrivateDMZ - contacts Sharepoint Admin -} - - -define host { - host_name sasspapp310w - alias sasspapp310w.Princeton.EDU - address 10.6.49.47 - use Windows Dev/QA 151 PrivateDMZ - contacts Sharepoint Admin -} - - -define host { - host_name sasspapp312w - alias sasspapp312w.Princeton.EDU - address 10.6.49.255 - use Windows Dev/QA 151 PrivateDMZ - contacts Sharepoint Admin -} - - -define host { - host_name sasspdb308w - alias sasspdb308w.Princeton.EDU - address 10.6.52.34 - use Windows Dev/QA 151 Trust - contacts Sharepoint Admin -} - - -define host { - host_name sasspdb309w - alias sasspdb309w.Princeton.EDU - address 10.6.52.41 - use Windows Dev/QA 151 Trust - contacts Sharepoint Admin -} - - -define host { - host_name sasspdb318w - alias sasspdb318w.Princeton.EDU - address 10.6.52.255 - use Windows Dev/QA 151 Trust - contacts Sharepoint Admin -} - - -define host { - host_name sasspdb319w - alias sasspdb319w.Princeton.EDU - address 10.6.53.0 - use Windows Dev/QA 151 Trust - contacts Sharepoint Admin -} - - -define host { - host_name sasspdc305w - alias sasspdc305w.Princeton.EDU - address 140.180.221.97 - use Windows Dev/QA 151 PublicDMZ - contacts Sharepoint Admin -} - - -define host { - host_name sasspdc306w - alias sasspdc306w.Princeton.EDU - address 10.6.49.157 - use Windows Dev/QA 151 PrivateDMZ - contacts Sharepoint Admin -} - - -define host { - host_name sasspdc316w - alias sasspdc316w.Princeton.EDU - address 140.180.221.0 - use Windows Dev/QA 151 PublicDMZ - contacts Sharepoint Admin -} - - -define host { - host_name sasspfe302w - alias sasspfe302w.Princeton.EDU - address 10.6.55.56 - use Windows Dev/QA 151 EISFW - contacts Sharepoint Admin -} - - -define host { - host_name sasspfe303w - alias sasspfe303w.Princeton.EDU - address 10.6.55.30 - use Windows Dev/QA 151 EISFW - contacts Sharepoint Admin -} - - -define host { - host_name sasspfe304w - alias sasspfe304w.Princeton.EDU - address 10.6.55.69 - use Windows Dev/QA 151 EISFW - contacts Sharepoint Admin -} - - -define host { - host_name sasspfe312w - alias sasspfe312w.Princeton.EDU - address 10.6.55.75 - use Windows Dev/QA 151 EISFW - contacts Sharepoint Admin -} - - -define host { - host_name sasspfe313w - alias sasspfe313w.Princeton.EDU - address 10.6.55.76 - use Windows Dev/QA 151 EISFW - contacts Sharepoint Admin -} - - -define host { - host_name sasspfe314w - alias sasspfe314w.Princeton.EDU - address 10.6.55.77 - use Windows Dev/QA 151 EISFW - contacts Sharepoint Admin -} - - -define host { - host_name sasspowa307w - alias sasspowa307w.Princeton.EDU - address 10.6.55.70 - use Windows Dev/QA 151 EISFW - contacts Sharepoint Admin -} - - -define host { - host_name sasspowa317w - alias sasspowa317w.Princeton.EDU - address 10.6.55.78 - use Windows Dev/QA 151 EISFW - contacts Sharepoint Admin -} - - -define host { - host_name sasspss316w - alias sasspss316w.Princeton.EDU - address 10.6.50.82 - use Windows Dev/QA 151 PrivateDMZ - contacts Sharepoint Admin -} - - -define host { - host_name sassunapsis100w - alias sassunapsis100w.Princeton.EDU - address 140.180.221.114 - use Windows Dev/QA 151 PublicDMZ - contacts pac_usapps -} - - -define host { - host_name sastopaz100w - alias sastopaz100w.Princeton.EDU - address 10.6.49.130 - use Windows Dev/QA 151 PrivateDMZ - contacts pac_app_integration -} - - -define host { - host_name sastopaz110w - alias sastopaz110w.Princeton.EDU - address 10.6.49.133 - use Windows Dev/QA 151 PrivateDMZ - contacts pac_app_integration -} - - -define host { - host_name sastopaz300w - alias sastopaz300w.Princeton.EDU - address 10.6.49.83 - use Windows Dev/QA 151 PrivateDMZ - contacts pac_app_integration -} - - -define host { - host_name sis118w - alias sis118w.Princeton.EDU - address 10.6.53.131 - use Windows Dev/QA 151 Trust - contacts DBA Important List -} - - -define host { - host_name sis310w - alias sis310w.Princeton.EDU - address 10.6.52.252 - use Windows Dev/QA 151 Trust - contacts DBA Important List -} - - -define host { - host_name sis313w - alias sis313w.Princeton.EDU - address 10.6.51.42 - use Windows Dev/QA 151 PrivateDMZ - contacts rsegers -} - - -define host { - host_name smo301w - alias smo301w.Princeton.EDU - address 10.6.49.165 - use Windows Dev/QA 151 PrivateDMZ - contacts mjo3 -} - - -define host { - host_name socconsole - alias socconsole.Princeton.EDU - address 10.6.48.26 - _IP_MAC1 10.6.48.26 <=> 0:50:56:93:1a:ff - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room MR, VM - - _date_created 2014-01-13 - _date_changed 2017-12-07 - contacts Mariann S. Miller - _contacts mariann.miller@princeton.edu, mariannm@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - - -define host { - host_name spcvms1nvr101w - alias spcvms1nvr101w.Princeton.EDU - address 10.6.52.120 - use Windows Dev/QA 151 Trust - contacts Mark R. Williams -} - - -define host { - host_name spcvmsqa100w - alias spcvmsqa100w.Princeton.EDU - address 10.6.52.111 - use Windows Dev/QA 151 Trust - contacts Mark R. Williams -} - - -define host { - host_name sql-zeta2 - alias sql-zeta2.Princeton.EDU - address 10.6.50.93 - _IP_MAC1 10.6.50.93 <=> 0:50:56:93:1:12 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2012-10-12 - _date_changed 2017-05-30 - contacts Christopher M. Stewart - _contacts cs2@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name ss106w - alias ss106w.Princeton.EDU - address 140.180.220.172 - _IP_MAC1 140.180.220.172 <=> 0:50:56:93:fc:1b - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room mr, vm, - - _date_created 2017-03-20 - _date_changed 2017-03-20 - contacts Mark J. Pellecchia - _contacts markpe@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PublicDMZ -} - - -define host { - host_name ss116w - alias ss116w.Princeton.EDU - address 140.180.220.122 - use Windows Dev/QA 151 PublicDMZ - contacts css-alert -} - - -define host { - host_name tmetrics - alias tmetrics.Princeton.EDU - address 10.6.48.138 - _IP_MAC1 10.6.48.138 <=> 0:50:56:93:75:16 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Support Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2015-01-19 - _date_changed 2017-12-07 - contacts Anthony C. Wilk - _contacts acwilk@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name tmetsciscodigi2 - alias tmetsciscodigi2.Princeton.EDU - address 10.6.49.84 - _IP_MAC1 10.6.49.84 <=> 0:50:56:93:66:88 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Support Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2016-02-17 - _date_changed 2016-02-17 - contacts Grant A. Weed - _contacts gweed@princeton.edu, winmail@princeton.edu - use Windows Production 151 PrivateDMZ -} - - -define host { - host_name tmetsdevlab - alias tmetsdevlab.Princeton.EDU - address 10.6.48.210 - _IP_MAC1 10.6.48.210 <=> 0:50:56:93:47:6d - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Support Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2015-06-29 - _date_changed 2015-06-29 - contacts Grant A. Weed - _contacts gweed@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name top100w - alias top100w.Princeton.EDU - address 10.6.49.179 - _IP_MAC1 10.6.49.179 <=> 0:50:56:93:2a:20 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room mr, vm, - - _date_created 2016-08-19 - _date_changed 2017-09-19 - contacts Erik D. Johnston - _contacts erik@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name top101w - alias top101w.Princeton.EDU - address 10.6.49.180 - _IP_MAC1 10.6.49.180 <=> 0:50:56:93:26:c8 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room mr, vm, - - _date_created 2016-08-19 - _date_changed 2017-09-19 - contacts Erik D. Johnston - _contacts erik@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name tps101w-garage - alias tps101w-garage.Princeton.EDU - address 10.6.49.142 - use Windows Dev/QA 151 PrivateDMZ - contacts ussntadm -} - - -define host { - host_name ufa300w - alias ufa300w.Princeton.EDU - address 10.6.48.11 - use Windows Dev/QA 151 PrivateDMZ - contacts John S. Green III -} - - -define host { - host_name uhs104w - alias uhs104w.Princeton.edu - address 10.6.50.88 - _IP_MAC1 10.6.50.88 <=> 0:50:56:93:0:8c - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department University Health Services - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2012-04-19 - _date_changed 2017-05-12 - contacts Health Services Help, Judith E. Oakley - _contacts joakley@princeton.edu, uhshelp@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name uhs107w - alias uhs107w.Princeton.edu - address 10.6.63.84 - _IP_MAC1 128.112.132.81 <=> 0:50:56:93:49:c7 - _SUBNET1 princeton-net - _department University Health Services - _building 151 Forrestal Rd. - _room MR, VM - - _date_created 2013-08-05 - _date_changed 2016-12-06 - contacts Health Services Help, Judith E. Oakley - _contacts joakley@princeton.edu, uhshelp@princeton.edu, winmail@princeton.edu - use Windows Dev/QA Restricted -} - - -define host { - host_name uhs109w - alias uhs109w.Princeton.EDU - address 10.6.63.68 - _IP_MAC1 10.6.63.68 <=> 0:50:56:93:36:d - _SUBNET1 fw-servernet-4 (Restricted - VLAN 1059 - .63.64) - _department University Health Services - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2016-03-07 - _date_changed 2016-12-06 - contacts Judith E. Oakley - _contacts joakley@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 Untrust -} - - -define host { - host_name uhs110w - alias uhs110w.Princeton.EDU - address 10.6.63.74 - _IP_MAC1 10.6.63.74 <=> 0:50:56:93:28:aa - _SUBNET1 fw-servernet-4 (Restricted - VLAN 1059 - .63.64) - _department University Health Services - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2016-03-07 - _date_changed 2016-12-06 - contacts Judith E. Oakley - _contacts joakley@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 Untrust -} - - -define host { - host_name uhs111w - alias uhs111w.Princeton.EDU - address 10.6.49.123 - _IP_MAC1 10.6.49.123 <=> 0:50:56:93:2c:27 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room mr, vm, - - _date_created 2016-07-12 - _date_changed 2016-12-06 - contacts Judith E. Oakley - _contacts joakley@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name uhs114w - alias uhs114w.Princeton.EDU - address 10.6.51.6 - use Windows Dev/QA 151 PrivateDMZ - contacts Judith E. Oakley -} - - -define host { - host_name uss300w-willow - alias uss300w-willow.Princeton.edu - _alias1 uservices-apps-dev - address 10.6.50.76 - _IP_MAC1 10.6.50.76 <=> 0:50:56:93:2a:f1 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Finance and Resource Administration, University Services - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2013-08-28 - _date_changed 2017-05-18 - contacts Joshua P. Thomas - _contacts jt7@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name uss301w-sandbox - alias uss301w-sandbox.Princeton.edu - address 10.6.50.120 - _IP_MAC1 10.6.50.120 <=> 0:50:56:93:2a:f6 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Finance and Resource Administration, University Services - _building 151 Forrestal Rd. - _room MR, VM - - _date_created 2013-09-18 - _date_changed 2017-06-13 - contacts Joshua P. Thomas - _contacts jt7@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name uss302w-sndbx08 - alias uss302w-sndbx08.Princeton.EDU - _alias1 campus-dining-dev - _alias2 uservices-ws-dev - _alias3 housing-apps-dev - _alias4 hres-apps-dev - address 10.6.50.121 - _IP_MAC1 10.6.50.121 <=> 0:50:56:93:1a:ef - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Finance and Resource Administration, University Services - _building 151 Forrestal Rd. - _room MR, VM - - _date_created 2013-12-30 - _date_changed 2017-06-13 - contacts Joshua P. Thomas - _contacts jt7@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name uss303w - alias uss303w.Princeton.EDU - address 10.6.48.35 - _IP_MAC1 10.6.48.35 <=> 0:50:56:93:20:3e - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Finance and Resource Administration, University Services - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2014-10-15 - _date_changed 2016-07-22 - contacts Jaysen J. LeSage - _contacts jlesage@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name uss304w - alias uss304w.Princeton.EDU - address 10.6.48.180 - _IP_MAC1 10.6.48.180 <=> 0:50:56:93:11:df - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Conference and Event Services - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2015-03-31 - _date_changed 2017-06-13 - contacts Joshua P. Thomas, USSNTADM - _contacts jt7@princeton.edu, ussntadm@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name vpft101w - alias vpft101w.Princeton.EDU - address 140.180.220.50 - _IP_MAC1 140.180.220.50 <=> 0:50:56:93:7d:24 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Office of the Vice President for Finance and Treasurer - _building 151 Forrestal Rd. - _room MR,VM - _date_created 2015-06-17 - _date_changed 2015-06-30 - contacts George R. Fleming Jr. - _contacts fleming@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PublicDMZ -} - - -define host { - host_name wassp100w - alias wassp100w.Princeton.EDU - address 10.6.48.190 - _IP_MAC1 10.6.48.190 <=> 0:50:56:93:5e:4 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room mr, vm, - - _date_created 2017-01-10 - _date_changed 2017-01-10 - contacts Sharepoint Admin - _contacts winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name wassp101w - alias wassp101w.Princeton.EDU - address 10.6.49.158 - _IP_MAC1 10.6.49.158 <=> 0:50:56:93:1a:2d - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room mr, vm, - - _date_created 2017-01-10 - _date_changed 2017-01-10 - contacts Sharepoint Admin - _contacts winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name wassp102w - alias wassp102w.Princeton.EDU - address 10.6.55.44 - _IP_MAC1 10.6.55.44 <=> 0:50:56:93:1f:3c - _SUBNET1 lb-servernet-4 (EISFW - VLAN 4072 - .55) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room mr, vm, - - _date_created 2017-01-11 - _date_changed 2017-01-24 - contacts Sharepoint Admin - _contacts winmail@princeton.edu - use Windows Dev/QA 151 EISFW -} - - -define host { - host_name wassp103w - alias wassp103w.Princeton.EDU - address 10.6.55.45 - _IP_MAC1 10.6.55.45 <=> 0:50:56:93:32:ef - _SUBNET1 lb-servernet-4 (EISFW - VLAN 4072 - .55) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room mr, vm, - - _date_created 2017-01-11 - _date_changed 2017-01-24 - contacts Sharepoint Admin - _contacts winmail@princeton.edu - use Windows Dev/QA 151 EISFW -} - - -define host { - host_name wassp104w - alias wassp104w.Princeton.EDU - address 140.180.220.171 - _IP_MAC1 140.180.220.171 <=> 0:50:56:93:1e:65 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room mr, vm, - - _date_created 2017-01-10 - _date_changed 2017-01-10 - contacts Sharepoint Admin - _contacts winmail@princeton.edu - use Windows Dev/QA 151 PublicDMZ -} - - -define host { - host_name wassp105w - alias wassp105w.Princeton.EDU - address 10.6.49.238 - _IP_MAC1 10.6.49.238 <=> 0:50:56:93:13:16 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room mr, vm, - - _date_created 2017-01-27 - _date_changed 2017-01-27 - contacts Sharepoint Admin - _contacts winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name wasspdb100w - alias wasspdb100w.Princeton.EDU - address 10.6.52.42 - _IP_MAC1 10.6.52.42 <=> 0:50:56:93:54:fd - _SUBNET1 fw-servernet-3 (Trust - VLAN 1049 - .52) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room mr, vm, - - _date_created 2017-02-22 - _date_changed 2017-02-22 - contacts Sharepoint Admin - _contacts winmail@princeton.edu - use Windows Dev/QA 151 Trust -} - - -define host { - host_name wasspdb101w - alias wasspdb101w.Princeton.EDU - address 10.6.52.37 - _IP_MAC1 10.6.52.37 <=> 0:50:56:93:82:db - _SUBNET1 fw-servernet-3 (Trust - VLAN 1049 - .52) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room mr, vm, - - _date_created 2017-02-17 - _date_changed 2017-02-17 - contacts Sharepoint Admin - _contacts winmail@princeton.edu - use Windows Dev/QA 151 Trust -} - - -define host { - host_name wasspowa106w - alias wasspowa106w.Princeton.EDU - address 10.6.55.53 - _IP_MAC1 10.6.55.53 <=> 0:50:56:93:dc:13 - _SUBNET1 lb-servernet-4 (EISFW - VLAN 4072 - .55) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2017-07-11 - _date_changed 2017-07-26 - contacts Sharepoint Admin - _contacts winmail@princeton.edu - use Windows Dev/QA 151 EISFW -} - - -define host { - host_name win03.win - alias win03.win.Princeton.EDU - address 10.6.48.92 - use Windows Dev/QA NS PrivateDMZ -} - - -define host { - host_name winqa02.adtest - alias winqa02.adtest.Princeton.EDU - address 10.6.48.240 - _IP_MAC1 10.6.48.240 <=> 0:50:56:93:5:d2 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room mr, vm, - - _date_created 2016-06-16 - _date_changed 2016-08-12 - contacts Identity and Access Management - _contacts iam@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - -define host { - host_name winqa03.aws - alias winqa03.aws.Princeton.EDU - address 10.21.1.56 - use Windows Dev/QA AWS Untrust - contacts iam -} - - -define host { - host_name winqa04.aws - alias winqa04.aws.Princeton.EDU - address 10.21.1.76 - use Windows Dev/QA AWS Untrust - contacts iam -} - - - -define host { - host_name adm-it-ws - alias adm-it-ws.Princeton.EDU - address 10.6.48.238 - _IP_MAC1 10.6.48.238 <=> 0:50:56:93:23:5f - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Admission - _building New South - _room MR, VM, - - _date_created 2016-03-15 - _date_changed 2016-03-15 - contacts Jonathan R. Bickel - _contacts jbickel@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name alamut - alias alamut.Princeton.EDU - address 10.6.48.57 - use Windows Dev/QA NS PrivateDMZ - contacts ESS Windows List -} - - -define host { - host_name alertus - alias alertus.Princeton.EDU - address 10.6.48.192 - _IP_MAC1 10.6.48.192 <=> 0:50:56:93:17:34 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Environmental Health and Safety - _building New South - _room MR, VM, - - _date_created 2015-09-30 - _date_changed 2015-10-01 - contacts Stephen M. Elwood - _contacts selwood@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name amu206w - alias amu206w.Princeton.EDU - address 140.180.220.86 - _IP_MAC1 140.180.220.86 <=> 0:0:0:5c:5a:e2 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Art Museum - _building New South - _room MR, VM, - - _date_created 2015-08-03 - _date_changed 2015-08-06 - contacts Cathryn Goodwin - _contacts cathryng@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name amu207w - alias amu207w.Princeton.EDU - address 10.6.49.77 - _IP_MAC1 10.6.49.77 <=> 0:50:56:93:65:7a - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Art Museum - _building New South - _room MR, VM, - - _date_created 2016-01-28 - _date_changed 2016-01-28 - contacts Matt S. Marnett - _contacts mmarnett@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name amu209w - alias amu209w.Princeton.EDU - address 10.6.50.27 - _IP_MAC1 10.6.50.27 <=> 0:50:56:93:87:e7 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2017-03-24 - _date_changed 2017-03-24 - contacts Cathryn Goodwin, Matt S. Marnett - _contacts mmarnett@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name amu210w - alias amu210w.Princeton.EDU - address 10.6.50.35 - _IP_MAC1 10.6.50.35 <=> 0:50:56:93:d5:de - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2017-03-28 - _date_changed 2017-03-28 - contacts Matt S. Marnett - _contacts mmarnett@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name amu212w - alias amu212w.Princeton.EDU - address 10.6.51.67 - use Windows Production NS PrivateDMZ - contacts mmarnett -} - - -define host { - host_name ant-had200w - alias ant-had200w.Princeton.EDU - address 140.180.220.247 - _IP_MAC1 140.180.220.247 <=> 0:50:56:93:e9:d3 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2017-06-19 - _date_changed 2017-06-19 - contacts Jeremiah D. LaMontagne - _contacts jl21@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name arc-hestia - alias arc-hestia.Princeton.EDU - _alias1 arc200w - address 140.180.220.34 - _IP_MAC1 128.112.88.165 <=> 0:50:56:93:5:36 - _SUBNET1 gillnet - _department Architecture - _building New South - _room MR, VM - - _date_created 2013-10-21 - _date_changed 2013-10-21 - contacts Architecture Computer - _contacts archcomp@princeton.edu, winmail@princeton.edu - use Windows Production Untrust -} - - -define host { - host_name art201w - alias art201w.Princeton.EDU - address 140.180.220.145 - _IP_MAC1 140.180.220.145 <=> 0:50:56:93:3f:e9 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2016-07-26 - _date_changed 2016-07-28 - contacts Julie A. Angarone - _contacts angarone@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name as-fmp - alias as-fmp.Princeton.EDU - address 140.180.220.250 - _IP_MAC1 140.180.220.250 <=> 0:50:56:93:b:15 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Academic Technology Services, Office of Information Technology - _building New South - _room MR, VM - - _date_created 2013-04-17 - _date_changed 2017-12-13 - contacts Kristian A. Kauker - _contacts kkauker@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name asmobile201w - alias asmobile201w.Princeton.EDU - address 10.6.48.134 - _IP_MAC1 10.6.48.134 <=> 0:50:56:93:1:a - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Academic Technology Services, Office of Information Technology - _building New South - _room MR, VM, - - _date_created 2012-11-27 - _date_changed 2017-07-03 - contacts James K. Chu - _contacts jkchu@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name asmobile203w - alias asmobile203w.Princeton.EDU - address 10.6.50.134 - _IP_MAC1 10.6.50.134 <=> 0:50:56:93:3a:a7 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Academic Technology Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM - - _date_created 2013-05-10 - _date_changed 2017-07-03 - contacts James K. Chu - _contacts jkchu@princeton.edu, winmail@princeton.edu - use Windows Production 151 PrivateDMZ -} - - - -define host { - host_name asrv201w - alias asrv201w.Princeton.EDU - address 140.180.220.96 - _IP_MAC1 140.180.220.96 <=> 0:50:56:93:68:e5 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Support Services, Office of Information Technology - _building New South - _room MR, VM, - - _date_created 2015-10-09 - _date_changed 2015-10-09 - contacts Jeffrey J. Mull - _contacts jmull@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name asrv202w - alias asrv202w.Princeton.EDU - address 10.6.51.11 - use Windows Production NS PrivateDMZ - contacts jmull -} - - -define host { - host_name ath200w - alias ath200w.Princeton.EDU - address 10.6.50.124 - _IP_MAC1 10.6.50.124 <=> 0:50:56:93:19:f7 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _building New South - _room MR, VM, - - _date_created 2012-12-21 - _date_changed 2017-07-10 - contacts Bryan S. Fitzwater - _contacts bfitzwat@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name ath201w - alias ath201w.Princeton.EDU - address 140.180.221.105 - use Windows Production 151 PublicDMZ - contacts bfitzwater -} - - -define host { - host_name ats-dia212w - alias ats-dia212w.Princeton.EDU - address 140.180.220.70 - _IP_MAC1 140.180.220.70 <=> 0:50:56:93:5c:9b - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Academic Technology Services, Office of Information Technology - _building New South - _room MR, VM, - - _date_created 2015-03-30 - _date_changed 2015-12-15 - contacts George R. Fleming Jr. - _contacts fleming@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name ats-fvs212w - alias ats-fvs212w.Princeton.EDU - _alias1 fvs - address 140.180.220.66 - _IP_MAC1 140.180.220.66 <=> 0:50:56:93:66:df - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Academic Technology Services, Office of Information Technology - _building New South - _room MR, VM, - - _date_created 2015-03-04 - _date_changed 2016-01-14 - contacts George R. Fleming Jr. - _contacts fleming@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name ats201w - alias ats201w.Princeton.EDU - _alias1 campusreclocal - _alias2 dasutilitieslocal - address 140.180.220.14 - _IP_MAC1 140.180.220.14 <=> 0:50:56:93:53:e1 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Academic Technology Services, Office of Information Technology - _building New South - _room MR, VM, - - _date_created 2015-04-08 - _date_changed 2015-05-20 - contacts George R. Fleming Jr., OIT DAS - _contacts fleming@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name cas200w - alias cas200w.Princeton.EDU - address 10.6.48.244 - _IP_MAC1 10.6.48.244 <=> 0:50:56:93:4d:cf - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Information Technology, University Services - _building New South - _room MR, VM, - - _date_created 2015-09-21 - _date_changed 2017-06-13 - contacts Kevin R. Guilbault, USSNTADM - _contacts kg3@princeton.edu, ussntadm@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name cas201w - alias cas201w.Princeton.EDU - _alias1 avanti - address 10.6.49.115 - _IP_MAC1 10.6.49.115 <=> 0:50:56:93:29:61 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2016-07-11 - _date_changed 2016-08-22 - contacts Kevin R. Guilbault - _contacts kg3@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name cch200w - alias cch200w.Princeton.EDU - address 140.180.221.100 - use Windows Production NS PublicDMZ - contacts czimowsk -} - - -define host { - host_name ces201w-ts - alias ces201w-ts.Princeton.EDU - address 140.180.220.85 - _IP_MAC1 140.180.220.85 <=> 0:50:56:93:7e:c3 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Conference and Event Services - _building New South - _room MR, VM, - - _date_created 2016-02-17 - _date_changed 2017-06-13 - contacts Joshua P. Thomas, USSNTADM - _contacts jt7@princeton.edu, ussntadm@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name chm200w - alias chm200w.Princeton.EDU - address 140.180.221.92 - use Windows Production NS PublicDMZ - contacts drosso -} - - -define host { - host_name cisdr200w - alias cisdr200w.Princeton.EDU - address 10.6.52.25 - _IP_MAC1 10.6.52.25 <=> 0:50:56:93:5f:52 - _SUBNET1 fw-servernet-3 (Trust - VLAN 1049 - .52) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room MR, VM , - - _date_created 2015-10-09 - _date_changed 2015-10-09 - contacts Mark A. Ratliff - _contacts ratliff@princeton.edu, winmail@princeton.edu - use Windows Production NS Trust -} - - -define host { - host_name cisdr201w - alias cisdr201w.Princeton.EDU - _alias1 oaworkflow - address 10.6.48.253 - _IP_MAC1 10.6.48.253 <=> 0:50:56:93:17:d7 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room MR, VM, - - _date_created 2015-10-09 - _date_changed 2017-03-17 - contacts Mark A. Ratliff, Open Access Repository - _contacts oar@princeton.edu, ratliff@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name cisdr205w - alias cisdr205w.Princeton.EDU - address 140.180.221.98 - use Windows Production NS PublicDMZ - contacts CISDR -} - - -define host { - host_name cisdr206w - alias cisdr206w.Princeton.EDU - address 10.6.52.83 - use Windows Production NS Trust - contacts CISDR -} - - -define host { - host_name cisdrcons200w - alias cisdrcons200w.Princeton.EDU - address 10.6.48.116 - _IP_MAC1 10.6.48.116 <=> 0:50:56:93:4d:bc - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2018-01-12 - _date_changed 2018-01-12 - contacts CISDR Group of EIS - _contacts cisdr@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name cisdrex200w - alias cisdrex200w.Princeton.EDU - address 140.180.221.126 - use Windows Dev/QA NS PublicDMZ - contacts CISDR Group of EIS -} - - -define host { - host_name cisdrex201w - alias cisdrex201w.Princeton.EDU - address 140.180.221.127 - use Windows Dev/QA NS PublicDMZ - contacts CISDR Group of EIS -} - - -define host { - host_name cisdrtc200l.aws - alias cisdrtc2001.aws.Princeton.EDU - address 10.21.24.125 - use UNIX Production AWS Untrust - contacts CISDR -} - -define host { - host_name cseslicense02 - alias cseslicense02.Princeton.EDU - _alias1 cseslicense - address 140.180.221.32 - _IP_MAC1 140.180.221.32 <=> 0:50:56:93:49:c5 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Research Computing, Office of Information Technology - _building New South - _room MR, VM - - _date_created 2013-08-05 - _date_changed 2017-07-31 - contacts Computational Science and Engineering Support, William G. Guthe - _contacts csesa@princeton.edu, wguthe@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name csi200w - alias csi200w.Princeton.EDU - address 140.180.220.151 - use Windows Dev/QA NS PublicDMZ - contacts rd11 -} - - -define host { - host_name csla200w - alias csla200w.Princeton.EDU - address 140.180.220.121 - _IP_MAC1 140.180.220.121 <=> 0:50:56:93:3b:c3 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2016-04-28 - _date_changed 2016-04-28 - contacts Alan M. Stahl - _contacts astahl@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name css228w - alias css228w.Princeton.EDU - address 140.180.220.90 - use Windows Dev/QA NS PublicDMZ - contacts casperadmin -} - - -define host { - host_name das210w - alias das210w.Princeton.EDU - _alias1 daspraxis - _alias2 campusrecregistrationtest - _alias3 campusrecregistration - address 140.180.220.251 - _IP_MAC1 140.180.220.251 <=> bc:30:5b:f1:16:cd - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Administrative Information Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR,RK,A6 - _date_created 2012-12-21 - _date_changed 2017-12-21 - contacts George R. Fleming Jr. - _contacts fleming@princeton.edu, winmail@princeton.edu - use Windows Production 151 PublicDMZ -} - - -define host { - host_name das211w - alias das211w.Princeton.EDU - address 140.180.221.75 - _IP_MAC1 140.180.221.75 <=> bc:30:5b:f1:49:e5 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Administrative Information Services, Office of Information Technology - _building New South - _room MR,RK,C-01 - _date_created 2012-12-21 - _date_changed 2017-12-21 - contacts George R. Fleming Jr. - _contacts fleming@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name dasdia212w - alias dasdia212w.Princeton.EDU - address 140.180.220.110 - _IP_MAC1 140.180.220.110 <=> 0:50:56:93:7b:e1 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Academic Technology Services, Office of Information Technology - _building New South - _room MR, VM, - - _date_created 2016-04-05 - _date_changed 2016-04-05 - contacts George R. Fleming Jr. - _contacts fleming@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name dasweb228w - alias dasweb228w.Princeton.EDU - _alias1 webnew - _alias2 web - address 140.180.220.47 - _IP_MAC1 140.180.220.47 <=> 0:50:56:93:3f:99 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Administrative Information Services, Office of Information Technology - _building New South - _room MR, VM, - - _date_created 2014-12-08 - _date_changed 2015-06-25 - contacts George R. Fleming Jr. - _contacts fleming@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name dcf200w - alias dcf200w.Princeton.EDU - address 10.6.49.101 - use Windows Dev/QA NS PrivateDMZ - contacts oitdcf -} - - -define host { - host_name dcf201w - alias dcf201w.Princeton.EDU - address 10.6.48.28 - use Windows Dev/QA NS PrivateDMZ - contacts oitdcf -} - - -define host { - host_name dev-webprod-ogv - alias dev-webprod-ogv.Princeton.EDU - address 140.180.220.124 - _IP_MAC1 140.180.220.124 <=> 0:50:56:93:3b:b9 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Development Technology Services, Office of Development - _building New South - _room MR, VM, - - _date_created 2015-08-05 - _date_changed 2016-05-27 - contacts Jacqueline Golden, Nicholas DiPietro - _contacts dipietro@princeton.edu, jfgolden@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name dev-webprod-tt - alias dev-webprod-tt.Princeton.EDU - address 140.180.220.125 - _IP_MAC1 140.180.220.125 <=> 0:50:56:93:5a:eb - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Development Technology Services, Office of Development - _building New South - _room MR, VM, - - _date_created 2015-08-03 - _date_changed 2016-11-16 - contacts Jacqueline Golden, Kathleen D. Haney, Nicholas DiPietro - _contacts dipietro@princeton.edu, jfgolden@princeton.edu, kathyh@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name dev-webprod - alias dev-webprod.Princeton.EDU - address 140.180.220.117 - _IP_MAC1 140.180.220.117 <=> 0:50:56:93:8:f - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Information Strategy, Office of Development - _building New South - _room MR, VM, - - _date_created 2014-04-15 - _date_changed 2016-11-16 - contacts Jacqueline Golden, Kathleen D. Haney, Nicholas DiPietro - _contacts dipietro@princeton.edu, jfgolden@princeton.edu, kathyh@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name dev200w - alias dev200w.Princeton.EDU - _alias1 devcumulus - address 10.6.49.193 - _IP_MAC1 10.6.49.193 <=> 0:50:56:93:5b:fc - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2016-10-21 - _date_changed 2016-11-28 - contacts Kathleen D. Haney, Nicholas DiPietro - _contacts dipietro@princeton.edu, kathyh@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name dev201w - alias dev201w.Princeton.EDU - _alias1 devimages - address 140.180.220.129 - _IP_MAC1 140.180.220.129 <=> 0:50:56:93:42:e - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2016-10-21 - _date_changed 2017-12-07 - contacts Dev DTS, Kathleen D. Haney, Nicholas DiPietro - _contacts dipietro@princeton.edu, kathyh@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name dev202w - alias dev202w.Princeton.EDU - _alias1 devapp - address 140.180.220.192 - _IP_MAC1 140.180.220.192 <=> 0:50:56:93:77:ff - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2017-04-10 - _date_changed 2017-05-10 - contacts Nicholas DiPietro - _contacts dipietro@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name dev203w - alias dev203w.Princeton.EDU - _alias1 devdash - address 10.6.50.171 - _IP_MAC1 10.6.50.171 <=> 24:6e:96:64:17:4 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Development Technology Services, Office of Development - _building New South - _room MR, RK, J-03 - _date_created 2017-07-12 - _date_changed 2017-11-27 - contacts Nicholas DiPietro - _contacts dipietro@princeton.edu, winmail@princeton.edu - use Windows Dev/QA NS PrivateDMZ -} - - -define host { - host_name dev204w - alias dev204w.Princeton.EDU - _alias1 devtigerprod - address 140.180.221.74 - _IP_MAC1 140.180.221.74 <=> 0:50:56:93:b2:ea - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2017-11-03 - _date_changed 2018-02-21 - contacts uats - _contacts uats@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name dev205w - alias dev205w.Princeton.EDU - address 10.6.50.99 - use Windows Production NS PrivateDMZ - contacts uats -} - - -define host { - host_name dev206w - alias dev206w.Princeton.EDU - address 140.180.220.116 - use Windows Dev/QA NS PublicDMZ - contacts uats -} - - -define host { - host_name devdesk - alias devdesk.Princeton.EDU - address 140.180.220.113 - _IP_MAC1 140.180.220.113 <=> 0:50:56:93:3d:d - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Development Technology Services, Office of Development - _building New South - _room MR, VM, - - _date_created 2016-04-05 - _date_changed 2016-11-16 - contacts Kathleen D. Haney, Nicholas DiPietro - _contacts dipietro@princeton.edu, kathyh@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name devp1 - alias devp1.Princeton.EDU - _alias1 stripes - address 10.6.49.176 - _IP_MAC1 10.6.49.176 <=> 0:50:56:93:65:46 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2016-09-26 - _date_changed 2016-11-16 - contacts Kathleen D. Haney, Nicholas DiPietro - _contacts dipietro@princeton.edu, kathyh@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name devp3 - alias devp3.Princeton.EDU - _alias1 stripes3 - address 10.6.49.190 - _IP_MAC1 10.6.49.190 <=> 0:50:56:93:5f:b2 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2016-09-23 - _date_changed 2016-11-16 - contacts Kathleen D. Haney, Nicholas DiPietro - _contacts dipietro@princeton.edu, kathyh@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name devtabguest - alias devtabguest.Princeton.EDU - address 140.180.220.84 - _IP_MAC1 140.180.220.84 <=> 0:50:56:93:48:21 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Development Technology Services, Office of Development - _building New South - _room MR, VM, - - _date_created 2015-07-07 - _date_changed 2016-11-16 - contacts Kathleen D. Haney, Nicholas DiPietro - _contacts dipietro@princeton.edu, kathyh@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name devtabtools - alias devtabtools.Princeton.EDU - address 10.6.48.158 - _IP_MAC1 10.6.48.158 <=> 0:50:56:93:6b:b5 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Development Technology Services, Office of Development - _building New South - _room MR, VM, - - _date_created 2015-03-02 - _date_changed 2016-11-16 - contacts Kathleen D. Haney, Nicholas DiPietro - _contacts dipietro@princeton.edu, kathyh@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name devtool - alias devtool.Princeton.EDU - address 10.6.48.185 - _IP_MAC1 10.6.48.185 <=> 0:50:56:93:b:77 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Development Technology Services, Office of Development - _building New South - _room MR, VM, - - _date_created 2016-01-05 - _date_changed 2017-11-17 - contacts Kathleen D. Haney, Nicholas DiPietro - _contacts dipietro@princeton.edu, kathyh@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name dng200w - alias dng200w.Princeton.EDU - address 10.6.48.191 - _IP_MAC1 10.6.48.191 <=> 0:50:56:93:3:1a - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Dining Services - _building New South - _room MR, VM, - - _date_created 2015-04-28 - _date_changed 2017-06-13 - contacts Joshua P. Thomas, USSNTADM - _contacts jt7@princeton.edu, ussntadm@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name dng201w - alias dng201w.Princeton.EDU - address 10.6.48.213 - _IP_MAC1 10.6.48.213 <=> 0:50:56:93:67:fb - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Dining Services - _building New South - _room MR, VM, - - _date_created 2015-07-02 - _date_changed 2017-06-13 - contacts Joshua P. Thomas, USSNTADM - _contacts jt7@princeton.edu, ussntadm@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name dps201w - alias dps201w.Princeton.EDU - address 10.6.49.121 - _IP_MAC1 10.6.49.121 <=> 0:50:56:93:6:da - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2016-07-11 - _date_changed 2016-07-11 - contacts Igor Zivkovic - _contacts izivkovi@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name dps203w - alias dps203w.Princeton.EDU - address 140.180.220.38 - _IP_MAC1 140.180.220.38 <=> 0:50:56:93:1b:cd - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2016-09-07 - _date_changed 2016-09-07 - contacts Igor Zivkovic - _contacts izivkovi@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name dpsbastion200w - alias dpsbastion200w.Princeton.EDU - address 10.6.51.105 - use Windows Dev/QA NS PrivateDMZ - contacts Igor Zivkovic -} - - -define host { - host_name dsl200w - alias dsl200w.Princeton.EDU - _alias1 orientationreg - address 140.180.220.108 - _IP_MAC1 140.180.220.108 <=> 0:50:56:93:26:e3 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Office of the Dean of Undergraduate Students - _building New South - _room MR, VM, - - _date_created 2016-01-28 - _date_changed 2016-03-28 - contacts Gregory S. Blaha - _contacts gblaha@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name eas200w - alias eas200w.Princeton.EDU - _alias1 eas-had-server - address 140.180.220.128 - _IP_MAC1 140.180.220.128 <=> 0:50:56:93:40:db - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2016-06-16 - _date_changed 2016-06-22 - contacts Jeff S Heller - _contacts jsheller@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name eeb-fm201w - alias eeb-fm201w.Princeton.EDU - address 10.6.48.20 - _IP_MAC1 10.6.48.20 <=> 0:50:56:93:e7:86 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2018-01-23 - _date_changed 2018-01-23 - contacts EEB FileMaker Server Admin - _contacts eeb-fm-sa@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name eeb-had201w - alias eeb-had201w.Princeton.EDU - _alias1 eeb-had-server - address 140.180.220.161 - _IP_MAC1 140.180.220.161 <=> 0:50:56:93:3b:22 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2016-12-12 - _date_changed 2016-12-12 - contacts Jesse Saunders - _contacts jbs@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name ele202w - alias ele202w.Princeton.EDU - address 10.6.48.151 - _IP_MAC1 10.6.48.151 <=> 0:50:56:93:8e:5 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2018-01-25 - _date_changed 2018-01-25 - contacts EE Webmaster - _contacts eeweb@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name eng200w - alias eng200w.Princeton.EDU - address 140.180.220.143 - _IP_MAC1 140.180.220.143 <=> 0:50:56:93:6d:ef - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2016-07-20 - _date_changed 2016-07-20 - contacts Kevin W. Mensch - _contacts kmensch@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name epm200w - alias epm200w.Princeton.EDU - address 10.6.48.31 - use Windows Production NS PrivateDMZ - contacts epm-list -} - - -define host { - host_name erp201w - alias erp201w.Princeton.EDU - address 10.6.50.101 - use Windows Dev/QA NS PrivateDMZ - contacts Thomas E. Dommermuth -} - - -define host { - host_name essonsm200w - alias essonsm200w.Princeton.EDU - address 10.6.50.130 - _IP_MAC1 10.6.50.130 <=> 0:50:56:93:5e:40 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2014-02-28 - _date_changed 2017-10-23 - _contacts ess-list@princeton.edu, winmail@princeton.edu - use Windows Production 151 PrivateDMZ -} - - -define host { - host_name essosd202w - alias essosd202w.Princeton.EDU - address 128.112.129.172 - _IP_MAC1 128.112.129.172 <=> 0:50:56:93:3a:99 - _SUBNET1 princeton-net - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room MR, VM, - - _date_created 2013-05-03 - _date_changed 2015-02-11 - _contacts ess-list@princeton.edu, winmail@princeton.edu - use Windows Production -} - - -define host { - host_name essscript200w - alias essscript200w.Princeton.EDU - address 10.6.50.46 - _IP_MAC1 10.6.50.46 <=> 0:50:56:0:41:27 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room MR, VM, - - _date_created 2011-02-24 - _date_changed 2018-01-05 - _contacts ess-list@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name evcontroller1 - alias evcontroller1.Princeton.EDU - address 10.6.48.206 - _IP_MAC1 10.6.48.206 <=> 0:50:56:93:6f:4e - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Support Services, Office of Information Technology - _building New South - _room MR, VM, - - _date_created 2015-06-29 - _date_changed 2015-06-29 - contacts Grant A. Weed - _contacts gweed@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name evcontroller2 - alias evcontroller2.Princeton.EDU - address 10.6.48.207 - _IP_MAC1 10.6.48.207 <=> 0:50:56:93:4a:62 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Support Services, Office of Information Technology - _building New South - _room MR, VM, - - _date_created 2015-06-29 - _date_changed 2015-06-29 - contacts Grant A. Weed - _contacts gweed@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name fcc200w - alias fcc200w.Princeton.EDU - address 10.6.51.19 - _IP_MAC1 10.6.51.19 <=> 0:50:56:93:b4:27 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2017-12-04 - _date_changed 2017-12-04 - contacts USSNTADM - _contacts ussntadm@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name geo-had-server - alias geo-had-server.Princeton.EDU - address 140.180.220.167 - _IP_MAC1 140.180.220.167 <=> 0:50:56:93:21:18 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2016-12-14 - _date_changed 2016-12-14 - contacts Doreen Sullivan - _contacts doreens@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name gso200w - alias gso200w.Princeton.EDU - _alias1 externalfellowship - _alias2 molqcbsummerapp - address 140.180.220.92 - _IP_MAC1 140.180.220.92 <=> 0:50:56:93:39:62 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Office of the Dean of the Graduate School - _building New South - _room MR, VM, - - _date_created 2015-10-02 - _date_changed 2017-08-17 - contacts Marvin E. Waterman - _contacts mwaterma@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name gso201w - alias gso201w.Princeton.EDU - address 140.180.221.108 - use Windows Production NS PrivateDMZ - contacts gshelp -} - - -define host { - host_name gso202w - alias gso202w.Princeton.EDU - address 10.6.48.56 - use Windows Dev/QA NS PrivateDMZ - contacts gshelp -} - - -define host { - host_name hou201w - alias hou201w.Princeton.EDU - address 10.6.48.232 - _IP_MAC1 10.6.48.232 <=> 0:50:56:93:5f:92 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Housing and Real Estate Services - _building New South - _room MR, VM, - - _date_created 2015-08-11 - _date_changed 2017-06-13 - contacts Kevin R. Guilbault, USSNTADM - _contacts kg3@princeton.edu, ussntadm@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name isocconsole200w - alias isocconsole200w.Princeton.EDU - address 140.180.221.96 - use Windows Production NS PublicDMZ - contacts infosec -} - - -define host { - host_name isoconsole - alias isoconsole.Princeton.EDU - address 10.6.50.143 - _IP_MAC1 10.6.50.143 <=> 0:50:56:93:90:47 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2017-06-30 - _date_changed 2017-06-30 - contacts Steven E. Niedzwiecki - _contacts steven@princeton.edu, winmail@princeton.edu - use Windows Dev/QA NS PrivateDMZ -} - - -define host { - host_name isoproxy200w - alias isoproxy200w.Princeton.EDU - address 140.180.221.118 - use Windows Production 151 PublicDMZ - contacts infosec -} - - -define host { - host_name iss226w - alias iss226w.Princeton.EDU - address 10.6.50.243 - _IP_MAC1 10.6.50.243 <=> 0:50:56:93:ce:eb - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2018-01-19 - _date_changed 2018-01-19 - contacts SCS Operations - _contacts scsops@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name iss227w - alias iss227w.Princeton.EDU - address 10.6.51.46 - _IP_MAC1 10.6.51.46 <=> 0:50:56:93:ad:a3 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2018-02-22 - _date_changed 2018-02-22 - contacts SCS Operations - _contacts scsops@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name iss228w - alias iss228w.Princeton.EDU - address 10.6.51.98 - use Windows Dev/QA NS PrivateDMZ - contacts Peter T Nowak -} - - -define host { - host_name iss229w - alias iss229w.Princeton.EDU - address 10.6.51.99 - use Windows Dev/QA NS PrivateDMZ - contacts Peter T Nowak -} - - -define host { - host_name itms200w - alias itms200w.Princeton.EDU - _alias1 mysoft-tms1 - address 10.6.51.1 - _IP_MAC1 10.6.51.1 <=> 0:50:56:93:2f:54 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Support Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM - - _date_created 2013-06-10 - _date_changed 2017-12-13 - contacts Grant A. Weed - _contacts gweed@princeton.edu, winmail@princeton.edu - use Windows Production 151 PrivateDMZ -} - - -define host { - host_name itms201w - alias itms201w.Princeton.EDU - _alias1 sentry911 - address 140.180.221.64 - _IP_MAC1 140.180.221.64 <=> 0:50:56:93:b:f1 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Support Services, Office of Information Technology - _building New South - _room MR, VM - - _date_created 2013-08-12 - _date_changed 2017-12-13 - contacts Grant A. Weed - _contacts gweed@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name landr - alias landr.Princeton.EDU - address 10.6.48.175 - _IP_MAC1 10.6.48.175 <=> 0:50:56:93:30:c0 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Administrative Information Services, Office of Information Technology - _building New South - _room MR, VM, - - _date_created 2015-03-24 - _date_changed 2016-12-09 - contacts Michael J. Zarillo - _contacts mzarillo@princeton.edu, winmail@princeton.edu - use Windows Dev/QA NS PrivateDMZ -} - - -define host { - host_name lib200w - alias lib200w.Princeton.EDU - address 10.6.50.81 - use Windows Dev/QA NS PrivateDMZ - contacts eugenek -} - - -define host { - host_name lss210w-tprod - alias lss210w-tprod.Princeton.EDU - address 10.6.50.252 - _IP_MAC1 10.6.50.252 <=> 0:50:56:93:1:33 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Security and Access - _building New South - _room MR, VM - - _date_created 2013-09-30 - _date_changed 2017-11-03 - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams - _contacts tuccillo@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name lsscvms207w - alias lsscvms207w.Princeton.EDU - address 10.6.50.254 - _IP_MAC1 10.6.50.254 <=> b8:ca:3a:5b:b4:c9 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Security and Access - _building 151 Forrestal Rd. - _room MR, RK, D4 - _date_created 2013-05-07 - _date_changed 2017-11-03 - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams - _contacts tuccillo@princeton.edu, winmail@princeton.edu - use Windows Production 151 PrivateDMZ -} - - -define host { - host_name mccdigrec207w - alias mccdigrec207w.Princeton.EDU - address 140.180.220.12 - _IP_MAC1 140.180.220.12 <=> 0:50:56:93:26:d8 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Other - _building New South - _room MR, VM, - - _date_created 2014-06-23 - _date_changed 2014-08-07 - contacts Charlotte C. Hussey - _contacts hussey@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name mccweb200w - alias mccweb200w.Princeton.EDU - address 140.180.220.25 - _IP_MAC1 140.180.220.25 <=> 0:50:56:93:26:df - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Other - _building New South - _room MR, VM, - - _date_created 2014-06-23 - _date_changed 2014-07-18 - contacts Charlotte C. Hussey - _contacts hussey@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name mccweb201w - alias mccweb201w.Princeton.EDU - address 10.6.48.53 - _IP_MAC1 10.6.48.53 <=> 0:50:56:93:26:dd - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Other - _building New South - _room MR, VM, - - _date_created 2014-06-23 - _date_changed 2014-07-18 - contacts Charlotte C. Hussey - _contacts hussey@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name mcg200w - alias mcg200w.Princeton.EDU - address 140.180.221.33 - _IP_MAC1 140.180.221.33 <=> 0:50:56:93:88:55 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2017-07-27 - _date_changed 2017-07-27 - contacts Paula L. Brett - _contacts plbrett@princeton.edu, winmail@princeton.edu - use Windows Dev/QA NS PublicDMZ -} - - -define host { - host_name mcgtutor200w - alias mcgtutor200w.Princeton.EDU - _alias1 schedule - address 140.180.220.39 - _IP_MAC1 140.180.220.39 <=> 0:50:56:93:e6:70 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2017-08-14 - _date_changed 2017-08-22 - contacts Brian T. Burgher, Jaysen J. LeSage, John S. Green III, Paula L. Brett - _contacts bburgher@princeton.edu, jgreen@princeton.edu, jlesage@princeton.edu, plbrett@princeton.edu - use Windows Dev/QA NS PublicDMZ -} - - -define host { - host_name mol205w - alias mol205w.Princeton.EDU - address 10.6.49.219 - _IP_MAC1 10.6.49.219 <=> 0:50:56:93:e:e4 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2016-12-07 - _date_changed 2016-12-07 - contacts Matthew H. Cahn - _contacts mcahn@princeton.edu, winmail@princeton.edu - use Windows Production 151 PrivateDMZ -} - - -define host { - host_name mol206w - alias mol206w.Princeton.EDU - address 10.6.50.38 - _IP_MAC1 10.6.50.38 <=> 0:50:56:93:b4:df - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2017-04-03 - _date_changed 2017-04-03 - contacts Brandon Kennedy - _contacts bk@princeton.edu, winmail@princeton.edu - use Windows Production 151 PrivateDMZ -} - - -define host { - host_name mus200w - alias mus200w.Princeton.EDU - address 140.180.221.77 - use Windows Production NS PublicDMZ - contacts langley -} - - -define host { - host_name netops200w - alias netops200w.Princeton.EDU - address 10.6.51.2 - _IP_MAC1 10.6.51.2 <=> 0:50:56:93:39:fe - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2017-10-25 - _date_changed 2017-10-25 - contacts Anthony J. Jones - _contacts ajjones@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name oac200w - alias oac200w.Princeton.EDU - address 10.6.51.5 - _IP_MAC1 10.6.51.5 <=> 0:50:56:93:ff:6e - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2017-10-26 - _date_changed 2017-10-26 - contacts Christopher S. Oswald - _contacts coswald@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name oac201w - alias oac201w.Princeton.EDU - address 10.6.52.29 - use Windows Production NS Trust - contacts coswald -} - - -define host { - host_name ocs201w - alias ocs201w.Princeton.EDU - address 10.6.49.216 - _IP_MAC1 10.6.49.216 <=> 0:50:56:93:56:2f - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2017-02-27 - _date_changed 2017-02-27 - contacts Justin T. Kazlauskas - _contacts jk14@princeton.edu, winmail@princeton.edu - use Windows Production 151 PrivateDMZ -} - - -define host { - host_name ocs202w - alias ocs202w.Princeton.EDU - address 10.6.49.90 - use Windows Dev/QA NS PrivateDMZ - contacts careerdcs -} - - -define host { - host_name odoc202w - alias odoc202w.Princeton.EDU - address 10.6.49.218 - _IP_MAC1 10.6.49.218 <=> 0:50:56:93:27:8f - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2016-12-06 - _date_changed 2016-12-06 - contacts Jaysen J. LeSage - _contacts jlesage@princeton.edu, winmail@princeton.edu - use Windows Dev/QA 151 PrivateDMZ -} - - -define host { - host_name oocphotos200w - alias oocphotos200w.Princeton.EDU - _alias1 photos - address 140.180.220.45 - _IP_MAC1 140.180.220.45 <=> 0:50:56:93:18:7c - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Communications - _building New South - _room MR, VM, - - _date_created 2014-11-25 - _date_changed 2014-11-25 - contacts John W. Jameson - _contacts jjameson@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name oss201w - alias oss201w.Princeton.EDU - address 10.6.48.37 - use Windows Production NS PrivateDMZ - contacts switch -} - - -define host { - host_name pcocr204w - alias pcocr204w.Princeton.EDU - address 10.6.51.84 - use Windows Dev/QA NS PrivateDMZ - contacts pcotech -} - - -define host { - host_name pcocr205w - alias pcocr205w.Princeton.EDU - address 10.6.51.43 - use Windows Dev/QA NS PrivateDMZ - contacts pcotech -} - - -define host { - host_name pcocrdb206w - alias pcocrdb206w.Princeton.EDU - address 10.6.53.244 - use Windows Dev/QA NS Trust - contacts DBA Important List -} - - -define host { - host_name pcords201w - alias pcords201w.Princeton.EDU - address 10.6.50.95 - _IP_MAC1 10.6.50.95 <=> 0:50:56:93:4:a - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2017-05-18 - _date_changed 2017-05-18 - contacts Glenn R. Wemple - _contacts gwemple@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name pcs200w - alias pcs200w.Princeton.EDU - address 10.6.50.190 - _IP_MAC1 10.6.50.190 <=> 0:50:56:93:c9:21 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2017-07-31 - _date_changed 2017-07-31 - contacts Pace Center DCS - _contacts pacedcs@princeton.edu, winmail@princeton.edu - use Windows Dev/QA NS PrivateDMZ -} - - -define host { - host_name pdom09.aws - alias pdom09.aws.Princeton.EDU - address 10.21.1.208 - use Windows Dev/QA AWS Untrust - contacts iam -} - - -define host { - host_name pdom10.aws - alias pdom10.aws.Princeton.EDU - address 10.21.1.86 - use Windows Dev/QA AWS Untrust - contacts iam -} - - -define host { - host_name phy200w - alias phy200w.Princeton.EDU - address 10.6.51.8 - _IP_MAC1 10.6.51.8 <=> 0:50:56:93:79:a4 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Physics - _building New South - _room MR, VM, - - _date_created 2012-11-29 - _date_changed 2017-11-06 - contacts Vinod K. Gupta - _contacts vinod@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name pni-had-server - alias pni-had-server.Princeton.EDU - address 140.180.220.169 - _IP_MAC1 140.180.220.169 <=> 0:50:56:93:64:79 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2016-12-21 - _date_changed 2016-12-21 - contacts James E. Plastine - _contacts plastine@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name pni201w - alias pni201w.Princeton.EDU - _alias1 psnl-db - address 10.6.49.8 - _IP_MAC1 10.6.49.8 <=> 0:50:56:93:11:a5 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2016-07-26 - _date_changed 2016-08-05 - contacts Diana I. Tamir - _contacts dtamir@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name pol202w - alias pol202w.Princeton.EDU - address 140.180.220.43 - use Windows Dev/QA NS PublicDMZ - contacts Politics Department -} - - -define host { - host_name printsoa200w - alias printsoa200w.Princeton.EDU - _alias1 printsoa - address 10.6.51.15 - _IP_MAC1 10.6.51.15 <=> 0:50:56:93:e6:85 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2017-11-17 - _date_changed 2017-11-20 - contacts Architecture Computer - _contacts archcomp@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name prz201w - alias prz201w.Princeton.EDU - _alias1 iac - _alias2 iaccalendar - address 140.180.221.36 - _IP_MAC1 140.180.221.36 <=> 0:50:56:93:1:14 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Princeton Institute for the Science and Technology of Materials - _building New South - _room MR, VM, - - _date_created 2012-09-11 - _date_changed 2017-08-30 - contacts Daniel McNesby - _contacts dmcnesb@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name prz203w - alias prz203w.Princeton.EDU - address 10.6.48.228 - _IP_MAC1 10.6.48.228 <=> ec:f4:bb:df:6f:44 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department School of Engineering and Applied Science - _building 151 Forrestal Rd. - _room MR, RK, A-05 - _date_created 2015-08-11 - _date_changed 2017-12-07 - contacts Conrad L. Silvestre, Daniel McNesby - _contacts dmcnesb@princeton.edu, winmail@princeton.edu - use Windows Production 151 PrivateDMZ -} - - -define host { - host_name prz204w - alias prz204w.Princeton.EDU - _alias1 micro-nano-fab-lab - _alias2 nemo - address 140.180.220.170 - _IP_MAC1 140.180.220.170 <=> 0:50:56:93:28:9a - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2016-12-21 - _date_changed 2018-01-26 - contacts Daniel McNesby - _contacts dmcnesb@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name prz205w - alias prz205w.Princeton.EDU - _alias1 nyao - address 140.180.221.71 - _IP_MAC1 140.180.221.71 <=> 0:50:56:93:9f:2 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2017-11-20 - _date_changed 2018-02-01 - contacts PRISM Computer - _contacts przcomp@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name prz206w - alias prz206w.Princeton.EDU - address 140.180.221.109 - use Windows Production NS PublicDMZ - contacts przcomp -} - - -define host { - host_name psy200w - alias psy200w.Princeton.EDU - _alias1 psy-had-server - address 140.180.220.149 - _IP_MAC1 140.180.220.149 <=> 0:50:56:93:6:6d - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2016-08-01 - _date_changed 2016-08-01 - contacts James E. Plastine - _contacts plastine@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name saconsole200w - alias saconsole200w.Princeton.EDU - address 10.6.49.225 - _IP_MAC1 10.6.49.225 <=> 0:50:56:93:69:ea - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2016-12-15 - _date_changed 2016-12-15 - contacts Chi M. Lu - _contacts clu@princeton.edu, winmail@princeton.edu - use Windows Dev/QA NS PrivateDMZ -} - - -define host { - host_name sas203w - alias sas203w.Princeton.EDU - address 10.6.49.137 - use Windows Production NS PrivateDMZ - contacts rsegers -} - - -define host { - host_name sasemsterm200w - alias sasemsterm200w.Princeton.EDU - address 10.6.49.152 - use Windows Production 151 PrivateDMZ - contacts pac_usapps -} - - -define host { - host_name sasemsws200w - alias sasemsws200w.Princeton.EDU - address 140.180.221.104 - use Windows Production 151 PublicDMZ - contacts pac_usapps -} - - -define host { - host_name sasiw202w - alias sasiw202w.Princeton.EDU - address 10.6.48.19 - use Windows Production NS PrivateDMZ - contacts monocle -} - - -define host { - host_name sasiw215w - alias sasiw215w.Princeton.EDU - address 10.6.53.91 - use Windows Production NS Trust - contacts monocle -} - - -define host { - host_name sasiw216w - alias sasiw216w.Princeton.EDU - address 10.6.53.92 - use Windows Production NS Trust - contacts monocle -} - - -define host { - host_name sasiw225w - alias sasiw225w.Princeton.EDU - address 10.6.52.156 - use Windows Dev/QA NS Trust - contacts monocle -} - - -define host { - host_name sasiw226w - alias sasiw226w.Princeton.EDU - address 10.6.52.157 - use Windows Dev/QA NS Trust - contacts monocle -} - - -define host { - host_name sasiw227w - alias sasiw227w.Princeton.EDU - address 10.6.52.158 - use Windows Dev/QA NS Trust - contacts monocle -} - - -define host { - host_name sasiw228w - alias sasiw228w.Princeton.EDU - address 10.6.52.159 - use Windows Dev/QA NS Trust - contacts monocle -} - - -define host { - host_name sasmbns203w - alias sasmbns203w.Princeton.EDU - address 10.6.52.151 - use Windows Dev/QA NS Trust - contacts NAS Admin -} - - -define host { - host_name sasmbns204w - alias sasmbns204w.Princeton.EDU - address 10.6.52.153 - use Windows Dev/QA NS Trust - contacts NAS Admin -} - - -define host { - host_name sasmbns205w - alias sasmbns205w.Princeton.EDU - address 10.6.52.77 - use Windows Dev/QA NS Trust - contacts ESS Storage -} - - -define host { - host_name sasmbproxy200w - alias sasmbproxy200w.Princeton.EDU - address 10.6.53.247 - use Windows Dev/QA NS Trust - contacts NAS Admin -} - - -define host { - host_name sasmbproxy202w - alias sasmbproxy202w.Princeton.EDU - address 10.6.53.251 - use Windows Dev/QA NS Trust - contacts NAS Admin -} - - -define host { - host_name sasmbproxy206w - alias sasmbproxy206w.Princeton.EDU - address 10.6.52.163 - use Windows Dev/QA NS Trust - contacts NAS Admin -} - - -define host { - host_name sasmis200w - alias sasmis200w.Princeton.EDU - address 10.6.53.64 - _IP_MAC1 10.6.53.64 <=> 0:50:56:93:c3:a8 - _SUBNET1 fw-servernet-3 (Trust - VLAN 1049 - .52) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2018-02-08 - _date_changed 2018-02-08 - contacts Chi M. Lu - _contacts clu@princeton.edu, winmail@princeton.edu - use Windows Production NS Trust -} - - -define host { - host_name sasob200w - alias sasob200w.Princeton.EDU - address 10.6.52.78 - use Windows Production NS Trust - contacts ECM Admin Notify -} - - -define host { - host_name sasob299w - alias sasob299w.Princeton.EDU - address 10.6.52.47 - use Windows Dev/QA NS Trust - contacts ECM Admin Notify -} - - -define host { - host_name sassunapsis101w - alias sassunapsis101w.Princeton.EDU - address 10.6.49.126 - use Windows Dev/QA NS PrivateDMZ - contacts pac_usapps -} - - -define host { - host_name sassunapsis200w - alias sassunapsis200w.Princeton.EDU - address 140.180.220.59 - use Windows Production NS PublicDMZ - contacts pac_usapps -} - - -define host { - host_name sassunapsis201w - alias sassunapsis201w.Princeton.EDU - address 140.180.221.111 - use Windows Dev/QA 151 PublicDMZ - contacts pac_usapps -} - - -define host { - host_name sastopaz200w - alias sastopaz200w.Princeton.EDU - address 10.6.49.132 - use Windows Production NS PrivateDMZ - contacts pac_app_integration -} - - -define host { - host_name savmbkent200w - alias savmbkent200w.Princeton.EDU - address 10.6.52.131 - use Windows Production NS Trust - contacts ESS Storage -} - - -define host { - host_name scs201w - alias scs201w.Princeton.EDU - _alias1 clusters - _alias2 clusterkey - address 10.6.48.36 - _IP_MAC1 10.6.48.36 <=> 0:50:56:0:c2:27 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Support Services, Office of Information Technology - _building New South - _room MR, VM, - - _date_created 2011-12-05 - _date_changed 2017-09-26 - contacts Daniel T. Pease, Gary D. Eshbaugh, Peter T Nowak - _contacts dpease@princeton.edu, eshbaugh@princeton.edu, pnowak@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - - -define host { - host_name sea200w - alias sea200w.Princeton.EDU - address 10.6.48.46 - _IP_MAC1 10.6.48.46 <=> 0:50:56:93:e:85 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department School of Engineering and Applied Science - _building New South - _room MR, VM, - - _date_created 2015-12-10 - _date_changed 2015-12-10 - contacts Seas Computer Support - _contacts seascomp@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name sea201w - alias sea201w.Princeton.EDU - address 10.6.48.165 - _IP_MAC1 10.6.48.165 <=> 0:50:56:93:f:e2 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department School of Engineering and Applied Science - _building New South - _room MR, VM, - - _date_created 2015-12-10 - _date_changed 2015-12-10 - contacts Seas Computer Support - _contacts seascomp@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name sentryteledir - alias sentryteledir.Princeton.EDU - address 10.6.48.243 - _IP_MAC1 10.6.48.243 <=> 0:50:56:93:46:d - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Support Services, Office of Information Technology - _building New South - _room MR, VM, - - _date_created 2015-09-18 - _date_changed 2015-09-18 - contacts Grant A. Weed - _contacts gweed@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name sis222w - alias sis222w.Princeton.EDU - address 10.6.53.163 - use Windows Dev/QA NS Trust - contacts DBA Important List -} - - -define host { - host_name smo200w - alias smo200w.Princeton.EDU - address 10.6.48.149 - _IP_MAC1 10.6.48.149 <=> 0:50:56:93:98:c0 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2017-04-03 - _date_changed 2017-04-03 - contacts Henry M. Umansky - _contacts humansky@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name smo201w - alias smo201w.Princeton.EDU - address 10.6.50.126 - _IP_MAC1 10.6.50.126 <=> 0:50:56:93:25:b0 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2017-10-19 - _date_changed 2017-10-19 - contacts Henry M. Umansky, smo-sysadmins - _contacts humansky@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name smo202w - alias smo202w.Princeton.EDU - address 10.6.50.246 - _IP_MAC1 10.6.50.246 <=> 0:50:56:93:d4:26 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2017-10-19 - _date_changed 2017-10-19 - contacts Henry M. Umansky, smo-sysadmins - _contacts humansky@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name smo203w - alias smo203w.Princeton.EDU - address 10.6.49.239 - _IP_MAC1 10.6.49.239 <=> 0:50:56:93:a1:54 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2018-02-14 - _date_changed 2018-02-14 - contacts smo-sysadmin - _contacts smo-sysadmin@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name smo204w - alias smo204w.Princeton.EDU - address 10.6.49.164 - use Windows Production NS PrivateDMZ - contacts mjo3 -} - - -define host { - host_name smo205w - alias smo205w.Princeton.EDU - address 10.6.48.194 - use Windows Production NS PrivateDMZ - contacts smo-sysadmins -} - - -define host { - host_name smo206w - alias smo206w.Princeton.EDU - address 10.6.49.151 - use Windows Production NS PrivateDMZ - contacts smo-sysadmins -} - - -define host { - host_name soc-had200w - alias soc-had200w.Princeton.EDU - address 140.180.220.37 - _IP_MAC1 140.180.220.37 <=> 0:50:56:93:68:5 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2016-11-01 - _date_changed 2016-11-01 - contacts Eric C. Altman - _contacts ealtman@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - - -define host { - host_name spcacs201w - alias spcacs201w.Princeton.EDU - address 10.6.48.112 - _IP_MAC1 10.6.48.112 <=> 0:50:56:93:6a:6 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Security and Access - _building New South - _room MR, VM, - - _date_created 2014-11-19 - _date_changed 2016-06-09 - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams - _contacts tuccillo@princeton.edu, winmail@princeton.edu - use Windows Dev/QA NS PrivateDMZ -} - - -define host { - host_name spcacsa202w - alias spcacsa202w.Princeton.EDU - address 10.6.48.198 - _IP_MAC1 10.6.48.198 <=> 0:50:56:93:20:fb - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Security and Access - _building New South - _room MR, VM, - - _date_created 2015-01-06 - _date_changed 2016-06-09 - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams - _contacts tuccillo@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name spcvms10nvr210w - alias spcvms10nvr210w.Princeton.EDU - address 10.6.49.32 - _IP_MAC1 10.6.49.32 <=> 0:50:56:93:10:e1 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Site Protection - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2015-11-11 - _date_changed 2016-06-09 - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams - _contacts tuccillo@princeton.edu, winmail@princeton.edu - use Windows Production 151 PrivateDMZ -} - - -define host { - host_name spcvms11nvr211w - alias spcvms11nvr211w.Princeton.EDU - address 10.6.49.24 - _IP_MAC1 10.6.49.24 <=> 0:50:56:93:3c:c5 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Site Protection - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2015-11-12 - _date_changed 2016-06-09 - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams - _contacts tuccillo@princeton.edu, winmail@princeton.edu - use Windows Production 151 PrivateDMZ -} - - -define host { - host_name spcvms12nvr212w - alias spcvms12nvr212w.Princeton.EDU - address 10.6.49.33 - _IP_MAC1 10.6.49.33 <=> 0:50:56:93:4:40 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Site Protection - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2015-11-12 - _date_changed 2016-06-09 - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams - _contacts tuccillo@princeton.edu, winmail@princeton.edu - use Windows Production 151 PrivateDMZ -} - - -define host { - host_name spcvms13nvr213w - alias spcvms13nvr213w.Princeton.EDU - address 10.6.50.255 - use Windows Dev/QA NS PrivateDMZ - contacts tuccillo -} - - -define host { - host_name spcvms14nvr214w - alias spcvms14nvr214w.Princeton.EDU - address 10.6.50.251 - use Windows Dev/QA NS PrivateDMZ - contacts tuccillo -} - - -define host { - host_name spcvms1nvr201w - alias spcvms1nvr201w.Princeton.EDU - address 10.6.48.183 - _IP_MAC1 10.6.48.183 <=> 0:50:56:93:73:42 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Security and Access - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2015-04-07 - _date_changed 2016-11-28 - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams - _contacts tuccillo@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name spcvms2nvr202w - alias spcvms2nvr202w.Princeton.EDU - address 10.6.48.184 - _IP_MAC1 10.6.48.184 <=> 0:50:56:93:3b:2 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Security and Access - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2015-04-07 - _date_changed 2016-11-28 - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams - _contacts tuccillo@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name spcvms3nvr203w - alias spcvms3nvr203w.Princeton.EDU - address 10.6.49.20 - _IP_MAC1 10.6.49.20 <=> 0:50:56:93:58:47 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Site Protection - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2015-11-02 - _date_changed 2017-11-17 - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams - _contacts tuccillo@princeton.edu, winmail@princeton.edu - use Windows Production 151 PrivateDMZ -} - - -define host { - host_name spcvms4nvr204w - alias spcvms4nvr204w.Princeton.EDU - address 10.6.49.25 - _IP_MAC1 10.6.49.25 <=> 0:50:56:93:58:af - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Site Protection - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2015-11-10 - _date_changed 2016-06-09 - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams - _contacts tuccillo@princeton.edu, winmail@princeton.edu - use Windows Production 151 PrivateDMZ -} - - -define host { - host_name spcvms5nvr205w - alias spcvms5nvr205w.Princeton.EDU - address 10.6.49.28 - _IP_MAC1 10.6.49.28 <=> 0:50:56:93:61:0 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Site Protection - _building 151 Forrestal Rd. - _room MR,VM, - - _date_created 2015-11-10 - _date_changed 2017-11-17 - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams - _contacts tuccillo@princeton.edu, winmail@princeton.edu - use Windows Production 151 PrivateDMZ -} - - -define host { - host_name spcvms6nvr206w - alias spcvms6nvr206w.Princeton.EDU - address 10.6.49.29 - _IP_MAC1 10.6.49.29 <=> 0:50:56:93:4d:76 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Site Protection - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2015-11-10 - _date_changed 2017-11-17 - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams - _contacts tuccillo@princeton.edu, winmail@princeton.edu - use Windows Production 151 PrivateDMZ -} - - -define host { - host_name spcvms7nvr207w - alias spcvms7nvr207w.Princeton.EDU - address 10.6.49.30 - _IP_MAC1 10.6.49.30 <=> 0:50:56:93:5e:9f - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Site Protection - _building 151 Forrestal Rd. - _room MR,VM - _date_created 2015-11-10 - _date_changed 2017-11-17 - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams - _contacts tuccillo@princeton.edu, winmail@princeton.edu - use Windows Production 151 PrivateDMZ -} - - -define host { - host_name spcvms8nvr208w - alias spcvms8nvr208w.Princeton.EDU - address 10.6.49.31 - _IP_MAC1 10.6.49.31 <=> 0:50:56:93:4e:30 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Site Protection - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2015-11-10 - _date_changed 2017-11-17 - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams - _contacts tuccillo@princeton.edu, winmail@princeton.edu - use Windows Production 151 PrivateDMZ -} - - -define host { - host_name spcvms9nvr209w - alias spcvms9nvr209w.Princeton.EDU - address 10.6.49.27 - _IP_MAC1 10.6.49.27 <=> 0:50:56:93:67:25 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Site Protection - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2015-11-10 - _date_changed 2016-06-09 - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams - _contacts tuccillo@princeton.edu, winmail@princeton.edu - use Windows Production 151 PrivateDMZ -} - - -define host { - host_name spcvmsj215w - alias spcvmsj215w.Princeton.EDU - address 10.6.50.137 - use Windows Dev/QA NS PrivateDMZ - contacts Edith M. Rzomp -} - - -define host { - host_name spcvmsm200w - alias spcvmsm200w.Princeton.EDU - address 10.6.48.182 - _IP_MAC1 10.6.48.182 <=> 0:50:56:93:1a:41 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Security and Access - _building New South - _room MR, VM, - - _date_created 2015-04-07 - _date_changed 2016-06-09 - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams - _contacts tuccillo@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name spcvmsts214w - alias spcvmsts214w.Princeton.EDU - address 140.180.221.110 - use Windows Production NS PublicDMZ - contacts tuccillo -} - - -define host { - host_name ss225w - alias ss225w.Princeton.EDU - _alias1 wsus - address 140.180.220.159 - _IP_MAC1 140.180.220.159 <=> 0:50:56:93:4e:90 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2016-10-03 - _date_changed 2016-10-11 - contacts Phillip M. Immordino - _contacts pimmo@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name ssepo224w - alias ssepo224w.Princeton.EDU - address 140.180.221.116 - use Windows Production NS PublicDMZ - contacts markpe -} - - -define host { - host_name svconsole200w - alias svconsole200w.Princeton.EDU - address 10.6.49.62 - use Windows Production NS PrivateDMZ - contacts ESS Ops -} - - -define host { - host_name svp2vhelper - alias svp2vhelper.Princeton.EDU - address 10.6.49.88 - use Windows Production NS PrivateDMZ - contacts ESS Windows List -} - - -define host { - host_name tax200w - alias tax200w.Princeton.EDU - address 140.180.220.27 - _IP_MAC1 140.180.220.27 <=> 0:50:56:93:7f:77 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Tax, Office of the Vice President for Finance and Treasurer - _building New South - _room MR, VM, - - _date_created 2014-06-17 - _date_changed 2017-03-17 - contacts Erik D. Johnston - _contacts erik@princeton.edu, winmail@princeton.edu - use Windows Production -} - - -define host { - host_name tbschedule1 - alias tbschedule1.Princeton.EDU - address 10.6.48.241 - _IP_MAC1 10.6.48.241 <=> 0:50:56:93:39:df - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Support Services, Office of Information Technology - _building New South - _room MR, VM, - - _date_created 2015-09-16 - _date_changed 2015-09-16 - contacts David M. Hopkins - _contacts dhopkins@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name telswitch - alias telswitch.Princeton.EDU - address 10.6.48.179 - _IP_MAC1 10.6.48.179 <=> 0:50:56:93:42:80 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Support Services, Office of Information Technology - _building New South - _room MR, VM, - - _date_created 2015-03-30 - _date_changed 2015-03-30 - contacts Grant A. Weed - _contacts gweed@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name tmetsciscodigi1 - alias tmetsciscodigi1.Princeton.EDU - address 10.6.49.175 - _IP_MAC1 10.6.49.175 <=> 0:50:56:93:31:4a - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Support Services, Office of Information Technology - _building New South - _room mr, vm, - - _date_created 2016-09-13 - _date_changed 2016-09-21 - contacts Grant A. Weed - _contacts gweed@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name tmetsdigi1 - alias tmetsdigi1.Princeton.EDU - address 10.6.48.208 - _IP_MAC1 10.6.48.208 <=> 0:50:56:93:76:d3 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Support Services, Office of Information Technology - _building New South - _room MR, VM, - - _date_created 2015-06-29 - _date_changed 2015-06-29 - contacts Grant A. Weed - _contacts gweed@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name tmetsdigi2 - alias tmetsdigi2.Princeton.EDU - address 10.6.48.209 - _IP_MAC1 10.6.48.209 <=> 0:50:56:93:b:6b - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Support Services, Office of Information Technology - _building New South - _room MR, VM, - - _date_created 2015-06-29 - _date_changed 2015-06-29 - contacts Grant A. Weed - _contacts gweed@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name tmetsmultimedia - alias tmetsmultimedia.Princeton.EDU - address 10.6.48.211 - _IP_MAC1 10.6.48.211 <=> 0:50:56:93:41:f6 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Support Services, Office of Information Technology - _building New South - _room MR, VM, - - _date_created 2015-06-29 - _date_changed 2015-06-29 - contacts Grant A. Weed - _contacts gweed@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name top200w - alias top200w.Princeton.EDU - address 10.6.49.168 - _IP_MAC1 10.6.49.168 <=> 0:50:56:93:6a:28 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2016-08-12 - _date_changed 2017-09-19 - contacts Erik D. Johnston - _contacts erik@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name top201w - alias top201w.Princeton.EDU - address 10.6.49.169 - _IP_MAC1 10.6.49.169 <=> 0:50:56:93:6a:eb - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2016-08-12 - _date_changed 2017-09-19 - contacts Erik D. Johnston - _contacts erik@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name tps200w-garage - alias tps200w-garage.Princeton.EDU - address 10.6.48.104 - _IP_MAC1 10.6.48.104 <=> 0:50:56:93:23:83 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Transportation and Parking Services, University Services - _building New South - _room mr - _date_created 2014-11-04 - _date_changed 2017-06-13 - contacts Joshua P. Thomas, USSNTADM - _contacts jt7@princeton.edu, ussntadm@princeton.edu - use Windows Production NS PrivateDMZ -} - - - -define host { - host_name tps201w-garage - alias tps201w-garage.Princeton.EDU - address 10.6.48.107 - use Windows Production NS PrivateDMZ - contacts ussntadm -} - - -define host { - host_name tps202w-garage - alias tps202w-garage.Princeton.EDU - address 10.6.51.101 - use Windows Dev/QA NS PrivateDMZ - contacts University Services IT Support -} - - -define host { - host_name ufa200w - alias ufa200w.Princeton.EDU - address 10.6.49.119 - use Windows Production NS PrivateDMZ - contacts John S. Green III -} - - -define host { - host_name uhs-bh201w - alias uhs-bh201w.Princeton.EDU - address 10.6.50.166 - use Windows Dev/QA NS PrivateDMZ - contacts Judith E. Oakley -} - - -define host { - host_name uhs-bhs200w - alias uhs-bhs200w.Princeton.EDU - address 140.180.221.21 - _IP_MAC1 140.180.221.21 <=> 0:50:56:93:a0:60 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2017-12-19 - _date_changed 2017-12-19 - contacts Judith E. Oakley - _contacts joakley@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name uhs207w - alias uhs207w.Princeton.EDU - address 10.6.63.83 - _IP_MAC1 10.6.63.83 <=> 0:50:56:93:49:c6 - _SUBNET1 fw-servernet-4 (Restricted - VLAN 1059 - .63.64) - _department University Health Services - _building New South - _room MR, VM - - _date_created 2013-08-05 - _date_changed 2018-01-02 - contacts Health Services Help, Judith E. Oakley - _contacts joakley@princeton.edu, uhshelp@princeton.edu, winmail@princeton.edu - use Windows Production NS Restricted -} - - -define host { - host_name uhs209w - alias uhs209w.Princeton.EDU - address 10.6.63.77 - _IP_MAC1 10.6.63.77 <=> 0:50:56:93:63:61 - _SUBNET1 fw-servernet-4 (Restricted - VLAN 1059 - .63.64) - _department University Health Services - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2016-03-07 - _date_changed 2016-12-06 - contacts Judith E. Oakley - _contacts joakley@princeton.edu, winmail@princeton.edu - use Windows Production 151 Untrust -} - - -define host { - host_name uhs210w - alias uhs210w.Princeton.EDU - address 10.6.63.76 - _IP_MAC1 10.6.63.76 <=> 0:50:56:93:5b:dc - _SUBNET1 fw-servernet-4 (Restricted - VLAN 1059 - .63.64) - _department University Health Services - _building New South - _room MR, VM, - - _date_created 2016-03-07 - _date_changed 2016-12-06 - contacts Judith E. Oakley - _contacts joakley@princeton.edu, winmail@princeton.edu - use Windows Production NS Untrust -} - - -define host { - host_name uhs211w - alias uhs211w.Princeton.EDU - address 140.180.221.112 - _IP_MAC1 10.6.49.124 <=> 0:50:56:93:4:a7 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2016-07-12 - _date_changed 2016-12-06 - contacts Judith E. Oakley - _contacts joakley@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name uhs212w - alias uhs212w.Princeton.EDU - address 10.6.63.66 - _IP_MAC1 10.6.63.66 <=> 0:50:56:93:9c:c4 - _SUBNET1 fw-servernet-4 (Restricted - VLAN 1059 - .63.64) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2017-07-24 - _date_changed 2017-07-24 - contacts Brian J. Powell - _contacts brianp@princeton.edu, winmail@princeton.edu - use Windows Dev/QA -} - - -define host { - host_name uhs213w - alias uhs213w.Princeton.EDU - address 10.6.63.79 - _IP_MAC1 10.6.63.79 <=> 0:50:56:93:82:59 - _SUBNET1 fw-servernet-4 (Restricted - VLAN 1059 - .63.64) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2017-07-24 - _date_changed 2017-07-24 - contacts Brian J. Powell - _contacts brianp@princeton.edu, winmail@princeton.edu - use Windows Dev/QA -} - - -define host { - host_name uhs214w - alias uhs214w.Princeton.EDU - address 10.6.50.180 - _IP_MAC1 10.6.50.180 <=> 0:50:56:93:f1:8a - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2017-07-25 - _date_changed 2017-07-25 - contacts Brian J. Powell - _contacts brianp@princeton.edu, winmail@princeton.edu - use Windows Dev/QA NS PrivateDMZ -} - - -define host { - host_name upkvm - alias upkvm.Princeton.EDU - _alias1 upk200w - address 10.6.50.128 - _IP_MAC1 10.6.50.128 <=> 0:50:56:93:2a:eb - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Operations and Planning, Office of Information Technology - _building New South - _room MR, VM, - - _date_created 2013-08-28 - _date_changed 2017-10-30 - contacts Erik D. Johnston - _contacts erik@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name uss201w - alias uss201w.Princeton.EDU - _alias1 pmapps - address 140.180.220.57 - _IP_MAC1 140.180.220.57 <=> 0:50:56:93:71:c4 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Finance and Resource Administration, University Services - _building New South - _room MR, VM, - - _date_created 2015-03-23 - _date_changed 2016-07-22 - contacts Jaysen J. LeSage - _contacts jlesage@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name uss202w-win08 - alias uss202w-win08.Princeton.EDU - _alias1 campusdining - _alias2 uservices-ws - _alias3 housing-apps - address 140.180.221.34 - _IP_MAC1 140.180.221.34 <=> 0:50:56:93:4:7d - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Finance and Resource Administration, University Services - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2014-04-21 - _date_changed 2017-08-15 - contacts Joshua P. Thomas - _contacts jt7@princeton.edu, winmail@princeton.edu - use Windows Production 151 PublicDMZ -} - - -define host { - host_name uss203w - alias uss203w.Princeton.EDU - _alias1 ussassetlist - address 10.6.49.63 - _IP_MAC1 10.6.49.63 <=> 0:50:56:93:6d:42 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Finance and Resource Administration, University Services - _building New South - _room MR, VM, - - _date_created 2016-03-08 - _date_changed 2016-07-22 - contacts Jaysen J. LeSage - _contacts jlesage@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name uss204w - alias uss204w.Princeton.EDU - address 10.6.50.42 - _IP_MAC1 10.6.50.42 <=> 0:50:56:93:46:f6 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2017-04-13 - _date_changed 2017-04-13 - contacts Kevin R. Guilbault - _contacts kg3@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name uss205w - alias uss205w.Princeton.EDU - _alias1 fmp - address 10.6.50.196 - _IP_MAC1 10.6.50.196 <=> 0:50:56:93:3f:1 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2017-09-08 - _date_changed 2018-03-14 - contacts Kevin R. Guilbault - _contacts kg3@princeton.edu, winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name uss206w - alias uss206w.Princeton.EDU - address 140.180.221.80 - use Windows Dev/QA NS PublicDMZ - contacts USS IT -} - - -define host { - host_name uss207w - alias uss207w.Princeton.EDU - address 10.6.49.80 - use Windows Production NS PrivateDMZ - contacts USS IT -} - - -define host { - host_name uss208w - alias uss208w.Princeton.EDU - address 10.6.49.136 - use Windows Production NS PrivateDMZ - contacts USS IT -} - - -define host { - host_name ussitfile200w - alias ussitfile200w.Princeton.EDU - address 140.180.221.27 - _IP_MAC1 140.180.221.27 <=> 0:50:56:93:54:4a - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2017-07-17 - _date_changed 2017-07-17 - contacts James Kim - _contacts jk20@princeton.edu, winmail@princeton.edu - use Windows Production 151 PublicDMZ -} - - -define host { - host_name vpft201w - alias vpft201w.Princeton.EDU - _alias1 upkdocs - address 140.180.220.56 - _IP_MAC1 140.180.220.56 <=> 0:50:56:93:10:70 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Office of the Vice President for Finance and Treasurer - _building New South - _room MR, VM, - - _date_created 2015-05-18 - _date_changed 2017-11-17 - contacts Allison B. Petito, Erik D. Johnston - _contacts apetito@princeton.edu, erik@princeton.edu, winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name wasdocave200w - alias wasdocave200w.Princeton.EDU - address 10.6.55.68 - _IP_MAC1 10.6.55.68 <=> 0:50:56:93:f:c2 - _SUBNET1 lb-servernet-4 (EISFW - VLAN 4072 - .55) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2018-01-10 - _date_changed 2018-01-10 - contacts Sharepoint Admin - _contacts sharepointadmin@princeton.edu - use Windows Production NS EISFW -} - - -define host { - host_name wassp200w - alias wassp200w.Princeton.EDU - address 10.6.49.68 - _IP_MAC1 10.6.49.68 <=> 0:50:56:93:17:c4 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Academic Technology Services, Office of Information Technology - _building New South - _room MR, VM, - - _date_created 2016-03-21 - _date_changed 2016-03-21 - contacts Sharepoint Admin - _contacts winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name wasspapp200w - alias wasspapp200w.Princeton.EDU - address 10.6.49.199 - _IP_MAC1 10.6.49.199 <=> 0:50:56:93:27:ca - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2017-01-13 - _date_changed 2017-01-13 - contacts Sharepoint Admin - _contacts winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name wasspapp201w - alias wasspapp201w.Princeton.EDU - address 10.6.48.74 - _IP_MAC1 10.6.48.74 <=> 0:50:56:93:74:fd - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2017-01-13 - _date_changed 2017-01-13 - contacts Sharepoint Admin - _contacts winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name wasspdb200w - alias wasspdb200w.Princeton.EDU - address 10.6.52.33 - _IP_MAC1 10.6.52.33 <=> 24:6e:96:42:2c:4 - _SUBNET1 fw-servernet-3 (Trust - VLAN 1049 - .52) - _department Academic Technology Services, Office of Information Technology - _building New South - _room MR, RK, J-02 - _date_created 2017-01-25 - _date_changed 2017-02-01 - contacts Sharepoint Admin - _contacts winmail@princeton.edu - use Windows Production NS Trust -} - - -define host { - host_name wasspdb201w - alias wasspdb201w.Princeton.EDU - address 10.6.52.32 - _IP_MAC1 10.6.52.32 <=> 24:6e:96:42:34:9c - _SUBNET1 fw-servernet-3 (Trust - VLAN 1049 - .52) - _department Academic Technology Services, Office of Information Technology - _building New South - _room MR, RK, J-02 - _date_created 2017-01-25 - _date_changed 2017-02-01 - contacts Sharepoint Admin - _contacts winmail@princeton.edu - use Windows Production NS Trust -} - - -define host { - host_name wasspdc205w - alias wasspdc205w.Princeton.EDU - address 140.180.220.174 - _IP_MAC1 140.180.220.174 <=> 0:50:56:93:7b:ab - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2017-01-12 - _date_changed 2017-01-12 - contacts Sharepoint Admin - _contacts winmail@princeton.edu - use Windows Production NS PublicDMZ -} - - -define host { - host_name wasspfe202w - alias wasspfe202w.Princeton.EDU - address 10.6.55.11 - _IP_MAC1 10.6.55.11 <=> 0:50:56:93:38:52 - _SUBNET1 lb-servernet-4 (EISFW - VLAN 4072 - .55) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2017-01-13 - _date_changed 2017-05-26 - contacts Sharepoint Admin - _contacts winmail@princeton.edu - use Windows Production NS EISFW -} - - -define host { - host_name wasspfe203w - alias wasspfe203w.Princeton.EDU - address 10.6.55.17 - _IP_MAC1 10.6.55.17 <=> 0:50:56:93:c:e7 - _SUBNET1 lb-servernet-4 (EISFW - VLAN 4072 - .55) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2017-01-13 - _date_changed 2017-05-26 - contacts Sharepoint Admin - _contacts winmail@princeton.edu - use Windows Production NS EISFW -} - - -define host { - host_name wasspfe204w - alias wasspfe204w.Princeton.EDU - address 10.6.55.52 - _IP_MAC1 10.6.55.52 <=> 0:50:56:93:0:45 - _SUBNET1 lb-servernet-4 (EISFW - VLAN 4072 - .55) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2017-01-12 - _date_changed 2017-05-26 - contacts Sharepoint Admin - _contacts winmail@princeton.edu - use Windows Production NS EISFW -} - - -define host { - host_name wasspowa207w - alias wasspowa207w.Princeton.EDU - address 10.6.55.62 - _IP_MAC1 10.6.55.62 <=> 0:50:56:93:ba:75 - _SUBNET1 lb-servernet-4 (EISFW - VLAN 4072 - .55) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2017-07-11 - _date_changed 2017-07-26 - contacts Sharepoint Admin - _contacts winmail@princeton.edu - use Windows Dev/QA NS EISFW -} - - -define host { - host_name wasspss206w - alias wasspss206w.Princeton.EDU - address 10.6.48.106 - _IP_MAC1 10.6.48.106 <=> 0:50:56:93:5a:af - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2017-01-12 - _date_changed 2017-01-12 - contacts Sharepoint Admin - _contacts winmail@princeton.edu - use Windows Production NS PrivateDMZ -} - - -define host { - host_name win05.aws - alias win05.aws.Princeton.EDU - address 10.21.1.190 - use Windows Dev/QA AWS Untrust - contacts iam -} - - -define host { - host_name win06.aws - alias win06.aws.Princeton.EDU - address 10.21.1.32 - use Windows Dev/QA AWS Untrust - contacts iam -} - - -define host { - host_name wws200w - alias wws200w.Princeton.EDU - address 140.180.221.14 - _IP_MAC1 140.180.221.14 <=> 0:50:56:93:3f:8 - _SUBNET1 fw-servernet-1 (PublicDMZ - VLAN 1046 - 220.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room mr, vm, - - _date_created 2017-12-28 - _date_changed 2018-01-25 - contacts WWS Computing Services - _contacts winmail@princeton.edu, wwscs@princeton.edu - use Windows Production NS PublicDMZ -} - - - - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name adm-it-ws - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Jonathan R. Bickel -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name ais114w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Joanne M. Smart -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name ais115w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Joanne M. Smart -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name ais201w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Thomas E. Dommermuth -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name ais207w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Thomas E. Dommermuth -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name ais214w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Timothy J. Hogan -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name ais217w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Thomas E. Dommermuth -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name ais313w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Asim Shahab -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name ais316w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Asim Shahab -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name ais317w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Lakshmi Annamalai, R. Carl Segers -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name ais319w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Asim Shahab -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name aisdvcts200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisfsa100w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name aisfsa201w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisfsaprtl100w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name aisfsaprtl200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisgold6web100w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name aisgold6web200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisgold6web300w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aishmsres100w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aishmsres101w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aishmsres102w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aishmsres120w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aishmsres121w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aishmsres122w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name aishmsres200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name aishmsres201w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aishmsres202w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aishmsres300w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aishmsres301w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aishmsres302w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisinfoed100w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_app_integration -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisinfoed300w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_app_integration -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisiw105w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts monocle -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisiw106w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts monocle -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name aisiw205w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts monocle -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name aisiw206w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts monocle -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name aisiw209w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts monocle -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name aisiw210w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts monocle -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name ais-mars - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts AIS Mon CustomApps -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisparking100w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisparking101w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name aisparking200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name aisparking201w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisparking300w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisparking301w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name ais-sn200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Helen Shpits -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name ais-sn300w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Helen Shpits, Matt S. Marnett, Stephen J Kim -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name aisstargate200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aiste304w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Lakshmi Annamalai, R. Carl Segers -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aistopaz100w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_app_integration -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aistopaz110w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_app_integration -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name aistopaz200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_app_integration -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aistopaz300w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_app_integration -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aistopaz310w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_app_integration -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisupc102w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisupc103w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name aisupc202w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name aisupc203w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisupc310w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name alertus - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Stephen M. Elwood -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name amu102w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Matt S. Marnett, Stephen J Kim -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name amu201w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Cathryn Goodwin, Matt S. Marnett -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name amu202w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Cathryn Goodwin, Matt S. Marnett -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name amu206w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Cathryn Goodwin, Matt S. Marnett, Stephen J Kim -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name amu207w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Matt S. Marnett, Stephen J Kim -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name amu209w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Cathryn Goodwin, Matt S. Marnett -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name amu210w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Matt S. Marnett -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name ant-had200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Jeremiah D. LaMontagne -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name arc-hestia - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Architecture Computer -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name art201w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Julie A. Angarone -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name as-fmp - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Kristian A. Kauker -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name asmobile101w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts James K. Chu, Kevin R. Perry -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name asmobile201w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts James K. Chu, Software Infrastructure Services -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name asmobile203w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts James K. Chu, Software Infrastructure Services -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name asrv201w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Jeffrey J. Mull -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name ath200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Bryan S. Fitzwater -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name ats101w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts George R. Fleming Jr. -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name ats201w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts OIT DAS -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name ats-dia112w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts George R. Fleming Jr. -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name ats-dia212w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts George R. Fleming Jr. -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name ats-fvs112w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts George R. Fleming Jr. -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name ats-fvs212w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts George R. Fleming Jr. -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name cas200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Kevin R. Guilbault, USSNTADM -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name cas201w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Kevin R. Guilbault -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name cas301w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Kevin R. Guilbault -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name ces201w-ts - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Joshua P. Thomas, USSNTADM -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name chm-dmac200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Christophe Lamarque-Lacoste -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name cisdr200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Mark A. Ratliff -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name cisdr201w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Mark A. Ratliff, Open Access Repository -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name cisdr300w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Mark A. Ratliff -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name cisdr301w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Monika C. Mevenkamp, Mark A. Ratliff -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name cseslicense02 - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts CSES Internal - System Generated, Computational Science and Engineering Support, William G. Guthe -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name csgcas104w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts CISDR -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name csgcas105w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts CISDR -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name csgcas204w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts CISDR -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name csgcas205w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts CISDR -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name csgcas206w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts CISDR -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name csgcas207w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts CISDR -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name csgcas301w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts CISDR -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name csgcas311w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts John P. Sophy -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name csgdocave200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name csgechoess200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Dwight D. Bashore -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name csgechomp201w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Dwight D. Bashore -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name csgechomp202w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Dwight D. Bashore -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name csghub102w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts CISDR -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name csghub103w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts CISDR -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name csghub208w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts CISDR -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name csghub209w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts CISDR -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name csghub302w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts CISDR -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name csglync221w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts CISDR -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name csglync222w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts CISDR -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name csglync227w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts CISDR -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name csglync228w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts CISDR -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name csglync229w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts CISDR -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name csglyncdb225w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts CISDR -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name csglyncdb226w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts CISDR -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name csglynce223w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts CISDR -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name csglynce224w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts CISDR -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name csglyncm218w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts CISDR -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name csgmbx100w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts CISDR -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name csgmbx206w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts CISDR -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name csgmbx207w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!80%!85%!Drive=Q: Drive=C: - notification_options w,c,r - contacts CISDR -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name csgmbx215w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!80%!85%!Drive=Q: Drive=C: - notification_options w,c,r - contacts John P. Sophy -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name csgmbx217w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!80%!85%!Drive=Q: Drive=C: - notification_options w,c,r - contacts John P. Sophy -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name csgmbx300w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts CISDR -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name csgmbx303w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts CISDR -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name csgsp200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name csgsp201w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name csgsp202w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name csgsp203w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name csgsp204w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name csgspapp102w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name csgspapp103w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name csgspdb100w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name csgspdb101w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name csgspdb202w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name csgspdb203w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name csgspfe100w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name csgspfe101w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name csgum107w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts CISDR -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name csgwowza201w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts CISDR, Dwight D. Bashore -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name csgwowza202w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts CISDR, Dwight D. Bashore -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name csgwowza300w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts CISDR -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name csla100w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Alan M. Stahl -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name csla200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Alan M. Stahl -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name css300w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Mark J. Pellecchia, Thomas J. Francais -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name das101w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts George R. Fleming Jr. -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name das110w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts George R. Fleming Jr. -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name das111w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts George R. Fleming Jr. -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name das210w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts George R. Fleming Jr. -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name das211w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts George R. Fleming Jr. -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name das300w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts George R. Fleming Jr. -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name dascrl200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts George R. Fleming Jr. -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name dasdia112w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts George R. Fleming Jr. -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name dasdia212w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts George R. Fleming Jr. -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name dasweb228w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts George R. Fleming Jr. -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name dba300w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name dba301w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name dev100w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Nicholas DiPietro -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name dev200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Kathleen D. Haney, Nicholas DiPietro -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name dev201w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Dev DTS, Kathleen D. Haney, Nicholas DiPietro -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name dev202w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Nicholas DiPietro -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name dev203w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Nicholas DiPietro -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name devc - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Kathleen D. Haney, Nicholas DiPietro -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name devdesk - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Kathleen D. Haney, Nicholas DiPietro -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name devp1 - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Kathleen D. Haney, Nicholas DiPietro -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name devp3 - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Kathleen D. Haney, Nicholas DiPietro -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name devq - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Kathleen D. Haney, Nicholas DiPietro -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name devtabguest - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Kathleen D. Haney, Nicholas DiPietro -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name devtabtools - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Kathleen D. Haney, Nicholas DiPietro -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name devtabtoolsqa - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Kathleen D. Haney, Nicholas DiPietro -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name devtool - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Kathleen D. Haney, Nicholas DiPietro -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name devtools - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Heather Campbell -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name dev-webprod - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Jacqueline Golden, Kathleen D. Haney, Nicholas DiPietro -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name dev-webprod-ogv - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Jacqueline Golden, Nicholas DiPietro -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name dev-webprod-tt - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Jacqueline Golden, Kathleen D. Haney, Nicholas DiPietro -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name dev-webqa - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Jacqueline Golden, Kathleen D. Haney, Nicholas DiPietro -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name dev-webqa-ogv - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Jacqueline Golden, Kathleen D. Haney, Nicholas DiPietro -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name dev-webqa-tt - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Jacqueline Golden, Kathleen D. Haney, Nicholas DiPietro -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name dng200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Joshua P. Thomas, USSNTADM -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name dng201w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Joshua P. Thomas, USSNTADM -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name dng202w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Kevin R. Guilbault -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name dngbboard200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts David O. Goetz, Sarah Salati Bavuso, USSNTADM -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name dps201w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Igor Zivkovic -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name dps203w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Igor Zivkovic -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name dsl200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Gregory S. Blaha -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name dsl300w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Gregory S. Blaha -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name eas200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Jeff S Heller -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name eeb-had201w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Jesse Saunders -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name eis105w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts CISDR Group of EIS -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name eis155w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name eis206w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts CISDR Group of EIS -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name eis253w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name eis255w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name eis345w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name eis370w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name eisctxappdna100 - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sarah Kampel -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name eisctxappdna200 - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sarah Kampel -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name eisctxddc100w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sarah Kampel -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name eisctxddc101w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sarah Kampel -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name eisctxddc200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sarah Kampel -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name eisctxddc201w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sarah Kampel -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name eisctxdir100w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sarah Kampel -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name eisctxdir200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sarah Kampel -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name eisctxlic200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sarah Kampel -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name eisctxpvs100w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sarah Kampel -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name eisctxpvs101w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sarah Kampel -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name eisctxpvs200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ESS Ops, Sarah Kampel -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name eisctxpvs201w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ESS Ops, Sarah Kampel -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name eisctxsf100w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sarah Kampel -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name eisctxsf101w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sarah Kampel -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name eisctxsf200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sarah Kampel -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name eisctxsf201w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sarah Kampel -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name eisctxsql100w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sarah Kampel -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name eisctxsql101w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sarah Kampel -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name eisctxsql200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sarah Kampel -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name eisctxsql201w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sarah Kampel -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name eisctxwem100w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sarah Kampel -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name eisctxwem101w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sarah Kampel -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name eisctxwem200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sarah Kampel -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name eisctxwem201w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sarah Kampel -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name eis-fwmgr - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts epm-list -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name eis-fwmgrqa - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts epm-list -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name eisnet200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Networking -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name eissql100w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name eisws201w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Nicholas A. Delo -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name eissql101w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name eissql102w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name eissql202w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Christopher M. Stewart -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name eissql203w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name eissql204w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name eissql205w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Christopher M. Stewart -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name eissql206w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name eissql207w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name eissql209w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name eissql302w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name eissql303w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name eissql304w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name eissql305w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name eissql306w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name eisssrs200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Christopher M. Stewart -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name eisssrs300w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name eng200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Kevin W. Mensch -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name essctxddc300w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sarah Kampel -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name essctxsf300w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sarah Kampel -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name essctxxa300w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sarah Kampel -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name essdem200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Kevin D. Hoffman -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name essnicksdev300w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Nicholas A. Delo -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name essorch101w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Nicholas A. Delo -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name essorch201w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Nicholas A. Delo -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name esssan202w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ESS Storage, Storage and Automation HostMaster Admin account -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name esssma100w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Nicholas A. Delo -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name esssma200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Nicholas A. Delo -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name essvmbkp100w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Chi M. Lu, Daniel Chin, ESS Storage, Storage and Automation HostMaster Admin account -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name evcontroller1 - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Grant A. Weed -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name evcontroller2 - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Grant A. Weed -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fac101w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fac103w-gisqa - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Dawn F. McCall, Jennifer R. Broome Chung, Matthew L. Woodmansee -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fac107w-afqa - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Mark Lewis, Matthew L. Woodmansee -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fac108w-awqa - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Mark Lewis, Matthew L. Woodmansee -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fac115w-x100 - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Quoc B. Nguyen -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name fac201w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name fac203-publish - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Dawn F. McCall, Matthew L. Woodmansee -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name fac203w-gisprod - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Dawn F. McCall, Jennifer R. Broome Chung, Matthew L. Woodmansee -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name fac207w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Jeffrey M. Zodda -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name fac208w-afprod - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Mark Lewis, Matthew L. Woodmansee -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name fac209w-awprod - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Mark Lewis, Matthew L. Woodmansee -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name fac214w-centric - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Matthew L. Woodmansee -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name fac216w-xibo - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts FACJZADM -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name fac219w-tsw - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Alex J. Trosko, Facilities NT Administrator -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name fac221w-acad - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Jennifer R. Broome Chung, Matthew L. Woodmansee, Viviane Bassily -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name fac223w-jadwin - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Arthur T. Murphy -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name fac223w-x200 - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Mark Lewis -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name fac224w-tcam - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts FACJZADM, Joshua E. Linkov -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name fac225w-tcam - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts FACJZADM, Joshua E. Linkov -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name fac226-olive - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts FACJZADM, Facilities NT Administrator, facmcadm -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name fac230w-led - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Facilities NT Administrator -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fac303w-esridev - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Matthew L. Woodmansee -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fac303w-gisdev - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Matthew L. Woodmansee -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fac307w-afdev - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Mark Lewis, Matthew L. Woodmansee -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fac308w-awdev - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Mark Lewis, Matthew L. Woodmansee -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fac309wsaltodev - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Facilities NT Administrator -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name fac-anaqua1 - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Facilities NT Administrator -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fac-egn-desigo - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Gary Brancato -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fac-eng-301w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Gary Brancato -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name fac-evnts2hv200 - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Adam C. Boltz, FACJZADM, facmcadm -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fac-geodev - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Dawn F. McCall, Matthew L. Woodmansee -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name fac-geoprod - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Dawn F. McCall, Jennifer R. Broome Chung, Matthew L. Woodmansee -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fac-geoqa - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Dawn F. McCall, Jennifer R. Broome Chung, Matthew L. Woodmansee -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name fac-goshin200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts FACJZADM, James D. Kane, Jeffrey M. Zodda -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name fac-infoctr1 - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Gary Brancato -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name fac-infoctr3 - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Gary Brancato -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fac-keys200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts FACJZADM, Facilities NT Administrator -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name fac-larprime - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Gary Brancato -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name fac-lssxibo - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fac-lumewave200 - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Jeffrey M. Zodda -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name fac-lutlarsprd - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Jeffrey M. Zodda -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name fac-lutronprod - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Arthur T. Murphy -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name fac-lutronprod2 - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Arthur T. Murphy -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fac-lutronqa - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Arthur T. Murphy -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name fac-palm3 - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts FACJZADM, Jeffrey M. Zodda -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name fac-rds-200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Gary Brancato -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name fac-rds-201w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Gary Brancato -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name fac-spcacfdb207 - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name fac-spcacs204w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name fac-spcacsdb205 - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name fac-spcacsf206w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fac-spcacst101w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fac-spcacst104w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Edith M. Rzomp -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name fac-spcacsts208 - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fac-spcactdb102 - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fac-spcactdb103 - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fac-spreports - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Edith M. Rzomp -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name fac-stprosvcs - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name fac-termsvr1 - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts FACJZADM, Jeffrey M. Zodda -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name fac-trimble - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Dawn F. McCall, Matthew L. Woodmansee -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fac-webctrl100w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Gary Brancato -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fac-webctrl300w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Gary Brancato -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name fac-willow2 - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts FACJZADM, Jeffrey M. Zodda, facmcadm -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fin103w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts George R. Fleming Jr. -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name fin203w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts George R. Fleming Jr. -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fin302w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Erik D. Johnston -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fincopiers100w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Erik D. Johnston -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name fincopiers200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Erik D. Johnston -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name geo-had-server - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Doreen Sullivan -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name gso100w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Marvin E. Waterman -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name gso200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Marvin E. Waterman -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name gso300w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Marvin E. Waterman -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name hou201w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Kevin R. Guilbault, USSNTADM -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name iamadfs100w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Identity and Access Management -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name iamadfs101w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Identity and Access Management -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name iamadfs200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Identity and Access Management -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name iamadfs201w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Identity and Access Management -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name iamadfs300w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Identity and Access Management -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name iambuilder - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Identity and Access Management -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name iamcas200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Identity and Access Management -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name iamcas201w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Identity and Access Management -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name iamdirsync100w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts John P. Sophy -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name iamdirsync200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts John P. Sophy -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name iamduo100w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Identity and Access Management -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name iamduo101w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Identity and Access Management -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name iamduo200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Identity and Access Management -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name iamduo201w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Identity and Access Management -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name iamencoder204w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Dwight D. Bashore -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name iamencoder205w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Dwight D. Bashore -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name iamencoder206w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Dwight D. Bashore -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name iamshib100w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Identity and Access Management -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name iamshib101w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Identity and Access Management -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name iamshib200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Identity and Access Management -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name iamshib201w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Identity and Access Management -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name iamshib300w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts John Wagner -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name iamshib302w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts John Wagner -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name iamshibtest100w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Identity and Access Management -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name iamtools - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Identity and Access Management -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name iamweb200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Identity and Access Management -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name isoconsole - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Steve Niedzwiecki -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name itms200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Grant A. Weed -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name itms201w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Grant A. Weed -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name itms300w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Grant A. Weed -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name itms301w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Grant A. Weed -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name landr - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Michael J. Zarillo -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name landrdev - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Michael J. Zarillo -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name lar-watchdog2 - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Alvin A. Daniel -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name lss110w-tqa - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Facilities NT Administrator -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name lss210w-tprod - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name lsscvms207w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name mccdigrec207w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Charlotte C. Hussey -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name mccweb100w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Charlotte C. Hussey -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name mccweb101w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Charlotte C. Hussey -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name mccweb200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Charlotte C. Hussey -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name mccweb201w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Charlotte C. Hussey -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name mcg200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Paula L. Brett -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name mol102w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Matthew H. Cahn -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name mol105w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Matthew H. Cahn -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name mol202w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Matthew H. Cahn -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name mol205w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Matthew H. Cahn -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name mol206w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Brandon Kennedy -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name mol302w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Matthew H. Cahn -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name mon200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Igor V. Gubenko -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name mon201w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Igor V. Gubenko -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name mon202w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Igor V. Gubenko -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name mon203w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Igor V. Gubenko -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name mon300w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Igor V. Gubenko -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name mon301w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Igor V. Gubenko -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name netnsm100w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Networking -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name ntprintserver - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Chi M. Lu -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name oa - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Richard M. Curtis -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name ocs201w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Justin T. Kazlauskas -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name odoc101w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Office of the Dean -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name odoc201w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Office of the Dean -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name odoc202w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Jaysen J. LeSage -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name odoc301w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Office of the Dean -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name oocphotos200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts John W. Jameson -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name opr302w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Wayne W. Appleton -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name orp200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Joseph P. Keane -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name pcords101w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Glenn R. Wemple -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name pcords201w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Glenn R. Wemple -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name pcs200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Pace Center DCS -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name pdom05.pu.win - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Identity and Access Management -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name pdom06.pu.win - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Identity and Access Management -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name pdom07.pu.win - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Identity and Access Management -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name pdom08.pu.win - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Identity and Access Management -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name pei300w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Rajeshri D. Chokshi -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name phy200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Vinod K. Gupta -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name pni201w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Diana I. Tamir -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name pni-had-server - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Randee I. Tengi -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name prz201w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Daniel McNesby -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name prz203w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Conrad L. Silvestre, Daniel McNesby -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name prz204w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Daniel McNesby -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name psy200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Randee I. Tengi -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name pudev02.pudev.windev - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Identity and Access Management -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name puqa01.zeta.adtest - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Identity and Access Management -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name puqa02.zeta.adtest - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Identity and Access Management -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name saconsole200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Chi M. Lu -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name scs201w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Daniel T. Pease, Gary D. Eshbaugh, Peter T Nowak -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sdp100w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Identity and Access Management -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sdp101w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Identity and Access Management -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sdp102w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Identity and Access Management -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name sdp201w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Identity and Access Management -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name sdp202w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Identity and Access Management, Security and Data Protection -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name sdp205w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Identity and Access Management -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sdp300w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Identity and Access Management -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name sdpalc200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Identity and Access Management -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sdpcas100w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Identity and Access Management -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sdpcas101w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Identity and Access Management -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name sdpcas202w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Identity and Access Management -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name sdpcas203w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Identity and Access Management -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name sdpenc200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Dean A. Plante -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sdpepo100w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts css-alert -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name sdpepo200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts css-alert -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name sdpidp202w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Identity and Access Management -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name sdpidp203w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Identity and Access Management -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name sdptools200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Identity and Access Management -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name sdpvm200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Information Security -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name sea200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Seas Computer Support -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name sea201w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Seas Computer Support -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name sentryteledir - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Grant A. Weed -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name smo200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Henry M. Umansky -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name socconsole - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts John J. Zerillo, Mariann S. Miller -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name soc-had200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Eric C. Altman -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name spcacs201w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name spcacsa202w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name spcvms10nvr210w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name spcvms11nvr211w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name spcvms12nvr212w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name spcvms1nvr201w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name spcvms2nvr202w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name spcvms3nvr203w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name spcvms4nvr204w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name spcvms5nvr205w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name spcvms6nvr206w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name spcvms7nvr207w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name spcvms8nvr208w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name spcvms9nvr209w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name spcvmsm200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Edith M. Rzomp, Keith Tuccillo, Mark R. Williams -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sql-zeta2 - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Christopher M. Stewart -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name ss101w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Kristian A. Kauker -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name ss103w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Adam A. Ouellette -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name ss104w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Adam A. Ouellette -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name ss105w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Adam A. Ouellette -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name ss106w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Mark J. Pellecchia -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name ss211w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Thomas J. Francais -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name ss212w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Kristian A. Kauker -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name ss213w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts NetOps -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name ss214w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Phillip M. Immordino -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name ss215w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Adam A. Ouellette, George R. Fleming Jr. -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name ss217w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Phillip M. Immordino -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name ss219w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Adam A. Ouellette -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name ss220w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Adam A. Ouellette -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name ss221w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Adam A. Ouellette -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name ss224w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Mark J. Pellecchia, Phillip M. Immordino, Thomas J. Francais -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name ss225w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Phillip M. Immordino -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name ss303w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Mark J. Pellecchia, Thomas J. Francais -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name ss305w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Adam A. Ouellette -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name ss306w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts PICSS -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name ssepo223w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Phillip M. Immordino -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name ssvr108w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Charlayne H. Beavers -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name ssvr208w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Charlayne H. Beavers -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name ssvr209w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Adam A. Ouellette, Charlayne H. Beavers, Dianne M. Wolochowicz, Mariann S. Miller, Phillip M. Immordino -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name ssvr308w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Charlayne H. Beavers -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name tax200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Erik D. Johnston -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name tbschedule1 - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts David M. Hopkins -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name telswitch - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Grant A. Weed -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name tmetrics - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Grant A. Weed -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name tmetsciscodigi1 - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Grant A. Weed -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name tmetsciscodigi2 - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Grant A. Weed -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name tmetsdevlab - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Grant A. Weed -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name tmetsdigi1 - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Grant A. Weed -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name tmetsdigi2 - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Grant A. Weed -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name tmetsmultimedia - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Grant A. Weed -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name top100w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Erik D. Johnston -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name top101w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Erik D. Johnston -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name top200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Erik D. Johnston -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name top201w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Erik D. Johnston -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name tps200w-garage - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Joshua P. Thomas, USSNTADM -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name uhs104w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Health Services Help, Judith E. Oakley -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name uhs107w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Health Services Help, Judith E. Oakley -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name uhs111w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Judith E. Oakley -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name uhs114w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Judith E. Oakley -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name uhs207w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Health Services Help, Judith E. Oakley -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name uhs211w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Judith E. Oakley -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name uhs212w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Brian J. Powell -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name uhs213w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Brian J. Powell -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name uhs214w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Brian J. Powell -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name uss201w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Jaysen J. LeSage, Joshua P. Thomas -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name uss202w-win08 - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Joshua P. Thomas -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name uss203w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Jaysen J. LeSage -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name uss204w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Kevin R. Guilbault -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name uss205w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Kevin R. Guilbault -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name uss300w-willow - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Joshua P. Thomas -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name uss301w-sandbox - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Joshua P. Thomas -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name uss302w-sndbx08 - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Joshua P. Thomas -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name uss303w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Jaysen J. LeSage -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name uss304w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts USS IT -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name ussitfile200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts James Kim -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name vpft101w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts George R. Fleming Jr. -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name vpft201w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Allison B. Petito, Erik D. Johnston -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name wassp100w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name wassp101w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name wassp102w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name wassp103w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name wassp104w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name wassp105w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name wassp200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name wasspapp200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name wasspapp201w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name wasspdb100w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name wasspdb101w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name wasspdb200w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name wasspdb201w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name wasspdc205w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name wasspfe202w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name wasspfe203w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name wasspfe204w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name wasspowa106w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name wasspowa207w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name wasspss206w - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name win04.win - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Identity and Access Management -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name windev02.windev - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Identity and Access Management -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name winqa01.adtest - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Identity and Access Management -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name winqa02.adtest - action_url /nagios/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Identity and Access Management -} -# -# $Header: /usr/local/monitoring/nagios/etc/escalations/RCS/host_escalations.cfg,v 1.18 2014/08/27 15:03:45 nagios Exp nagios $ -# -# Host escalation definitions -# - -define hostescalation { - use Prod 8x5 escalation - hostgroup_name Prod 8x5 Linux, Prod 8x5 Windows - contact_groups ESS_8x5 -} - - -define hostescalation { - use Prod outside 8x5 escalation - hostgroup_name Prod 8x5 Linux, Prod 8x5 Windows - contact_groups ESS_8x5 -} - - -define hostescalation { - use Delay Dev - hostgroup_name Linux Dev/QA, !Oracle Exadata Dev/QA - contacts ESS UNIX List -} - -define hostescalation { - use Delay Dev - hostgroup_name Oracle Exadata Dev/QA - contact_groups DBA Page -} - - -define hostescalation { - use Delay Dev - escalation_period 8x5 - hostgroup_name Windows Dev/QA - contacts ESS Windows List -} - - -define hostescalation { - use Delay Production - hostgroup_name DBA Windows Prod, DBA UNIX Prod, Solaris, Linux Prod, Windows Prod, ESX, !Oracle Exadata, !TSM Production, !Prod 8x5 Linux, !Prod 8x5 Windows - contacts ESS Page -} - -define hostescalation { - use Delay Exadata Production - hostgroup_name Oracle Exadata - contact_groups DBA Page -} - -define hostescalation { - use Delay Production - hostgroup_name TSM Production - contact_groups TSM, TSM Page -} - - -define hostescalation { - use host_notify_once - hostgroup_name Netmgmt - contacts ESS Ops -} - -define hostescalation { - use host_notify_once - hostgroup_name Netmgmt - escalation_options r - contacts ESS UNIX List -} - -# -# $Header: /usr/local/monitoring/nagios/etc/escalations/RCS/service_escalations.cfg,v 1.7 2014/08/27 14:57:25 nagios Exp nagios $ -# -# Service escalation definitions -# - -define serviceescalation { - use service_notify_once - hostgroup_name Netmgmt, !Netmgmt - No SSH - service_description .* - contacts ESS Ops -} - -define serviceescalation { - hostgroup_name Netmgmt, !Netmgmt - No SSH - service_description .* - first_notification 1 - last_notification 0 - notification_interval 0 - escalation_period 24x7 - escalation_options r - contacts ESS UNIX List -} - -define serviceescalation { - host_name monitor - service_description Gearman worker ims.* - first_notification 12 - last_notification 14 - notification_interval 120 - escalation_period 24x7 - escalation_options c - contact_groups Monitoring Admins Pager -} - -define serviceescalation { - host_name monitor - service_description Gearman worker (151|NS).* - first_notification 3 - last_notification 5 - notification_interval 60 - escalation_period 24x7 - escalation_options c - contact_groups Monitoring Admins Pager -} - -define serviceescalation { - use service_notify_once - host_name monitor - service_description .*_akam_net - escalation_options w,c,r - contacts Networking -} - -# Throw out first 3 notifications -define serviceescalation { - hostgroup_name Exchange Mailbox - service_description nrpe_win_agent_status, nrpe_win_Exchange* - escalation_period Exchange MBX busy - first_notification 1 - last_notification 3 - notification_interval 10 - contact_groups dummy -} - -# From notification 4 proceed normally -define serviceescalation { - hostgroup_name Exchange Mailbox - service_description nrpe_win_agent_status - escalation_period Exchange MBX OK - first_notification 4 - contacts ESS Page, ESS Windows List -} - -# From notification 4 proceed normally -define serviceescalation { - hostgroup_name Exchange Mailbox - service_description nrpe_win_Exchange* - escalation_period Exchange MBX OK - first_notification 4 - contacts John P. Sophy -} - - -# -# All host groups -# - - -#### AWS - -define hostgroup { - hostgroup_name AWS - alias All hosts in Amazon Cloud - hostgroup_members AWS Dev/QA, AWS Prod -} - -define hostgroup { - hostgroup_name AWS Dev/QA - alias Dev/QA hosts in Amazon Cloud - hostgroup_members AWS Dev/QA ELB, AWS Untrust Dev/QA Windows, AWS Untrust Pre-Production Windows, AWS Untrust Dev/QA Linux OEL6, AWS Untrust Pre-Production Linux OEL6 -} - -define hostgroup { - hostgroup_name AWS Prod - alias Production hosts in Amazon Cloud - hostgroup_members AWS Untrust Prod Windows, AWS Untrust Prod Linux OEL6 -} - -#### PublicDMZ - -define hostgroup { - hostgroup_name PublicDMZ - alias All hosts in PublicDMZ - hostgroup_members PublicDMZ Dev/QA, PublicDMZ Prod -} - -define hostgroup { - hostgroup_name PublicDMZ Dev/QA - alias Dev/QA hosts in PublicDMZ - hostgroup_members PublicDMZ Dev/QA Windows, PublicDMZ Dev/QA Linux -} - -define hostgroup { - hostgroup_name PublicDMZ Prod - alias Production hosts in PublicDMZ - hostgroup_members PublicDMZ Prod Windows, PublicDMZ Prod Linux -} - -define hostgroup { - hostgroup_name PublicDMZ Dev/QA Windows - alias Windows Dev/QA hosts in PublicDMZ - hostgroup_members 151 PublicDMZ Dev/QA Windows, 151 PublicDMZ Pre-Production Windows, NS PublicDMZ Dev/QA Windows, NS PublicDMZ Pre-Production Windows -} - -define hostgroup { - hostgroup_name PublicDMZ Dev/QA Linux - alias Linux Dev/QA hosts in PublicDMZ - hostgroup_members PublicDMZ Dev/QA Linux OEL6 -} - -define hostgroup { - hostgroup_name PublicDMZ Dev/QA Linux OEL6 - alias Oracle Enterprise Linux 6 Dev/QA hosts in PublicDMZ - hostgroup_members 151 PublicDMZ Dev/QA Linux OEL6, NS PublicDMZ Dev/QA Linux OEL6, 151 PublicDMZ Pre-Production Linux OEL6, NS PublicDMZ Pre-Production Linux OEL6 -} - -define hostgroup { - hostgroup_name PublicDMZ Prod Windows - alias Windows Production hosts in PublicDMZ - hostgroup_members 151 PublicDMZ Prod Windows, NS PublicDMZ Prod Windows -} - -define hostgroup { - hostgroup_name PublicDMZ Prod Linux - alias Linux Production hosts in PublicDMZ - hostgroup_members PublicDMZ Prod Linux OEL6 -} - -define hostgroup { - hostgroup_name PublicDMZ Prod Linux OEL6 - alias Oracle Enterprise Linux 6 Production hosts in PublicDMZ - hostgroup_members 151 PublicDMZ Prod Linux OEL6, NS PublicDMZ Prod Linux OEL6 -} - -define hostgroup { - hostgroup_name 151 PublicDMZ - alias All hosts in PublicDMZ and 151 Forrestal - hostgroup_members 151 PublicDMZ Dev/QA, 151 PublicDMZ Prod -} - -define hostgroup { - hostgroup_name 151 PublicDMZ Dev/QA - alias Dev/QA hosts in PublicDMZ and 151 Forrestal - hostgroup_members 151 PublicDMZ Dev/QA Windows, 151 PublicDMZ Pre-Production Windows, 151 PublicDMZ Dev/QA Linux OEL6, 151 PublicDMZ Pre-Production Linux OEL6 -} - -define hostgroup { - hostgroup_name 151 PublicDMZ Prod - alias Production hosts in PublicDMZ and 151 Forrestal - hostgroup_members 151 PublicDMZ Prod Windows, 151 PublicDMZ Prod Linux OEL6 -} - -define hostgroup { - hostgroup_name NS PublicDMZ - alias All hosts in PublicDMZ and New South - hostgroup_members NS PublicDMZ Dev/QA, NS PublicDMZ Prod -} - -define hostgroup { - hostgroup_name NS PublicDMZ Dev/QA - alias Dev/QA hosts in PublicDMZ and New South - hostgroup_members NS PublicDMZ Dev/QA Windows, NS PublicDMZ Dev/QA Linux OEL6, NS PublicDMZ Pre-Production Linux OEL6 -} - -define hostgroup { - hostgroup_name NS PublicDMZ Prod - alias Production hosts in PublicDMZ and New South - hostgroup_members NS PublicDMZ Prod Windows, NS PublicDMZ Prod Linux OEL6 - members eisnet200l -} - -#### PrivateDMZ - -define hostgroup { - hostgroup_name PrivateDMZ - alias All hosts in PrivateDMZ - hostgroup_members PrivateDMZ Dev/QA, PrivateDMZ Prod -} - -define hostgroup { - hostgroup_name PrivateDMZ Dev/QA - alias Dev/QA hosts in PrivateDMZ - hostgroup_members PrivateDMZ Dev/QA Windows, MSSQL Dev Clusters, PrivateDMZ Dev/QA Linux -} - -define hostgroup { - hostgroup_name PrivateDMZ Prod - alias Production hosts in PrivateDMZ - hostgroup_members PrivateDMZ Prod Windows, PrivateDMZ Prod Linux - #members -} - -define hostgroup { - hostgroup_name PrivateDMZ Dev/QA Windows - alias Windows Dev/QA hosts in PrivateDMZ - hostgroup_members 151 PrivateDMZ Dev/QA Windows, 151 PrivateDMZ Pre-Production Windows, NS PrivateDMZ Dev/QA Windows, NS PrivateDMZ Pre-Production Windows -} - -define hostgroup { - hostgroup_name PrivateDMZ Dev/QA Linux - alias Linux Dev/QA hosts in PrivateDMZ - hostgroup_members PrivateDMZ Dev/QA Linux OEL6 -} - -define hostgroup { - hostgroup_name PrivateDMZ Dev/QA Linux OEL6 - alias Oracle Enterprise Linux 6 Dev/QA hosts in PrivateDMZ - hostgroup_members 151 PrivateDMZ Dev/QA Linux OEL6, NS PrivateDMZ Dev/QA Linux OEL6, 151 PrivateDMZ Pre-Production Linux OEL6, NS PrivateDMZ Pre-Production Linux OEL6 -} - -define hostgroup { - hostgroup_name PrivateDMZ Prod Windows - alias Windows Production hosts in PrivateDMZ - hostgroup_members 151 PrivateDMZ Prod Windows, NS PrivateDMZ Prod Windows -} - -define hostgroup { - hostgroup_name PrivateDMZ Prod Linux - alias Linux Production hosts in PrivateDMZ - hostgroup_members PrivateDMZ Prod Linux OEL6, PrivateDMZ Prod Linux OEL5 - members sdprsa200l, sdprsa201l -} - -define hostgroup { - hostgroup_name PrivateDMZ Prod Linux OEL6 - alias Oracle Enterprise Linux 6 Production hosts in PrivateDMZ - hostgroup_members 151 PrivateDMZ Prod Linux OEL6, NS PrivateDMZ Prod Linux OEL6 -} - -define hostgroup { - hostgroup_name PrivateDMZ Prod Linux OEL5 - alias Oracle Enterprise Linux 5 Production hosts in PrivateDMZ - hostgroup_members NS PrivateDMZ Prod Linux OEL5 -} - -define hostgroup { - hostgroup_name 151 PrivateDMZ - alias All hosts in PrivateDMZ and 151 Forrestal - hostgroup_members 151 PrivateDMZ Dev/QA, 151 PrivateDMZ Prod -} - -define hostgroup { - hostgroup_name 151 PrivateDMZ Dev/QA - alias Dev/QA hosts in PrivateDMZ and 151 Forrestal - hostgroup_members 151 PrivateDMZ Dev/QA Windows, 151 PrivateDMZ Pre-Production Windows, 151 PrivateDMZ Pre-Production Linux OEL6, 151 PrivateDMZ Dev/QA Linux OEL6 -} - -define hostgroup { - hostgroup_name 151 PrivateDMZ Prod - alias Production hosts in PrivateDMZ and 151 Forrestal - hostgroup_members 151 PrivateDMZ Prod Windows, 151 PrivateDMZ Prod Linux OEL6 -} - -define hostgroup { - hostgroup_name NS PrivateDMZ - alias All hosts in PrivateDMZ and New South - hostgroup_members NS PrivateDMZ Dev/QA, NS PrivateDMZ Prod -} - -define hostgroup { - hostgroup_name NS PrivateDMZ Dev/QA - alias Dev/QA hosts in PrivateDMZ and New South - hostgroup_members NS PrivateDMZ Dev/QA Windows, NS PrivateDMZ Pre-Production Windows, NS PrivateDMZ Dev/QA Linux OEL6, NS PrivateDMZ Pre-Production Linux OEL6 -} - -define hostgroup { - hostgroup_name NS PrivateDMZ Prod - alias Production hosts in PrivateDMZ and New South - hostgroup_members NS PrivateDMZ Prod Windows, NS PrivateDMZ Prod Linux OEL6, NS PrivateDMZ Prod Linux OEL5 - members essvc201w, sdprsa200l, sdprsa201l -} - -#### Trust - -define hostgroup { - hostgroup_name Trust - alias All hosts in Trust - hostgroup_members Trust Dev/QA, Trust Prod -} - -define hostgroup { - hostgroup_name Trust Dev/QA - alias Dev/QA hosts in Trust - hostgroup_members Trust Dev/QA Windows, Trust Dev/QA Linux -} - -define hostgroup { - hostgroup_name Trust Prod - alias Production hosts in Trust - hostgroup_members Trust Prod Windows, Trust Prod Linux - #members -} - -define hostgroup { - hostgroup_name Trust Dev/QA Windows - alias Windows Dev/QA hosts in Trust - hostgroup_members 151 Trust Dev/QA Windows, NS Trust Dev/QA Windows, 151 Trust Pre-Production Windows, NS Trust Pre-Production Windows -} - -define hostgroup { - hostgroup_name Trust Dev/QA Linux - alias Linux Dev/QA hosts in Trust - hostgroup_members Trust Dev/QA Linux OEL6, Trust Dev/QA Linux OEL5 -} - -define hostgroup { - hostgroup_name Trust Dev/QA Linux OEL6 - alias Oracle Enterprise Linux 6 Dev/QA hosts in Trust - hostgroup_members 151 Trust Dev/QA Linux OEL6, 151 Trust Pre-Production Linux OEL6, NS Trust Dev/QA Linux OEL6, NS Trust Pre-Production Linux OEL6 -} - -define hostgroup { - hostgroup_name Trust Dev/QA Linux OEL5 - alias Oracle Enterprise Linux 5 Dev/QA hosts in Trust - hostgroup_members 151 Trust Dev/QA Linux OEL5 -} - -define hostgroup { - hostgroup_name Trust Prod Windows - alias Windows Production hosts in Trust - hostgroup_members 151 Trust Prod Windows, NS Trust Prod Windows -} - -define hostgroup { - hostgroup_name Trust Prod Linux - alias Linux Production hosts in Trust - hostgroup_members Trust Prod Linux OEL6, Trust Prod Linux OEL5 -} - -define hostgroup { - hostgroup_name Trust Prod Linux OEL6 - alias Oracle Enterprise Linux 6 Production hosts in Trust - hostgroup_members 151 Trust Prod Linux OEL6, NS Trust Prod Linux OEL6 -} - -define hostgroup { - hostgroup_name Trust Prod Linux OEL5 - alias Oracle Enterprise Linux 5 Production hosts in Trust - hostgroup_members NS Trust Prod Linux OEL5 -} - -define hostgroup { - hostgroup_name 151 Trust - alias All hosts in Trust and 151 Forrestal - hostgroup_members 151 Trust Dev/QA, 151 Trust Prod -} - -define hostgroup { - hostgroup_name 151 Trust Dev/QA - alias Dev/QA hosts in Trust and 151 Forrestal - hostgroup_members 151 Trust Dev/QA Windows, 151 Trust Pre-Production Windows, 151 Trust Dev/QA Linux OEL6, 151 Trust Dev/QA Linux OEL5 -} - -define hostgroup { - hostgroup_name 151 Trust Prod - alias Production hosts in Trust and 151 Forrestal - hostgroup_members 151 Trust Prod Windows, 151 Trust Prod Linux OEL6 -} - -define hostgroup { - hostgroup_name NS Trust - alias All hosts in Trust and New South - hostgroup_members NS Trust Dev/QA, NS Trust Prod -} - -define hostgroup { - hostgroup_name NS Trust Dev/QA - alias Dev/QA hosts in Trust and New South - hostgroup_members NS Trust Dev/QA Windows, NS Trust Pre-Production Windows, NS Trust Dev/QA Linux OEL6, NS Trust Pre-Production Linux OEL6 -} - -define hostgroup { - hostgroup_name NS Trust Prod - alias Production hosts in Trust and New South - hostgroup_members NS Trust Prod Windows, NS Trust Prod Linux OEL6, NS Trust Prod Linux OEL5 - #members -} - -######################## -# -# Restricted - -define hostgroup { - hostgroup_name Restricted Dev/QA - alias Dev/QA hosts behind Restricted - hostgroup_members Restricted Dev/QA Windows, Restricted Dev/QA Linux -} - -define hostgroup { - hostgroup_name Restricted Prod - alias Production hosts behind Restricted - hostgroup_members Restricted Prod Windows, Restricted Prod Linux -} - -define hostgroup { - hostgroup_name Restricted Dev/QA Windows - alias Windows Dev/QA hosts behind Restricted - hostgroup_members 151 Restricted Dev/QA Windows, NS Restricted Dev/QA Windows, 151 Restricted Pre-Production Windows, NS Restricted Pre-Production Windows -} - -define hostgroup { - hostgroup_name Restricted Dev/QA Linux - alias Linux OEL7 Dev/QA hosts behind Restricted - hostgroup_members 151 Restricted Dev/QA Linux OEL7, NS Restricted Dev/QA Linux OEL7, 151 Restricted Pre-Production Linux OEL7, NS Restricted Pre-Production Linux OEL7 -} - -define hostgroup { - hostgroup_name Restricted Prod Windows - alias Windows Production hosts behind Restricted - hostgroup_members 151 Restricted Prod Windows, NS Restricted Prod Windows -} - -define hostgroup { - hostgroup_name Restricted Prod Linux - alias Linux OEL7 Production hosts behind Restricted - hostgroup_members 151 Restricted Prod Linux OEL7, NS Restricted Prod Linux OEL7 -} - -define hostgroup { - hostgroup_name NS Restricted - alias Hosts behind Restricted in New South - hostgroup_members NS Restricted Dev/QA Windows, NS Restricted Prod Windows, NS Restricted Dev/QA Linux OEL7, NS Restricted Pre-Production Linux OEL7, NS Restricted Prod Linux OEL7 -} - -define hostgroup { - hostgroup_name 151 Restricted - alias Hosts behind Restricted in 151 Forrestal - hostgroup_members 151 Restricted Dev/QA Windows, 151 Restricted Prod Windows, 151 Restricted Dev/QA Linux OEL7, 151 Restricted Pre-Production Linux OEL7, 151 Restricted Prod Linux OEL7 -} - -define hostgroup { - hostgroup_name Restricted - alias Hosts behind Restricted - hostgroup_members Restricted Dev/QA, Restricted Prod -} - -################################## -## -# Untrust - -define hostgroup { - hostgroup_name Untrust F5 - alias All hosts behind the F5 - hostgroup_members Untrust F5 Dev/QA, Untrust F5 Prod -} - -define hostgroup { - hostgroup_name Untrust F5 Dev/QA - alias Dev/QA hosts behind F5 - hostgroup_members Untrust F5 Dev/QA Windows, Untrust F5 Dev/QA Linux OEL6 -} - -define hostgroup { - hostgroup_name Untrust F5 Dev/QA Windows - alias Windows Dev/QA hosts outside the firewall, behind the F5 - hostgroup_members 151 Untrust F5 Dev/QA Windows, NS Untrust F5 Dev/QA Windows, NS Untrust F5 Pre-Production Windows -} - -define hostgroup { - hostgroup_name Untrust F5 Dev/QA Linux OEL6 - alias Linux OEL6 Dev/QA hosts outside the firewall, behind the F5 - hostgroup_members 151 Untrust F5 Dev/QA Linux OEL6, NS Untrust F5 Dev/QA Linux OEL6, 151 Untrust F5 Pre-Production Linux OEL6, NS Untrust F5 Pre-Production Linux OEL6 -} - -define hostgroup { - hostgroup_name Untrust F5 Prod - alias Production hosts behind F5 - hostgroup_members Untrust F5 Prod Windows, Untrust F5 Prod Linux -} - -define hostgroup { - hostgroup_name Untrust F5 Prod Windows - alias Windows Production hosts outside the firewall, behind the F5 - hostgroup_members 151 Untrust F5 Prod Windows, NS Untrust F5 Prod Windows -} - -define hostgroup { - hostgroup_name Untrust F5 Prod Linux - alias Linux Production hosts outside the firewall, behind the F5 - hostgroup_members 151 Untrust F5 Prod Linux OEL6, NS Untrust F5 Prod Linux OEL6 -} - -define hostgroup { - hostgroup_name Untrust Dev/QA - alias Dev/QA hosts outside the firewall - hostgroup_members Untrust F5 Dev/QA, Untrust Dev/QA Windows, Untrust Dev/QA Linux OEL6, Untrust Dev/QA Linux OEL5 -} - -define hostgroup { - hostgroup_name Untrust Dev/QA Windows - alias Windows Dev/QA hosts outside the firewall - hostgroup_members Untrust F5 Dev/QA Windows, 151 Untrust Dev/QA Windows, NS Untrust Dev/QA Windows, NS Untrust Pre-Production Windows -# 87 Prospect -} - -define hostgroup { - hostgroup_name Untrust Dev/QA Linux OEL6 - alias Linux Dev/QA OEL6 hosts outside the firewall - hostgroup_members 151 Untrust Dev/QA Linux OEL6, NS Untrust Dev/QA Linux OEL6, Untrust F5 Dev/QA Linux OEL6 -} - -define hostgroup { - hostgroup_name Untrust Dev/QA Linux OEL5 - alias Linux Dev/QA OEL5 hosts outside the firewall - hostgroup_members 151 Untrust Dev/QA Linux OEL5 -} - -define hostgroup { - hostgroup_name Untrust Prod - alias Production hosts outside the firewall - hostgroup_members Untrust Prod Windows, Untrust Prod Linux OEL6, Untrust Prod Linux OEL5 -} - -define hostgroup { - hostgroup_name Untrust Prod Windows - alias Windows Production hosts outside the firewall - hostgroup_members 151 Untrust Prod Windows, NS Untrust Prod Windows, Untrust F5 Prod Windows -} - -define hostgroup { - hostgroup_name Untrust Prod Linux OEL6 - alias Linux Production OEL6 hosts outside the firewall - hostgroup_members 151 Untrust Prod Linux OEL6, NS Untrust Prod Linux OEL6, 151 Untrust F5 Prod Linux OEL6, NS Untrust F5 Prod Linux OEL6 -} - -define hostgroup { - hostgroup_name Untrust Prod Linux OEL5 - alias Linux Production OEL5 hosts outside the firewall - hostgroup_members 151 Untrust Prod Linux OEL5, NS Untrust Prod Linux OEL5 -} - -define hostgroup { - hostgroup_name NS Untrust Dev/QA - alias Dev/QA hosts outside the firewall in New South - hostgroup_members NS Untrust Dev/QA Windows, NS Untrust F5 Dev/QA Windows, NS Untrust Dev/QA Linux OEL6, NS Untrust F5 Dev/QA Linux OEL6 - members ims205, ims317, receiver02 -} - -define hostgroup { - hostgroup_name NS Untrust Prod - alias Production hosts outside the firewall in New South - hostgroup_members NS Untrust Prod Windows, NS Untrust F5 Prod Windows, NS Untrust Prod Linux OEL6, NS Untrust Prod Linux OEL5, NS Untrust F5 Prod Linux OEL6 -} - -define hostgroup { - hostgroup_name NS Untrust - alias All hosts outside the firewall in New South - hostgroup_members NS Untrust Dev/QA, NS Untrust Prod -} - -define hostgroup { - hostgroup_name 151 Untrust Dev/QA - alias Dev/QA hosts outside the firewall in 151 Forrestal - hostgroup_members 151 Untrust Dev/QA Windows, 151 Untrust F5 Dev/QA Windows, 151 Untrust Dev/QA Linux OEL6, 151 Untrust F5 Dev/QA Linux OEL6, 151 Untrust Dev/QA Linux OEL5 - members harris, ims204, ims316 -} - -define hostgroup { - hostgroup_name 151 Untrust Prod - alias Production hosts outside the firewall in 151 Forrestal - hostgroup_members 151 Untrust Prod Windows, 151 Untrust F5 Prod Windows, 151 Untrust Prod Linux OEL6, 151 Untrust Prod Linux OEL5, 151 Untrust F5 Prod Linux OEL6 -} - -define hostgroup { - hostgroup_name 151 Untrust - alias All hosts outside the firewall in 151 Forrestal - hostgroup_members 151 Untrust Dev/QA, 151 Untrust Prod -} - -#### Eisfw F5 - -define hostgroup { - hostgroup_name Eisfw F5 - alias All hosts in Eisfw F5 - hostgroup_members Eisfw F5 Dev/QA, Eisfw F5 Prod -} - -define hostgroup { - hostgroup_name Eisfw F5 Dev/QA - alias Dev/QA hosts in Eisfw F5 - hostgroup_members Eisfw F5 Dev/QA Windows, Eisfw F5 Dev/QA Linux -} - -define hostgroup { - hostgroup_name Eisfw F5 Prod - alias Production hosts in Eisfw F5 - hostgroup_members Eisfw F5 Prod Windows, Eisfw F5 Prod Linux -} - -define hostgroup { - hostgroup_name Eisfw F5 Dev/QA Windows - alias Windows Dev/QA hosts in Eisfw F5 - hostgroup_members 151 Eisfw F5 Dev/QA Windows, 151 Eisfw F5 Pre-Production Windows, NS Eisfw F5 Dev/QA Windows, NS Eisfw F5 Pre-Production Windows -} - -define hostgroup { - hostgroup_name Eisfw F5 Dev/QA Linux - alias Linux Dev/QA hosts in Eisfw F5 - hostgroup_members Eisfw F5 Dev/QA Linux OEL6, Eisfw F5 Dev/QA Linux OEL5 -} - -define hostgroup { - hostgroup_name Eisfw F5 Dev/QA Linux OEL6 - alias Oracle Enterprise Linux 6 Dev/QA hosts in Eisfw F5 - hostgroup_members 151 Eisfw F5 Dev/QA Linux OEL6, 151 Eisfw F5 Pre-Production Linux OEL6, NS Eisfw F5 Dev/QA Linux OEL6, NS Eisfw F5 Pre-Production Linux OEL6 -} - -define hostgroup { - hostgroup_name Eisfw F5 Dev/QA Linux OEL5 - alias Oracle Enterprise Linux 5 Dev/QA hosts in Eisfw F5 - hostgroup_members 151 Eisfw F5 Dev/QA Linux OEL5 -} - -define hostgroup { - hostgroup_name Eisfw F5 Prod Windows - alias Windows Production hosts in Eisfw F5 - hostgroup_members 151 Eisfw F5 Prod Windows, NS Eisfw F5 Prod Windows -} - -define hostgroup { - hostgroup_name Eisfw F5 Prod Linux - alias Linux Production hosts in Eisfw F5 -# hostgroup_members Eisfw F5 Prod Linux OEL6, Eisfw F5 Prod Linux OEL5 -} - -define hostgroup { - hostgroup_name Eisfw F5 Prod Linux OEL6 - alias Oracle Enterprise Linux 6 Production hosts in Eisfw F5 - hostgroup_members 151 Eisfw F5 Prod Linux OEL6, NS Eisfw F5 Prod Linux OEL6 -} - -define hostgroup { - hostgroup_name 151 Eisfw F5 - alias All hosts in Eisfw F5 and 151 Forrestal - hostgroup_members 151 Eisfw F5 Dev/QA, 151 Eisfw F5 Prod -} - -define hostgroup { - hostgroup_name 151 Eisfw F5 Dev/QA - alias Dev/QA hosts in Eisfw F5 and 151 Forrestal - hostgroup_members 151 Eisfw F5 Dev/QA Windows, 151 Eisfw F5 Pre-Production Windows, 151 Eisfw F5 Dev/QA Linux OEL6, 151 Eisfw F5 Pre-Production Linux OEL6, 151 Eisfw F5 Dev/QA Linux OEL5 -} - -define hostgroup { - hostgroup_name 151 Eisfw F5 Prod - alias Production hosts in Eisfw F5 and 151 Forrestal - hostgroup_members 151 Eisfw F5 Prod Windows, 151 Eisfw F5 Prod Linux OEL6 -} - -define hostgroup { - hostgroup_name NS Eisfw F5 - alias All hosts in Eisfw F5 and New South - hostgroup_members NS Eisfw F5 Dev/QA, NS Eisfw F5 Prod -} - -define hostgroup { - hostgroup_name NS Eisfw F5 Dev/QA - alias Dev/QA hosts in Eisfw F5 and New South - hostgroup_members NS Eisfw F5 Dev/QA Windows, NS Eisfw F5 Pre-Production Windows, NS Eisfw F5 Dev/QA Linux OEL6, NS Eisfw F5 Pre-Production Linux OEL6 -} - -define hostgroup { - hostgroup_name NS Eisfw F5 Prod - alias Production hosts in Eisfw F5 and New South - hostgroup_members NS Eisfw F5 Prod Windows, NS Eisfw F5 Prod Linux OEL6 -} - -################# -# Data centers - -define hostgroup { - hostgroup_name 151 - alias All hosts in 151 Forrestal - hostgroup_members 151 Restricted, 151 Untrust, 151 Eisfw F5, 151 PublicDMZ, 151 PrivateDMZ, 151 Trust -} - -define hostgroup { - hostgroup_name NS - alias All hosts in New South - hostgroup_members NS Restricted, NS Untrust, NS Eisfw F5, NS PublicDMZ, NS PrivateDMZ, NS Trust -} - -######################### - -define hostgroup { - hostgroup_name Windows Application Disks Production - alias Windows Production hosts with application disks - members aisiw205w, aisstargate200w, amu202w, ats201w, cisdr200w, das211w, dev-webprod-tt, eis-fwmgr, hou201w, iamcas200w, iamcas201w, iamweb200w, lsscvms207w, odoc201w, sdp202w, sdp205w, sdpalc200w, sdpenc200w, sdpepo200w, socconsole, ss214w, ss215w, ss217w, telswitch, uhs207w, upkvm, vpft201w -} - -define hostgroup { - hostgroup_name Windows Application Disks Dev/QA - alias Windows Dev/QA hosts with application disks - members cisdr300w, csgmbx300w, dba300w, dba301w, devtools, dev-webqa-tt, eissql102w, eissql304w, iamshib300w, itms300w, odoc101w, odoc301w, pei300w, sql-zeta2, ss306w, uhs107w, uhs109w, uhs110w, uss302w-sndbx08, uss304w -} - -# hostgroups CISDR -define hostgroup { - hostgroup_name CISDR - alias CISDR Hosts - members csghubprod, deptbedit, lists, oldsmtp, ppa01, ppa02, ppa03, ppa04, ppsqm, ppvm, smtp, www-dept-edit, aisedit -} - -# hostgroups Clusters -define hostgroup { - hostgroup_name Clusters - alias Cluster VIP's - members Webhead_Cluster, epoxy -} - -define hostgroup { - hostgroup_name CPanel - hostgroup_members CPanel Dev/QA, CPanel Prod -} - -define hostgroup { - hostgroup_name CPanel Dev/QA - alias CPanel Dev/QA machines - members dascpan100l -} - -define hostgroup { - hostgroup_name CPanel Prod - alias CPanel Production machines -# members -} - -# hostgroups DBA_DevQA -define hostgroup { - hostgroup_name DBA Windows Dev/QA - alias DBA Windows Dev/QA hosts - members csgspdb100w, csgspdb101w, dba300w, dba301w, eissql102w, eissql104w, eissql105w, eissql304w, sasspdb308w, sasspdb309w, wasspdb100w, wasspdb101w - hostgroup_members DBA SQLServer Dev/QA, MSSQL Dev Clusters -} - -define hostgroup { - hostgroup_name DBA SQLServer Dev/QA - alias Servers running MS SQL Server in Dev/QA - members aisob117w, aisob317w, aissimfony7101w, aissimfony7301w, cisdr300w, eissql113w, facsaltodb100w, facsaltodb101w, iammimdb101w, iammimdb301w, pcocrdb106w, sasob100w, sasob300w, sasob300tstw, sql-zeta2, uhs107w, uhs109w, uhs110w -} - -define hostgroup { - hostgroup_name DBA UNIX Dev/QA - alias DBA UNIX Dev/QA Hosts - members ais309l, ais310l, ais311l, ais318l, aisiw338l, eis319l, eis344l, eisdba301l, eisdba302l, eisdba303l, roxdb01qa, roxdb02qa -} - -# hostgroups DBA_Prod -define hostgroup { - hostgroup_name DBA Windows Prod - alias DBA Windows Production hosts - members eissql203w, eissql204w, eissql205w, eissql206w, eissql207w, wasspdb200w, wasspdb201w - hostgroup_members DBA SQLServer Prod, MSSQL Prod Clusters -} - -define hostgroup { - hostgroup_name DBA SQLServer Prod - alias Servers running MS SQL Server in Production - members aisob217w, aissimfony7201w, asrv201w, asrv202w, cisdr200w, dev205w, eissql202w, eissql213w, fac-spcacfdb207, fac-spcacsdb205, facsaltodb200w, facsaltodb201w, pcocrdb206w, sasob200w, uhs207w, uhs209w, uhs210w, uhs214w -} - -define hostgroup { - hostgroup_name DBA UNIX Prod - alias DBA UNIX Production Hosts - members aisiw207l, aisiw208l, eis208l, eis230l, eis254l, eis256l, eis286l, eis289l, eis290l, isserv216, roxdb01, roxdb02 -} - -define hostgroup { - hostgroup_name DBA - alias All DBA hosts - hostgroup_members DBA Windows Dev/QA, DBA UNIX Dev/QA, DBA Windows Prod, DBA UNIX Prod -} - -# hostgroups ESX -define hostgroup { - hostgroup_name ESX - alias ESX Server - members essesx200v, essesx201v, essesx202v, essesx203v, essesx204v, essesx205v, essesx206v, essesx207v, essesx208v, essesx209v, essesx210v, essesx211v, essesx212v, essesx213v, essesx214v, essesx215v, essesx216v, essesx217v, essesx218v, essesx220v, essesx221v, essesx222v, essesx224v, essesx225v, essesx226v, essesx227v, essesx228v, essesx229v, essesx250v, essesx251v, essesx260v, essesx261v, essesx262v, essesx263v, essesx240v, essesx241v, essesx242v, essesx270v, essesx290v, essesx291v, essesx292v - hostgroup_members ESX oob -} - -define hostgroup { - hostgroup_name ESX oob - alias ESX Out of bound interfaces - hostgroup_members ESX HPE oob - members essesx200v-netmgt, essesx201v-netmgt, essesx202v-netmgt, essesx203v-netmgt, essesx204v-netmgt, essesx205v-netmgt, essesx206v-netmgt, essesx207v-netmgt, essesx208v-netmgt, essesx209v-netmgt, essesx210v-netmgt, essesx211v-netmgt, essesx212v-netmgt, essesx213v-netmgt, essesx214v-netmgt, essesx215v-netmgt, essesx216v-netmgt, essesx217v-netmgt, essesx218v-netmgt, essesx220v-netmgt, essesx221v-netmgt, essesx222v-netmgt, essesx224v-netmgt, essesx225v-netmgt, essesx226v-netmgt, essesx227v-netmgt, essesx240v-netmgt, essesx241v-netmgt, essesx242v-netmgt, essesx270v-netmgt, essesx290v-netmgt, essesx291v-netmgt, essesx292v-netmgt -} - -define hostgroup { - hostgroup_name ESX HPE oob - alias HPE ProLiants ESX servers - members essesx228v-netmgt, essesx229v-netmgt, essesx250v-netmgt, essesx251v-netmgt, essesx260v-netmgt, essesx261v-netmgt, essesx262v-netmgt, essesx263v-netmgt -} - -# hostgroups Email -define hostgroup { - hostgroup_name Email - alias Email end-to-end testing - members email-end2end -} - -define hostgroup { - hostgroup_name Emergency Broadcast Towers - alias Emergency Broadcast Towers - members ebt-185-nassau-audio.voip, ebt-185-nassau-phone.voip, ebt-1915-hall-audio.voip, ebt-1915-hall-phone.voip, ebt-1937-hall-audio.voip, ebt-1937-hall-phone.voip, ebt-200-elm-net-page-t01-t04.voip, ebt-200-elm-net-page-t05-t08.voip, ebt-200-elm-net-page-t09-t12.voip, ebt-200-elm-net-page-t13-t16.voip, ebt-200-elm-net-page-t17-t20.voip, ebt-200-elm-net-page-t21-t24.voip, ebt-200-elm-net-page-t25-t28.voip, ebt-200-elm-net-page-t29-t32.voip, ebt-200-elm-webs-server.voip, ebt-alexander-hall-audio.voip, ebt-alexander-hall-phone.voip, ebt-andlinger-79077-audio.voip, ebt-andlinger-79077-phone.voip, ebt-corwin-hall-audio.voip, ebt-corwin-hall-phone.voip, ebt-denunzio-pool-audio.voip, ebt-denunzio-pool-phone.voip, ebt-dickinson-audio.voip, ebt-dickinson-phone.voip, ebt-forbes-college-audio.voip, ebt-forbes-college-phone.voip, ebt-grad-college-audio.voip, ebt-grad-college-phone.voip, ebt-lake-71231-audio.voip, ebt-lake-71231-phone.voip, ebt-lca-79078-phone.voip, ebt-lca-79078-audio.voip, ebt-lawrence-apt-audio.voip, ebt-lawrence-apt-phone.voip, ebt-lewis-library-audio.voip, ebt-lewis-library-phone.voip, ebt-lightning-shelter-audio.voip, ebt-lightning-shelter-phone.voip, ebt-little-hall-audio.voip, ebt-little-hall-phone.voip, ebt-lot-23-audio.voip, ebt-lot-23-phone.voip, ebt-marx-audio.voip, ebt-marx-phone.voip, ebt-murray-dodge-audio.voip, ebt-murray-dodge-phone.voip, ebt-new-south-audio.voip, ebt-new-south-phone.voip, ebt-nuero-science-south-audio.voip, ebt-nuero-science-south-phone.voip, ebt-princeton-stadium-audio.voip, ebt-princeton-stadium-phone.voip, ebt-princeton-station-lot-audio.voip, ebt-princeton-station-lot-phone.voip, ebt-roberts-stadium-audio.voip, ebt-roberts-stadium-phone.voip, ebt-scully-goheen-walk-audio.voip, ebt-scully-goheen-walk-phone.voip, ebt-spelman-hall-audio.voip, ebt-spelman-hall-phone.voip, ebt-u-store-audio.voip, ebt-u-store-phone.voip -} - -# hostgroups Miscellaneous Hosts and Devices -#define hostgroup { -# hostgroup_name Environment -# alias Power, Cooling, etc. -# members -#} - -# hostgroups Exchange_2010 -define hostgroup { - hostgroup_name Exchange_2010 - alias Exchange 2010 servers - members csgcas204w, csgcas205w, csgcas206w, csgcas207w, csghub208w, csghub209w, exchangeimap - hostgroup_members Exchange Mailbox -} - -define hostgroup { - hostgroup_name Exchange Mailbox - alias Exchange Mailbox servers - members csgmbx206w, csgmbx207w -} - -# hostgroups Exchange_Test -define hostgroup { - hostgroup_name Exchange_Test - alias Exchange Test Servers - members csgcas104w, csgcas105w, csgcas301w, csghub102w, csghub103w, csghub302w, csgmbx100w, csgmbx300w, csgmbx303w -} - -# hostgroups Load Balancers -define hostgroup { - hostgroup_name F5 Load Balancers - alias All F5 Load Balancers - hostgroup_members F5 Production Load Balancers, F5 QA Load Balancers -} - -define hostgroup { - hostgroup_name F5 Load Balancer MPs - alias All F5 Load Balancer Management Ports - hostgroup_members F5 Production Load Balancer MPs, F5 QA Load Balancer MPs -} - -define hostgroup { - hostgroup_name F5 Load Balancer VLANs - alias All F5 Load Balancer VLAN connections - hostgroup_members F5 Production Load Balancer VLANs, F5 QA Load Balancer VLANs -} - -define hostgroup { - hostgroup_name F5 Production Load Balancers - alias F5 Production Load Balancers - hostgroup_members F5 Production Load Balancer MPs, F5 Production Load Balancer VLANs, F5 Production Load Balancer Interfaces - members eis202lb-ha, eis202lb-router-fw, eis202lb-router1, eis203lb-ha, eis203lb-router-fw, eis203lb-router1 -} - -define hostgroup { - hostgroup_name F5 Production Load Balancer MPs - alias F5 Production Load Balancer Management Ports - members eis202lb, eis203lb -} - -define hostgroup { - hostgroup_name F5 Production Load Balancer VLANs - alias F5 Production Load Balancer VLAN connections - #members -} - -define hostgroup { - hostgroup_name F5 Production Load Balancer Interfaces - alias F5 Production Load Balancer Interfaces - members eis202lb-router1-lb-servernet-1, eis202lb-router1-lb-servernet-1-direct, eis202lb-router1-lb-servernet-2, eis202lb-router1-lb-servernet-2-direct, eis202lb-router1-lb-servernet-7, eis202lb-router1-lb-servernet-7-direct, eis202lb-router1-lb-servernet-8, eis202lb-router1-lb-servernet-8-direct, eis202lb-router1-plinknet20, eis202lb-router-fw-lb-servernet-10, eis202lb-router-fw-lb-servernet-10-direct, eis202lb-router-fw-lb-servernet-11, eis202lb-router-fw-lb-servernet-11-direct, eis202lb-router-fw-lb-servernet-3, eis202lb-router-fw-lb-servernet-3-direct, eis202lb-router-fw-lb-servernet-4, eis202lb-router-fw-lb-servernet-4-direct, eis202lb-router-fw-lb-servernet-5, eis202lb-router-fw-lb-servernet-5-direct, eis202lb-router-fw-lb-servernet-6, eis202lb-router-fw-lb-servernet-6-direct, eis202lb-router-fw-lb-servernet-9, eis202lb-router-fw-lb-servernet-9-direct, eis202lb-router-fw-plinknet8, eis203lb-router1-lb-servernet-1, eis203lb-router1-lb-servernet-1-direct, eis203lb-router1-lb-servernet-2, eis203lb-router1-lb-servernet-2-direct, eis203lb-router1-lb-servernet-7, eis203lb-router1-lb-servernet-7-direct, eis203lb-router1-lb-servernet-8, eis203lb-router1-lb-servernet-8-direct, eis203lb-router1-plinknet20, eis203lb-router-fw-lb-servernet-10, eis203lb-router-fw-lb-servernet-10-direct, eis203lb-router-fw-lb-servernet-11, eis203lb-router-fw-lb-servernet-11-direct, eis203lb-router-fw-lb-servernet-3, eis203lb-router-fw-lb-servernet-3-direct, eis203lb-router-fw-lb-servernet-4, eis203lb-router-fw-lb-servernet-4-direct, eis203lb-router-fw-lb-servernet-5, eis203lb-router-fw-lb-servernet-5-direct, eis203lb-router-fw-lb-servernet-6, eis203lb-router-fw-lb-servernet-6-direct, eis203lb-router-fw-lb-servernet-9, eis203lb-router-fw-lb-servernet-9-direct, eis203lb-router-fw-plinknet8, lb-prod-float-1-lb-servernet-1, lb-prod-float-1-lb-servernet-2, lb-prod-float-1-lb-servernet-7, lb-prod-float-1-lb-servernet-8, lb-prod-float-1-plinknet20, lb-prod-float-fw-lb-servernet-10, lb-prod-float-fw-lb-servernet-11, lb-prod-float-fw-lb-servernet-3, lb-prod-float-fw-lb-servernet-4, lb-prod-float-fw-lb-servernet-5, lb-prod-float-fw-lb-servernet-6, lb-prod-float-fw-lb-servernet-9, lb-prod-float-fw-plinknet8 -} - -define hostgroup { - hostgroup_name F5 QA Load Balancers - alias F5 QA Load Balancers - hostgroup_members F5 QA Load Balancer MPs, F5 QA Load Balancer VLANs -} - -define hostgroup { - hostgroup_name F5 QA Load Balancer MPs - alias F5 QA Load Balancer Management Ports - members eis300lb,eis301lb -} - -define hostgroup { - hostgroup_name F5 QA Load Balancer VLANs - alias F5 QA Load Balancer VLAN connections - #members -} - -define hostgroup { - hostgroup_name Facilities Maximo Production - alias Facilities Maximo Production hosts - members fac211w, fac212w, fac213w, fac214w -} - -define hostgroup { - hostgroup_name Facilities Maximo Dev/QA - alias Facilities Maximo Dev/QA hosts - members fac111w, fac112w, fac113w, fac114w, fac312w, fac313w -} - -define hostgroup { - hostgroup_name Facilities Production - alias OIT Managed Production Facilities hosts - members fac-geoprod, fac-infoctr1, fac-lssxibo, fac-lutronprod2, fac-rds-200w, fac-rds-201w, fac-stprosvcs, fac-trimble, fac201w, fac203w-gisprod, fac207w, fac208w-afprod, fac209w-awprod, fac214w-centric, lar-watchdog2 -} - -define hostgroup { - hostgroup_name Facilities Dev/QA - alias OIT Managed Development and QA Facilities hosts - members fac-eng-301w, fac-willow2, fac101w, fac103w-gisqa, fac107w-afqa, fac108w-awqa, fac303w-gisdev, fac307w-afdev, fac308w-awdev -} - -define hostgroup { - hostgroup_name Firewalls - alias All firewalls - hostgroup_members Forcepoint Firewalls - members eisfw -} - -define hostgroup { - hostgroup_name Forcepoint Firewalls - alias OIT Firewalls - members eisfw1-mgmt, eisfw2-mgmt, eisfwqa1-mgmt -} - -# hostgroups H_Umansky -define hostgroup { - hostgroup_name H_Umansky - alias Henry Umansky - members webhead01, webhead02 -} - -define hostgroup { - hostgroup_name IMS - alias IMS Hosts - members ims211, ims214, ims215, ims302, ims303, ims311, tsm -} - -define hostgroup { - hostgroup_name Monitoring - alias Monitoring Hosts - hostgroup_members Monitoring Dev/QA, Monitoring Production - members !ims204, !ims205 -} - -define hostgroup { - hostgroup_name Monitoring Dev/QA - alias Monitoring Dev/QA Hosts - hostgroup_members Monitoring Masters Dev/QA, Monitoring Workers Dev/QA - members mon300w, mon301w -} - -define hostgroup { - hostgroup_name Monitoring Production - alias Monitoring Production Hosts - hostgroup_members Monitoring Masters, Monitoring Workers - members mon200w, mon201w, mon202w, mon203w -} - -define hostgroup { - hostgroup_name Monitor - alias Local monitoring checks - members monitor, monitor-dev, Gearman 151 Untrust, Gearman NS Untrust, Gearman 151 PrivateDMZ, Gearman NS PrivateDMZ, Gearman 151 PublicDMZ, Gearman NS PublicDMZ, Gearman 151 Trust, Gearman NS Trust, Gearman 151 Eisfw F5, Gearman NS Eisfw F5, Monitor Untrust, Monitor PrivateDMZ, Monitor PublicDMZ, Monitor Trust, Monitor Eisfw F5 -} - -define hostgroup { - hostgroup_name Monitoring Masters - alias Monitoring master hosts - hostgroup_members Monitoring Masters alef, Monitoring Masters bet -} - -define hostgroup { - hostgroup_name Monitoring Masters Dev/QA - alias Monitoring master Dev/QA hosts - hostgroup_members Monitoring Masters Dev/QA alef, Monitoring Masters Dev/QA bet -} - -define hostgroup { - hostgroup_name Monitoring Masters alef - alias Monitoring Masters alef - members ims204, mon204l -} - -define hostgroup { - hostgroup_name Monitoring Masters Dev/QA alef - alias Monitoring Masters Dev/QA alef - members ims318, mon302l -} - -define hostgroup { - hostgroup_name Monitoring Masters bet - alias Monitoring Masters bet - members ims205, mon205l -} - -define hostgroup { - hostgroup_name Monitoring Masters Dev/QA bet - alias Monitoring Masters Dev/QA bet - members ims319, mon303l -} - -define hostgroup { - hostgroup_name Monitoring Workers - alias All monitoring workers - hostgroup_members Monitoring Workers Production, Monitoring Workers Dev/QA -} - -define hostgroup { - hostgroup_name Monitoring Workers Production - alias All monitoring production mod_gearman workers - hostgroup_members Monitoring Workers 151, Monitoring Workers NS -} - -define hostgroup { - hostgroup_name Monitoring Workers Dev/QA - alias All monitoring dev/qa mod_gearman workers - hostgroup_members Monitoring Workers 151 Dev/QA, Monitoring Workers NS Dev/QA -} - -define hostgroup { - hostgroup_name Monitoring Workers 151 - alias Monitoring worker hosts in 151 Forrestal - members ims218, ims220, ims222, ims224 -} - -define hostgroup { - hostgroup_name Monitoring Workers 151 Dev/QA - alias Monitoring worker hosts in 151 Forrestal - members ims314, ims316, ims320 -} - -define hostgroup { - hostgroup_name Monitoring Workers NS - alias Monitoring worker hosts in New South - members ims219, ims221, ims223, ims225 -} - -define hostgroup { - hostgroup_name Monitoring Workers NS Dev/QA - alias Monitoring worker hosts in New South - members ims315, ims317, ims319, ims321 -} - -define hostgroup { - hostgroup_name All Servers - alias All OIT servers - hostgroup_members All Production Servers, All Dev/QA Servers -} - -define hostgroup { - hostgroup_name All Production Servers - alias All OIT Production Servers - hostgroup_members Linux Prod, Solaris, Windows Prod -} - -define hostgroup { - hostgroup_name All Pre-Production Servers - alias All OIT Pre-Production Servers - hostgroup_members Linux Pre-Production, Windows Pre-Production -} - -define hostgroup { - hostgroup_name All Dev/QA Servers - alias All OIT Dev/QA Servers - hostgroup_members Linux Dev/QA, Windows Dev/QA -} - -# hostgroups Linux -define hostgroup { - hostgroup_name Linux Prod - alias Linux production systems - hostgroup_members Linux Prod OEL5, Linux Prod OEL6 -} - -define hostgroup { - hostgroup_name Linux Prod - no SNMP - alias Linux Prod systems that do not support SNMP -# members -} - -# hostgroups Linux_Dev -define hostgroup { - hostgroup_name Linux Dev/QA - alias Non-production Linux systems - hostgroup_members Linux Dev/QA OEL5, Linux Dev/QA OEL6 -} - -define hostgroup { - hostgroup_name Linux DevQA - no SNMP - alias Linux DevQA systems that do not support SNMP - members harris -} - -define hostgroup { - hostgroup_name Linux Prod OEL5 - alias Oracle Enterprise Linux 5 Production hosts - hostgroup_members Untrust Prod Linux OEL5, PrivateDMZ Prod Linux OEL5, Trust Prod Linux OEL5 -} - -define hostgroup { - hostgroup_name Linux Dev/QA OEL5 - alias Oracle Enterprise Linux 5 Dev/QA hosts - hostgroup_members Untrust Dev/QA Linux OEL5, Trust Dev/QA Linux OEL5, Eisfw F5 Dev/QA Linux OEL5 - members harris -} - -define hostgroup { - hostgroup_name Linux Prod OEL6 - alias Oracle Enterprise Linux 6 Production hosts - hostgroup_members Untrust Prod Linux OEL6, Eisfw F5 Prod Linux OEL6, Trust Prod Linux OEL6, PublicDMZ Prod Linux OEL6, PrivateDMZ Prod Linux OEL6, Restricted Prod Linux, AWS Untrust Prod Linux OEL6 - members ims204, ims205, ims218, ims219, ims220, ims221, ims222, ims223, ims224, ims225, ims314, ims315 -} - -define hostgroup { - hostgroup_name Linux Dev/QA OEL6 - alias Oracle Enterprise Linux 6 Dev/QA hosts - hostgroup_members Untrust Dev/QA Linux OEL6, PrivateDMZ Dev/QA Linux OEL6, Trust Dev/QA Linux OEL6, PublicDMZ Dev/QA Linux OEL6, Restricted Dev/QA Linux, Linux Pre-Production, Eisfw F5 Dev/QA Linux OEL6, AWS Untrust Dev/QA Linux OEL6, AWS Untrust Pre-Production Linux OEL6 - members ims316, ims317 -} - -# hostgroups Maestro -define hostgroup { - hostgroup_name Maestro Masters - alias Maestro Hosts -# members -} - -# hostgroups Net -define hostgroup { - hostgroup_name Net - alias Network Devices - members border-87-router, core-87-router, core-cdn-router, core-ns, core-ns NS switch, gigagate6, gigagate6 151 switch -} - -define hostgroup { - hostgroup_name Network and Monitoring - alias Network and Monitoring servers - hostgroup_members Airwave, Aruba ClearPass Appliances, Backup VPN, Network ESX, Network Solaris - members eisnet200l, netbmfctrl1, netbmfctrl2 -} - -define hostgroup { - hostgroup_name Airwave - alias Airwave Devices - members airwave1, airwave2, airwave4, airwave5, airwave6, airwave7, airwave-development, airwave-failover, airwave-rap -} - -define hostgroup { - hostgroup_name Backup VPN - alias Hosts providing backup VPN service - members backupvpn, backupvpn1, backupvpn2 -} - -define hostgroup { - hostgroup_name Network ESX - alias Networking ESXi servers - members netvirtu01, netvirtu02 -} - -define hostgroup { - hostgroup_name Network Solaris - alias Network and Monitoring Solaris servers - members alfrente, capserver, eyeinthesky, eyeinthesky-infranet1, eyeinthesky-infranet2, eyeinthesky-infranet3, eyeinthesky-infranet4, eyeinthesky-infranet5, eyeinthesky-infranet7, four11, heymon, heymon-infranet1, heymon-infranet2, heymon-infranet3, heymon-infranet4, heymon-infranet5, heymon-infranet7, kirby, mrtg.net, new-heymon, new-heymon-infranet1, new-heymon-infranet2, new-heymon-infranet3, new-heymon-infranet4, new-heymon-infranet5, new-heymon-infranet7, oznot, www.net -} - -define hostgroup { - hostgroup_name Network NTP - alias Network and Monitoring NTP servers - members alfrente, capserver, cuckoo, four11, iblox1-vrrp, iblox2-vrrp, ibddipv6-vrrp, netvclock200l, oznot -} - -define hostgroup { - hostgroup_name Raritan - alias Raritan console devices - members raritan-87pr-core, raritan-87pr-core2, raritan-hpcrc, raritan-newsouth-machineroom, raritan-newsouth-machineroom-oob, raritan-87pr-network-lab -} - -define hostgroup { - hostgroup_name PUaccess - alias PUaccess servers - members sdpoam200l, sdpoam201l, sdpohs200l, sdpohs201l, sdpovd200l, sdpovd201l -} - -define hostgroup { - hostgroup_name Prod 8x5 Linux - alias Production Linux 8am - 5pm -# members -} - -define hostgroup { - hostgroup_name Prod 8x5 Windows - alias Production Windows 8am - 5pm - members eisrds201w, essdhcp200w, essosd202w, upkvm -} - -define hostgroup { - hostgroup_name Ping - alias Ping only - members essvc201w -} - -define hostgroup { - hostgroup_name SharePoint 2016 - alias SharePoint 2016 Production - members wassp200w, wasspapp200w, wasspapp201w, wasspfe202w, wasspfe203w, wasspfe204w, wasspss206w -} - -define hostgroup { - hostgroup_name SharePoint 2K10 - alias SharePoint 2010 Production - members csgsp200w, csgsp201w, csgsp202w, csgsp203w, csgsp204w -} - -define hostgroup { - hostgroup_name SharePoint 2K10 Dev/QA - alias SharePoint 2010 Dev/QA - members csgspapp102w, csgspapp103w, csgspdb100w, csgspdb101w, csgspfe100w, csgspfe101w -} - -# hostgroups SP CSG on call -define hostgroup { - hostgroup_name SP CSG on call - alias Sharepoint sites to be alerted to CSG on call - members sp -} - -# hostgroups SP Critical -define hostgroup { - hostgroup_name SP Critical - alias Sharepoint sites to be alerted on CRITICAL state - members sp, sp2010prod, sp2016 -} - -# hostgroups SP Warning -define hostgroup { - hostgroup_name SP Warning - alias Sharepoint sites to be alerted on WARNING state - members sp, sp2010prod, sp2016 -} - -# hostgroups SharePoint -define hostgroup { - hostgroup_name SharePoint - alias All SharePoint web services - hostgroup_members SP Warning, SP Critical, SP CSG on call -} - -# hostgroups Sql_clusters -define hostgroup { - hostgroup_name MSSQL Prod Clusters - alias MS-SQL Production Clusters - members csgspdb2a, csgspdb2a-c, eissql2a, eissql2b, wasspdb2a -} - -define hostgroup { - hostgroup_name MSSQL Dev Clusters - alias MS-SQL Clusters - members csgspdb1a, csgspdb1a-c, eissql1b, eissql1c, eissql3a, sasspdb3a, wasspdb1a -} - -define hostgroup { - hostgroup_name MSSQL Clusters - alias All MS-SQL Clusters - hostgroup_members MSSQL Prod Clusters, MSSQL Dev Clusters -} - -# hostgroups Kaltura Live -define hostgroup { - hostgroup_name Kaltura Live - alias Kaltura Live Streaming - members Kaltura Live -} - -define hostgroup { - hostgroup_name TSM - alias All TSM servers - hostgroup_members TSM Dev/QA, TSM Production -} - -define hostgroup { - hostgroup_name TSM Production - alias TSM Production servers - members eistsm200l, eistsm206l, eistsm207l, eistsm208l, eistsm210l, eistsm211l -} - -define hostgroup { - hostgroup_name TSM Dev/QA - alias TSM Dev/QA servers -# members -} - -# hostgroups Web Services -define hostgroup { - hostgroup_name Web Services - alias Roxen and Hulk Web Systems - members cisdrroxen200l, cisdrroxen201l, cisdrroxen202l, cisdrroxen203l, cisdrroxen204l, cisdrroxen205l, cisdrroxen206l -} - -# hostgroups Web_Services_Dev -define hostgroup { - hostgroup_name Web_Services_Dev - alias Non-production Roxen and Hulk Web Systems - members cisdrroxen100l, cisdrroxen101l, iamroxen300l, iamroxen301l -} - -# hostgroups Webcheck -define hostgroup { - hostgroup_name Webcheck - alias Basic http(s) checks - members Webcheck_host -} - -# hostgroups Webcheck_www -define hostgroup { - hostgroup_name Webcheck_Roxen - alias Roxen webchecks - members www_roxen -} - -# hostgroups Webcheck_csg -define hostgroup { - hostgroup_name Webcheck_csg - alias All csg monitors except main Princeton pages - members csg_host -} - -define hostgroup { - hostgroup_name Web Checks - alias Web Checks - members alumnicas, fed, puwebp, PUAccess, PUAccessQA, webspace, webspaceqa -} - -define hostgroup { - hostgroup_name Windows Prod - alias Windows Production Servers - hostgroup_members Untrust Prod Windows, Restricted Prod Windows, PrivateDMZ Prod Windows, Trust Prod Windows, PublicDMZ Prod Windows, Eisfw F5 Prod Windows, AWS Untrust Prod Windows -} - -define hostgroup { - hostgroup_name Windows Dev/QA - alias Windows Development Servers - hostgroup_members Restricted Dev/QA Windows, Untrust Dev/QA Windows, Eisfw F5 Dev/QA Windows, PrivateDMZ Dev/QA Windows, PublicDMZ Dev/QA Windows, Trust Dev/QA Windows, AWS Untrust Dev/QA Windows -} - -define hostgroup { - hostgroup_name Physical Hosts - alias Physical hosts with SNMP OpenManage - hostgroup_members Physical Prod Windows, Physical Dev/QA Windows, Physical Prod Linux, Physical Dev/QA Linux -} - -define hostgroup { - hostgroup_name Windows Dev/QA Patching - alias Group for Windows Dev/QA patching for downtime purposes - members devtabtools, eisrds201w, fac-rds-201w -} - -define hostgroup { - hostgroup_name Post Windows Dev/QA Patching - alias Group for post Windows Dev/QA patching for downtime purposes - members essdem200w, ss225w -} - -define hostgroup { - hostgroup_name Site Protection Production Patching - alias Group for Site Protection Production patching for downtime purposes - members fac-spcacs204w, fac-spcacsdb205, lsscvms207w, spcacsa202w, spcvms1nvr201w, spcvms2nvr202w, spcvms3nvr203w, spcvms4nvr204w, spcvms5nvr205w, spcvms6nvr206w, spcvms7nvr207w, spcvms8nvr208w, spcvms9nvr209w, spcvms10nvr210w, spcvms11nvr211w, spcvms12nvr212w, spcvmsm200w -} - -define hostgroup { - hostgroup_name Facilities Production Patching - alias Group for Facilities Production patching for downtime purposes - members fac-rds-200w, lar-watchdog2 -} - -define hostgroup { - hostgroup_name KMA - alias Martin's KMA hosts - members kma-151-1, kma-151-2, kma-ns-1, kma-ns-2 -} - -define hostgroup { - hostgroup_name Linux Pre-Production OEL6 - alias Pre-Production OEL6 Linux hosts - hostgroup_members 151 Untrust Pre-Production Linux OEL6, NS Untrust Pre-Production Linux OEL6, 151 Untrust F5 Pre-Production Linux OEL6, NS Untrust F5 Pre-Production Linux OEL6, 151 Eisfw F5 Pre-Production Linux OEL6, NS Eisfw F5 Pre-Production Linux OEL6, 151 Trust Pre-Production Linux OEL6, NS Trust Pre-Production Linux OEL6, NS PrivateDMZ Pre-Production Linux OEL6, 151 PublicDMZ Pre-Production Linux OEL6, NS PublicDMZ Pre-Production Linux OEL6, AWS Untrust Pre-Production Linux OEL6 -} - -define hostgroup { - hostgroup_name Linux Pre-Production - alias Pre-Production Linux hosts - hostgroup_members Linux Pre-Production OEL6, 151 Restricted Pre-Production Linux OEL7, NS Restricted Pre-Production Linux OEL7 -} - -define hostgroup { - hostgroup_name Windows Pre-Production - alias Pre-Production Windows hosts - hostgroup_members NS PublicDMZ Pre-Production Windows, 151 PrivateDMZ Pre-Production Windows, NS PrivateDMZ Pre-Production Windows, NS Trust Pre-Production Windows, NS Untrust Pre-Production Windows, NS Untrust F5 Pre-Production Windows, 151 Eisfw F5 Pre-Production Windows, NS Eisfw F5 Pre-Production Windows, AWS Untrust Pre-Production Windows -} - -define hostgroup { - hostgroup_name IAM - alias IAM VIP's - members alumni-ldap, alumni-ldap1, alumni-ldap2, alumni05, alumni06, dsml, dumper05, dumper06, idp, ldap, ldap05, ldap06, ldapprime, ldapproxyqa, ldapremote, ldapupdate, newdumper, ovdprod, qaovd, tools, webservices -} - -define hostgroup { - hostgroup_name Active Directory - alias Active Directory servers - members pdom05.pu.win, pdom06.pu.win, pdom07.pu.win, pdom08.pu.win -} - -define hostgroup { - hostgroup_name LDAP - alias LDAP servers - members alumni-ldap1, alumni-ldap2, alumni05, alumni06, dumper05, dumper06, ldap05, ldap06, sdpldap200l, sdpldap201l -} - -define hostgroup { - hostgroup_name Maestro Dev/QA - alias TWS Maestro Dev/QA hosts - members ais101l, ais302l, ais309l, ais310l, ais318l, ais320l, eis176l, sis300l, sis301l, sis302l -} - -define hostgroup { - hostgroup_name Maestro - alias TWS Maestro Production hosts - members ais204l, ais211l, ais212l, sis200l, sis202l -} - -define hostgroup { - hostgroup_name Oracle Exadata - alias Oracle Exadata appliances - members x210client01, x210client02 -} - -define hostgroup { - hostgroup_name Oracle Exadata Dev/QA - alias Oracle Exadata Dev/QA appliances - members x110client01, x110client02 -} - -define hostgroup { - hostgroup_name SIEM - alias McAffee SIEM - members esm, siem-ace, siem-elm, siem-adm, siem-dem, receiver01, receiver02, receiver03 -} - -#define hostgroup { -# hostgroup_name OIT Network -# alias Various network devices managed by the OIT Networking group -# hostgroup_members OIT Core Routers/Switches, OIT Non-Core Routers, ISP Routers, OIT CWDM, OIT VPN Tunnel Endpoints, OIT DSL Modems, OIT Ethernet Switches/Repeaters, OIT Wireless Access Points - Aruba, OIT Wireless Access Points - Cisco, OIT UPS Networking, OIT APC Switched Rack PDU, OIT APC Redundant Power Auto Transfer Switches, Lantronix Serial-to-IP Terminal Server Gateways, NATs, VPN Servers, Aruba controllers, Aruba remote access controllers, Aruba remote access points, Remote cable modems, OIT POE Power Injectors, OIT Servers, OIT Telephony, Public Safety, Dining Services -#} -# -#define hostgroup { -# hostgroup_name OIT Core Routers/Switches -# alias OIT Core Routers and Switches -#} -# -#define hostgroup { -# hostgroup_name OIT Non-Core Routers -# alias OIT Non-Core Routers -#} -# -#define hostgroup { -# hostgroup_name ISP Routers -# alias ISP Routers -#} -# -#define hostgroup { -# hostgroup_name OIT CWDM -# alias OIT CWDM (Coarse Wave Division Multiplexing) Equipment -#} -# -#define hostgroup { -# hostgroup_name OIT VPN Tunnel Endpoints -# alias OIT VPN Tunnel Endpoints -#} -# -#define hostgroup { -# hostgroup_name OIT DSL Modems -# alias OIT DSL Modems (Ethernet half-bridges) specified by OIT HWS -#} -# -#define hostgroup { -# hostgroup_name OIT Ethernet Switches/Repeaters -# alias OIT Ethernet switches and repeaters specified by OIT HWS -#} -# -#define hostgroup { -# hostgroup_name OIT Wireless Access Points - Aruba -# alias OIT Wireless Access Points specified by OIT HWS (Aruba flavor) -#} -# -#define hostgroup { -# hostgroup_name OIT Wireless Access Points - Cisco -# alias OIT Wireless Access Points specified by OIT HWS (cisco aironet flavor) -#} -# -#define hostgroup { -# hostgroup_name OIT UPS Networking -# alias UPS's supporting the campus network infrastructure, specified by OIT HWS -#} -# -#define hostgroup { -# hostgroup_name OIT APC Switched Rack PDU -# alias APC Switched Rack PDU units (switchable power outlets) specified by OIT HWS -#} -# -#define hostgroup { -# hostgroup_name OIT APC Redundant Power Auto Transfer Switches -# alias APC Redundant Power Auto Transfer Switch units specified by OIT HWS -#} -# -#define hostgroup { -# hostgroup_name Lantronix Serial-to-IP Terminal Server Gateways -# alias Lantronix Serial-to-IP Terminal Server Gateways -#} -# -#define hostgroup { -# hostgroup_name NATs -# alias NATs -#} -# -#define hostgroup { -# hostgroup_name VPN Servers -# alias VPN Servers -#} - -define hostgroup { - hostgroup_name Aruba ClearPass Appliances - alias Aruba ClearPass Appliances -} - -#define hostgroup { -# hostgroup_name Aruba controllers -# alias Aruba wireless controllers -#} -# -#define hostgroup { -# hostgroup_name Aruba remote access controllers -# alias Aruba remote access controllers -#} -# -#define hostgroup { -# hostgroup_name Aruba remote access points -# alias Aruba remote access points -#} -# -#define hostgroup { -# hostgroup_name Remote cable modems -# alias Cable Modems at Remote Sites -#} -# -#define hostgroup { -# hostgroup_name OIT POE Power Injectors -# alias Power over Ethernet Midspan Power Injectors supporting the campus network infrastructure, specified by OIT HWS -#} -# -#define hostgroup { -# hostgroup_name OIT Servers -# alias Various OIT servers -#} -# -#define hostgroup { -# hostgroup_name OIT Telephony -# alias OIT Telephone Servers, VoIP Servers, Appliances -#} -# -#define hostgroup { -# hostgroup_name Public Safety -# alias Public Safety devices -#} -# -#define hostgroup { -# hostgroup_name Dining Services -# alias Dining Services devices -#} - -define hostgroup { - hostgroup_name InfoBlox - alias InfoBlox appliances -} - -define hostgroup { - hostgroup_name InfoBlox DNS - alias InfoBlox appliances providing DNS services - members ibddipv6-vrrp, iblox-external, iblox1-vrrp, iblox2-vrrp, ibvoip-a, ibvoip-b, ibwlan-87-a, ibwlan-87-b, ibwlan-ns-a, ibwlan-ns-b -} - -define hostgroup { - hostgroup_name Local - alias Servers to be checked from ims204 only - members csgtools300l, sdpprox301l -} - -define hostgroup { - hostgroup_name Cognos Test Users - alias User workstations for Cognos latency tests -} - -define hostgroup { - hostgroup_name Rover hosts - alias All hosts automatically imported from Rover -} - -define hostgroup { - hostgroup_name Talk-A-Phone Mini-Towers - alias Talk-A-Phone Mini-Towers (Site Protection VOIP Emergency Phones) -} - -define hostgroup { - hostgroup_name SOC Downtime - alias Hosts that SOC can schedule downtime on - members ntprintserver, printdell, printgpd, printhp, fincopiers200w, fincopiers100w, eisprtmgt201w, essprintsrvqa -} - -define hostgroup { - hostgroup_name SRA - alias Secure Remote Access Dell VPN - members aventailsslvpn-sra-n1, aventailsslvpn-sra-n2, eisnet-sra-cms, eisnet-sra-n1.remote, eisnet-sra-n2.remote -} - -define hostgroup { - hostgroup_name Arbor TMS - alias Arbor TMS - members tms-87-mgmt0, tms-87-mgmt1, sightline-NS -} - -# -# $Header: /usr/local/monitoring/nagios/etc/hosts/../RCS/hostgroups_dynamic.cfg,v 1.148 2014/11/20 17:30:56 nagios Exp nagios $ -# -# All host groups -# - -########## PublicDMZ - -define hostgroup { - hostgroup_name 151 PublicDMZ Dev/QA Windows - alias Windows Dev/QA hosts in PublicDMZ in 151 Forrestal - members aisfrevvo100w, aisfrevvo300w, aisfsaprtl100w, aisgold6web300w, aisgold7100w, aisgold7101w, aisgold7102w, aisgold7300w, aisgold7301w, aisgold7302w, aishmsres110w, aishmsres111w, aisinfoed120w, aisob101w, aissimfony7100w, aissimfony7102w, aissimfony7103w, aissimfony7300w, aissimfony7302w, aissimfony7303w, ats-dia112w, ats-fvs112w, ats101w, cch100w, cisdredge102w, cisdrex100w, cisdrex101w, csla100w, css300w, css328w, das101w, das110w, das111w, das300w, dasdia112w, dev-webqa-ogv, dev102w, dng203w, dng305w, fac111w, fac112w, fac113w, fac114w, fac115w, fac312w, fac313w, fin103w, gso100w, gso300w, gso301w, iamlds300w, iamlds301w, isogate100w, itms301w, opr302w, pei300w, sasemsws100w, sasspdc305w, sasspdc316w, sassunapsis100w, ss116w, ss303w, vpft101w -} - -define hostgroup { - hostgroup_name 151 PublicDMZ Pre-Production Windows - alias Windows Pre-Production hosts in PublicDMZ in 151 Forrestal -# members -} - -define hostgroup { - hostgroup_name NS PublicDMZ Dev/QA Windows - alias Windows Dev/QA hosts in PublicDMZ in New South - members aisgold6web100w, aishmsres101w, aishmsres121w, aishmsres301w, iamdirsync100w, ss106w, wassp104w -} - -define hostgroup { - hostgroup_name NS PublicDMZ Pre-Production Windows - alias Windows Pre-Production hosts in PublicDMZ in New South - members cisdrex200w, cisdrex201w, csi200w, css228w, dev206w, dng205w, fac215w, iamcert200w, pol202w -} - -define hostgroup { - hostgroup_name 151 PublicDMZ Prod Windows - alias Windows Production hosts in PublicDMZ in 151 Forrestal - members aisgold6web200w, aishmsres201w, aishmsres211w, ant-had200w, art201w, ath201w, csla200w, das210w, dev201w, dev202w, dng202w, dps203w, eas200w, eeb-had201w, eishpdm200w, eng200w, fac209w-awprod, fac226-olive, geo-had-server, iamdirsync200w, isoproxy200w, maximo1, maximo2, maximo3, oa, pni-had-server, prz204w, psy200w, sasemsws200w, sassunapsis201w, soc-had200w, ss224w, ss225w, uhs211w, uss202w-win08, ussitfile200w, wasspdc205w -} - -define hostgroup { - hostgroup_name NS PublicDMZ Prod Windows - alias Windows Production hosts in PublicDMZ in New South - members aisfrevvo200w, aisfsa201w, aisfsaprtl200w, aisgold6web200w, aisgold7200w, aisgold7201w, aisgold7202w, aisiw209w, aisparking201w, amu206w, as-fmp, asrv201w, ats-dia212w, ats-fvs212w, ats201w, cch200w, ces201w-ts, chm200w, cisdr205w, cseslicense02, csgechoess200w, csgechomp201w, csgechomp202w, das211w, dascrl200w, dasdia212w, dasweb228w, dev-webprod, dev-webprod-ogv, dev-webprod-tt, devdesk, devtabguest, dsl200w, fac203w-gisprod, fac211w, fac212w, fac213w, fac214w, fac214w-centric, fin203w, gso200w, gso201w, iamweb200w, isocconsole200w, itms201w, lar-watchdog2, mccdigrec207w, mccweb200w, mus200w, odoc201w, oocphotos200w, prz201w, prz205w, prz206w, sassunapsis200w, sdpepo200w, spcvmsts214w, ss211w, ss215w, ssepo223w, ssepo224w, ssvr208w, tax200w, uhs-bhs200w, uss201w, vpft201w -} - -define hostgroup { - hostgroup_name 151 PublicDMZ Dev/QA Linux OEL6 - alias Oracle Enterprise Linux 6 Dev/QA hosts in PublicDMZ in 151 Forrestal - members andlchaos300l, asbb106l, asbb107l, asoar301l, cisdrroxen100l, csgsmtp101l, eiscpan100l, eiscpan101l, eisglob100l, ele303l, ele304l, ele305l, mol103l, oaamx101l, pcs300l, prson-proj-dev, sas112l, ss100l, ss304l, ss308l, uss310l -} - -define hostgroup { - hostgroup_name 151 PublicDMZ Pre-Production Linux OEL6 - alias Oracle Enterprise Linux 6 Pre-Production hosts in PublicDMZ in 151 Forrestal -# members -} - -define hostgroup { - hostgroup_name NS PublicDMZ Dev/QA Linux OEL6 - alias Oracle Enterprise Linux 6 Dev/QA hosts in PublicDMZ in New South - members aisiw110l, art200l, iamshib303l, waseqa03l -} - -define hostgroup { - hostgroup_name NS PublicDMZ Pre-Production Linux OEL6 - alias Oracle Enterprise Linux 6 Pre-Production hosts in PublicDMZ in New South - members erp200l, sas207l, sasiw224l -} - -define hostgroup { - hostgroup_name 151 PublicDMZ Prod Linux OEL6 - alias Oracle Enterprise Linux 6 Production hosts in PublicDMZ in 151 Forrestal - members aisiw212l, amu203l, cisdrroxen201l, mol201l, mol203l -} - -define hostgroup { - hostgroup_name NS PublicDMZ Prod Linux OEL6 - alias Oracle Enterprise Linux 6 Production hosts in PublicDMZ in New South - members ais216l, andvlab200l, as202l, asbb208l, asetc206l, asoar201l, asweb200l, cisdr202l, cisdr204l, cisdrroxen200l, cisdrroxen206l, cla200l, eisess205l, eisnet202l, ele201l.ee, ele203l, esspup200l, iso200l-rencif, jefspecial200l, mcgrawect200l, mol200l, netvclock200l, oaamx201l, oaamx202l, oaapcvm203l, odoc200l, opr202l, pol202l, pol203l, prson-proj-prod, ss200l, ss209l, stuportal200l, waspprod03l -} - -############################# -## PrivateDMZ -############################# - -define hostgroup { - hostgroup_name 151 PrivateDMZ Dev/QA Windows - alias Windows Dev/QA hosts in PrivateDMZ in 151 Forrestal - members ais320w, ais331w, aishmsres102w, aisinfoed300w, aisiw105w, aisiw106w, aisob102w, aisob119w, aisob301tstw, aisob301w, aisob302tstw, aisob302w, aisob315tstw, aisob315w, aisob319tstw, aisob319w, aisparking100w, aisparking101w, aissimfony7101w, aissimfony7301w, aistopaz110w, aistopaz300w, aistopaz310w, aisupc310w, asmobile101w, cisdr-prep, cisdr105w, cisdr301w, dev-webqa, dev-webqa-tt, dev101w, devc, devtabtoolsqa, devtools, dng306w, dsl300w, eis105w, eis155w, eis345w, eisctxpvs100w, eisctxpvs101w, eisiws300w, eissql100w, eissql101w, eissql102w, eissql104w, eissql105w, eissql302w, eissql303w, eissql304w, eiswszeta102w, eisxendc100w, eisxendc101w, eiszeta100w, epm300w, erp302w, erp330w, ess-2008r2test, ess-2012r2test, ess-2016test, ess100w, essnick2019test, essosd302w, essprintsrvqa, essvmbkp100w, essvprox100w, essvprox101w, esswsus300w, fac-egn-desigo, fac-eng-301w, fac-geodev, fac-geoqa, fac-lutronqa, fac-spcacst101w, fac-spcacst102w, fac-spcacst103w, fac-spcacsts108, fac-spcactdb102, fac-spcactdb103, fac-spcactha105, fac-spcactha106, fac-webctrl100w, fac-webctrl300w, fac101w, fac102w, fac103w-gisqa, fac103wsaltots, fac108w-awqa, fac115w-x100, fac303w-esridev, fac303w-gisdev, fac309wsaltodev, fac314w, fin302w, fincopiers100w, fint300w, fint301w, fint302w, fint303w, iamcacomp100w, iamload100w, iamload101w, iammim300w, iammimweb100w, iammimweb101w, iamtools100w, iamwebsvc100w, iss128w, iss129w, itms300w, landrdev, lss110w-tqa, maximosourceqa, mccweb100w, mccweb101w, mol102w, mol302w, mon300w, mon301w, netnsm100w, odoc301w, out301w, pcocr104w, pcocr105w, psm101w, pudev02.pudev.windev, puqa01.zeta.adtest, sas305w, sas306w, sasemsterm100w, sasspapp300w, sasspapp301w, sasspapp310w, sasspapp312w, sasspdc306w, sasspss316w, sastopaz100w, sastopaz110w, sastopaz300w, sdp102w, sdp300w, sdpepo100w, sis313w, smo301w, sql-zeta2, ss101w, ss103w, ss104w, ss105w, ss305w, ss306w, ssvr108w, ssvr308w, tmetrics, tmetsdevlab, tps101w-garage, ufa300w, uhs104w, uhs114w, uss300w-willow, uss301w-sandbox, uss302w-sndbx08, uss303w, uss304w, winqa01.adtest -} - -define hostgroup { - hostgroup_name 151 PrivateDMZ Pre-Production Windows - alias Windows Pre-Production hosts in PrivateDMZ in 151 Forrestal -# members -} - -define hostgroup { - hostgroup_name 151 PrivateDMZ Prod Windows - alias Windows Production hosts in PrivateDMZ in 151 Forrestal - members ais201w, ais217w, aisdvcts200w, aishmsres200w, aishmsres210w, aishwscbord200w, aisiw210w, amu209w, amu210w, asmobile203w, cas201w, dev200w, devp1, devp3, dps201w, eisctxappdna200, eisctxddc200w, eisctxddc201w, eisctxdir200w, eisctxlic200w, eisctxsf200w, eisctxsf201w, eisctxwem200w, eisctxwem201w, eissql209w, eissql212w, essonsm200w, essvmbkp200w, fac-anaqua1, fac-goshin200w, fac-lumewave200, fac-spcacsts209, fac-spreports, fac-willow2, fac208w-afprod, fincopiers200w, iamencoder204w, iamencoder205w, iamencoder206w, isoconsole, itms200w, lsscvms207w, mol202w, mol205w, mol206w, ocs201w, odoc202w, pcords201w, pdom07.pu.win, pni201w, printdell, prz203w, saconsole200w, sasemsterm200w, sdp205w, smo200w, spcvms10nvr210w, spcvms11nvr211w, spcvms12nvr212w, spcvms3nvr203w, spcvms4nvr204w, spcvms5nvr205w, spcvms6nvr206w, spcvms7nvr207w, spcvms8nvr208w, spcvms9nvr209w, tmetsciscodigi2, top200w, top201w, uss204w, wasspapp200w, wasspapp201w, wasspss206w, win04.win -} - -define hostgroup { - hostgroup_name 151 PrivateDMZ Dev/QA Linux OEL6 - alias Oracle Enterprise Linux 6 Dev/QA hosts in PrivateDMZ in 151 Forrestal - members ais103l, ais104l, ais113l, ais302l, ais309l, ais310l, ais312l, ais315l, ais318l, ais320l, ais321l, ais322l, ais323l, ais324l, ais325l, ais326l, ais327l, ais330l, aisiw303l, aisiw344l, aisiw345l, aissmb325l, asweb100l, asweb300l, autom102l, cisdr103l, csgtools300l, eis344l, eiscups300l, eisdba303l, eisvnet300l, ele301l, epm100l, epm302l, ess307l, essgit100l, essgit101l, essoel300l, esspup101l, iamcaproxy100l, iamroxen300l, ims320, mol100l, mol101l, mol300l, mol301l, odoc100l, odoc300l, sas104l, sas105l, sas106l, sas108l, sas109l, sas111l, sas113l, sas114l, sas115l, sas116l, sas300l, sas301l, sas302l, sas303l, sas307l, sas308l, sas309l, sas310l, sas311l, sas312l, sasiw103l, sasiw113l, sasiw117l, sasiw119l, sasiw350l, sdn-ctrl-vm, sdpobi100l, sdpprox300l, sdppua300l, sdppua301l, ssohdcsp100l, timeline103l, timeline104l, timeline105l, timeline301l, timeline302l, updatespace -} - -define hostgroup { - hostgroup_name 151 PrivateDMZ Pre-Production Linux OEL6 - alias Oracle Enterprise Linux 6 Pre-Production hosts in PrivateDMZ in 151 Forrestal -# members -} - -define hostgroup { - hostgroup_name 151 PrivateDMZ Prod Linux OEL6 - alias Oracle Enterprise Linux 6 Production hosts in PrivateDMZ in 151 Forrestal - members ais218l -} - -define hostgroup { - hostgroup_name NS PrivateDMZ Dev/QA Windows - alias Windows Dev/QA hosts in PrivateDMZ in New South - members ais-mars, ais-sn200w, ais-sn300w, ais114w, ais115w, ais313w, ais316w, ais317w, ais319w, aishmsres100w, aishmsres120w, aishmsres122w, aishmsres202w, aishmsres300w, aishmsres302w, aisinfoed100w, aisob115w, aisparking300w, aisparking300w, aisparking301w, aisparking301w, aiste304w, aistopaz100w, amu102w, cas301w, dev100w, devq, eis370w, eisctxappdna100, eisctxddc100w, eisctxddc101w, eisctxdir100w, eisctxsf100w, eisctxsf101w, eisctxwem100w, eisctxwem101w, eissql305w, eissql306w, essctxddc300w, essctxsf300w, essctxxa300w, essnicksdev300w, essorch300w, fac-spcacst104w, fac107w-afqa, fac307w-afdev, fac308w-awdev, iamshibtest100w, mol105w, odoc101w, pcords101w, puqa02.zeta.adtest, sassunapsis101w, spcacs201w, top100w, top101w, uhs111w, wassp100w, wassp101w, wassp105w, win03.win, windev02.windev, winqa02.adtest -} - -define hostgroup { - hostgroup_name NS PrivateDMZ Pre-Production Windows - alias Windows Pre-Production hosts in PrivateDMZ in New South - members ais202w, alamut, dcf200w, dcf201w, dpsbastion200w, erp201w, fac-spcacsha210, fac202w, fac206wsaltots, fac207wsaltojs, fac222w-acad, gso202w, iss228w, iss229w, lib200w, ocs202w, pcocr204w, pcocr205w, spcvms13nvr213w, spcvms14nvr214w, spcvmsj215w, tps202w-garage, uhs-bh201w -} - -define hostgroup { - hostgroup_name NS PrivateDMZ Prod Windows - alias Windows Production hosts in PrivateDMZ in New South - members adm-it-ws, ais207w, ais214w, ais226w, aiscerberus200w, aisinfoed200w, aisiw205w, aisiw206w, aisob201w, aisob202w, aisob215w, aisob219w, aisparking200w, aisstargate200w, aistopaz200w, alertus, amu207w, amu212w, asmobile201w, asrv202w, ath200w, cas200w, chm-dmac200w, cisdr201w, cisdrcons200w, csglyncdb225w, csglyncdb226w, dev203w, dev204w, dev205w, devtabtools, devtool, dng200w, dng201w, dng204w, dngbboard200w, eeb-fm201w, eis253w, eis255w, eisctxpvs200w, eisctxpvs201w, eisiws200w, eislmt200w, eisnet200w, eissql202w, eissql203w, eissql204w, eissql205w, eissql206w, eissql207w, eissql210w, eissql211w, eisws201w, eisws202w, ele202w, epm200w, esscode200w, essconsole200w, essconsole201w, essdem200w, essscript200w, essvmbkp201w, esswsus200w, evcontroller1, evcontroller2, fac-evnts2hv200, fac-infoctr1, fac-infoctr3, fac-keys200w, fac-larprime, fac-lssxibo, fac-lutlarsprd, fac-lutronprod, fac-lutronprod2, fac-palm3, fac-rds-200w, fac-rds-201w, fac-spcacfdb207, fac-spcacs204w, fac-spcacsdb205, fac-spcacsf206w, fac-spcacsts208, fac-stprosvcs, fac-termsvr1, fac-trimble, fac-willo3-200w, fac201w, fac203-publish, fac207w, fac216w-xibo, fac219w-tsw, fac221w-acad, fac223w-jadwin, fac223w-x200, fac224w-tcam, fac225w-tcam, fac230w-led, fcc200w, hou201w, iambuilder, iamconsole, iamsvn200w, iamtools, iss226w, iss227w, landr, lss210w-tprod, mccweb201w, mon200w, mon201w, mon202w, mon203w, netops200w, ntprintserver, oac200w, orp200w, oss201w, pcs200w, pdom05.pu.win, pdom06.pu.win, pdom08.pu.win, phy200w, printgpd, printhp, printsoa200w, sas203w, sasiw202w, sastopaz200w, scs201w, sdpvm200w, sea200w, sea201w, sentryteledir, smo201w, smo202w, smo203w, smo204w, smo205w, smo206w, socconsole, spcacsa202w, spcvms1nvr201w, spcvms2nvr202w, spcvmsm200w, ss212w, ss213w, ss214w, ss217w, ss219w, ss220w, ss221w, ssvr209w, svconsole200w, svp2vhelper, tbschedule1, telswitch, tmetsciscodigi1, tmetsdigi1, tmetsdigi2, tmetsmultimedia, tps200w-garage, tps201w-garage, ufa200w, uhs214w, upkvm, uss203w, uss205w, uss207w, uss208w, wassp200w, wws200w -} - -define hostgroup { - hostgroup_name NS PrivateDMZ Dev/QA Linux OEL6 - alias Oracle Enterprise Linux 6 Dev/QA hosts in PrivateDMZ in New South - members devrtools, eis374l, hoover1, sasiw100l -} - -define hostgroup { - hostgroup_name NS PrivateDMZ Pre-Production Linux OEL6 - alias Oracle Enterprise Linux 6 Pre-Production hosts in PrivateDMZ in New South - members isocis200l, sas208l, sas209l, sas210l, sas211l, sas212l, sas213l, sasiw218l, sasiw223l -} - -define hostgroup { - hostgroup_name NS PrivateDMZ Prod Linux OEL6 - alias Oracle Enterprise Linux 6 Production hosts in PrivateDMZ in New South - members adm-it2, ais212l, ais213l, ais222l, ais225l, aisiw207l, aisiw208l, aissmb225l, amu208l, csgtools200l, eis256l, eiscups200l, eisnet201l, eistsm200l, essgit200l, essproxy200l, esspup201l, iamtools200l, net200l-config, netbkup200l, netbmfgw200l, oss200l, sas200l, sas204l, sas205l, sas206l, sasiw200l, sasiw203l, ssocms200, timeline203l, timeline204l, timeline205l, wds-util -} - -define hostgroup { - hostgroup_name NS PrivateDMZ Prod Linux OEL5 - alias Oracle Enterprise Linux 5 Production hosts in PrivateDMZ in New South - members ims211 -} - -############################# -## Trust -############################# - -define hostgroup { - hostgroup_name 151 Trust Dev/QA Windows - alias Windows Dev/QA hosts in Trust in 151 Forrestal - members aisob113w, aisob114w, aisob116w, aisob117w, aisob118w, aisob313tstw, aisob313w, aisob314tstw, aisob314w, aisob316w, aisob317w, aisob318tstw, aisob318w, cisdr300w, csgspapp102w, csgspapp103w, csgspdb100w, csgspdb101w, dba300w, dba301w, eis-fwmgrqa, eisctxsql100w, eisctxsql101w, eissql113w, esschoco100w, esschoco300w, essrundeck100w, facsaltodb100w, facsaltodb101w, iammim100w, iammim301w, iammimdb101w, iammimdb102w, iammimdb301w, pcocrdb106w, sasiw111w, sasiw112w, sasiw114w, sasiw116w, sasiw346w, sasiw347w, sasiw348w, sasiw349w, sasob100w, sasob300tstw, sasob300w, sasspdb308w, sasspdb309w, sasspdb318w, sasspdb319w, sis118w, sis310w, spcvms1nvr101w, spcvmsqa100w -} - -define hostgroup { - hostgroup_name 151 Trust Pre-Production Windows - alias Windows Pre-Production hosts in Trust in 151 Forrestal -# members -} - -define hostgroup { - hostgroup_name 151 Trust Prod Windows - alias Windows Production hosts in Trust in 151 Forrestal - members aisob213w, csgsp200w, eissql213w, eisctxsql200w, eisctxsql201w, eisvone200w, eisvone201w, essorch201w, esssma200w -} - -define hostgroup { - hostgroup_name 151 Trust Dev/QA Linux OEL6 - alias Oracle Enterprise Linux 6 Dev/QA hosts in Trust in 151 Forrestal - members ais102l, ais111l, ais307l, ais311l, ais329l, aisiw108l, aisiw302l, aisiw338l, aisiw341l, eis176l, eis178l, eis319l, eis368l, eis369l, eis376l, eis377l, eisdba301l, eisdba302l, eisfax300l, ess305l, essconjur300l, essrundeck102l, ims321, kima, roxdb01qa, sasiw101l, sasiw118l, sasiw351l, sdpoam101l, sis100l, sis101l, sis102l, sis103l, sis104l, sis105l, sis106l, sis107l, sis108l, sis109l, sis110l, sis111l, sis112l, sis113l, sis114l, sis115l, sis119l, sis120l, sis300l, sis301l, sis302l, sis303l, sis304l, sis305l, sis306l, sis307l, sis308l, sis309l, sis311l, sis312l, sis314l, sis315l, sisdba301l, x110client01, x110client02 -} - -define hostgroup { - hostgroup_name 151 Trust Dev/QA Linux OEL5 - alias Oracle Enterprise Linux 5 Dev/QA hosts in Trust in 151 Forrestal - members devprov01, qaprov01 -} - -define hostgroup { - hostgroup_name 151 Trust Prod Linux OEL6 - alias Oracle Enterprise Linux 6 Production hosts in Trust in 151 Forrestal - members eis230l, roxdb01 -} - -define hostgroup { - hostgroup_name 151 Trust Pre-Production Linux OEL6 - alias Oracle Enterprise Linux 6 Pre-Production hosts in Trust in 151 Forrestal -# members -} - -define hostgroup { - hostgroup_name NS Trust Dev/QA Windows - alias Windows Dev/QA hosts in Trust in New South - members aisfsa100w, essorch101w, esssma100w, wasspdb100w, wasspdb101w -} - -define hostgroup { - hostgroup_name NS Trust Pre-Production Windows - alias Windows Pre-Production hosts in Trust in New South - members essrundeck203w, facsaltodb200w, facsaltodb201w, pcocrdb206w, sasiw225w, sasiw226w, sasiw227w, sasiw228w, sasmbns203w, sasmbns204w, sasmbns205w, sasmbproxy200w, sasmbproxy202w, sasmbproxy206w, sasob299w, sis222w -} - -define hostgroup { - hostgroup_name NS Trust Prod Windows - alias Windows Production hosts in Trust in New South - members aisob214w, aisob216w, aisob217w, aisob218w, cisdr200w, cisdr206w, csgdocave200w, csgmbx206w, csgmbx207w, csgsp201w, csgspdb202w, csgspdb203w, eis206w, esschoco200w, essdhcp200w, esssan202w, iamscript200w, oac201w, sasiw215w, sasiw216w, sasmis200w, sasob200w, savmbkent200w, sdpenc200w, wasspdb200w, wasspdb201w -} - -define hostgroup { - hostgroup_name NS Trust Dev/QA Linux OEL6 - alias Oracle Enterprise Linux 6 Dev/QA hosts in Trust in New South - members roxdb02qa, sdpoam100l, sis123l, sis124l -} - -define hostgroup { - hostgroup_name NS Trust Pre-Production Linux OEL6 - alias Oracle Enterprise Linux 6 Pre-Production hosts in Trust in New South - members essrundeck202l, sasiw219l, sasiw222l, sis214l, sis215l, sis218l, sis219l, sis220l, sis221l -} - -define hostgroup { - hostgroup_name NS Trust Prod Linux OEL6 - alias Oracle Enterprise Linux 6 Production hosts in Trust in New South - members ais211l, aisiw213l, bunk, eis254l, eis286l, eis289l, eis290l, eis294l, eisfax200l, omar, roxdb02, sasiw201l, sasiw220l, sasiw221l, sdpoam200l, sdpoam201l, sdpobi200l, sis200l, sis201l, sis202l, sis203l, sis204l, sis205l, sis206l, sis207l, sis208l, sis209l, sis210l, sis211l, sis212l, sis213l, x210client01, x210client02 -} - -define hostgroup { - hostgroup_name NS Trust Prod Linux OEL5 - alias Oracle Enterprise Linux 5 Production hosts in Trust in New South - members eis208l, prov01 -} - - -########################################### -## -############ AWS - -define hostgroup { - hostgroup_name AWS Untrust Dev/QA Windows - alias Windows Dev/QA hosts in Amazon Cloud - members epm301w.aws, iamshib102w.aws, iamshib103w.aws, puqa05.zeta.adtest, puqa06.zeta.adtest, winqa03.aws, winqa04.aws -} - -define hostgroup { - hostgroup_name AWS Untrust Pre-Production Windows - alias Windows Pre-Production hosts in Amazon Cloud - members iamshib202w.aws, iamshib203w.aws, pdom09.aws, pdom10.aws, win05.aws, win06.aws -} - -define hostgroup { - hostgroup_name AWS Untrust Prod Windows - alias Windows Production hosts in Amazon Cloud -# members -} - -define hostgroup { - hostgroup_name AWS Untrust Dev/QA Linux OEL6 - alias Linux Dev/QA hosts in Amazon Cloud - members cisdrtc100l.aws, epm303l.aws, iamcas102l.aws, iamcas103l.aws -} - -define hostgroup { - hostgroup_name AWS Untrust Pre-Production Linux OEL6 - alias Linux Pre-Production hosts in Amazon Cloud - members iamcas202l.aws, iamcas203l.aws -} - -define hostgroup { - hostgroup_name AWS Untrust Prod Linux OEL6 - alias Linux Production hosts in Amazon Cloud - members cisdrtc200l.aws -} - - -define hostgroup { - hostgroup_name AWS Dev/QA ELB - alias AWS Dev/QA Elastic Load Balancers in Amazon Cloud - members fedqa, idpqa -} - -########################################## -####### -############ Restricted - -define hostgroup { - hostgroup_name 151 Restricted Dev/QA Windows - alias Windows Dev/QA hosts behind Restricted 151 Forrestal - members uhs107w -} - -define hostgroup { - hostgroup_name NS Restricted Dev/QA Windows - alias Windows Dev/QA hosts behind Restricted in New South -# members -} - -define hostgroup { - hostgroup_name 151 Restricted Pre-Production Windows - alias Windows Pre-Production hosts behind Restricted 151 Forrestal -# members -} - -define hostgroup { - hostgroup_name NS Restricted Pre-Production Windows - alias Windows Pre-Production hosts behind Restricted in New South -# members -} - -define hostgroup { - hostgroup_name 151 Restricted Prod Windows - alias Windows Production hosts behind Restricted in 151 Forrestal -# members -} - -define hostgroup { - hostgroup_name NS Restricted Prod Windows - alias Windows Production hosts behind Restricted in New South - members uhs207w -} - -define hostgroup { - hostgroup_name 151 Restricted Dev/QA Linux OEL7 - alias Oracle Enterprise Linux 7 Dev/QA hosts in 151, Restricted zone -# members -} - -define hostgroup { - hostgroup_name NS Restricted Dev/QA Linux OEL7 - alias Oracle Enterprise Linux 7 Dev/QA hosts in New South, Restricted zone -# members -} - -define hostgroup { - hostgroup_name 151 Restricted Pre-Production Linux OEL7 - alias Oracle Enterprise Linux 7 Pre-Production hosts in 151, Restricted zone -# members -} - -define hostgroup { - hostgroup_name NS Restricted Pre-Production Linux OEL7 - alias Oracle Enterprise Linux 7 Pre-Production hosts in New South, Restricted zone -# members -} - -define hostgroup { - hostgroup_name 151 Restricted Prod Linux OEL7 - alias Oracle Enterprise Linux 7 Production hosts in 151, Restricted zone -# members -} - -define hostgroup { - hostgroup_name NS Restricted Prod Linux OEL7 - alias Oracle Enterprise Linux 7 Production hosts in New South, Restricted zone -# members -} - -############################## -## -############ Eisfw F5 - F5 behind the firewall - -define hostgroup { - hostgroup_name 151 Eisfw F5 Dev/QA Windows - alias Windows Dev/QA hosts behind F5 and Eisfw in 151 Forrestal - members aisob110w, aisob111w, aisob310tstw, aisob310w, aisob311tstw, aisob311w, aisupc102w, aisupc103w, csgspfe100w, csgspfe101w, csgwowza300w, iamadfs100w, iamadfs101w, iamduo100w, iamduo101w, iamethos100w, iamethos101w, iamshib100w, iamshib101w, iamshib104w, iamshib105w, iamshib300w, iamshib301w, sasspfe302w, sasspfe303w, sasspfe304w, sasspfe312w, sasspfe313w, sasspfe314w, sasspowa307w, sasspowa317w, uhs109w, uhs110w, wasspowa106w -} - -define hostgroup { - hostgroup_name 151 Eisfw F5 Pre-Production Windows - alias Windows Pre-Production hosts behind F5 and Eisfw in 151 Forrestal - members iamshib204w, iamshib205w -} - -define hostgroup { - hostgroup_name 151 Eisfw F5 Prod Windows - alias Windows Production hosts behind F5 and Eisfw in 151 Forrestal - members amu201w, amu202w, csgwowza202w, iamshib200w, uhs209w, wasspfe202w, wasspfe203w, wasspfe204w, wasspowa207w -} - -define hostgroup { - hostgroup_name 151 Eisfw F5 Dev/QA Linux OEL5 - alias OEL5 Linux Dev/QA hosts behind F5 and Eisfw in 151 Forrestal - members csgsmtp100l -} - -define hostgroup { - hostgroup_name 151 Eisfw F5 Dev/QA Linux OEL6 - alias OEL6 Linux Dev/QA hosts behind F5 and Eisfw in 151 Forrestal - members ais101l, autom100l, autom101l, csgkaltura300l, eisoid101l, eisoid102l, essrundeck100l, essrundeck101l, essrundeck201l, iamcas300l, iamcas301l, iamprox100l, iamprox101l, iamprox102l, iamprox103l, iamprox300l, iamprox301l, iamxythos100l, iamxythos101l, iamxythos300l, iamxythos301l, mon302l, mon303l, reg102l, reg301l, sdpldap100l, sdpldap101l, sdpldap300l, sdpohs101l, sdpovd101l, sdpprox100l, sdpprox101l, sdpprox301l, timeline101l, timeline102l, webhead01-qa, webhead02-qa -} - -define hostgroup { - hostgroup_name 151 Eisfw F5 Pre-Production Linux OEL6 - alias OEL6 Linux Pre-Production hosts behind F5 and Eisfw in 151 Forrestal -# members -} - -define hostgroup { - hostgroup_name 151 Eisfw F5 Prod Linux OEL6 - alias OEL6 Linux Production hosts behind F5 and Eisfw in 151 Forrestal - members ais204l, eisess203l, iso-202l -} - -define hostgroup { - hostgroup_name NS Eisfw F5 Dev/QA Windows - alias Windows Dev/QA hosts behind F5 and Eisfw in New South - members iamadfs300w, iamshib302w, sdpcas100w, sdpcas101w, wassp102w, wassp103w -} - -define hostgroup { - hostgroup_name NS Eisfw F5 Pre-Production Windows - alias Windows Pre-Production hosts behind F5 and Eisfw in New South -# members -} - -define hostgroup { - hostgroup_name NS Eisfw F5 Prod Windows - alias Windows Production hosts behind F5 and Eisfw in New South - members aisob210w, aisob211w, aisupc202w, aisupc203w, csgsp202w, csgsp203w, csgsp204w, csgwowza201w, iamadfs200w, iamadfs201w, iamcas200w, iamcas201w, iamduo200w, iamduo201w, iamethos200w, iamethos201w, iamshib201w, sdp201w, sdpalc200w, sdpcas202w, sdpcas203w, sdpidp202w, sdpidp203w, sdptools200w, uhs210w, wasdocave200w -} - -define hostgroup { - hostgroup_name NS Eisfw F5 Dev/QA Linux OEL6 - alias OEL6 Linux Dev/QA hosts behind F5 and Eisfw in New South - members sdpohs100l, sdpovd100l -} - -define hostgroup { - hostgroup_name NS Eisfw F5 Pre-Production Linux OEL6 - alias OEL6 Linux Pre-Production hosts behind F5 and Eisfw in New South -# members -} - -define hostgroup { - hostgroup_name NS Eisfw F5 Prod Linux OEL6 - alias OEL6 Linux Production hosts behind F5 and Eisfw in New South - members autom200l, autom201l, csgkaltura201l, csgkaltura202l, csgsmtp202l, csgsmtp203l, eisess202l, eisess204l, eisoid201l, eisoid202l, eisoid203l, iamprox200l, iamprox201l, iamxythos200l, iamxythos201l, mon204l, mon205l, reg203l, sdpldap200l, sdpldap201l, sdpohs200l, sdpohs201l, sdpovd200l, sdpovd201l, sdpprox200l, sdpprox201l, timeline201l, timeline202l, webhead01, webhead02 -} - -############################## -## -############ Untrust - -define hostgroup { - hostgroup_name 151 Untrust F5 Dev/QA Windows - alias Windows Dev/QA hosts behind F5 in 151 Forrestal - members csgcas104w, csgcas105w, csghub102w, csghub103w, sdp100w, sdp101w -} - -define hostgroup { - hostgroup_name 151 Untrust F5 Prod Windows - alias Windows Production hosts behind F5 in 151 Forrestal - members csgcas204w -} - -define hostgroup { - hostgroup_name 151 Untrust F5 Prod Linux OEL6 - alias Linux OEL6 Production hosts behind F5 in 151 Forrestal - members cisdrroxen205l, cisdrswh201l, eisess200l, eisess201l -} - -define hostgroup { - hostgroup_name 151 Untrust F5 Pre-Production Linux OEL6 - alias Linux OEL6 Pre-Production hosts behind F5 in 151 Forrestal -# members -} - -define hostgroup { - hostgroup_name NS Untrust F5 Dev/QA Windows - alias Windows Dev/QA hosts behind F5 in New South -# members -} - -define hostgroup { - hostgroup_name NS Untrust F5 Dev/QA Linux OEL6 - alias Linux OEL6 Dev/QA hosts behind F5 in New South -# members -} - -define hostgroup { - hostgroup_name NS Untrust F5 Prod Windows - alias Windows Prod hosts behind F5 in New South - members csgcas205w, csgcas206w, csgcas207w, csglync221w, csglync222w, csglync228w, csglync229w, essrds290w -} - -define hostgroup { - hostgroup_name NS Untrust F5 Prod Linux OEL6 - alias Linux OEL6 Production hosts behind F5 in New South - members cisdrroxen202l, cisdrroxen203l, cisdrroxen204l, cisdrswh200l -} - -define hostgroup { - hostgroup_name NS Untrust F5 Pre-Production Windows - alias Windows Pre-Production hosts behind F5 in New South -# members -} - -define hostgroup { - hostgroup_name NS Untrust F5 Pre-Production Linux OEL6 - alias OEL6 Linux Pre-Production hosts behind F5 in New South -# members -} - -define hostgroup { - hostgroup_name 151 Untrust F5 Dev/QA Linux OEL6 - alias OEL6 Linux Dev/QA hosts behind F5 in 151 Forrestal - members cisdrroxen101l, cisdrswh100l, cisdrswh300l -} - -define hostgroup { - hostgroup_name 151 Untrust Dev/QA Windows - alias Windows Dev/QA hosts outside the firewall in 151 Forrestal - members csgcas301w, csghub302w, csgmbx100w, csgmbx300w, csgmbx303w, csgum107w, eisssrs301w, esspatchtest300, iammimweb300w, iammimweb301w -} - -define hostgroup { - hostgroup_name NS Untrust Dev/QA Windows - alias Windows Dev/QA hosts outside the firewall in New South - members csgcas311w -} - -define hostgroup { - hostgroup_name NS Untrust Pre-Production Windows - alias Windows Pre-Production hosts outside the firewall in New South -# members -} - -define hostgroup { - hostgroup_name 151 Untrust Dev/QA Linux OEL6 - alias OEL6 Linux Dev/QA hosts outside the firewall in 151 Forrestal - members cses01, csglists300l, csglists301l, csgsawmill300l, eis308l, eiscpan102l, eiscpan301l, ele101l, iamroxen301l, iamweb300l, ims311, ims318, nismaster4-dev, nisslave-dev, pol100l, pol101l, prescott, sas100l, sas101l, sas102l, sas103l, sas110l -} - -define hostgroup { - hostgroup_name 151 Untrust Dev/QA Linux OEL5 - alias OEL5 Linux Dev/QA hosts outside the firewall in 151 Forrestal - members dascpan100l, ims302, ims303 -} - -define hostgroup { - hostgroup_name 151 Untrust Pre-Production Linux OEL6 - alias OEL6 Linux Pre-Production hosts outside the firewall in 151 Forrestal -# members -} - -define hostgroup { - hostgroup_name NS Untrust Dev/QA Linux OEL6 - alias OEL6 Linux Dev/QA hosts outside the firewall in New South - members ais208l, ais209l, ais210l, ims319 -} - -define hostgroup { - hostgroup_name NS Untrust Pre-Production Linux OEL6 - alias OEL6 Linux Pre-Production hosts outside the firewall in New South - members epm201l, epm202l, sasiw217l -} - -define hostgroup { - hostgroup_name 151 Untrust Prod Windows - alias Windows Production hosts outside the firewall in 151 Forrestal - members csghub208w, uhs212w, uhs213w -} - -define hostgroup { - hostgroup_name NS Untrust Prod Windows - alias Windows Production hosts outside the firewall in New South - members aissimfony7200w, aissimfony7201w, aissimfony7202w, aissimfony7203w, arc-hestia, csghub209w, csglync227w, csglynce223w, csglynce224w, csglyncm218w, eis-fwmgr, eisprtmgt201w, eisrds201w, eisssrs201w, essosd202w, fac-geoprod, sdp200w, sdp202w -} - -define hostgroup { - hostgroup_name 151 Untrust Prod Linux OEL6 - alias OEL6 Linux Prod hosts outside the firewall in 151 Forrestal - members csglists200l, eistsm207l, eistsm208l, eistsm210l -} - -define hostgroup { - hostgroup_name 151 Untrust Prod Linux OEL5 - alias OEL5 Linux Production hosts outside the firewall in 151 Forrestal - members raas03 -} - -define hostgroup { - hostgroup_name NS Untrust Prod Linux OEL6 - alias OEL6 Linux Production hosts outside the firewall in New South - members ais223l, ais224l, csgsawmill200l, eis222l, eistsm206l, eistsm211l, ele200l, nismaster, nismaster3, nisslave11, nisslave12, sas201l, sas202l, sentinel -} - -define hostgroup { - hostgroup_name NS Untrust Prod Linux OEL5 - alias OEL5 Linux Production hosts outside the firewall in New South - members ims214, ims215 -} - -######################################################## End major zones - -define hostgroup { - hostgroup_name Application Linux Dev/QA - alias Linux Dev/QA servers with application disks - members ais101l, ais111l, ais211l, ais302l, ais309l, ais310l, ais311l, aisiw302l, aisiw303l, asoar301l, eis344l, eisoid101l, eisoid102l, ele303l, ele304l, hoover1, mcgrawect200l, pol202l, prson-proj-dev, roxdb01qa, roxdb02qa, sdpldap100l, sdpldap101l, sdpprox100l, sdpprox101l, sdpprox300l, sdpprox301l, timeline101l, timeline102l, timeline103l, timeline301l, timeline302l, updatespace -} - -define hostgroup { - hostgroup_name Application Linux Production - alias Linux Production servers with application disks - members asoar201l, eisoid201l, eisoid202l, eisoid203l, iamxythos200l, iamxythos201l, iso200l-rencif, mol200l, mon204l, mon205l, net200l-config, oaamx201l, oaamx202l, prson-proj-prod, roxdb01, roxdb02, sdpldap200l, sdpldap201l, sdpprox200l, sdpprox201l, sentinel, timeline201l, timeline202l, timeline203l, timeline204l, timeline205l -} - -define hostgroup { - hostgroup_name Exceptions - alias Hosts for which the application owners want to receive all or most of ESS checks - members ais218l -} - -define hostgroup { - hostgroup_name Netmgmt - alias Net management interfaces (DRAC, ALOM) - members csgspdb202w-netmgt, csgspdb203w-netmgt, das210w-netmgt, dev203w-netmgt, eis208l-drac, eis319l-netmgt, eissql100w-netmgt, eissql101w-netmgt, eissql105w-netmgt, eissql203w-netmgt, eissql204w-netmgt, eissql206w-netmgt, eissql207w-netmgt, eissql210w-netmgt, eissql211w-netmgt, eistsm206l-netmgt, eistsm207l-netmgt, eistsm208l-netmgt, eistsm210l-netmgt, eistsm211l-netmgt, essconsole201w-netmgt, essvmbkp100w-netmgt, essvmbkp200w-netmgt, essvmbkp201w-netmgt, essesx200v-netmgt, essesx201v-netmgt, essesx202v-netmgt, essesx203v-netmgt, essesx211v-netmgt, essesx212v-netmgt, essesx213v-netmgt, essesx214v-netmgt, essesx215v-netmgt, essesx216v-netmgt, essesx217v-netmgt, essesx218v-netmgt, essesx220v-netmgt, essesx221v-netmgt, essesx240v-netmgt, essesx241v-netmgt, essesx242v-netmgt, essesx290v-netmgt, essesx291v-netmgt, essesx292v-netmgt, fac-infoctr1-netmgt, iamencoder204w-netmgt, iamencoder205w-netmgt, iamencoder206w-netmgt, hoover1-netmgt, ims204-netmgt, isserv215-netmgt, isserv216-netmgt, lsscvms207w-netmgt, nismaster-netmgt, pdom06-netmgt, pdom07-netmgt, prz203w-netmgt, roxdb01-netmgt, roxdb01qa-netmgt, roxdb02-netmgt, roxdb02qa-netmgt, sdpldap101l-netmgt, sentinel-netmgt, wasspdb200w-netmgt, wasspdb201w-netmgt, win04-netmgt -} - -# hostgroups Solaris -define hostgroup { - hostgroup_name Solaris - alias Solaris production systems - members isserv215, isserv216 -} - - -define hostgroup { - hostgroup_name HPE - alias Physical HPE servers - hostgroup_members ESX HPE oob, Physical Prod Windows HPE, Physical Dev/QA Windows HPE -} - -define hostgroup { - hostgroup_name Physical Prod Windows HPE - alias HPE Production Windows hosts - members eissql210w-netmgt, eissql211w-netmgt, essvmbkp200w, essvmbkp200w-netmgt, essvmbkp201w, essvmbkp201w-netmgt -} - -define hostgroup { - hostgroup_name Physical Dev/QA Windows HPE - alias HPE Dev/QA Windows hosts - members eissql105w-netmgt - hostgroup_members Physical Pre-Production Windows HPE -} - -define hostgroup { - hostgroup_name Physical Pre-Production Windows HPE - alias HPE Pre-Production Windows hosts -# members -} - - -define hostgroup { - hostgroup_name Physical Prod Windows - alias Physical Production Windows hosts with OpenManage - members csgspdb202w, csgspdb203w, das210w, das211w, dev203w, eissql203w, eissql204w, eissql206w, eissql207w, essconsole201w, fac-infoctr1, iamencoder204w, iamencoder205w, iamencoder206w, lsscvms207w, pdom06.pu.win, pdom07.pu.win, prz203w, wasspdb200w, wasspdb201w, win04.win -} - -define hostgroup { - hostgroup_name Physical Dev/QA Windows - alias Physical Development Windows hosts with OpenManage - members ais313w, eissql100w, eissql101w, essvmbkp100w - hostgroup_members Physical Pre-Production Windows -} - -define hostgroup { - hostgroup_name Physical Pre-Production Windows - alias Pre-Production Windows Dev/QA Physical hosts -# members -} - -define hostgroup { - hostgroup_name Physical Prod Linux - alias Physical Production Linux hosts with OpenManage - members eis208l, eistsm206l, eistsm207l, eistsm208l, eistsm210l, eistsm211l, ims204, nismaster, roxdb01, roxdb02, sentinel -} - -define hostgroup { - hostgroup_name Physical Dev/QA Linux - alias Physical Development Linux hosts with OpenManage - members eis319l, hoover1, roxdb01qa, roxdb02qa, sdpldap101l - hostgroup_members Physical Pre-Production Linux -} - -define hostgroup { - hostgroup_name Physical Pre-Production Linux - alias Pre-Production Linux Dev/QA Physical hosts -# members -} - -define hostgroup { - hostgroup_name Netmgmt - No SSH - alias Net management interfaces without SSH check - members eis319l-netmgt, essesx290v-netmgt, essesx291v-netmgt, essesx292v-netmgt, hoover1-netmgt, lsscvms207w-netmgt -} - -define hostgroup { - hostgroup_name ZETA - alias ZETA AD Domain member hosts - members csgcas104w, csgcas105w, csghub102w, csghub103w, csgmbx100w, csgum107w, eis105w, puqa01.zeta.adtest, puqa02.zeta.adtest, sdpepo100w, sql-zeta2, winqa01.adtest, winqa02.adtest -} - -define hostgroup { - hostgroup_name PUDev - alias PUDev AD Machines - members csgcas301w, csgcas311w, csghub302w, csgmbx300w, csgmbx303w, pudev02.pudev.windev, windev02.windev -} - -define hostgroup { - hostgroup_name 32bit Linux - alias Linux x86 machines - members devprov01, harris, ims214, ims215, ims302, ims303, prov01, qaprov01 -} - - - - -define host { - host_name a10-nat-a-infranet1 - alias a10-nat-a-infranet1.Princeton.EDU - address 172.18.0.207 - hostgroups A10 NATs, Rover hosts - use Rover device -} - - -define host { - host_name a10-nat-a-plinknet4 - alias a10-nat-a-plinknet4.Princeton.EDU - address 192.168.9.29 - hostgroups A10 NATs, Rover hosts - use Rover device -} - - -define host { - host_name a10-nat-b-infranet1 - alias a10-nat-b-infranet1.Princeton.EDU - address 172.18.2.159 - hostgroups A10 NATs, Rover hosts - use Rover device -} - - -define host { - host_name a10-nat-b-plinknet4 - alias a10-nat-b-plinknet4.Princeton.EDU - address 192.168.9.28 - hostgroups A10 NATs, Rover hosts - use Rover device -} - - -define host { - host_name a10-nat-group1-plinknet4 - alias a10-nat-group1-plinknet4.Princeton.EDU - address 192.168.9.30 - hostgroups A10 NATs, Rover hosts - use Rover device -} - - -define host { - host_name a10-nat-group2-plinknet4 - alias a10-nat-group2-plinknet4.Princeton.EDU - address 192.168.9.27 - hostgroups A10 NATs, Rover hosts - use Rover device -} - - -define host { - host_name aruba-rap-1 - alias aruba-rap-1.Princeton.EDU - address 128.112.129.119 - hostgroups Aruba Remote Access Controllers, Rover hosts - use Rover device -} - - -define host { - host_name aruba-rap-2 - alias aruba-rap-2.Princeton.EDU - address 128.112.130.252 - hostgroups Aruba Remote Access Controllers, Rover hosts - use Rover device -} - - -define host { - host_name aruba-rap-spare - alias aruba-rap-spare.Princeton.EDU - address 140.180.226.237 - hostgroups Aruba Remote Access Controllers, Rover hosts - use Rover device -} - - -define host { - host_name aruba-rap-vrrp - alias aruba-rap-vrrp.Princeton.EDU - address 128.112.132.231 - hostgroups Aruba Remote Access Controllers, Rover hosts - use Rover device -} - - -define host { - host_name arap-16stockton - alias arap-16stockton.Princeton.EDU - address 173.12.57.1 - hostgroups Aruba Remote Access Points, Rover hosts - use Rover device -} - - -define host { - host_name arap-67collegeroadwest - alias arap-67collegeroadwest.Princeton.EDU - address 50.192.247.89 - hostgroups Aruba Remote Access Points, Rover hosts - use Rover device -} - - -define host { - host_name arap-lowrie-comcast - alias arap-lowrie-comcast.Princeton.EDU - address 74.94.57.41 - hostgroups Aruba Remote Access Points, Rover hosts - use Rover device -} - - -define host { - host_name arap-ogadc - alias arap-ogadc.Princeton.EDU - address 38.118.24.29 - hostgroups Aruba Remote Access Points, Rover hosts - use Rover device -} - - -define host { - host_name fiosrouter-lowrie - alias fiosrouter-lowrie.Princeton.EDU - address 71.168.218.1 - hostgroups Aruba Remote Access Points, Rover hosts - use Rover device -} - - -define host { - host_name aruba-controller-101 - alias aruba-controller-101.Princeton.EDU - address 172.18.79.233 - hostgroups Aruba wireless controllers, Rover hosts - use Rover device -} - - -define host { - host_name aruba-controller-102 - alias aruba-controller-102.Princeton.EDU - address 172.18.79.232 - hostgroups Aruba wireless controllers, Rover hosts - use Rover device -} - - -define host { - host_name aruba-controller-103 - alias aruba-controller-103.Princeton.EDU - address 172.18.79.220 - hostgroups Aruba wireless controllers, Rover hosts - use Rover device -} - - -define host { - host_name aruba-controller-104 - alias aruba-controller-104.Princeton.EDU - address 172.18.79.221 - hostgroups Aruba wireless controllers, Rover hosts - use Rover device -} - - -define host { - host_name aruba-controller-105 - alias aruba-controller-105.Princeton.EDU - address 172.18.79.231 - hostgroups Aruba wireless controllers, Rover hosts - use Rover device -} - - -define host { - host_name aruba-controller-106 - alias aruba-controller-106.Princeton.EDU - address 172.18.79.230 - hostgroups Aruba wireless controllers, Rover hosts - use Rover device -} - - -define host { - host_name aruba-controller-107 - alias aruba-controller-107.Princeton.EDU - address 172.18.79.229 - hostgroups Aruba wireless controllers, Rover hosts - use Rover device -} - - -define host { - host_name aruba-controller-108 - alias aruba-controller-108.Princeton.EDU - address 172.18.79.228 - hostgroups Aruba wireless controllers, Rover hosts - use Rover device -} - - -define host { - host_name aruba-controller-109 - alias aruba-controller-109.Princeton.EDU - address 172.18.79.227 - hostgroups Aruba wireless controllers, Rover hosts - use Rover device -} - - -define host { - host_name aruba-controller-110 - alias aruba-controller-110.Princeton.EDU - address 172.18.79.226 - hostgroups Aruba wireless controllers, Rover hosts - use Rover device -} - - -define host { - host_name aruba-controller-111 - alias aruba-controller-111.Princeton.EDU - address 172.18.79.225 - hostgroups Aruba wireless controllers, Rover hosts - use Rover device -} - - -define host { - host_name aruba-controller-112 - alias aruba-controller-112.Princeton.EDU - address 172.18.79.224 - hostgroups Aruba wireless controllers, Rover hosts - use Rover device -} - - -define host { - host_name aruba-controller-113 - alias aruba-controller-113.Princeton.EDU - address 172.18.79.223 - hostgroups Aruba wireless controllers, Rover hosts - use Rover device -} - - -define host { - host_name aruba-controller-114 - alias aruba-controller-114.Princeton.EDU - address 172.18.79.222 - hostgroups Aruba wireless controllers, Rover hosts - use Rover device -} - - -define host { - host_name aruba-controller-115 - alias aruba-controller-115.Princeton.EDU - address 172.18.79.218 - hostgroups Aruba wireless controllers, Rover hosts - use Rover device -} - - -define host { - host_name aruba-controller-116 - alias aruba-controller-116.Princeton.EDU - address 172.18.79.217 - hostgroups Aruba wireless controllers, Rover hosts - use Rover device -} - - -define host { - host_name aruba-dev - alias aruba-dev.Princeton.EDU - address 172.18.79.250 - hostgroups Aruba wireless controllers, Rover hosts - use Rover device -} - - -define host { - host_name aruba-master4-backup - alias aruba-master4-backup.Princeton.EDU - address 172.18.79.235 - hostgroups Aruba wireless controllers, Rover hosts - use Rover device -} - - -define host { - host_name aruba-master4 - alias aruba-master4.Princeton.EDU - address 172.18.79.236 - hostgroups Aruba wireless controllers, Rover hosts - use Rover device -} - - -define host { - host_name cablemodem-16stockton - alias cablemodem-16stockton.Princeton.EDU - address 173.12.57.6 - hostgroups Cable Modems, Rover hosts - use Rover device -} - - -define host { - host_name cablemodem-67collegeroadwest - alias cablemodem-67collegeroadwest.Princeton.EDU - address 50.192.247.94 - hostgroups Cable Modems, Rover hosts - use Rover device -} - - -define host { - host_name cablemodem-lowrie - alias cablemodem-lowrie.Princeton.EDU - address 74.94.57.46 - hostgroups Cable Modems, Rover hosts - use Rover device -} - -# -# $Header: /usr/local/monitoring/nagios/etc/hosts/RCS/csg-vips.cfg,v 1.4 2013/07/22 15:38:52 nagios Exp nagios $ -# -# CSG VIP's -# - -define host { - host_name csghubprod - alias csghubprod.Princeton.EDU - address 140.180.223.18 - use generic-host - check_interval 0 - contacts CISDR, CSG OnCall -} - - -define host { - host_name csgspdb1a-c - alias csgspdb1a-c.Princeton.EDU - address 10.6.52.203 - _IP_MAC1 10.6.52.203 <=> 0:0:0:0:2:31 - _SUBNET1 fw-servernet-3 (Trust - VLAN 1049 - .52) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2012-01-10 - _date_changed 2016-07-11 - contacts DBA Important List - _contacts winmail@princeton.edu - use generic-host -} - - -define host { - host_name csgspdb1a - alias csgspdb1a.Princeton.EDU - address 10.6.52.202 - _IP_MAC1 10.6.52.202 <=> 0:0:0:0:2:30 - _SUBNET1 fw-servernet-3 (Trust - VLAN 1049 - .52) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2012-01-10 - _date_changed 2016-07-15 - contacts DBA Important List - _contacts winmail@princeton.edu - use generic-host -} - - -define host { - host_name csgspdb2a-c - alias csgspdb2a-c.Princeton.EDU - address 10.6.52.212 - _IP_MAC1 10.6.52.212 <=> 0:0:0:0:2:34 - _SUBNET1 fw-servernet-3 (Trust - VLAN 1049 - .52) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2012-03-14 - _date_changed 2016-08-10 - contacts DBA Important List - _contacts winmail@princeton.edu - use generic-host -} - - -define host { - host_name csgspdb2a - alias csgspdb2a.Princeton.EDU - address 10.6.52.211 - _IP_MAC1 10.6.52.211 <=> 0:0:0:0:2:33 - _SUBNET1 fw-servernet-3 (Trust - VLAN 1049 - .52) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VM, - - _date_created 2012-03-14 - _date_changed 2016-08-10 - contacts DBA Important List - _contacts winmail@princeton.edu - use generic-host -} - - -define host { - host_name lists - alias lists.Princeton.EDU - address 128.112.131.33 - use generic-host - check_interval 0 - contacts CISDR, CSG OnCall -} - -define host { - host_name oldsmtp - alias oldsmtp.Princeton.EDU - address 10.6.58.27 - use generic-host - check_interval 0 - contacts CISDR, CSG OnCall -} - -define host { - host_name ppa01 - alias ppa01.Princeton.EDU - address 128.112.128.213 - use generic-host - check_interval 0 - contacts CISDR, CSG OnCall -} - -define host { - host_name ppa02 - alias ppa02.Princeton.EDU - address 128.112.128.216 - use generic-host - check_interval 0 - contacts CISDR, CSG OnCall -} - -define host { - host_name ppa03 - alias ppa03.Princeton.EDU - address 128.112.128.214 - use generic-host - check_interval 0 - contacts CISDR, CSG OnCall -} - -define host { - host_name ppa04 - alias ppa04.Princeton.EDU - address 128.112.128.215 - use generic-host - check_interval 0 - contacts CISDR, CSG OnCall -} - -define host { - host_name ppsqm - alias ppsqm.princeton.edu - address 128.112.128.212 - use generic-host - check_interval 0 - #contacts CISDR, CSG OnCall - contacts nagiosadmin - contact_groups null -} - -define host { - host_name ppvm - alias ppvm.Princeton.EDU - address 128.112.128.243 - use generic-host - check_interval 0 - #contacts CISDR, CSG OnCall - contacts nagiosadmin - contact_groups null -} - -define host { - host_name smtp - alias smtp.Princeton.EDU - address 140.180.222.58 - use generic-host - check_interval 0 - contacts CISDR, CSG OnCall -} - -define host { - host_name deptbedit - alias deptbedit.Princeton.EDU - address 140.180.220.200 - use generic-host - check_interval 0 - contacts CISDR, CSG OnCall -} - -define host { - host_name www-dept-edit - alias www-dept-edit.Princeton.EDU - address 140.180.220.199 - use generic-host - check_interval 0 - contacts CISDR, CSG OnCall -} - -define host { - host_name aisedit - alias aisedit.Princeton.EDU - address 140.180.220.196 - use generic-host - check_interval 0 - contacts CISDR, CSG OnCall -} - -define host { - host_name exchangeimap - alias exchangeimap.Princeton.EDU - _alias1 discover - _alias2 exchangeimap - _alias3 foundry-lb-vip-96 - _alias4 autodiscover - _alias5 autodiscover.exchange - address 140.180.223.46 - _IP_MAC1 140.180.223.46 <=> 0:0:0:ff:0:a3 - _SUBNET1 lb-vipnet-2 (Untrust - VLAN 4075 - .223.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room MR,VI,Foundry - _date_created 2010-03-04 - _date_changed 2014-09-22 - contacts CISDR, CSG OnCall - _contacts unix@princeton.edu - use generic-host -} - -define host { - host_name puwowzalive - alias puwowzalive.Princeton.EDU - address 140.180.222.84 - use generic-host - check_interval 0 - contacts CISDR, CSG OnCall -} - - -define host { - host_name eissql1b - alias eissql1b.Princeton.EDU - address 10.6.50.17 - _IP_MAC1 10.6.50.17 <=> 0:0:0:69:c5:a5 - _SUBNET1 fw-servernet-2 (PrivateDMZ - VLAN 1047 - .48) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room mr, vi, eissql100w-eissql101w - _date_created 2013-09-10 - _date_changed 2017-03-20 - contacts DBA Important List - _contacts dbas@princeton.edu, winmail@princeton.edu - use generic-host -} - - -define host { - host_name eissql1c - alias eissql1c.Princeton.EDU - address 10.6.48.128 - contacts DBA Important List - use generic-host -} - - -define host { - host_name eissql2a - alias eissql2a.Princeton.EDU - address 10.6.50.159 - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, VIP, -, eissql206w, eissql207w - _date_created 2011-02-25 - _date_changed 2017-05-31 - contacts DBA Important List - _contacts winmail@princeton.edu - use generic-host -} - - -define host { - host_name eissql2b - alias eissql2b.Princeton.EDU - address 10.6.50.178 - _department Tower Club - _building New South - _room mr, vip, eissql203w-eissql204w - _date_created 2014-06-10 - _date_changed 2015-06-04 - contacts DBA Important List - _contacts dbas@princeton.edu, winmail@princeton.edu - use generic-host -} - - -define host { - host_name eissql3a - alias eissql3a.Princeton.EDU - address 10.6.50.23 - contacts DBA Important List - use generic-host -} - - -define host { - host_name sasspdb3a - alias sasspdb3a.Princeton.EDU - address 10.6.52.70 - contacts DBA Important List - use generic-host - parents sasspdb308w, sasspdb309w -} - - -define host { - host_name wasspdb1a - alias wasspdb1a.Princeton.EDU - address 10.6.52.45 - contacts DBA Important List - use generic-host - parents wasspdb100w, wasspdb101w -} - - -define host { - host_name wasspdb2a - alias wasspdb2a.Princeton.EDU - address 10.6.53.11 - contacts DBA Important List - use generic-host - parents wasspdb200w, wasspdb201w -} - - - -define host { - host_name ups-sda-fristm24-bdf - alias ups-sda-fristm24-bdf.Princeton.EDU - address 172.18.3.166 - hostgroups Dining Services, Rover hosts - use Rover device -} - - -define host { - host_name ups-sda-forbes-bdf - alias ups-sda-forbes-bdf.Princeton.EDU - address 172.18.33.171 - hostgroups Dining Services, Rover hosts - use Rover device -} - - -define host { - host_name ups-sda-fristma4-idf - alias ups-sda-fristma4-idf.Princeton.EDU - address 172.18.3.167 - hostgroups Dining Services, Rover hosts - use Rover device -} - - -define host { - host_name ups-sda-grad-b16d-idf - alias ups-sda-grad-b16d-idf.Princeton.EDU - address 172.18.32.237 - hostgroups Dining Services, Rover hosts - use Rover device -} - - -define host { - host_name ups-sda-hamilton-bdf - alias ups-sda-hamilton-bdf.Princeton.EDU - address 172.18.33.172 - hostgroups Dining Services, Rover hosts - use Rover device -} - - -define host { - host_name ups-sda-madison-bdf-dining - alias ups-sda-madison-bdf-dining.Princeton.EDU - address 172.18.0.209 - hostgroups Dining Services, Rover hosts - use Rover device -} - - -define host { - host_name ups-sda-madison-bdf2 - alias ups-sda-madison-bdf2.Princeton.EDU - address 172.18.4.46 - hostgroups Dining Services, Rover hosts - use Rover device -} - - -define host { - host_name ups-sda-madison-idf - alias ups-sda-madison-idf.Princeton.EDU - address 172.18.3.51 - hostgroups Dining Services, Rover hosts - use Rover device -} - - -define host { - host_name ups-sda-northhallb-bdf1 - alias ups-sda-northhallb-bdf1.Princeton.EDU - address 172.18.33.174 - hostgroups Dining Services, Rover hosts - use Rover device -} - - -define host { - host_name ups-sda-northhallb-bdf2 - alias ups-sda-northhallb-bdf2.Princeton.EDU - address 172.18.33.173 - hostgroups Dining Services, Rover hosts - use Rover device -} - - -define host { - host_name ups-sda-northhallb-bdf3 - alias ups-sda-northhallb-bdf3.Princeton.EDU - address 172.18.32.236 - hostgroups Dining Services, Rover hosts - use Rover device -} - - -define host { - host_name ups-sda-wilcox-bdf2 - alias ups-sda-wilcox-bdf2.Princeton.EDU - address 172.18.4.45 - hostgroups Dining Services, Rover hosts - use Rover device -} - - - -define host { - host_name ebt-200-elm-webs-server.voip - alias ebt-200-elm-webs-server.voip.princeton.edu - address 10.2.48.100 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-200-elm-net-page-t01-t04.voip - alias ebt-200-elm-net-page-t01-t04.voip.princeton.edu - address 10.2.48.101 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-200-elm-net-page-t05-t08.voip - alias ebt-200-elm-net-page-t05-t08.voip.princeton.edu - address 10.2.48.102 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-200-elm-net-page-t09-t12.voip - alias ebt-200-elm-net-page-t09-t12.voip.princeton.edu - address 10.2.48.103 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-200-elm-net-page-t13-t16.voip - alias ebt-200-elm-net-page-t13-t16.voip.princeton.edu - address 10.2.48.104 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-200-elm-net-page-t17-t20.voip - alias ebt-200-elm-net-page-t17-t20.voip.princeton.edu - address 10.2.48.105 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-200-elm-net-page-t21-t24.voip - alias ebt-200-elm-net-page-t21-t24.voip.princeton.edu - address 10.2.48.106 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-200-elm-net-page-t25-t28.voip - alias ebt-200-elm-net-page-t25-t28.voip.princeton.edu - address 10.2.48.107 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-200-elm-net-page-t29-t32.voip - alias ebt-200-elm-net-page-t29-t32.voip.princeton.edu - address 10.2.48.108 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-185-nassau-phone.voip - alias ebt-185-nassau-phone.voip.princeton.edu - address 10.2.48.125 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-185-nassau-audio.voip - alias ebt-185-nassau-audio.voip.princeton.edu - address 10.2.48.126 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-dickinson-phone.voip - alias ebt-dickinson-phone.voip.princeton.edu - address 10.2.48.127 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-dickinson-audio.voip - alias ebt-dickinson-audio.voip.princeton.edu - address 10.2.48.128 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-corwin-hall-phone.voip - alias ebt-corwin-hall-phone.voip.princeton.edu - address 10.2.48.129 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-corwin-hall-audio.voip - alias ebt-corwin-hall-audio.voip.princeton.edu - address 10.2.48.130 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-lca-79078-phone.voip - alias ebt-lca-79078-phone.voip.princeton.edu - address 10.2.48.171 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-lca-79078-audio.voip - alias ebt-lca-79078-audio.voip.princeton.edu - address 10.2.48.172 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-marx-phone.voip - alias ebt-marx-phone.voip.princeton.edu - address 10.2.48.133 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-marx-audio.voip - alias ebt-marx-audio.voip.princeton.edu - address 10.2.48.134 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-murray-dodge-phone.voip - alias ebt-murray-dodge-phone.voip.princeton.edu - address 10.2.48.135 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-murray-dodge-audio.voip - alias ebt-murray-dodge-audio.voip.princeton.edu - address 10.2.48.136 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-alexander-hall-phone.voip - alias ebt-alexander-hall-phone.voip.princeton.edu - address 10.2.48.137 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-alexander-hall-audio.voip - alias ebt-alexander-hall-audio.voip.princeton.edu - address 10.2.48.138 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-u-store-phone.voip - alias ebt-u-store-phone.voip.princeton.edu - address 10.2.48.139 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-u-store-audio.voip - alias ebt-u-store-audio.voip.princeton.edu - address 10.2.48.140 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-little-hall-phone.voip - alias ebt-little-hall-phone.voip.princeton.edu - address 10.2.48.141 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-little-hall-audio.voip - alias ebt-little-hall-audio.voip.princeton.edu - address 10.2.48.142 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-spelman-hall-phone.voip - alias ebt-spelman-hall-phone.voip.princeton.edu - address 10.2.48.143 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-spelman-hall-audio.voip - alias ebt-spelman-hall-audio.voip.princeton.edu - address 10.2.48.144 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-1937-hall-phone.voip - alias ebt-1937-hall-phone.voip.princeton.edu - address 10.2.48.145 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-1937-hall-audio.voip - alias ebt-1937-hall-audio.voip.princeton.edu - address 10.2.48.146 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-lewis-library-phone.voip - alias ebt-lewis-library-phone.voip.princeton.edu - address 10.2.48.147 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - check_command check_alive_ssh - contacts EBT -} - - -define host { - host_name ebt-lewis-library-audio.voip - alias ebt-lewis-library-audio.voip.princeton.edu - address 10.2.48.148 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-scully-goheen-walk-phone.voip - alias ebt-scully-goheen-walk-phone.voip.princeton.edu - address 10.2.48.149 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-scully-goheen-walk-audio.voip - alias ebt-scully-goheen-walk-audio.voip.princeton.edu - address 10.2.48.150 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-1915-hall-phone.voip - alias ebt-1915-hall-phone.voip.princeton.edu - address 10.2.48.151 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-1915-hall-audio.voip - alias ebt-1915-hall-audio.voip.princeton.edu - address 10.2.48.152 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-princeton-station-lot-phone.voip - alias ebt-princeton-station-lot-phone.voip.princeton.edu - address 10.2.48.153 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-princeton-station-lot-audio.voip - alias ebt-princeton-station-lot-audio.voip.princeton.edu - address 10.2.48.154 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-new-south-phone.voip - alias ebt-new-south-phone.voip.princeton.edu - address 10.2.48.155 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-new-south-audio.voip - alias ebt-new-south-audio.voip.princeton.edu - address 10.2.48.156 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-forbes-college-phone.voip - alias ebt-forbes-college-phone.voip.princeton.edu - address 10.2.48.157 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-forbes-college-audio.voip - alias ebt-forbes-college-audio.voip.princeton.edu - address 10.2.48.158 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-grad-college-phone.voip - alias ebt-grad-college-phone.voip.princeton.edu - address 10.2.48.159 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-grad-college-audio.voip - alias ebt-grad-college-audio.voip.princeton.edu - address 10.2.48.160 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-roberts-stadium-phone.voip - alias ebt-roberts-stadium-phone.voip.princeton.edu - address 10.2.48.161 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-roberts-stadium-audio.voip - alias ebt-roberts-stadium-audio.voip.princeton.edu - address 10.2.48.162 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-princeton-stadium-phone.voip - alias ebt-princeton-stadium-phone.voip.princeton.edu - address 10.2.48.163 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-princeton-stadium-audio.voip - alias ebt-princeton-stadium-audio.voip.princeton.edu - address 10.2.48.164 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-denunzio-pool-phone.voip - alias ebt-denunzio-pool-phone.voip.princeton.edu - address 10.2.48.165 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-denunzio-pool-audio.voip - alias ebt-denunzio-pool-audio.voip.princeton.edu - address 10.2.48.166 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-nuero-science-south-phone.voip - alias ebt-nuero-science-south-phone.voip.princeton.edu - address 10.2.48.167 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-nuero-science-south-audio.voip - alias ebt-nuero-science-south-audio.voip.princeton.edu - address 10.2.48.168 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-lot-23-phone.voip - alias ebt-lot-23-phone.voip.princeton.edu - address 10.2.48.169 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-lot-23-audio.voip - alias ebt-lot-23-audio.voip.princeton.edu - address 10.2.48.170 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-lawrence-apt-phone.voip - alias ebt-lawrence-apt-phone.voip.princeton.edu - address 10.2.48.173 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-lawrence-apt-audio.voip - alias ebt-lawrence-apt-audio.voip.princeton.edu - address 10.2.48.174 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-lightning-shelter-phone.voip - alias ebt-lightning-shelter-phone.voip.princeton.edu - address 10.2.48.175 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-lightning-shelter-audio.voip - alias ebt-lightning-shelter-audio.voip.princeton.edu - address 10.2.48.176 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-lake-71231-phone.voip - alias ebt-lake-71231-phone.voip.princeton.edu - address 10.2.48.178 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-lake-71231-audio.voip - alias ebt-lake-71231-audio.voip.princeton.edu - address 10.2.48.179 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-andlinger-79077-phone.voip - alias ebt-andlinger-79077-phone.voip.princeton.edu - address 10.2.48.131 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - -define host { - host_name ebt-andlinger-79077-audio.voip - alias ebt-andlinger-79077-audio.voip.princeton.edu - address 10.2.48.132 - use generic-host - check_interval 1 - retry_interval 1 - max_check_attempts 3 - contacts EBT -} - - - - -define host { - host_name eis202lb-ha - alias eis202lb-ha.Princeton.EDU - address 192.168.4.141 -# _IP_MAC1 192.168.4.138 <=> N/A -# _SUBNET1 f5-heartbeat-1 -# _department Enterprise Infrastructure Services, Office of Information Technology -# _building New South -# _room MR, RK, E2 -# _date_created 2013-10-04 -# _date_changed 2013-12-12 -# _contacts unix@princeton.edu - use Router/Switch/Load Balancer -} - - -define host { - host_name eis202lb-router-fw - alias eis202lb-router-fw.Princeton.EDU - address 192.168.9.45 - _IP_MAC1 10.6.57.2 <=> N/A - _SUBNET1 lb-servernet-6 (EISFW - VLAN 4074 - .57) - _IP_MAC2 10.6.56.2 <=> N/A - _SUBNET2 lb-servernet-5 (EISFW - VLAN 4073 - .56) - _IP_MAC3 192.168.9.45 <=> N/A - _SUBNET3 plinknet8 - _IP_MAC4 10.6.63.98 <=> N/A - _SUBNET4 lb-servernet-10 (EISFW - VLAN 4076 - .63.96) - _IP_MAC5 10.6.55.2 <=> N/A - _SUBNET5 lb-servernet-4 (EISFW - VLAN 4072 - .55) - _IP_MAC6 140.180.219.130 <=> N/A - _SUBNET6 lb-servernet-11 (EISFW - .219.128) - _IP_MAC7 140.180.223.130 <=> N/A - _SUBNET7 lb-servernet-9 (EISFW - VLAN 1712 - 223.128) - _IP_MAC8 10.6.54.2 <=> N/A - _SUBNET8 lb-servernet-3 (EISFW - VLAN 4071 - .54) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room MR, RK, E2 - _date_created 2014-02-21 - _date_changed 2015-02-16 - _contacts unix@princeton.edu - use Router/Switch/Load Balancer -} - - -define host { - host_name eis202lb-router1 - alias eis202lb-router1.Princeton.EDU - address 192.168.9.93 - _IP_MAC1 10.6.62.2 <=> N/A - _SUBNET1 lb-servernet-2 (Untrust - VLAN 1045 - .62) - _IP_MAC2 192.168.9.93 <=> N/A - _SUBNET2 plinknet20 - _IP_MAC3 10.6.60.130 <=> N/A - _SUBNET3 lb-servernet-7 (Untrust - VLAN 4054 - .60.128) - _IP_MAC4 10.6.61.2 <=> N/A - _SUBNET4 lb-servernet-1 (Untrust - VLAN 1048 - .61) - _IP_MAC5 10.6.60.194 <=> N/A - _SUBNET5 lb-servernet-8 (Untrust - VLAN 4055 - .60.192) - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room MR, RK, E2 - _date_created 2013-10-03 - _date_changed 2014-07-08 - _contacts unix@princeton.edu - use Router/Switch/Load Balancer -} - - -define host { - host_name eis202lb - alias eis202lb.Princeton.EDU - address 172.18.3.102 -# _IP_MAC1 172.19.1.73 <=> N/A -# _SUBNET1 tbnnet -# _department Enterprise Infrastructure Services, Office of Information Technology -# _building New South -# _room MR, RK, E2 -# _date_created 2011-10-20 -# _date_changed 2013-12-12 -# _contacts unix@princeton.edu - contacts Hajar Pager, Networking - use Router/Switch/Load Balancer -} - - -define host { - host_name eis203lb-ha - alias eis203lb-ha.Princeton.EDU - address 192.168.4.142 -# _IP_MAC1 192.168.4.145 <=> 0:1:d7:bb:a2:c3 -# _SUBNET1 f5-heartbeat-1 -# _department Enterprise Infrastructure Services, Office of Information Technology -# _building 151 Forrestal Rd. -# _room MR, AI, eis203lb -# _date_created 2014-02-04 -# _date_changed 2014-05-29 -# _contacts unix@princeton.edu - use Router/Switch/Load Balancer -} - - -define host { - host_name eis203lb-router-fw - alias eis203lb-router-fw.Princeton.EDU - address 192.168.9.44 - _IP_MAC1 10.6.57.3 <=> N/A - _SUBNET1 lb-servernet-6 (EISFW - VLAN 4074 - .57) - _IP_MAC2 10.6.54.3 <=> N/A - _SUBNET2 lb-servernet-3 (EISFW - VLAN 4071 - .54) - _IP_MAC3 140.180.223.131 <=> N/A - _SUBNET3 lb-servernet-9 (EISFW - VLAN 1712 - 223.128) - _IP_MAC4 140.180.219.131 <=> N/A - _SUBNET4 lb-servernet-11 (EISFW - .219.128) - _IP_MAC5 10.6.63.99 <=> N/A - _SUBNET5 lb-servernet-10 (EISFW - VLAN 4076 - .63.96) - _IP_MAC6 192.168.9.44 <=> N/A - _SUBNET6 plinknet8 - _IP_MAC7 10.6.56.3 <=> N/A - _SUBNET7 lb-servernet-5 (EISFW - VLAN 4073 - .56) - _IP_MAC8 10.6.55.3 <=> N/A - _SUBNET8 lb-servernet-4 (EISFW - VLAN 4072 - .55) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR,VI,Eis203lb - _date_created 2014-02-21 - _date_changed 2015-02-16 - _contacts unix@princeton.edu - use Router/Switch/Load Balancer -} - - -define host { - host_name eis203lb-router1 - alias eis203lb-router1.Princeton.EDU - address 192.168.9.92 - _IP_MAC1 10.6.61.3 <=> N/A - _SUBNET1 lb-servernet-1 (Untrust - VLAN 1048 - .61) - _IP_MAC2 10.6.62.3 <=> N/A - _SUBNET2 lb-servernet-2 (Untrust - VLAN 1045 - .62) - _IP_MAC3 10.6.60.195 <=> N/A - _SUBNET3 lb-servernet-8 (Untrust - VLAN 4055 - .60.192) - _IP_MAC4 192.168.9.92 <=> N/A - _SUBNET4 plinknet20 - _IP_MAC5 10.6.60.131 <=> N/A - _SUBNET5 lb-servernet-7 (Untrust - VLAN 4054 - .60.128) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, AI, eis203lb - _date_created 2014-02-04 - _date_changed 2014-07-08 - _contacts unix@princeton.edu - use Router/Switch/Load Balancer -} - - -define host { - host_name eis203lb - alias eis203lb.Princeton.EDU - address 172.18.3.100 -# _IP_MAC1 172.19.0.35 <=> 0:1:d7:ab:d4:c1 -# _SUBNET1 tbnnet -# _department Enterprise Infrastructure Services, Office of Information Technology -# _building 151 Forrestal Rd. -# _room MR, RK, E8 -# _date_created 2014-02-04 -# _date_changed 2014-05-23 -# _contacts unix@princeton.edu - contacts Hajar Pager, Networking - use Router/Switch/Load Balancer -} - - -define host { - host_name eis300lb - alias eis300lb.Princeton.EDU - address 172.19.1.65 - _IP_MAC1 172.19.1.65 <=> 0:50:56:93:0:5d - _SUBNET1 tbnnet - _department Enterprise Infrastructure Services, Office of Information Technology - _building 87 Prospect Ave. - _room MR, VI - _date_created 2011-09-13 - _date_changed 2011-09-15 - check_command check_https_host - _contacts unix@princeton.edu - contacts Hajar Niroomand - use Router/Switch/Load Balancer -} - - -define host { - host_name eis301lb - alias eis301lb.Princeton.EDU - address 172.19.1.67 - _IP_MAC1 172.19.1.67 <=> 0:50:56:93:0:72 - _SUBNET1 tbnnet - _department Enterprise Infrastructure Services, Office of Information Technology - _building 87 Prospect Ave. - _room MR, VM - _date_created 2011-09-15 - _date_changed 2011-09-30 - check_command check_https_host - _contacts unix@princeton.edu - contacts Hajar Niroomand - use Router/Switch/Load Balancer -} - -define host { - host_name eis203lb-router-fw-lb-servernet-10-direct - alias eis203lb-router-fw-lb-servernet-10.Princeton.EDU - address 10.6.63.99 - use Router/Switch/Load Balancer - notifications_enabled 0 -} - - -define host { - host_name eis203lb-router-fw-lb-servernet-10 - alias eis203lb-router-fw-lb-servernet-10.Princeton.EDU - address 10.6.63.99 - use Router/Switch/Load Balancer - check_command check_host_cluster!$HOSTNAME$!$SERVICESTATEID:sdpldap100l:nrpe_eis203lb-router-fw-lb-servernet-10$,$SERVICESTATEID:sdpldap101l:nrpe_eis203lb-router-fw-lb-servernet-10$,$SERVICESTATEID:sdpohs200l:nrpe_eis203lb-router-fw-lb-servernet-10$,$SERVICESTATEID:sdpohs201l:nrpe_eis203lb-router-fw-lb-servernet-10$,$HOSTSTATEID:eis203lb-router-fw-lb-servernet-10-direct$!-c @5: - check_interval 1 - retry_interval 1 - max_check_attempts 2 -} - - -define host { - host_name eis203lb-router-fw-lb-servernet-11-direct - alias eis203lb-router-fw-lb-servernet-11.Princeton.EDU - address 140.180.219.131 - use Router/Switch/Load Balancer - notifications_enabled 0 -} - - -define host { - host_name eis203lb-router-fw-lb-servernet-11 - alias eis203lb-router-fw-lb-servernet-11.Princeton.EDU - address 140.180.219.131 - use Router/Switch/Load Balancer - check_command check_host_cluster!$HOSTNAME$!$SERVICESTATEID:ais204l:nrpe_eis203lb-router-fw-lb-servernet-11$,$SERVICESTATEID:eisess202l:nrpe_eis203lb-router-fw-lb-servernet-11$,$SERVICESTATEID:eisess203l:nrpe_eis203lb-router-fw-lb-servernet-11$,$SERVICESTATEID:eisess204l:nrpe_eis203lb-router-fw-lb-servernet-11$,$HOSTSTATEID:eis203lb-router-fw-lb-servernet-11-direct$!-c @5: - check_interval 1 - retry_interval 1 - max_check_attempts 2 -} - - -define host { - host_name eis203lb-router-fw-lb-servernet-3-direct - alias eis203lb-router-fw-lb-servernet-3.Princeton.EDU - address 10.6.54.3 - use Router/Switch/Load Balancer - notifications_enabled 0 -} - - -define host { - host_name eis203lb-router-fw-lb-servernet-3 - alias eis203lb-router-fw-lb-servernet-3.Princeton.EDU - address 10.6.54.3 - use Router/Switch/Load Balancer - check_command check_host_cluster!$HOSTNAME$!$SERVICESTATEID:csgkaltura300l:nrpe_eis203lb-router-fw-lb-servernet-3$,$SERVICESTATEID:iamxythos100l:nrpe_eis203lb-router-fw-lb-servernet-3$,$SERVICESTATEID:reg102l:nrpe_eis203lb-router-fw-lb-servernet-3$,$HOSTSTATEID:eis203lb-router-fw-lb-servernet-3-direct$!-c @4: - check_interval 1 - retry_interval 1 - max_check_attempts 2 -} - - -define host { - host_name eis203lb-router-fw-lb-servernet-4-direct - alias eis203lb-router-fw-lb-servernet-4.Princeton.EDU - address 10.6.55.3 - use Router/Switch/Load Balancer - notifications_enabled 0 -} - - -define host { - host_name eis203lb-router-fw-lb-servernet-4 - alias eis203lb-router-fw-lb-servernet-4.Princeton.EDU - address 10.6.55.3 - use Router/Switch/Load Balancer - check_command check_host_cluster!$HOSTNAME$!$SERVICESTATEID:wassp102w:nrpe_eis203lb-router-fw-lb-servernet-4$,$SERVICESTATEID:wassp103w:nrpe_eis203lb-router-fw-lb-servernet-4$,$SERVICESTATEID:sdpcas100w:nrpe_eis203lb-router-fw-lb-servernet-4$,$SERVICESTATEID:sdpcas101w:nrpe_eis203lb-router-fw-lb-servernet-4$,$HOSTSTATEID:eis203lb-router-fw-lb-servernet-4-direct$!-c @5: - check_interval 1 - retry_interval 1 - max_check_attempts 2 -} - - -define host { - host_name eis203lb-router-fw-lb-servernet-5-direct - alias eis203lb-router-fw-lb-servernet-5.Princeton.EDU - address 10.6.56.3 - use Router/Switch/Load Balancer - notifications_enabled 0 -} - - -define host { - host_name eis203lb-router-fw-lb-servernet-5 - alias eis203lb-router-fw-lb-servernet-5.Princeton.EDU - address 10.6.56.3 - use Router/Switch/Load Balancer - check_command check_host_cluster!$HOSTNAME$!$SERVICESTATEID:ais101l:nrpe_eis203lb-router-fw-lb-servernet-5$,$SERVICESTATEID:iamprox100l:nrpe_eis203lb-router-fw-lb-servernet-5$,$SERVICESTATEID:sdpprox100l:nrpe_eis203lb-router-fw-lb-servernet-5$,$SERVICESTATEID:timeline101l:nrpe_eis203lb-router-fw-lb-servernet-5$,$HOSTSTATEID:eis203lb-router-fw-lb-servernet-5-direct$!-c @5: - check_interval 1 - retry_interval 1 - max_check_attempts 2 -} - - -define host { - host_name eis203lb-router-fw-lb-servernet-6-direct - alias eis203lb-router-fw-lb-servernet-6.Princeton.EDU - address 10.6.57.3 - use Router/Switch/Load Balancer - notifications_enabled 0 -} - - -define host { - host_name eis203lb-router-fw-lb-servernet-6 - alias eis203lb-router-fw-lb-servernet-6.Princeton.EDU - address 10.6.57.3 - use Router/Switch/Load Balancer - check_command check_host_cluster!$HOSTNAME$!$SERVICESTATEID:eisoid101l:nrpe_eis203lb-router-fw-lb-servernet-6$,$SERVICESTATEID:sdpohs100l:nrpe_eis203lb-router-fw-lb-servernet-6$,$SERVICESTATEID:sdpovd100l:nrpe_eis203lb-router-fw-lb-servernet-6$,$HOSTSTATEID:eis203lb-router-fw-lb-servernet-6-direct$!-c @4: - check_interval 1 - retry_interval 1 - max_check_attempts 2 -} - - -define host { - host_name eis203lb-router-fw-lb-servernet-9-direct - alias eis203lb-router-fw-lb-servernet-9.Princeton.EDU - address 140.180.223.131 - use Router/Switch/Load Balancer - notifications_enabled 0 -} - - -define host { - host_name eis203lb-router-fw-lb-servernet-9 - alias eis203lb-router-fw-lb-servernet-9.Princeton.EDU - address 140.180.223.131 - use Router/Switch/Load Balancer - check_command check_host_cluster!$HOSTNAME$!$SERVICESTATEID:csgsmtp100l:nrpe_eis203lb-router-fw-lb-servernet-9$,$SERVICESTATEID:csgsmtp202l:nrpe_eis203lb-router-fw-lb-servernet-9$,$SERVICESTATEID:csgsmtp203l:nrpe_eis203lb-router-fw-lb-servernet-9$,$HOSTSTATEID:eis203lb-router-fw-lb-servernet-9-direct$!-c @4: - check_interval 1 - retry_interval 1 - max_check_attempts 2 -} - - -define host { - host_name eis203lb-router-fw-plinknet8 - alias eis203lb-router-fw-plinknet8.Princeton.EDU - address 192.168.9.44 - use Router/Switch/Load Balancer -} - - -define host { - host_name eis203lb-router1-lb-servernet-1-direct - alias eis203lb-router1-lb-servernet-1.Princeton.EDU - address 10.6.61.3 - use Router/Switch/Load Balancer - notifications_enabled 0 -} - - -define host { - host_name eis203lb-router1-lb-servernet-1 - alias eis203lb-router1-lb-servernet-1.Princeton.EDU - address 10.6.61.3 - use Router/Switch/Load Balancer - check_command check_host_cluster!$HOSTNAME$!$SERVICESTATEID:csgcas104w:nrpe_eis203lb-router1-lb-servernet-1$,$SERVICESTATEID:csglync221w:nrpe_eis203lb-router1-lb-servernet-1$,$SERVICESTATEID:csglync229w:nrpe_eis203lb-router1-lb-servernet-1$,$SERVICESTATEID:sdp100w:nrpe_eis203lb-router1-lb-servernet-1$,$HOSTSTATEID:eis203lb-router1-lb-servernet-1-direct$!-c @5: - check_interval 1 - retry_interval 1 - max_check_attempts 2 -} - - -define host { - host_name eis203lb-router1-lb-servernet-2-direct - alias eis203lb-router1-lb-servernet-2.Princeton.EDU - address 10.6.62.3 - use Router/Switch/Load Balancer - notifications_enabled 0 -} - - -define host { - host_name eis203lb-router1-lb-servernet-2 - alias eis203lb-router1-lb-servernet-2.Princeton.EDU - address 10.6.62.3 - use Router/Switch/Load Balancer - check_command check_host_cluster!$HOSTNAME$!$SERVICESTATEID:cisdrroxen101l:nrpe_eis203lb-router1-lb-servernet-2$,$HOSTSTATEID:eis203lb-router1-lb-servernet-2-direct$!-c @3: - check_interval 1 - retry_interval 1 - max_check_attempts 2 -} - - -define host { - host_name eis203lb-router1-lb-servernet-7-direct - alias eis203lb-router1-lb-servernet-7.Princeton.EDU - address 10.6.60.131 - use Router/Switch/Load Balancer - notifications_enabled 0 -} - - -define host { - host_name eis203lb-router1-lb-servernet-7 - alias eis203lb-router1-lb-servernet-7.Princeton.EDU - address 10.6.60.131 - use Router/Switch/Load Balancer - check_command check_host_cluster!$HOSTNAME$!$SERVICESTATEID:csgcas204w:nrpe_eis203lb-router1-lb-servernet-7$,$SERVICESTATEID:csgcas205w:nrpe_eis203lb-router1-lb-servernet-7$,$SERVICESTATEID:csgcas206w:nrpe_eis203lb-router1-lb-servernet-7$,$SERVICESTATEID:csgcas207w:nrpe_eis203lb-router1-lb-servernet-7$,$HOSTSTATEID:eis203lb-router1-lb-servernet-7-direct$!-c @5: - check_interval 1 - retry_interval 1 - max_check_attempts 2 -} - - -define host { - host_name eis203lb-router1-lb-servernet-8-direct - alias eis203lb-router1-lb-servernet-8.Princeton.EDU - address 10.6.60.195 - use Router/Switch/Load Balancer - notifications_enabled 0 -} - - -define host { - host_name eis203lb-router1-lb-servernet-8 - alias eis203lb-router1-lb-servernet-8.Princeton.EDU - address 10.6.60.195 - use Router/Switch/Load Balancer - check_command check_host_cluster!$HOSTNAME$!$SERVICESTATEID:csghub102w:nrpe_eis203lb-router1-lb-servernet-8$,$SERVICESTATEID:csghub103w:nrpe_eis203lb-router1-lb-servernet-8$,$SERVICESTATEID:csghub208w:nrpe_eis203lb-router1-lb-servernet-8$,$SERVICESTATEID:csghub209w:nrpe_eis203lb-router1-lb-servernet-8$,$HOSTSTATEID:eis203lb-router1-lb-servernet-8-direct$!-c @5: - check_interval 1 - retry_interval 1 - max_check_attempts 2 -} - - -define host { - host_name eis203lb-router1-plinknet20 - alias eis203lb-router1-plinknet20.Princeton.EDU - address 192.168.9.92 - use Router/Switch/Load Balancer -} - - -define host { - host_name lb-prod-float-1-lb-servernet-1 - alias lb-prod-float-1-lb-servernet-1.Princeton.EDU - address 10.6.61.1 - use Router/Switch/Load Balancer - check_command check_host_cluster!$HOSTNAME$!$SERVICESTATEID:csgcas104w:nrpe_lb-prod-float-1-lb-servernet-1$,$SERVICESTATEID:csglync221w:nrpe_lb-prod-float-1-lb-servernet-1$,$SERVICESTATEID:csglync229w:nrpe_lb-prod-float-1-lb-servernet-1$,$SERVICESTATEID:sdp100w:nrpe_lb-prod-float-1-lb-servernet-1$!-c @4: - check_interval 1 - retry_interval 1 - max_check_attempts 2 -} - - -define host { - host_name lb-prod-float-1-lb-servernet-2 - alias lb-prod-float-1-lb-servernet-2.Princeton.EDU - address 10.6.62.1 - use Router/Switch/Load Balancer - check_command check_host_cluster!$HOSTNAME$!$SERVICESTATEID:cisdrroxen101l:nrpe_lb-prod-float-1-lb-servernet-2$!-c @2: - check_interval 1 - retry_interval 1 - max_check_attempts 2 -} - - -define host { - host_name lb-prod-float-1-lb-servernet-7 - alias lb-prod-float-1-lb-servernet-7.Princeton.EDU - address 10.6.60.129 - use Router/Switch/Load Balancer - check_command check_host_cluster!$HOSTNAME$!$SERVICESTATEID:csgcas204w:nrpe_lb-prod-float-1-lb-servernet-7$,$SERVICESTATEID:csgcas205w:nrpe_lb-prod-float-1-lb-servernet-7$,$SERVICESTATEID:csgcas206w:nrpe_lb-prod-float-1-lb-servernet-7$,$SERVICESTATEID:csgcas207w:nrpe_lb-prod-float-1-lb-servernet-7$!-c @4: - check_interval 1 - retry_interval 1 - max_check_attempts 2 -} - - -define host { - host_name lb-prod-float-1-lb-servernet-8 - alias lb-prod-float-1-lb-servernet-8.Princeton.EDU - address 10.6.60.193 - use Router/Switch/Load Balancer - check_command check_host_cluster!$HOSTNAME$!$SERVICESTATEID:csghub102w:nrpe_lb-prod-float-1-lb-servernet-8$,$SERVICESTATEID:csghub103w:nrpe_lb-prod-float-1-lb-servernet-8$,$SERVICESTATEID:csghub208w:nrpe_lb-prod-float-1-lb-servernet-8$,$SERVICESTATEID:csghub209w:nrpe_lb-prod-float-1-lb-servernet-8$!-c @4: - check_interval 1 - retry_interval 1 - max_check_attempts 2 -} - - -define host { - host_name lb-prod-float-1-plinknet20 - alias lb-prod-float-1-plinknet20.Princeton.EDU - address 192.168.9.94 - use Router/Switch/Load Balancer -} - - -define host { - host_name lb-prod-float-fw-lb-servernet-10 - alias lb-prod-float-fw-lb-servernet-10.Princeton.EDU - address 10.6.63.97 - use Router/Switch/Load Balancer - check_command check_host_cluster!$HOSTNAME$!$SERVICESTATEID:sdpldap100l:nrpe_lb-prod-float-fw-lb-servernet-10$,$SERVICESTATEID:sdpldap101l:nrpe_lb-prod-float-fw-lb-servernet-10$,$SERVICESTATEID:sdpohs200l:nrpe_lb-prod-float-fw-lb-servernet-10$,$SERVICESTATEID:sdpohs201l:nrpe_lb-prod-float-fw-lb-servernet-10$!-c @4: - check_interval 1 - retry_interval 1 - max_check_attempts 2 -} - - -define host { - host_name lb-prod-float-fw-lb-servernet-11 - alias lb-prod-float-fw-lb-servernet-11.Princeton.EDU - address 140.180.219.129 - use Router/Switch/Load Balancer - check_command check_host_cluster!$HOSTNAME$!$SERVICESTATEID:ais204l:nrpe_lb-prod-float-fw-lb-servernet-11$,$SERVICESTATEID:eisess202l:nrpe_lb-prod-float-fw-lb-servernet-11$,$SERVICESTATEID:eisess203l:nrpe_lb-prod-float-fw-lb-servernet-11$,$SERVICESTATEID:eisess204l:nrpe_lb-prod-float-fw-lb-servernet-11$!-c @4: - check_interval 1 - retry_interval 1 - max_check_attempts 2 -} - - -define host { - host_name lb-prod-float-fw-lb-servernet-3 - alias lb-prod-float-fw-lb-servernet-3.Princeton.EDU - address 10.6.54.1 - use Router/Switch/Load Balancer - check_command check_host_cluster!$HOSTNAME$!$SERVICESTATEID:csgkaltura300l:nrpe_lb-prod-float-fw-lb-servernet-3$,$SERVICESTATEID:iamxythos100l:nrpe_lb-prod-float-fw-lb-servernet-3$,$SERVICESTATEID:reg102l:nrpe_lb-prod-float-fw-lb-servernet-3$!-c @3: - check_interval 1 - retry_interval 1 - max_check_attempts 2 -} - - -define host { - host_name lb-prod-float-fw-lb-servernet-4 - alias lb-prod-float-fw-lb-servernet-4.Princeton.EDU - address 10.6.55.1 - use Router/Switch/Load Balancer - check_command check_host_cluster!$HOSTNAME$!$SERVICESTATEID:wassp102w:nrpe_lb-prod-float-fw-lb-servernet-4$,$SERVICESTATEID:wassp103w:nrpe_lb-prod-float-fw-lb-servernet-4$,$SERVICESTATEID:sdpcas100w:nrpe_lb-prod-float-fw-lb-servernet-4$,$SERVICESTATEID:sdpcas101w:nrpe_lb-prod-float-fw-lb-servernet-4$!-c @4: - check_interval 1 - retry_interval 1 - max_check_attempts 2 -} - - -define host { - host_name lb-prod-float-fw-lb-servernet-5 - alias lb-prod-float-fw-lb-servernet-5.Princeton.EDU - address 10.6.56.1 - use Router/Switch/Load Balancer - check_command check_host_cluster!$HOSTNAME$!$SERVICESTATEID:ais101l:nrpe_lb-prod-float-fw-lb-servernet-5$,$SERVICESTATEID:iamprox100l:nrpe_lb-prod-float-fw-lb-servernet-5$,$SERVICESTATEID:sdpprox100l:nrpe_lb-prod-float-fw-lb-servernet-5$,$SERVICESTATEID:timeline101l:nrpe_lb-prod-float-fw-lb-servernet-5$!-c @4: - check_interval 1 - retry_interval 1 - max_check_attempts 2 -} - - -define host { - host_name lb-prod-float-fw-lb-servernet-6 - alias lb-prod-float-fw-lb-servernet-6.Princeton.EDU - address 10.6.57.1 - use Router/Switch/Load Balancer - check_command check_host_cluster!$HOSTNAME$!$SERVICESTATEID:eisoid101l:nrpe_lb-prod-float-fw-lb-servernet-6$,$SERVICESTATEID:sdpohs100l:nrpe_lb-prod-float-fw-lb-servernet-6$,$SERVICESTATEID:sdpovd100l:nrpe_lb-prod-float-fw-lb-servernet-6$!-c @3: - check_interval 1 - retry_interval 1 - max_check_attempts 2 -} - -#### Only 3 members available -define host { - host_name lb-prod-float-fw-lb-servernet-9 - alias lb-prod-float-fw-lb-servernet-9.Princeton.EDU - address 140.180.223.129 - use Router/Switch/Load Balancer - check_command check_host_cluster!$HOSTNAME$!$SERVICESTATEID:csgsmtp100l:nrpe_lb-prod-float-fw-lb-servernet-9$,$SERVICESTATEID:csgsmtp202l:nrpe_lb-prod-float-fw-lb-servernet-9$,$SERVICESTATEID:csgsmtp203l:nrpe_lb-prod-float-fw-lb-servernet-9$!-c @3: - check_interval 1 - retry_interval 1 - max_check_attempts 2 -} - - -define host { - host_name lb-prod-float-fw-plinknet8 - alias lb-prod-float-fw-plinknet8.Princeton.EDU - address 192.168.9.46 - use Router/Switch/Load Balancer -} - - -define host { - host_name eis202lb-router-fw-lb-servernet-10-direct - alias eis202lb-router-fw-lb-servernet-10.Princeton.EDU - address 10.6.63.98 - use Router/Switch/Load Balancer - notifications_enabled 0 -} - - -define host { - host_name eis202lb-router-fw-lb-servernet-10 - alias eis202lb-router-fw-lb-servernet-10.Princeton.EDU - address 10.6.63.98 - use Router/Switch/Load Balancer - check_command check_host_cluster!$HOSTNAME$!$SERVICESTATEID:sdpldap100l:nrpe_eis202lb-router-fw-lb-servernet-10$,$SERVICESTATEID:sdpldap101l:nrpe_eis202lb-router-fw-lb-servernet-10$,$SERVICESTATEID:sdpohs200l:nrpe_eis202lb-router-fw-lb-servernet-10$,$SERVICESTATEID:sdpohs201l:nrpe_eis202lb-router-fw-lb-servernet-10$,$HOSTSTATEID:eis202lb-router-fw-lb-servernet-10-direct$!-c @5: - check_interval 1 - retry_interval 1 - max_check_attempts 2 -} - - -define host { - host_name eis202lb-router-fw-lb-servernet-11-direct - alias eis202lb-router-fw-lb-servernet-11.Princeton.EDU - address 140.180.219.130 - use Router/Switch/Load Balancer - notifications_enabled 0 -} - - -define host { - host_name eis202lb-router-fw-lb-servernet-11 - alias eis202lb-router-fw-lb-servernet-11.Princeton.EDU - address 140.180.219.130 - use Router/Switch/Load Balancer - check_command check_host_cluster!$HOSTNAME$!$SERVICESTATEID:ais204l:nrpe_eis202lb-router-fw-lb-servernet-11$,$SERVICESTATEID:eisess202l:nrpe_eis202lb-router-fw-lb-servernet-11$,$SERVICESTATEID:eisess203l:nrpe_eis202lb-router-fw-lb-servernet-11$,$SERVICESTATEID:eisess204l:nrpe_eis202lb-router-fw-lb-servernet-11$,$HOSTSTATEID:eis202lb-router-fw-lb-servernet-11-direct$!-c @5: - check_interval 1 - retry_interval 1 - max_check_attempts 2 -} - - -define host { - host_name eis202lb-router-fw-lb-servernet-3-direct - alias eis202lb-router-fw-lb-servernet-3.Princeton.EDU - address 10.6.54.2 - use Router/Switch/Load Balancer - notifications_enabled 0 -} - - -define host { - host_name eis202lb-router-fw-lb-servernet-3 - alias eis202lb-router-fw-lb-servernet-3.Princeton.EDU - address 10.6.54.2 - use Router/Switch/Load Balancer - check_command check_host_cluster!$HOSTNAME$!$SERVICESTATEID:csgkaltura300l:nrpe_eis202lb-router-fw-lb-servernet-3$,$SERVICESTATEID:iamxythos100l:nrpe_eis202lb-router-fw-lb-servernet-3$,$SERVICESTATEID:reg102l:nrpe_eis202lb-router-fw-lb-servernet-3$,$HOSTSTATEID:eis202lb-router-fw-lb-servernet-3-direct$!-c @4: - check_interval 1 - retry_interval 1 - max_check_attempts 2 -} - - -define host { - host_name eis202lb-router-fw-lb-servernet-4-direct - alias eis202lb-router-fw-lb-servernet-4.Princeton.EDU - address 10.6.55.2 - use Router/Switch/Load Balancer - notifications_enabled 0 -} - - -define host { - host_name eis202lb-router-fw-lb-servernet-4 - alias eis202lb-router-fw-lb-servernet-4.Princeton.EDU - address 10.6.55.2 - use Router/Switch/Load Balancer - check_command check_host_cluster!$HOSTNAME$!$SERVICESTATEID:wassp102w:nrpe_eis202lb-router-fw-lb-servernet-4$,$SERVICESTATEID:wassp103w:nrpe_eis202lb-router-fw-lb-servernet-4$,$SERVICESTATEID:sdpcas100w:nrpe_eis202lb-router-fw-lb-servernet-4$,$SERVICESTATEID:sdpcas101w:nrpe_eis202lb-router-fw-lb-servernet-4$,$HOSTSTATEID:eis202lb-router-fw-lb-servernet-4-direct$!-c @5: - check_interval 1 - retry_interval 1 - max_check_attempts 2 -} - - -define host { - host_name eis202lb-router-fw-lb-servernet-5-direct - alias eis202lb-router-fw-lb-servernet-5.Princeton.EDU - address 10.6.56.2 - use Router/Switch/Load Balancer - notifications_enabled 0 -} - - -define host { - host_name eis202lb-router-fw-lb-servernet-5 - alias eis202lb-router-fw-lb-servernet-5.Princeton.EDU - address 10.6.56.2 - use Router/Switch/Load Balancer - check_command check_host_cluster!$HOSTNAME$!$SERVICESTATEID:ais101l:nrpe_eis202lb-router-fw-lb-servernet-5$,$SERVICESTATEID:iamprox100l:nrpe_eis202lb-router-fw-lb-servernet-5$,$SERVICESTATEID:sdpprox100l:nrpe_eis202lb-router-fw-lb-servernet-5$,$SERVICESTATEID:timeline101l:nrpe_eis202lb-router-fw-lb-servernet-5$,$HOSTSTATEID:eis202lb-router-fw-lb-servernet-5-direct$!-c @5: - check_interval 1 - retry_interval 1 - max_check_attempts 2 -} - - -define host { - host_name eis202lb-router-fw-lb-servernet-6-direct - alias eis202lb-router-fw-lb-servernet-6.Princeton.EDU - address 10.6.57.2 - use Router/Switch/Load Balancer - notifications_enabled 0 -} - - -define host { - host_name eis202lb-router-fw-lb-servernet-6 - alias eis202lb-router-fw-lb-servernet-6.Princeton.EDU - address 10.6.57.2 - use Router/Switch/Load Balancer - check_command check_host_cluster!$HOSTNAME$!$SERVICESTATEID:eisoid101l:nrpe_eis202lb-router-fw-lb-servernet-6$,$SERVICESTATEID:sdpohs100l:nrpe_eis202lb-router-fw-lb-servernet-6$,$SERVICESTATEID:sdpovd100l:nrpe_eis202lb-router-fw-lb-servernet-6$,$HOSTSTATEID:eis202lb-router-fw-lb-servernet-6-direct$!-c @4: - check_interval 1 - retry_interval 1 - max_check_attempts 2 -} - - -define host { - host_name eis202lb-router-fw-lb-servernet-9-direct - alias eis202lb-router-fw-lb-servernet-9.Princeton.EDU - address 140.180.223.130 - use Router/Switch/Load Balancer - notifications_enabled 0 -} - - -define host { - host_name eis202lb-router-fw-lb-servernet-9 - alias eis202lb-router-fw-lb-servernet-9.Princeton.EDU - address 140.180.223.130 - use Router/Switch/Load Balancer - check_command check_host_cluster!$HOSTNAME$!$SERVICESTATEID:csgsmtp100l:nrpe_eis202lb-router-fw-lb-servernet-9$,$SERVICESTATEID:csgsmtp202l:nrpe_eis202lb-router-fw-lb-servernet-9$,$SERVICESTATEID:csgsmtp203l:nrpe_eis202lb-router-fw-lb-servernet-9$,$HOSTSTATEID:eis202lb-router-fw-lb-servernet-9-direct$!-c @4: - check_interval 1 - retry_interval 1 - max_check_attempts 2 -} - - -define host { - host_name eis202lb-router-fw-plinknet8 - alias eis202lb-router-fw-plinknet8.Princeton.EDU - address 192.168.9.45 - use Router/Switch/Load Balancer -} - - -define host { - host_name eis202lb-router1-lb-servernet-1-direct - alias eis202lb-router1-lb-servernet-1.Princeton.EDU - address 10.6.61.2 - use Router/Switch/Load Balancer - notifications_enabled 0 -} - - -define host { - host_name eis202lb-router1-lb-servernet-1 - alias eis202lb-router1-lb-servernet-1.Princeton.EDU - address 10.6.61.2 - use Router/Switch/Load Balancer - check_command check_host_cluster!$HOSTNAME$!$SERVICESTATEID:csgcas104w:nrpe_eis202lb-router1-lb-servernet-1$,$SERVICESTATEID:csglync221w:nrpe_eis202lb-router1-lb-servernet-1$,$SERVICESTATEID:csglync229w:nrpe_eis202lb-router1-lb-servernet-1$,$SERVICESTATEID:sdp100w:nrpe_eis202lb-router1-lb-servernet-1$,$HOSTSTATEID:eis202lb-router1-lb-servernet-1-direct$!-c @5: - check_interval 1 - retry_interval 1 - max_check_attempts 2 -} - - -define host { - host_name eis202lb-router1-lb-servernet-2-direct - alias eis202lb-router1-lb-servernet-2.Princeton.EDU - address 10.6.62.2 - use Router/Switch/Load Balancer - notifications_enabled 0 -} - - -define host { - host_name eis202lb-router1-lb-servernet-2 - alias eis202lb-router1-lb-servernet-2.Princeton.EDU - address 10.6.62.2 - use Router/Switch/Load Balancer - check_command check_host_cluster!$HOSTNAME$!$SERVICESTATEID:cisdrroxen101l:nrpe_eis202lb-router1-lb-servernet-2$,$HOSTSTATEID:eis202lb-router1-lb-servernet-2-direct$!-c @3: - check_interval 1 - retry_interval 1 - max_check_attempts 2 -} - - -define host { - host_name eis202lb-router1-lb-servernet-7-direct - alias eis202lb-router1-lb-servernet-7.Princeton.EDU - address 10.6.60.130 - use Router/Switch/Load Balancer - notifications_enabled 0 -} - - -define host { - host_name eis202lb-router1-lb-servernet-7 - alias eis202lb-router1-lb-servernet-7.Princeton.EDU - address 10.6.60.130 - use Router/Switch/Load Balancer - check_command check_host_cluster!$HOSTNAME$!$SERVICESTATEID:csgcas204w:nrpe_eis202lb-router1-lb-servernet-7$,$SERVICESTATEID:csgcas205w:nrpe_eis202lb-router1-lb-servernet-7$,$SERVICESTATEID:csgcas206w:nrpe_eis202lb-router1-lb-servernet-7$,$SERVICESTATEID:csgcas207w:nrpe_eis202lb-router1-lb-servernet-7$,$HOSTSTATEID:eis202lb-router1-lb-servernet-7-direct$!-c @5: - check_interval 1 - retry_interval 1 - max_check_attempts 2 -} - - -define host { - host_name eis202lb-router1-lb-servernet-8-direct - alias eis202lb-router1-lb-servernet-8.Princeton.EDU - address 10.6.60.194 - use Router/Switch/Load Balancer - notifications_enabled 0 -} - - -define host { - host_name eis202lb-router1-lb-servernet-8 - alias eis202lb-router1-lb-servernet-8.Princeton.EDU - address 10.6.60.194 - use Router/Switch/Load Balancer - check_command check_host_cluster!$HOSTNAME$!$SERVICESTATEID:csghub102w:nrpe_eis202lb-router1-lb-servernet-8$,$SERVICESTATEID:csghub103w:nrpe_eis202lb-router1-lb-servernet-8$,$SERVICESTATEID:csghub208w:nrpe_eis202lb-router1-lb-servernet-8$,$SERVICESTATEID:csghub209w:nrpe_eis202lb-router1-lb-servernet-8$,$HOSTSTATEID:eis202lb-router1-lb-servernet-8-direct$!-c @5: - check_interval 1 - retry_interval 1 - max_check_attempts 2 -} - - -define host { - host_name eis202lb-router1-plinknet20 - alias eis202lb-router1-plinknet20.Princeton.EDU - address 192.168.9.93 - use Router/Switch/Load Balancer -} - - - -define host { - host_name dps-cadrms - alias dps-cadrms.Princeton.EDU - address 128.112.8.118 - hostgroups Facilities, Rover hosts - use Rover device -} - - -define host { - host_name dps-pars - alias dps-pars.Princeton.EDU - address 128.112.8.149 - hostgroups Facilities, Rover hosts - use Rover device -} - - -define host { - host_name eis100lb - alias eis100lb.Princeton.EDU - address 172.18.3.104 - hostgroups Facilities, Rover hosts - use Rover device -} - - -define host { - host_name eis101lb - alias eis101lb.Princeton.EDU - address 172.18.3.106 - hostgroups Facilities, Rover hosts - use Rover device -} - - - -define host { - host_name eisfw1-mgmt - alias eisfw1-mgmt.Princeton.EDU - use Router/Switch/Load Balancer - icon_image firewall.gif - statusmap_image firewall.gd2 - #parents core-87-router - notification_period none - contacts epm-list, ESS UNIX List, ESS Windows List -} - -define host { - host_name eisfw2-mgmt - alias eisfw2-mgmt.Princeton.EDU - use Router/Switch/Load Balancer - icon_image firewall.gif - statusmap_image firewall.gd2 - #parents core-87-router - notification_period none - contacts epm-list, ESS UNIX List, ESS Windows List -} - -define host { - host_name eisfwqa1-mgmt - alias eisfwqa1-mgmt.Princeton.EDU - use Router/Switch/Load Balancer - icon_image firewall.gif - statusmap_image firewall.gd2 - #parents core-87-router - notification_period none - contacts epm-list, ESS UNIX List, ESS Windows List -} - -define host { - host_name eisfw - alias eisfw.Princeton.EDU - address 128.112.12.126 - _fw1 140.180.220.1 - _fw2 10.6.48.1 - _fw3 10.6.52.1 - _fw4 10.6.63.65 - _fw6 10.6.63.129 - _fw7 140.180.219.1 - _fw10 10.6.0.1 - _fw11 10.6.32.1 - _plinknet8 192.168.9.33 - use Router/Switch/Load Balancer - parents core-87-router - icon_image firewall.gif - statusmap_image firewall.gd2 - contacts epm-list, ESS UNIX List, ESS Windows List -} - -define host { - host_name monitor - alias monitor.Princeton.EDU - use generic-host - contacts nobody -} - -define host { - host_name monitor-dev - alias monitor-dev.Princeton.EDU - use generic-host - contacts nobody -} - -define host { - host_name Monitor Untrust - alias Pseudo host for Gearman Untrust status - use Gearman - #check_command check_host_cluster!$HOSTNAME$!$HOSTSTATEID:Gearman 151 PrivateDMZ$,$HOSTSTATEID:Gearman NS PrivateDMZ!-c @2: - check_command check_host_cluster!$HOSTNAME$!$SERVICESTATEID:monitor:Gearman worker 151 Untrust$,$SERVICESTATEID:monitor:Gearman worker NS Untrust$!-c @2: -} - - -define host { - host_name Monitor PrivateDMZ - alias Pseudo host for Gearman PrivateDMZ status - use Gearman - #check_command check_host_cluster!$HOSTNAME$!$HOSTSTATEID:Gearman 151 PrivateDMZ$,$HOSTSTATEID:Gearman NS PrivateDMZ!-c @2: - check_command check_host_cluster!$HOSTNAME$!$SERVICESTATEID:monitor:Gearman worker 151 PrivateDMZ$,$SERVICESTATEID:monitor:Gearman worker NS PrivateDMZ$!-c @2: -} - -define host { - host_name Monitor PublicDMZ - alias Pseudo host for Gearman PublicDMZ status - use Gearman - #check_command check_host_cluster!$HOSTNAME$!$HOSTSTATEID:Gearman 151 PublicDMZ$,$HOSTSTATEID:Gearman NS PublicDMZ!-c @2: - check_command check_host_cluster!$HOSTNAME$!$SERVICESTATEID:monitor:Gearman worker 151 PublicDMZ$,$SERVICESTATEID:monitor:Gearman worker NS PublicDMZ$!-c @2: -} - -define host { - host_name Monitor Trust - alias Pseudo host for Gearman Trust status - use Gearman - #check_command check_host_cluster!$HOSTNAME$!$HOSTSTATEID:Gearman 151 Trust$,$HOSTSTATEID:Gearman NS Trust!-c @2: - check_command check_host_cluster!$HOSTNAME$!$SERVICESTATEID:monitor:Gearman worker 151 Trust$,$SERVICESTATEID:monitor:Gearman worker NS Trust$!-c @2: -} - -define host { - host_name Monitor Eisfw F5 - alias Pseudo host for Gearman Eisfw status - use Gearman - #check_command check_host_cluster!$HOSTNAME$!$HOSTSTATEID:Gearman 151 Trust$,$HOSTSTATEID:Gearman NS Trust!-c @2: - check_command check_host_cluster!$HOSTNAME$!$SERVICESTATEID:monitor:Gearman worker 151 Eisfw F5$,$SERVICESTATEID:monitor:Gearman worker NS Eisfw F5$!-c @2: -} - -define host { - host_name Gearman 151 Untrust - alias Pseudo host for Gearman 151 Untrust status - use Gearman - check_command check_service_cluster!$HOSTNAME$!$SERVICESTATEID:monitor:Gearman worker ims204 151 Untrust alef$,$SERVICESTATEID:monitor:Gearman worker ims204 151 Untrust bet$,$SERVICESTATEID:monitor:Gearman worker ims205 151 Untrust gimel failover$,$SERVICESTATEID:monitor:Gearman worker ims205 151 Untrust dalet failover$!-c @4: -} - -define host { - host_name Gearman NS Untrust - alias Pseudo host for Gearman NS Untrust status - use Gearman - check_command check_service_cluster!$HOSTNAME$!$SERVICESTATEID:monitor:Gearman worker ims205 NS Untrust alef$,$SERVICESTATEID:monitor:Gearman worker ims205 NS Untrust bet$,$SERVICESTATEID:monitor:Gearman worker ims204 NS Untrust gimel failover$,$SERVICESTATEID:monitor:Gearman worker ims204 NS Untrust dalet failover$!-c @4: -} - -define host { - host_name Gearman 151 PrivateDMZ - alias Pseudo host for Gearman 151 PrivateDMZ status - use Gearman - check_command check_service_cluster!$HOSTNAME$!$SERVICESTATEID:monitor:Gearman worker ims220 151 PrivateDMZ alef$,$SERVICESTATEID:monitor:Gearman worker ims220 151 PrivateDMZ bet$,$SERVICESTATEID:monitor:Gearman worker ims221 151 PrivateDMZ gimel failover$,$SERVICESTATEID:monitor:Gearman worker ims221 151 PrivateDMZ dalet failover$!-c @4: -} - -define host { - host_name Gearman NS PrivateDMZ - alias Pseudo host for Gearman NS PrivateDMZ status - use Gearman - check_command check_service_cluster!$HOSTNAME$!$SERVICESTATEID:monitor:Gearman worker ims221 NS PrivateDMZ alef$,$SERVICESTATEID:monitor:Gearman worker ims221 NS PrivateDMZ bet$,$SERVICESTATEID:monitor:Gearman worker ims220 NS PrivateDMZ gimel failover$,$SERVICESTATEID:monitor:Gearman worker ims220 NS PrivateDMZ dalet failover$!-c @4: -} - -define host { - host_name Gearman 151 PublicDMZ - alias Pseudo host for Gearman 151 PublicDMZ status - use Gearman - check_command check_service_cluster!$HOSTNAME$!$SERVICESTATEID:monitor:Gearman worker ims224 151 PublicDMZ alef$,$SERVICESTATEID:monitor:Gearman worker ims224 151 PublicDMZ bet$,$SERVICESTATEID:monitor:Gearman worker ims225 151 PublicDMZ gimel failover$,$SERVICESTATEID:monitor:Gearman worker ims225 151 PublicDMZ dalet failover$!-c @4: -} - -define host { - host_name Gearman NS PublicDMZ - alias Pseudo host for Gearman NS PublicDMZ status - use Gearman - check_command check_service_cluster!$HOSTNAME$!$SERVICESTATEID:monitor:Gearman worker ims225 NS PublicDMZ alef$,$SERVICESTATEID:monitor:Gearman worker ims225 NS PublicDMZ bet$,$SERVICESTATEID:monitor:Gearman worker ims224 NS PublicDMZ gimel failover$,$SERVICESTATEID:monitor:Gearman worker ims224 NS PublicDMZ dalet failover$!-c @4: -} - -define host { - host_name Gearman 151 Trust - alias Pseudo host for Gearman 151 Trust status - use Gearman - check_command check_service_cluster!$HOSTNAME$!$SERVICESTATEID:monitor:Gearman worker ims222 151 Trust alef$,$SERVICESTATEID:monitor:Gearman worker ims222 151 Trust bet$,$SERVICESTATEID:monitor:Gearman worker ims223 151 Trust gimel failover$,$SERVICESTATEID:monitor:Gearman worker ims223 151 Trust dalet failover$!-c @4: -} - -define host { - host_name Gearman NS Trust - alias Pseudo host for Gearman NS Trust status - use Gearman - check_command check_service_cluster!$HOSTNAME$!$SERVICESTATEID:monitor:Gearman worker ims223 NS Trust alef$,$SERVICESTATEID:monitor:Gearman worker ims223 NS Trust bet$,$SERVICESTATEID:monitor:Gearman worker ims222 NS Trust gimel failover$,$SERVICESTATEID:monitor:Gearman worker ims222 NS Trust dalet failover$!-c @4: -} - -define host { - host_name Gearman 151 Eisfw F5 - alias Pseudo host for Gearman 151 Eisfw F5 status - use Gearman - check_command check_service_cluster!$HOSTNAME$!$SERVICESTATEID:monitor:Gearman worker ims220 151 PrivateDMZ alef$,$SERVICESTATEID:monitor:Gearman worker ims220 151 PrivateDMZ bet$,$SERVICESTATEID:monitor:Gearman worker ims224 151 PublicDMZ alef$,$SERVICESTATEID:monitor:Gearman worker ims224 151 PublicDMZ bet$,$SERVICESTATEID:monitor:Gearman worker ims222 151 Trust alef$,$SERVICESTATEID:monitor:Gearman worker ims222 151 Trust bet$!-c @6: -} - -define host { - host_name Gearman NS Eisfw F5 - alias Pseudo host for Gearman NS Eisfw F5 status - use Gearman - check_command check_service_cluster!$HOSTNAME$!$SERVICESTATEID:monitor:Gearman worker ims221 NS PrivateDMZ alef$,$SERVICESTATEID:monitor:Gearman worker ims221 NS PrivateDMZ bet$,$SERVICESTATEID:monitor:Gearman worker ims225 NS PublicDMZ alef$,$SERVICESTATEID:monitor:Gearman worker ims225 NS PublicDMZ bet$,$SERVICESTATEID:monitor:Gearman worker ims223 NS Trust alef$,$SERVICESTATEID:monitor:Gearman worker ims223 NS Trust bet$!-c @6: -} - - - -define host { - host_name alumnicas - alias alumnicas.Princeton.EDU - address 140.180.222.31 - _IP_MAC1 140.180.222.31 <=> 0:ab:1:aa:cc:dd - _SUBNET1 lb-vipnet-4 (EISFW - VLAN 3493 - 222.0) - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR,VI,Foundry - _date_created 2009-03-10 - _date_changed 2015-07-13 - notification_period score_hours - contacts Identity and Access Management - use generic-host -} - - -define host { - host_name egn-dome-wwwinterface - alias egn-dome-wwwinterface.Princeton.EDU - address 66.180.177.116 - contacts Gregory S. Paczkowski, Joseph M. Karam - use generic-host - check_period EGN Dome WWWInterface - notification_period EGN Dome WWWInterface -} - - -define host { - host_name webspace - alias webspace.princeton.edu - _alias1 webspace - address 140.180.222.86 - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - contacts CISDR - _contacts unix@princeton.edu - use generic-host -} - - -define host { - host_name webspaceqa - alias webspaceqa.Princeton.EDU - _alias1 webspaceqa - address 140.180.222.75 - contacts CISDR - use generic-host -} - - -define host { - host_name puwebp - alias puwebp.princeton.edu - address 140.180.219.150 - _department Administrative Information Services, Office of Information Technology - _building New South - _room MR, VI, ais204L - _date_created 2005-05-24 - _date_changed 2013-10-04 - contacts Christopher C. Dietrich - _contacts chris@princeton.edu, unix@princeton.edu - use generic-host -} - - -define host { - host_name ibgrid-backup - alias ibgrid-backup.Princeton.EDU - address 172.18.3.220 - use InfoBlox - contacts Networking -} - -define host { - host_name ibgrid-master - alias ibgrid-master.Princeton.EDU - address 172.18.3.182 - use InfoBlox - contacts Networking -} - -define host { - host_name ibwlan-87-a - alias ibwlan-87-a.Princeton.EDU - address 172.18.4.55 - use InfoBlox - contacts Hajar Niroomand -} - -#define host { -# host_name ibwlan-87-a-vapornet100 -# alias ibwlan-87-a-vapornet100.Princeton.EDU -# address 10.8.0.5 -# use InfoBlox -# contacts Networking -#} - -define host { - host_name ibwlan-87-b - alias ibwlan-87-b.Princeton.EDU - address 172.18.4.56 - use InfoBlox - notifications_enabled 0 - contacts Networking -} - -#define host { -# host_name ibwlan-87-b-visitornet101 -# alias ibwlan-87-b-visitornet101.Princeton.EDU -# address 10.24.0.5 -# use InfoBlox -# contacts Networking -#} - -#define host { -# host_name ibwlan-87-c -# alias ibwlan-87-c.Princeton.EDU -# address 172.18.1.228 -# use InfoBlox -# contacts Networking -#} - -#define host { -# host_name ibwlan-ns-a-vapornet100 -# alias ibwlan-ns-a-vapornet100.Princeton.EDU -# address 10.8.0.6 -# use InfoBlox -# contacts Networking -#} - -define host { - host_name ibwlan-ns-a - alias ibwlan-ns-a.Princeton.EDU - address 172.18.4.57 - use InfoBlox - contacts Hajar Niroomand -} - -define host { - host_name ibwlan-ns-b - alias ibwlan-ns-b.Princeton.EDU - address 172.18.4.58 - use InfoBlox - notifications_enabled 0 - contacts Networking -} - -define host { - host_name ibwlan-a-vip - alias Pseudo VIP for ibwlan-ns-a and ibwlan-87-a - use InfoBlox - check_command check_host_cluster!$HOSTNAME$!$HOSTSTATEID:ibwlan-ns-a$,$HOSTSTATEID:ibwlan-87-a$!-c @2: - contacts Networking -} - -define host { - host_name ibwlan-b-vip - alias Pseudo VIP for ibwlan-ns-b and ibwlan-87-b - use InfoBlox - check_command check_host_cluster!$HOSTNAME$!$HOSTSTATEID:ibwlan-ns-b$,$HOSTSTATEID:ibwlan-87-b$!-c @2: - contacts Networking -} - -#define host { -# host_name ibwlan-ns-b-visitornet101 -# alias ibwlan-ns-b-visitornet101.Princeton.EDU -# address 10.24.0.6 -# use InfoBlox -# contacts Networking -#} - -#define host { -# host_name ibwlan-ns-c -# alias ibwlan-ns-c.Princeton.EDU -# address 172.18.1.229 -# use InfoBlox -# contacts Networking -#} - -#define host { -# host_name ibwlan-ns-c-wingnet.mccarter.org. -# alias ibwlan-ns-c-wingnet.mccarter.org..Princeton.EDU -# address 192.168.12.6 -# use InfoBlox -# contacts Networking -#} - -define host { - host_name iblox-87-ns-HA - alias HA cluster between iblox-87-ha and iblox-ns-a-ha - use InfoBlox - check_command check_host_cluster!$HOSTNAME$!$HOSTSTATEID:iblox-87-ha$,$HOSTSTATEID:iblox-ns-a-ha!-c @2: - contacts Networking -} - -define host { - host_name iblox-hpcrc-ns-HA - alias HA cluster between iblox-hpcrc-ha and iblox-ns-b-ha - use InfoBlox - check_command check_host_cluster!$HOSTNAME$!$HOSTSTATEID:iblox-hpcrc-ha$,$HOSTSTATEID:iblox-ns-b-ha!-c @2: - contacts Networking -} - -define host { - host_name ibddipv6 hpcrc-a ns-a HA - alias HA cluster between ibddipv6-hpcrc-a-ha and ibddipv6-ns-a-ha - use InfoBlox - check_command check_host_cluster!$HOSTNAME$!$HOSTSTATEID:ibddipv6-hpcrc-a-ha$,$HOSTSTATEID:ibddipv6-ns-a-ha!-c @2: - contacts Networking -} - -define host { - host_name ibvoip HA - alias HA cluster between ibvoip-a and ibvoip-b - use InfoBlox - check_command check_host_cluster!$HOSTNAME$!$HOSTSTATEID:ibvoip-a$,$HOSTSTATEID:ibvoip-b!-c @2: - contacts Networking -} - -define host { - host_name ibddipv6-vrrp - alias ibddipv6-vrrp.Princeton.EDU - address 128.112.128.50 - use InfoBlox - contacts Networking -} - -define host { - host_name ibddipv6-hpcrc-a-ha - alias ibddipv6-hpcrc-a-ha.Princeton.EDU - address 128.112.128.46 - use InfoBlox - notifications_enabled 0 - contacts Networking -} - -define host { - host_name ibddipv6-hpcrc-a - alias ibddipv6-hpcrc-a.Princeton.EDU - address 128.112.128.42 - use InfoBlox - notifications_enabled 0 - contacts Networking -} - -define host { - host_name ibddipv6-ns-a-ha - alias ibddipv6-ns-a-ha.Princeton.EDU - address 128.112.128.47 - use InfoBlox - notifications_enabled 0 - contacts Networking -} - -define host { - host_name ibddipv6-ns-a - alias ibddipv6-ns-a.Princeton.EDU - address 128.112.128.43 - use InfoBlox - notifications_enabled 0 - contacts Networking -} - -define host { - host_name iblox-87-ha - alias iblox-87-ha.Princeton.EDU - address 128.112.129.211 - use InfoBlox - notifications_enabled 0 - contacts Networking -} - -define host { - host_name iblox-87 - alias iblox-87.Princeton.EDU - address 128.112.130.94 - use InfoBlox - contacts Networking -} - -define host { - host_name iblox-hpcrc-ha - alias iblox-hpcrc-ha.Princeton.EDU - address 128.112.131.212 - use InfoBlox - notifications_enabled 0 - contacts Networking -} - -define host { - host_name iblox-hpcrc - alias iblox-hpcrc.Princeton.EDU - address 128.112.131.248 - use InfoBlox - contacts Networking -} - -define host { - host_name iblox-ns-a-ha - alias iblox-ns-a-ha.Princeton.EDU - address 128.112.130.110 - use InfoBlox - notifications_enabled 0 - contacts Networking -} - -define host { - host_name iblox-ns-a - alias iblox-ns-a.Princeton.EDU - address 128.112.130.135 - use InfoBlox - contacts Networking -} - -define host { - host_name iblox-ns-b-ha - alias iblox-ns-b-ha.Princeton.EDU - address 128.112.131.142 - use InfoBlox - notifications_enabled 0 - contacts Networking -} - -define host { - host_name iblox-ns-b - alias iblox-ns-b.Princeton.EDU - address 128.112.131.183 - use InfoBlox - contacts Networking -} - -define host { - host_name iblox1-vrrp - alias iblox1-vrrp.Princeton.EDU - address 128.112.129.7 - use InfoBlox - contacts Networking -} - -define host { - host_name iblox2-vrrp - alias iblox2-vrrp.Princeton.EDU - address 128.112.129.209 - use InfoBlox - contacts Networking -} - -define host { - host_name ibvoip-a - alias ibvoip-a.Princeton.EDU - address 172.18.0.32 - use InfoBlox - contacts Hajar Niroomand -} - -define host { - host_name ibvoip-b - alias ibvoip-b.Princeton.EDU - address 172.18.0.71 - use InfoBlox - contacts Hajar Niroomand -} - - -# TASK0094339 - New InfoBlox systems - -define host { - host_name iblox-master - alias iblox-master.Princeton.EDU - address 172.18.2.154 - use InfoBlox - contacts Networking -} - - -define host { - host_name iblox-master-hpcrc - alias iblox-master-hpcrc.Princeton.EDU - address 172.18.2.158 - use InfoBlox - contacts Networking -} - - -define host { - host_name iblox-master-ns - alias iblox-master-ns.Princeton.EDU - address 172.18.2.161 - use InfoBlox - contacts Networking -} - - -define host { - host_name iblox-master-hpcrc-ha - alias iblox-master-hpcrc-ha.Princeton.EDU - address 172.18.2.163 - use InfoBlox - notifications_enabled 0 - contacts Networking -} - - -define host { - host_name iblox-master-ns-ha - alias iblox-master-ns-ha.Princeton.EDU - address 172.18.2.171 - use InfoBlox - notifications_enabled 0 - contacts Networking -} - - -define host { - host_name iblox-master hpcrc-ha ns-ha HA - alias HA cluster between iblox-master-ns-ha and iblox-master-hpcrc-ha - use InfoBlox - check_command check_host_cluster!$HOSTNAME$!$HOSTSTATEID:iblox-master-hpcrc-ha$,$HOSTSTATEID:iblox-master-ns-ha$!-c @2: - contacts Networking -} - - -define host { - host_name iblox-external - alias iblox-external.Princeton.EDU - address 128.112.128.68 - use InfoBlox - contacts Networking -} - - -define host { - host_name iblox-ext-hpcrc-a - alias iblox-ext-hpcrc-a.Princeton.EDU - address 128.112.128.70 - use InfoBlox - contacts Networking -} - - -define host { - host_name iblox-ext-ns-a - alias iblox-ext-ns-a.Princeton.EDU - address 128.112.128.71 - use InfoBlox - contacts Networking -} - - -define host { - host_name iblox-ext-hpcrc-a-ha - alias iblox-ext-hpcrc-a-ha.Princeton.EDU - address 128.112.128.72 - use InfoBlox - notifications_enabled 0 - contacts Networking -} - - -define host { - host_name iblox-ext-ns-a-ha - alias iblox-ext-ns-a-ha.Princeton.EDU - address 128.112.128.73 - use InfoBlox - notifications_enabled 0 - contacts Networking -} - - -define host { - host_name iblox-ext hpcrc-a-ha ns-a-ha HA - alias HA cluster between iblox-ext-ns-a-ha and iblox-ext-hpcrc-a-ha - use InfoBlox - check_command check_host_cluster!$HOSTNAME$!$HOSTSTATEID:iblox-ext-hpcrc-a-ha$,$HOSTSTATEID:iblox-ext-ns-a-ha$!-c @2: - contacts Networking -} - - -define host { - host_name iblox-ext-hpcrc-a-mgmt - alias iblox-ext-hpcrc-a-mgmt.Princeton.EDU - address 172.18.2.173 - use InfoBlox - contacts Networking -} - - -define host { - host_name iblox-ext-ns-a-mgmt - alias iblox-ext-ns-a-mgmt.Princeton.EDU - address 172.18.2.180 - use InfoBlox - contacts Networking -} - - -define host { - host_name iblox-candidate-ns - alias iblox-candidate-ns.Princeton.EDU - address 172.18.2.181 - use InfoBlox - contacts Networking -} - - -define host { - host_name ibloxdev-master - alias ibloxdev-master.Princeton.EDU - address 172.18.2.90 - use InfoBlox - contacts Networking -} - - -define host { - host_name ibloxdev-master-hpcrc - alias ibloxdev-master-hpcrc.Princeton.EDU - address 172.18.2.94 - use InfoBlox - contacts Networking -} - - -define host { - host_name ibloxdev-master-ns - alias ibloxdev-master-ns.Princeton.EDU - address 172.18.2.95 - use InfoBlox - contacts Networking -} - - -define host { - host_name ibloxdev-master-hpcrc-ha - alias ibloxdev-master-hpcrc-ha.Princeton.EDU - address 172.18.2.103 - use InfoBlox - notifications_enabled 0 - contacts Networking -} - - -define host { - host_name ibloxdev-master-ns-ha - alias ibloxdev-master-ns-ha.Princeton.EDU - address 172.18.2.111 - use InfoBlox - notifications_enabled 0 - contacts Networking -} - - -define host { - host_name ibloxdev-master hpcrc-ha ns-ha HA - alias HA cluster between ibloxdev-master-ns-ha and ibloxdev-master-hpcrc-ha - use InfoBlox - check_command check_host_cluster!$HOSTNAME$!$HOSTSTATEID:ibloxdev-master-hpcrc-ha$,$HOSTSTATEID:ibloxdev-master-ns-ha$!-c @2: - contacts Networking -} - - - -define host { - host_name gate-aws-router-0001-plinknet44 - alias gate-aws-router-0001-plinknet44.Princeton.EDU - address 192.168.9.178 - hostgroups ISP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-aws-router-0002-plinknet46 - alias gate-aws-router-0002-plinknet46.Princeton.EDU - address 192.168.9.186 - hostgroups ISP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-cogentgate - alias gate-cogentgate.Princeton.EDU - address 38.122.150.1 - hostgroups ISP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-magpi - alias gate-magpi.Princeton.EDU - address 216.27.98.113 - hostgroups ISP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-esgate - alias gate-esgate.Princeton.EDU - address 204.153.48.34 - hostgroups ISP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-hurricane-electric-gate - alias gate-hurricane-electric-gate.Princeton.EDU - address 216.66.49.73 - hostgroups ISP routers, Rover hosts - use Rover device -} - - -define host { - host_name kma-151-1 - alias kma-151-1.Princeton.EDU - address 10.6.53.31 - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, RK, B07 - _date_created 2012-10-23 - _date_changed 2012-10-23 - contacts Martin Harriss, Maureen E. OConnor - _contacts martin@princeton.edu, maureeno@princeton.edu - use generic-host -} - - -define host { - host_name kma-151-2 - alias kma-151-2.Princeton.EDU - address 10.6.53.38 - _department Enterprise Infrastructure Services, Office of Information Technology - _building 151 Forrestal Rd. - _room MR, RK, B07 - _date_created 2012-10-23 - _date_changed 2012-10-23 - contacts Martin Harriss, Maureen E. OConnor - _contacts martin@princeton.edu, maureeno@princeton.edu - use generic-host -} - - -define host { - host_name kma-ns-1 - alias kma-ns-1.Princeton.EDU - address 10.6.53.30 - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room MR, RK, I1 - _date_created 2012-10-23 - _date_changed 2012-10-23 - contacts Martin Harriss, Maureen E. OConnor - _contacts martin@princeton.edu, maureeno@princeton.edu - use generic-host -} - - -define host { - host_name kma-ns-2 - alias kma-ns-2.Princeton.EDU - address 10.6.53.27 - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - _room MR, RK, I1 - _date_created 2012-10-23 - _date_changed 2012-10-23 - contacts Martin Harriss, Maureen E. OConnor - _contacts martin@princeton.edu, maureeno@princeton.edu - use generic-host -} - - -define host { - host_name eisfwqa-linknet40 - alias eisfwqa-linknet40.Princeton.EDU - address 128.112.12.174 - hostgroups Misc devices, Rover hosts - use Rover device -} - - -define host { - host_name eisfwqa-fw-servernet-8 - alias eisfwqa-fw-servernet-8.Princeton.EDU - address 10.6.63.1 - hostgroups Misc devices, Rover hosts - use Rover device -} - - -define host { - host_name eisfwqa-fw-servernet-9 - alias eisfwqa-fw-servernet-9.Princeton.EDU - address 140.180.223.225 - hostgroups Misc devices, Rover hosts - use Rover device -} - - -define host { - host_name ppn-ha - alias ppn-ha.Princeton.EDU - address 172.18.174.16 - hostgroups Misc devices, Rover hosts - use Rover device -} - - -define host { - host_name swch-ppn2 - alias swch-ppn2.Princeton.EDU - address 172.18.194.109 - hostgroups Misc devices, Rover hosts - use Rover device -} - - -define host { - host_name cd24-0833 - alias cd24-0833.Princeton.EDU - address 172.18.2.144 - hostgroups Misc devices, Rover hosts - use Rover device -} - - -define host { - host_name swch-ppn3 - alias swch-ppn3.Princeton.EDU - address 172.18.194.124 - hostgroups Misc devices, Rover hosts - use Rover device -} - - -define host { - host_name sci-border-hpcrc - alias sci-border-hpcrc.Princeton.EDU - address 172.18.2.112 - hostgroups Misc devices, Rover hosts - use Rover device -} - - -define host { - host_name sci-border-hpcrc-ctrl - alias sci-border-hpcrc-ctrl.Princeton.EDU - address 172.18.1.42 - hostgroups Misc devices, Rover hosts - use Rover device -} - - -define host { - host_name cy12-701-lab - alias cy12-701-lab.Princeton.EDU - address 172.18.3.14 - hostgroups Misc devices, Rover hosts - use Rover device -} - - -define host { - host_name sw-testbed-701carnegiedtl-02 - alias sw-testbed-701carnegiedtl-02.Princeton.EDU - address 172.18.2.212 - hostgroups Misc devices, Rover hosts - use Rover device -} - - -define host { - host_name sw-testbed-87plab-01 - alias sw-testbed-87plab-01.Princeton.EDU - address 172.20.32.18 - hostgroups Misc devices, Rover hosts - use Rover device -} - - -define host { - host_name sw-testbed-hpcrc-border - alias sw-testbed-hpcrc-border.Princeton.EDU - address 172.20.32.19 - hostgroups Misc devices, Rover hosts - use Rover device -} - - -define host { - host_name sw-core-sciencedmz - alias sw-core-sciencedmz.Princeton.EDU - address 172.18.2.217 - hostgroups Misc devices, Rover hosts - use Rover device -} - - -define host { - host_name ce32-1753 - alias ce32-1753.Princeton.EDU - address 172.18.2.245 - hostgroups Misc devices, Rover hosts - use Rover device -} - - -define host { - host_name ce32-1754 - alias ce32-1754.Princeton.EDU - address 172.18.3.18 - hostgroups Misc devices, Rover hosts - use Rover device -} - - -define host { - host_name sw-testbed-hpcrclab-01 - alias sw-testbed-hpcrclab-01.Princeton.EDU - address 172.20.32.20 - hostgroups Misc devices, Rover hosts - use Rover device -} - - -define host { - host_name eis100lb-ha - alias eis100lb-ha.Princeton.EDU - address 192.168.4.144 - hostgroups Misc devices, Rover hosts - use Rover device -} - - -define host { - host_name eis101lb-ha - alias eis101lb-ha.Princeton.EDU - address 192.168.4.146 - hostgroups Misc devices, Rover hosts - use Rover device -} - - -define host { - host_name ibddivp6-vrrp - alias ibddivp6-vrrp.Princeton.EDU - address 128.112.128.50 - hostgroups Misc devices, Rover hosts - use Rover device -} - - -define host { - host_name bmf-87-bypass - alias bmf-87-bypass.Princeton.EDU - address 172.18.0.11 - hostgroups Misc devices, Rover hosts - use Rover device -} - - -define host { - host_name bmf-151-bypass - alias bmf-151-bypass.Princeton.EDU - address 172.18.2.0 - hostgroups Misc devices, Rover hosts - use Rover device -} - - -define host { - host_name bmf-sw-87 - alias bmf-sw-87.Princeton.EDU - address 172.18.2.13 - hostgroups Misc devices, Rover hosts - use Rover device -} - - -define host { - host_name bmf-sw-87-2 - alias bmf-sw-87-2.Princeton.EDU - address 172.18.0.73 - hostgroups Misc devices, Rover hosts - use Rover device -} - - -define host { - host_name bmf-sw-87-lab-bypass - alias bmf-sw-87-lab-bypass.Princeton.EDU - address 172.18.0.125 - hostgroups Misc devices, Rover hosts - use Rover device -} - - -define host { - host_name bmf-sw-hpcrc - alias bmf-sw-hpcrc.Princeton.EDU - address 172.18.3.103 - hostgroups Misc devices, Rover hosts - use Rover device -} - - -define host { - host_name bmf-sw-hpcrc-2 - alias bmf-sw-hpcrc-2.Princeton.EDU - address 172.18.3.239 - hostgroups Misc devices, Rover hosts - use Rover device -} - - -define host { - host_name bmf-sw-hpcrc-3 - alias bmf-sw-hpcrc-3.Princeton.EDU - address 172.18.1.0 - hostgroups Misc devices, Rover hosts - use Rover device -} - - -define host { - host_name bmf-sw-ns - alias bmf-sw-ns.Princeton.EDU - address 172.18.2.17 - hostgroups Misc devices, Rover hosts - use Rover device -} - - -define host { - host_name sightline-ns - alias sightline-ns.Princeton.EDU - address 140.180.219.33 - hostgroups Misc devices, Rover hosts - use Rover device -} - - -define host { - host_name tms-151-mgmt1 - alias tms-151-mgmt1.Princeton.EDU - address 172.18.3.42 - hostgroups Misc devices, Rover hosts - use Rover device -} - - -define host { - host_name sightline-87 - alias sightline-87.Princeton.EDU - address 140.180.219.32 - hostgroups Misc devices, Rover hosts - use Rover device -} - - -define host { - host_name sightline-151 - alias sightline-151.Princeton.EDU - address 140.180.219.31 - hostgroups Misc devices, Rover hosts - use Rover device -} - - -define host { - host_name sightline-151-pi - alias sightline-151-pi.Princeton.EDU - address 140.180.219.34 - hostgroups Misc devices, Rover hosts - use Rover device -} - - -define host { - host_name md-eastwest-admin-87p-1 - alias md-eastwest-admin-87p-1.Princeton.EDU - address 172.18.255.243 - hostgroups Misc devices, Rover hosts - use Rover device -} - - -define host { - host_name md-eastwest-admin-87p-2 - alias md-eastwest-admin-87p-2.Princeton.EDU - address 172.18.255.242 - hostgroups Misc devices, Rover hosts - use Rover device -} - - -define host { - host_name md-eastwest-admin-ns-1 - alias md-eastwest-admin-ns-1.Princeton.EDU - address 172.18.255.244 - hostgroups Misc devices, Rover hosts - use Rover device -} - - -define host { - host_name md-eastwest-admin-ns-2 - alias md-eastwest-admin-ns-2.Princeton.EDU - address 172.18.255.231 - hostgroups Misc devices, Rover hosts - use Rover device -} - - -define host { - host_name cf48-0687 - alias cf48-0687.Princeton.EDU - address 172.18.4.54 - hostgroups Misc devices, Rover hosts - use Rover device -} - - -define host { - host_name cf48-0753 - alias cf48-0753.Princeton.EDU - address 172.18.4.40 - hostgroups Misc devices, Rover hosts - use Rover device -} - - -define host { - host_name cf48-0754 - alias cf48-0754.Princeton.EDU - address 172.18.4.42 - hostgroups Misc devices, Rover hosts - use Rover device -} - - -define host { - host_name cf48-0755 - alias cf48-0755.Princeton.EDU - address 172.18.4.43 - hostgroups Misc devices, Rover hosts - use Rover device -} - - -define host { - host_name nat-mccarter-plinknet34 - alias nat-mccarter-plinknet34.Princeton.EDU - address 192.168.9.142 - hostgroups NAT McCarter, Rover hosts - use Rover device -} - - -define host { - host_name netbmfsrv - alias netbmfsrv.Princeton.EDU - address 172.18.1.180 - hostgroups NAT McCarter, Rover hosts - use Rover device -} - - -define host { - host_name netbmfsrvhpcrc - alias netbmfsrvhpcrc.Princeton.EDU - address 172.18.2.50 - hostgroups NAT McCarter, Rover hosts - use Rover device -} - -# -# Net management interfaces -# - - -define host { - host_name csgspdb202w-netmgt - alias csgspdb202w-netmgt.Princeton.EDU - address 172.19.0.113 - use Out of band interface -} - - -define host { - host_name csgspdb203w-netmgt - alias csgspdb203w-netmgt.Princeton.EDU - address 172.19.0.121 - use Out of band interface -} - - -define host { - host_name das210w-netmgt - alias das210w-netmgt.Princeton.EDU - address 172.19.0.18 - use Out of band interface -} - - -define host { - host_name dev203w-netmgt - alias dev203w-netmgt.Princeton.EDU - address 172.19.0.11 - use Out of band interface -} - - -define host { - host_name eis208l-drac - alias eis208l-drac.Princeton.EDU - address 172.19.1.9 - use Out of band interface -} - - -define host { - host_name eis319l-netmgt - alias eis319l-netmgt.Princeton.EDU - address 172.19.0.138 - use Out of band interface -} - - -define host { - host_name eissql100w-netmgt - alias eissql100w-netmgt.Princeton.EDU - address 172.19.0.89 - use Out of band interface -} - - -define host { - host_name eissql101w-netmgt - alias eissql101w-netmgt.Princeton.EDU - address 172.19.0.90 - use Out of band interface -} - - -define host { - host_name eissql105w-netmgt - alias eissql105w-netmgt.Princeton.EDU - address 172.19.0.58 - use Out of band interface -} - - -define host { - host_name eissql203w-netmgt - alias eissql203w-netmgt.Princeton.EDU - address 172.19.0.120 - use Out of band interface -} - - -define host { - host_name eissql204w-netmgt - alias eissql204w-netmgt.Princeton.EDU - address 172.19.0.47 - use Out of band interface -} - - -define host { - host_name eissql206w-netmgt - alias eissql206w-netmgt.Princeton.EDU - address 172.19.0.83 - use Out of band interface -} - - -define host { - host_name eissql207w-netmgt - alias eissql207w-netmgt.Princeton.EDU - address 172.19.0.86 - use Out of band interface -} - - -define host { - host_name eissql210w-netmgt - alias eissql210w-netmgt.Princeton.EDU - address 172.19.0.79 - use Out of band interface -} - - -define host { - host_name eissql211w-netmgt - alias eissql211w-netmgt.Princeton.EDU - address 172.19.0.108 - use Out of band interface -} - - -define host { - host_name eistsm206l-netmgt - alias eistsm206l-netmgt.Princeton.EDU - address 172.19.0.77 - use Out of band interface -} - - -define host { - host_name eistsm207l-netmgt - alias eistsm207l-netmgt.Princeton.EDU - address 172.19.0.82 - use Out of band interface -} - - -define host { - host_name eistsm208l-netmgt - alias eistsm208l-netmgt.Princeton.EDU - address 172.19.0.84 - use Out of band interface -} - - -define host { - host_name eistsm210l-netmgt - alias eistsm210l-netmgt.Princeton.EDU - address 172.19.0.88 - use Out of band interface -} - - -define host { - host_name eistsm211l-netmgt - alias eistsm211l-netmgt.Princeton.EDU - address 172.19.0.87 - use Out of band interface -} - - -define host { - host_name essconsole201w-netmgt - alias essconsole201w-netmgt.Princeton.EDU - address 172.19.0.38 - use Out of band interface -} - - -define host { - host_name essesx200v-netmgt - alias essesx200v-netmgt.Princeton.EDU - address 172.19.0.74 - use Out of band interface -} - - -define host { - host_name essesx201v-netmgt - alias essesx201v-netmgt.Princeton.EDU - address 172.19.0.75 - use Out of band interface -} - - -define host { - host_name essesx202v-netmgt - alias essesx202v-netmgt.Princeton.EDU - address 172.19.0.32 - use Out of band interface -} - - -define host { - host_name essesx203v-netmgt - alias essesx203v-netmgt.Princeton.EDU - address 172.19.0.76 - use Out of band interface -} - - -define host { - host_name essesx211v-netmgt - alias essesx211v-netmgt.Princeton.EDU - address 172.19.1.101 - use Out of band interface -} - - -define host { - host_name essesx212v-netmgt - alias essesx212v-netmgt.Princeton.EDU - address 172.19.1.102 - use Out of band interface -} - - -define host { - host_name essesx213v-netmgt - alias essesx213v-netmgt.Princeton.EDU - address 172.19.0.153 - use Out of band interface -} - - -define host { - host_name essesx214v-netmgt - alias essesx214v-netmgt.Princeton.EDU - address 172.19.0.185 - use Out of band interface -} - - -define host { - host_name essesx215v-netmgt - alias essesx215v-netmgt.Princeton.EDU - address 172.19.0.210 - use Out of band interface -} - - -define host { - host_name essesx216v-netmgt - alias essesx216v-netmgt.Princeton.EDU - address 172.19.0.104 - use Out of band interface -} - - -define host { - host_name essesx217v-netmgt - alias essesx217v-netmgt.Princeton.EDU - address 172.19.0.85 - use Out of band interface -} - - -define host { - host_name essesx218v-netmgt - alias essesx218v-netmgt.Princeton.EDU - address 172.19.0.105 - use Out of band interface -} - - -define host { - host_name essesx220v-netmgt - alias essesx220v-netmgt.Princeton.EDU - address 172.19.0.212 - use Out of band interface -} - - -define host { - host_name essesx221v-netmgt - alias essesx221v-netmgt.Princeton.EDU - address 172.19.0.242 - use Out of band interface -} - - -define host { - host_name essesx228v-netmgt - alias essesx228v-netmgt.Princeton.EDU - address 172.19.0.22 - use Out of band interface -} - - -define host { - host_name essesx229v-netmgt - alias essesx229v-netmgt.Princeton.EDU - address 172.19.0.39 - use Out of band interface -} - - -define host { - host_name essesx240v-netmgt - alias essesx240v-netmgt.Princeton.EDU - address 172.19.0.21 - use Out of band interface -} - - -define host { - host_name essesx241v-netmgt - alias essesx241v-netmgt.Princeton.EDU - address 172.19.0.56 - use Out of band interface -} - - -define host { - host_name essesx242v-netmgt - alias essesx242v-netmgt.Princeton.EDU - address 172.19.0.61 - use Out of band interface -} - - -define host { - host_name essesx250v-netmgt - alias essesx250v-netmgt.Princeton.EDU - address 172.19.0.97 - use Out of band interface -} - - -define host { - host_name essesx251v-netmgt - alias essesx251v-netmgt.Princeton.EDU - address 172.19.0.186 - use Out of band interface -} - - -define host { - host_name essesx260v-netmgt - alias essesx260v-netmgt.Princeton.EDU - address 172.19.0.147 - use Out of band interface -} - - -define host { - host_name essesx261v-netmgt - alias essesx261v-netmgt.Princeton.EDU - address 172.19.0.144 - use Out of band interface -} - - -define host { - host_name essesx262v-netmgt - alias essesx262v-netmgt.Princeton.EDU - address 172.19.0.143 - use Out of band interface -} - - -define host { - host_name essesx263v-netmgt - alias essesx263v-netmgt.Princeton.EDU - address 172.19.0.134 - use Out of band interface -} - - -define host { - host_name essesx290v-netmgt - alias essesx290v-netmgt.Princeton.EDU - address 172.19.0.231 - use Out of band interface -} - - -define host { - host_name essesx291v-netmgt - alias essesx291v-netmgt.Princeton.EDU - address 172.19.1.13 - use Out of band interface -} - - -define host { - host_name essesx292v-netmgt - alias essesx292v-netmgt.Princeton.EDU - address 172.19.1.14 - use Out of band interface -} - - -define host { - host_name essvmbkp100w-netmgt - alias essvmbkp100w-netmgt.Princeton.EDU - address 172.19.0.36 - use Out of band interface -} - - -define host { - host_name essvmbkp200w-netmgt - alias essvmbkp200w-netmgt.Princeton.EDU - address 172.19.0.128 - use Out of band interface -} - - -define host { - host_name essvmbkp201w-netmgt - alias essvmbkp201w-netmgt.Princeton.EDU - address 172.19.0.130 - use Out of band interface -} - - -define host { - host_name fac-infoctr1-netmgt - alias fac-infoctr1-netmgt.Princeton.EDU - address 172.19.0.68 - use Out of band interface -} - - -define host { - host_name iamencoder204w-netmgt - alias iamencoder204w-netmgt.Princeton.EDU - address 172.19.0.70 - use Out of band interface -} - - -define host { - host_name iamencoder205w-netmgt - alias iamencoder205w-netmgt.Princeton.EDU - address 172.19.0.81 - use Out of band interface -} - - -define host { - host_name iamencoder206w-netmgt - alias iamencoder206w-netmgt.Princeton.EDU - address 172.19.0.91 - use Out of band interface -} - - -define host { - host_name hoover1-netmgt - alias hoover1-netmgt.Princeton.EDU - address 172.19.0.176 - use Out of band interface -} - - -define host { - host_name ims204-netmgt - alias ims204-netmgt.Princeton.EDU - address 172.19.0.71 - use Out of band interface -} - - - -define host { - host_name isserv215-netmgt - alias isserv215-netmgt.Princeton.EDU - address 172.19.0.133 - use Out of band interface -} - - -define host { - host_name isserv216-netmgt - alias isserv216-netmgt.Princeton.EDU - address 172.19.0.55 - use Out of band interface -} - - -define host { - host_name lsscvms207w-netmgt - alias lsscvms207w-netmgt.Princeton.EDU - address 172.19.0.44 - use Out of band interface -} - - -define host { - host_name nismaster-netmgt - alias nismaster-netmgt.Princeton.EDU - address 172.19.0.33 - use Out of band interface -} - - -define host { - host_name pdom06-netmgt - alias pdom06-netmgt.Princeton.EDU - address 172.19.0.110 - use Out of band interface -} - - -define host { - host_name pdom07-netmgt - alias pdom07-netmgt.Princeton.EDU - address 172.19.1.15 - use Out of band interface -} - - -define host { - host_name prz203w-netmgt - alias prz203w-netmgt.Princeton.EDU - address 172.19.0.34 - use Out of band interface -} - - - -define host { - host_name roxdb01-netmgt - alias roxdb01-netmgt.Princeton.EDU - address 172.19.0.146 - use Out of band interface -} - - -define host { - host_name roxdb02-netmgt - alias roxdb02-netmgt.Princeton.EDU - address 172.19.0.164 - use Out of band interface -} - - -define host { - host_name roxdb01qa-netmgt - alias roxdb01qa-netmgt.Princeton.EDU - address 172.19.0.155 - use Out of band interface -} - - -define host { - host_name roxdb02qa-netmgt - alias roxdb02qa-netmgt.Princeton.EDU - address 172.19.0.175 - use Out of band interface -} - - -define host { - host_name sdpldap101l-netmgt - alias sdpldap101l-netmgt.Princeton.EDU - address 172.19.0.131 - use Out of band interface -} - - -define host { - host_name sentinel-netmgt - alias sentinel-netmgt.Princeton.EDU - address 172.19.0.171 - use Out of band interface -} - - -define host { - host_name wasspdb200w-netmgt - alias wasspdb200w-netmgt.Princeton.EDU - address 172.19.0.24 - use Out of band interface -} - - -define host { - host_name wasspdb201w-netmgt - alias wasspdb201w-netmgt.Princeton.EDU - address 172.19.0.19 - use Out of band interface -} - - -define host { - host_name win04-netmgt - alias win04-netmgt.Princeton.EDU - address 172.19.0.64 - use Out of band interface -} - - - - - -### Request by Erick Burd in TASK0119544 -define host { - host_name netbmfctrl1 - alias netbmfctrl1.Princeton.EDU - address 172.18.2.11 - hostgroups Rover hosts - use Rover device -} - - -define host { - host_name netbmfctrl2 - alias netbmfctrl2.Princeton.EDU - address 172.18.2.63 - hostgroups Rover hosts - use Rover device -} - -### 151 Switch - direct connection to Nagios ims204 -define host { - host_name gigagate6 - alias Main 151 Forrestal switch - address 172.18.0.81 - use Router/Switch/Load Balancer - check_command check_ssh - contacts nagiosadmin -} - -#### Need a host cluster for gig6 to determine if traffic passes through it - -define host { - host_name gigagate6 151 switch - alias Main 151 Forrestal switch - use Router/Switch/Load Balancer - max_check_attempts 2 - check_command check_host_cluster!$HOSTNAME$!$HOSTSTATEID:gigagate6$,$HOSTSTATEID:core-87-router$,HOSTSTATEID:ims314$,$HOSTSTATEID:ims315$!-c @6: - contacts nagiosadmin -} - - -### NS Switch - direct connection to Nagios ims205 -define host { - host_name core-ns - alias Main New South switch - address 172.18.174.13 - use Router/Switch/Load Balancer - check_command check_ssh - contacts nagiosadmin -} - -#### Need a host cluster for core-ns to determine if traffic passes through it - -define host { - host_name core-ns NS switch - alias Main New South switch - use Router/Switch/Load Balancer - max_check_attempts 2 - check_command check_host_cluster!$HOSTNAME$!$HOSTSTATEID:core-ns$,$HOSTSTATEID:core-87-router$,HOSTSTATEID:ims314$,$HOSTSTATEID:ims315$!-c @6: - contacts nagiosadmin -} - - -define host { - host_name core-87-router - alias 87 Prospect CDN router - address 128.112.128.2 - use Router/Switch/Load Balancer - contacts nagiosadmin -} - -define host { - host_name border-87-router - alias Border edge router in 87 Prospect - use Router/Switch/Load Balancer - parents core-87-router - contacts nagiosadmin -} - -define host { - host_name core-cdn-router - alias core-cdn-router.Princeton.EDU - use Router/Switch/Load Balancer - contacts nagiosadmin -} - -define host { - host_name eisnet200l - alias eisnet200l.Princeton.EDU - address 140.180.220.115 - use Router/Switch/Load Balancer - parents core-87-router - icon_image firewall.gif - statusmap_image firewall.gd2 - contacts Networking -} - -define host { - host_name backupvpn - alias backupvpn.Princeton.EDU - address 140.180.226.56 - use Router/Switch/Load Balancer - parents core-87-router - contacts Networking -} - -define host { - host_name aventailsslvpn-sra-n1 - alias aventailsslvpn-sra-n1.Princeton.EDU - address 128.112.64.25 - use Router/Switch/Load Balancer - check_command check_http - icon_image firewall.gif - statusmap_image firewall.gd2 - contacts Networking -} - -define host { - host_name aventailsslvpn-sra-n2 - alias aventailsslvpn-sra-n2.Princeton.EDU - address 128.112.64.29 - use Router/Switch/Load Balancer - check_command check_http - icon_image firewall.gif - statusmap_image firewall.gd2 - contacts Networking -} - -#define host { -# host_name remote-access -# alias remote-access.Princeton.EDU -# use Router/Switch/Load Balancer -# icon_image firewall.gif -# statusmap_image firewall.gd2 -# contacts Networking -#} - -define host { - host_name eisnet-sra-cms - alias eisnet-sra-cms.Princeton.EDU - address 140.180.219.19 - use Router/Switch/Load Balancer - check_command check_http - icon_image firewall.gif - statusmap_image firewall.gd2 - contacts Networking -} - - -define host { - host_name eisnet-sra-n1.remote - alias eisnet-sra-n1.remote.Princeton.EDU - address 128.112.101.13 - use Router/Switch/Load Balancer - check_command check_http - icon_image firewall.gif - statusmap_image firewall.gd2 - contacts Networking -} - -define host { - host_name eisnet-sra-n2.remote - alias eisnet-sra-n2.remote.Princeton.EDU - address 128.112.101.14 - use Router/Switch/Load Balancer - check_command check_http - icon_image firewall.gif - statusmap_image firewall.gd2 - contacts Networking -} - -### Irwin's Solaris machines - -define host { - host_name alfrente - alias alfrente.Princeton.EDU - address 128.112.129.32 - icon_image sun40.jpg - icon_image_alt Solaris - vrml_image sun40.png - statusmap_image sun40.gd2 - notes Solaris DNS server - contact_groups Networking Pager - use Networking device -} - - -define host { - host_name capserver - alias capserver.Princeton.EDU - address 128.112.129.111 - icon_image sun40.jpg - icon_image_alt Solaris - vrml_image sun40.png - statusmap_image sun40.gd2 - notes Solaris DNS server - contact_groups Networking Pager - use Networking device -} - - -define host { - host_name four11 - alias four11.Princeton.EDU - address 128.112.128.1 - icon_image sun40.jpg - icon_image_alt Solaris - vrml_image sun40.png - statusmap_image sun40.gd2 - notes Solaris DNS server - contact_groups Networking Pager - use Networking device -} - - -define host { - host_name oznot - alias oznot.Princeton.EDU - address 128.112.133.220 - icon_image sun40.jpg - icon_image_alt Solaris - vrml_image sun40.png - statusmap_image sun40.gd2 - notes Solaris DNS server - contact_groups Networking Pager - use Networking device -} - - -define host { - host_name heymon - alias heymon.Princeton.EDU - address 128.112.128.152 - icon_image sun40.jpg - icon_image_alt Solaris - vrml_image sun40.png - statusmap_image sun40.gd2 - notes Network and Monitoring server - contact_groups Networking Pager - use Networking device -} - - -define host { - host_name eyeinthesky - alias eyeinthesky.Princeton.EDU - address 128.112.133.130 - icon_image sun40.jpg - icon_image_alt Solaris - vrml_image sun40.png - statusmap_image sun40.gd2 - notes Network and Monitoring Solaris server - contact_groups Networking Pager - use Networking device -} - -define host { - host_name eyeinthesky-infranet1 - alias eyeinthesky-infranet1.Princeton.EDU - address 172.18.0.10 - icon_image sun40.jpg - icon_image_alt Solaris - vrml_image sun40.png - statusmap_image sun40.gd2 - notes Network and Monitoring Solaris server - contact_groups Networking Pager - use Networking device -} - -define host { - host_name eyeinthesky-infranet2 - alias eyeinthesky-infranet2.Princeton.EDU - address 172.18.32.10 - icon_image sun40.jpg - icon_image_alt Solaris - vrml_image sun40.png - statusmap_image sun40.gd2 - notes Network and Monitoring Solaris server - contact_groups Networking Pager - use Networking device -} - -define host { - host_name eyeinthesky-infranet3 - alias eyeinthesky-infranet3.Princeton.EDU - address 172.18.64.10 - icon_image sun40.jpg - icon_image_alt Solaris - vrml_image sun40.png - statusmap_image sun40.gd2 - notes Network and Monitoring Solaris server - contact_groups Networking Pager - use Networking device -} - -define host { - host_name eyeinthesky-infranet4 - alias eyeinthesky-infranet4.Princeton.EDU - address 172.18.192.10 - icon_image sun40.jpg - icon_image_alt Solaris - vrml_image sun40.png - statusmap_image sun40.gd2 - notes Network and Monitoring Solaris server - contact_groups Networking Pager - use Networking device -} - -define host { - host_name eyeinthesky-infranet5 - alias eyeinthesky-infranet5.Princeton.EDU - address 172.18.128.10 - icon_image sun40.jpg - icon_image_alt Solaris - vrml_image sun40.png - statusmap_image sun40.gd2 - notes Network and Monitoring Solaris server - contact_groups Networking Pager - use Networking device -} - -define host { - host_name eyeinthesky-infranet7 - alias eyeinthesky-infranet7.Princeton.EDU - address 172.18.224.10 - icon_image sun40.jpg - icon_image_alt Solaris - vrml_image sun40.png - statusmap_image sun40.gd2 - notes Network and Monitoring Solaris server - contact_groups Networking Pager - use Networking device -} - -define host { - host_name heymon-infranet1 - alias heymon-infranet1.Princeton.EDU - address 172.18.0.152 - icon_image sun40.jpg - icon_image_alt Solaris - vrml_image sun40.png - statusmap_image sun40.gd2 - notes Network and Monitoring Solaris server - contact_groups Networking Pager - use Networking device -} - -define host { - host_name heymon-infranet2 - alias heymon-infranet2.Princeton.EDU - address 172.18.32.152 - icon_image sun40.jpg - icon_image_alt Solaris - vrml_image sun40.png - statusmap_image sun40.gd2 - notes Network and Monitoring Solaris server - contact_groups Networking Pager - use Networking device -} - -define host { - host_name heymon-infranet3 - alias heymon-infranet3.Princeton.EDU - address 172.18.64.152 - icon_image sun40.jpg - icon_image_alt Solaris - vrml_image sun40.png - statusmap_image sun40.gd2 - notes Network and Monitoring Solaris server - contact_groups Networking Pager - use Networking device -} - -define host { - host_name heymon-infranet4 - alias heymon-infranet4.Princeton.EDU - address 172.18.192.152 - icon_image sun40.jpg - icon_image_alt Solaris - vrml_image sun40.png - statusmap_image sun40.gd2 - notes Network and Monitoring Solaris server - contact_groups Networking Pager - use Networking device -} - -define host { - host_name heymon-infranet5 - alias heymon-infranet5.Princeton.EDU - address 172.18.128.152 - icon_image sun40.jpg - icon_image_alt Solaris - vrml_image sun40.png - statusmap_image sun40.gd2 - notes Network and Monitoring Solaris server - contact_groups Networking Pager - use Networking device -} - -define host { - host_name heymon-infranet7 - alias heymon-infranet7.Princeton.EDU - address 172.18.224.152 - icon_image sun40.jpg - icon_image_alt Solaris - vrml_image sun40.png - statusmap_image sun40.gd2 - notes Network and Monitoring Solaris server - contact_groups Networking Pager - use Networking device -} - -define host { - host_name kirby - alias kirby.Princeton.EDU - address 128.112.129.176 - icon_image sun40.jpg - icon_image_alt Solaris - vrml_image sun40.png - statusmap_image sun40.gd2 - notes Network and Monitoring Solaris server - contact_groups Networking Pager - use Networking device -} - -define host { - host_name mrtg.net - alias mrtg.net.Princeton.EDU - address 128.112.134.12 - icon_image sun40.jpg - icon_image_alt Solaris - vrml_image sun40.png - statusmap_image sun40.gd2 - notes Network and Monitoring Solaris server - contact_groups Networking Pager - use Networking device -} - -define host { - host_name new-heymon - alias new-heymon.Princeton.EDU - address 128.112.129.55 - icon_image sun40.jpg - icon_image_alt Solaris - vrml_image sun40.png - statusmap_image sun40.gd2 - notes Network and Monitoring Solaris server - contact_groups Networking Pager - use Networking device -} - -define host { - host_name new-heymon-infranet1 - alias new-heymon-infranet1.Princeton.EDU - address 172.18.4.5 - icon_image sun40.jpg - icon_image_alt Solaris - vrml_image sun40.png - statusmap_image sun40.gd2 - notes Network and Monitoring Solaris server - contact_groups Networking Pager - use Networking device -} - -define host { - host_name new-heymon-infranet2 - alias new-heymon-infranet2.Princeton.EDU - address 172.18.32.16 - icon_image sun40.jpg - icon_image_alt Solaris - vrml_image sun40.png - statusmap_image sun40.gd2 - notes Network and Monitoring Solaris server - contact_groups Networking Pager - use Networking device -} - -define host { - host_name new-heymon-infranet3 - alias new-heymon-infranet3.Princeton.EDU - address 172.18.65.176 - icon_image sun40.jpg - icon_image_alt Solaris - vrml_image sun40.png - statusmap_image sun40.gd2 - notes Network and Monitoring Solaris server - contact_groups Networking Pager - use Networking device -} - -define host { - host_name new-heymon-infranet4 - alias new-heymon-infranet4.Princeton.EDU - address 172.18.192.64 - icon_image sun40.jpg - icon_image_alt Solaris - vrml_image sun40.png - statusmap_image sun40.gd2 - notes Network and Monitoring Solaris server - contact_groups Networking Pager - use Networking device -} - -define host { - host_name new-heymon-infranet5 - alias new-heymon-infranet5.Princeton.EDU - address 172.18.128.111 - icon_image sun40.jpg - icon_image_alt Solaris - vrml_image sun40.png - statusmap_image sun40.gd2 - notes Network and Monitoring Solaris server - contact_groups Networking Pager - use Networking device -} - -define host { - host_name new-heymon-infranet7 - alias new-heymon-infranet7.Princeton.EDU - address 172.18.224.11 - icon_image sun40.jpg - icon_image_alt Solaris - vrml_image sun40.png - statusmap_image sun40.gd2 - notes Network and Monitoring Solaris server - contact_groups Networking Pager - use Networking device -} - -define host { - host_name cuckoo - alias cuckoo.Princeton.EDU - address 10.6.63.139 - contact_groups Networking Pager - use Networking device -} - -define host { - host_name www.net - alias www.net.Princeton.EDU - address 128.112.128.55 - icon_image sun40.jpg - icon_image_alt Solaris - vrml_image sun40.png - statusmap_image sun40.gd2 - notes Network and Monitoring Solaris server - contact_groups Networking Pager - use Networking device -} - -#### TMS - -define host { - host_name tms-87-mgmt0 - alias tms-87-mgmt0.Princeton.EDU - address 172.18.4.26 - use Networking device -} - -define host { - host_name tms-87-mgmt1 - alias tms-87-mgmt1.Princeton.EDU - address 172.18.4.34 - use Networking device -} - -define host { - host_name sightline-NS - alias sightline-NS.Princeton.EDU - address 140.180.219.33 - use Networking device -} - - -define host { - host_name gate-csgate-linknet14 - alias gate-csgate-linknet14.Princeton.EDU - address 128.112.12.58 - hostgroups Non-OIT, Rover hosts - use Rover device -} - - -define host { - host_name apcats-693alexander-bdf - alias apcats-693alexander-bdf.Princeton.EDU - address 172.18.0.90 - hostgroups OIT APC Redundant Power Auto Transfer Switch, Rover hosts - use Rover device -} - - -define host { - host_name apcats-87prg07-cwdm - alias apcats-87prg07-cwdm.Princeton.EDU - address 172.18.1.60 - hostgroups OIT APC Redundant Power Auto Transfer Switch, Rover hosts - use Rover device -} - - -define host { - host_name apcats-hpcrc-bdf - alias apcats-hpcrc-bdf.Princeton.EDU - address 172.18.4.9 - hostgroups OIT APC Redundant Power Auto Transfer Switch, Rover hosts - use Rover device -} - - -define host { - host_name apc-pdu-87alcove-1 - alias apc-pdu-87alcove-1.Princeton.EDU - address 172.18.3.245 - hostgroups OIT APC Switched Rack PDU, Rover hosts - use Rover device -} - - -define host { - host_name apc-pdu-hpcrc-224-idf - alias apc-pdu-hpcrc-224-idf.Princeton.EDU - address 172.18.192.51 - hostgroups OIT APC Switched Rack PDU, Rover hosts - use Rover device -} - - -define host { - host_name arun-1011 - alias arun-1011.Princeton.EDU - address 172.18.82.125 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1278 - alias arun-1278.Princeton.EDU - address 172.18.84.167 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1870 - alias arun-1870.Princeton.EDU - address 172.18.85.27 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1873 - alias arun-1873.Princeton.EDU - address 172.18.85.28 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1874 - alias arun-1874.Princeton.EDU - address 172.18.85.29 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1875 - alias arun-1875.Princeton.EDU - address 172.18.85.30 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1876 - alias arun-1876.Princeton.EDU - address 172.18.85.31 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1877 - alias arun-1877.Princeton.EDU - address 172.18.85.32 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1878 - alias arun-1878.Princeton.EDU - address 172.18.85.33 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1879 - alias arun-1879.Princeton.EDU - address 172.18.85.34 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1880 - alias arun-1880.Princeton.EDU - address 172.18.85.35 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1881 - alias arun-1881.Princeton.EDU - address 172.18.85.36 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1882 - alias arun-1882.Princeton.EDU - address 172.18.85.37 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1884 - alias arun-1884.Princeton.EDU - address 172.18.85.38 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1885 - alias arun-1885.Princeton.EDU - address 172.18.85.39 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1887 - alias arun-1887.Princeton.EDU - address 172.18.85.40 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1889 - alias arun-1889.Princeton.EDU - address 172.18.85.41 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1892 - alias arun-1892.Princeton.EDU - address 172.18.85.26 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1893 - alias arun-1893.Princeton.EDU - address 172.18.85.42 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1894 - alias arun-1894.Princeton.EDU - address 172.18.85.43 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1895 - alias arun-1895.Princeton.EDU - address 172.18.85.44 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1896 - alias arun-1896.Princeton.EDU - address 172.18.85.45 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1897 - alias arun-1897.Princeton.EDU - address 172.18.85.46 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1904 - alias arun-1904.Princeton.EDU - address 172.18.85.47 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1911 - alias arun-1911.Princeton.EDU - address 172.18.85.48 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1912 - alias arun-1912.Princeton.EDU - address 172.18.85.49 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1913 - alias arun-1913.Princeton.EDU - address 172.18.85.50 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1914 - alias arun-1914.Princeton.EDU - address 172.18.85.51 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1917 - alias arun-1917.Princeton.EDU - address 172.18.85.52 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1918 - alias arun-1918.Princeton.EDU - address 172.18.85.53 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1919 - alias arun-1919.Princeton.EDU - address 172.18.85.54 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1920 - alias arun-1920.Princeton.EDU - address 172.18.85.55 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1922 - alias arun-1922.Princeton.EDU - address 172.18.85.56 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1923 - alias arun-1923.Princeton.EDU - address 172.18.85.57 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1924 - alias arun-1924.Princeton.EDU - address 172.18.85.58 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1932 - alias arun-1932.Princeton.EDU - address 172.18.85.59 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1933 - alias arun-1933.Princeton.EDU - address 172.18.85.60 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1934 - alias arun-1934.Princeton.EDU - address 172.18.85.61 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1935 - alias arun-1935.Princeton.EDU - address 172.18.85.62 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1936 - alias arun-1936.Princeton.EDU - address 172.18.85.63 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1937 - alias arun-1937.Princeton.EDU - address 172.18.85.64 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1938 - alias arun-1938.Princeton.EDU - address 172.18.85.65 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1940 - alias arun-1940.Princeton.EDU - address 172.18.85.66 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1941 - alias arun-1941.Princeton.EDU - address 172.18.85.67 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1944 - alias arun-1944.Princeton.EDU - address 172.18.85.68 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1945 - alias arun-1945.Princeton.EDU - address 172.18.85.69 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1947 - alias arun-1947.Princeton.EDU - address 172.18.84.177 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1948 - alias arun-1948.Princeton.EDU - address 172.18.84.181 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1949 - alias arun-1949.Princeton.EDU - address 172.18.84.183 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1951 - alias arun-1951.Princeton.EDU - address 172.18.85.70 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1952 - alias arun-1952.Princeton.EDU - address 172.18.84.226 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1956 - alias arun-1956.Princeton.EDU - address 172.18.85.71 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1957 - alias arun-1957.Princeton.EDU - address 172.18.85.72 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1958 - alias arun-1958.Princeton.EDU - address 172.18.85.73 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1986 - alias arun-1986.Princeton.EDU - address 172.18.85.74 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1987 - alias arun-1987.Princeton.EDU - address 172.18.85.75 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1988 - alias arun-1988.Princeton.EDU - address 172.18.85.76 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1989 - alias arun-1989.Princeton.EDU - address 172.18.85.77 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-1990 - alias arun-1990.Princeton.EDU - address 172.18.85.78 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2001 - alias arun-2001.Princeton.EDU - address 172.18.64.52 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2003 - alias arun-2003.Princeton.EDU - address 172.18.64.59 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2004 - alias arun-2004.Princeton.EDU - address 172.18.64.82 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2005 - alias arun-2005.Princeton.EDU - address 172.18.83.69 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2006 - alias arun-2006.Princeton.EDU - address 172.18.83.70 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2007 - alias arun-2007.Princeton.EDU - address 172.18.83.73 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2008 - alias arun-2008.Princeton.EDU - address 172.18.64.34 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2009 - alias arun-2009.Princeton.EDU - address 172.18.83.71 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2010 - alias arun-2010.Princeton.EDU - address 172.18.83.72 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2011 - alias arun-2011.Princeton.EDU - address 172.18.64.35 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2012 - alias arun-2012.Princeton.EDU - address 172.18.64.36 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2014 - alias arun-2014.Princeton.EDU - address 172.18.64.43 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2015 - alias arun-2015.Princeton.EDU - address 172.18.64.44 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2016 - alias arun-2016.Princeton.EDU - address 172.18.83.74 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2017 - alias arun-2017.Princeton.EDU - address 172.18.83.75 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2019 - alias arun-2019.Princeton.EDU - address 172.18.83.76 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2020 - alias arun-2020.Princeton.EDU - address 172.18.83.77 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2021 - alias arun-2021.Princeton.EDU - address 172.18.83.78 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2022 - alias arun-2022.Princeton.EDU - address 172.18.83.79 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2023 - alias arun-2023.Princeton.EDU - address 172.18.83.80 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2024 - alias arun-2024.Princeton.EDU - address 172.18.83.81 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2025 - alias arun-2025.Princeton.EDU - address 172.18.83.82 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2026 - alias arun-2026.Princeton.EDU - address 172.18.83.83 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2028 - alias arun-2028.Princeton.EDU - address 172.18.83.84 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2029 - alias arun-2029.Princeton.EDU - address 172.18.83.85 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2037 - alias arun-2037.Princeton.EDU - address 172.18.84.214 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2038 - alias arun-2038.Princeton.EDU - address 172.18.83.88 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2039 - alias arun-2039.Princeton.EDU - address 172.18.83.89 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2040 - alias arun-2040.Princeton.EDU - address 172.18.83.90 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2041 - alias arun-2041.Princeton.EDU - address 172.18.83.91 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2042 - alias arun-2042.Princeton.EDU - address 172.18.83.92 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2043 - alias arun-2043.Princeton.EDU - address 172.18.83.93 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2044 - alias arun-2044.Princeton.EDU - address 172.18.83.94 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2045 - alias arun-2045.Princeton.EDU - address 172.18.83.95 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2046 - alias arun-2046.Princeton.EDU - address 172.18.83.96 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2047 - alias arun-2047.Princeton.EDU - address 172.18.83.97 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2050 - alias arun-2050.Princeton.EDU - address 172.18.84.215 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2051 - alias arun-2051.Princeton.EDU - address 172.18.84.216 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2052 - alias arun-2052.Princeton.EDU - address 172.18.83.98 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2053 - alias arun-2053.Princeton.EDU - address 172.18.83.99 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2054 - alias arun-2054.Princeton.EDU - address 172.18.83.100 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2055 - alias arun-2055.Princeton.EDU - address 172.18.83.101 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2056 - alias arun-2056.Princeton.EDU - address 172.18.83.102 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2057 - alias arun-2057.Princeton.EDU - address 172.18.83.103 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2058 - alias arun-2058.Princeton.EDU - address 172.18.84.218 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2059 - alias arun-2059.Princeton.EDU - address 172.18.84.219 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2060 - alias arun-2060.Princeton.EDU - address 172.18.83.104 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2064 - alias arun-2064.Princeton.EDU - address 172.18.83.105 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2065 - alias arun-2065.Princeton.EDU - address 172.18.83.106 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2066 - alias arun-2066.Princeton.EDU - address 172.18.83.107 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2067 - alias arun-2067.Princeton.EDU - address 172.18.83.108 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2068 - alias arun-2068.Princeton.EDU - address 172.18.83.109 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2069 - alias arun-2069.Princeton.EDU - address 172.18.83.110 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2070 - alias arun-2070.Princeton.EDU - address 172.18.83.111 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2071 - alias arun-2071.Princeton.EDU - address 172.18.83.112 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2072 - alias arun-2072.Princeton.EDU - address 172.18.84.220 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2073 - alias arun-2073.Princeton.EDU - address 172.18.84.221 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2074 - alias arun-2074.Princeton.EDU - address 172.18.84.222 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2075 - alias arun-2075.Princeton.EDU - address 172.18.83.113 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2077 - alias arun-2077.Princeton.EDU - address 172.18.83.114 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2078 - alias arun-2078.Princeton.EDU - address 172.18.83.115 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2081 - alias arun-2081.Princeton.EDU - address 172.18.83.116 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2082 - alias arun-2082.Princeton.EDU - address 172.18.84.223 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2083 - alias arun-2083.Princeton.EDU - address 172.18.84.224 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2085 - alias arun-2085.Princeton.EDU - address 172.18.84.231 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2087 - alias arun-2087.Princeton.EDU - address 172.18.84.232 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2088 - alias arun-2088.Princeton.EDU - address 172.18.84.233 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2089 - alias arun-2089.Princeton.EDU - address 172.18.84.234 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2090 - alias arun-2090.Princeton.EDU - address 172.18.83.117 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2091 - alias arun-2091.Princeton.EDU - address 172.18.83.118 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2097 - alias arun-2097.Princeton.EDU - address 172.18.83.119 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2114 - alias arun-2114.Princeton.EDU - address 172.18.83.120 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2115 - alias arun-2115.Princeton.EDU - address 172.18.83.121 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2117 - alias arun-2117.Princeton.EDU - address 172.18.83.122 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2118 - alias arun-2118.Princeton.EDU - address 172.18.83.140 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2119 - alias arun-2119.Princeton.EDU - address 172.18.83.141 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2121 - alias arun-2121.Princeton.EDU - address 172.18.83.142 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2122 - alias arun-2122.Princeton.EDU - address 172.18.83.125 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2123 - alias arun-2123.Princeton.EDU - address 172.18.83.127 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2124 - alias arun-2124.Princeton.EDU - address 172.18.83.133 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2126 - alias arun-2126.Princeton.EDU - address 172.18.83.128 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2127 - alias arun-2127.Princeton.EDU - address 172.18.83.134 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2128 - alias arun-2128.Princeton.EDU - address 172.18.83.135 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2129 - alias arun-2129.Princeton.EDU - address 172.18.83.129 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2130 - alias arun-2130.Princeton.EDU - address 172.18.83.130 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2131 - alias arun-2131.Princeton.EDU - address 172.18.83.131 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2132 - alias arun-2132.Princeton.EDU - address 172.18.83.138 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2133 - alias arun-2133.Princeton.EDU - address 172.18.83.136 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2134 - alias arun-2134.Princeton.EDU - address 172.18.83.132 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2135 - alias arun-2135.Princeton.EDU - address 172.18.83.137 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2136 - alias arun-2136.Princeton.EDU - address 172.18.83.126 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2137 - alias arun-2137.Princeton.EDU - address 172.18.83.139 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2138 - alias arun-2138.Princeton.EDU - address 172.18.83.123 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2140 - alias arun-2140.Princeton.EDU - address 172.18.83.124 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2141 - alias arun-2141.Princeton.EDU - address 172.18.83.143 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2156 - alias arun-2156.Princeton.EDU - address 172.18.84.208 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2157 - alias arun-2157.Princeton.EDU - address 172.18.84.209 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2158 - alias arun-2158.Princeton.EDU - address 172.18.84.210 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2168 - alias arun-2168.Princeton.EDU - address 172.18.84.235 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2169 - alias arun-2169.Princeton.EDU - address 172.18.84.236 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2176 - alias arun-2176.Princeton.EDU - address 172.18.84.237 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2181 - alias arun-2181.Princeton.EDU - address 172.18.83.169 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2183 - alias arun-2183.Princeton.EDU - address 172.18.83.164 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2184 - alias arun-2184.Princeton.EDU - address 172.18.83.163 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2185 - alias arun-2185.Princeton.EDU - address 172.18.83.162 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2187 - alias arun-2187.Princeton.EDU - address 172.18.83.165 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2189 - alias arun-2189.Princeton.EDU - address 172.18.83.166 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2190 - alias arun-2190.Princeton.EDU - address 172.18.83.167 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2191 - alias arun-2191.Princeton.EDU - address 172.18.83.168 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2192 - alias arun-2192.Princeton.EDU - address 172.18.83.170 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2193 - alias arun-2193.Princeton.EDU - address 172.18.83.171 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2194 - alias arun-2194.Princeton.EDU - address 172.18.83.172 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2195 - alias arun-2195.Princeton.EDU - address 172.18.83.173 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2196 - alias arun-2196.Princeton.EDU - address 172.18.68.68 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2197 - alias arun-2197.Princeton.EDU - address 172.18.65.201 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2198 - alias arun-2198.Princeton.EDU - address 172.18.65.202 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2199 - alias arun-2199.Princeton.EDU - address 172.18.65.203 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2200 - alias arun-2200.Princeton.EDU - address 172.18.65.230 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2201 - alias arun-2201.Princeton.EDU - address 172.18.65.32 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2202 - alias arun-2202.Princeton.EDU - address 172.18.65.33 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2203 - alias arun-2203.Princeton.EDU - address 172.18.65.34 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2204 - alias arun-2204.Princeton.EDU - address 172.18.64.47 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2206 - alias arun-2206.Princeton.EDU - address 172.18.64.71 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2207 - alias arun-2207.Princeton.EDU - address 172.18.64.75 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2209 - alias arun-2209.Princeton.EDU - address 172.18.65.35 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2212 - alias arun-2212.Princeton.EDU - address 172.18.65.39 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2214 - alias arun-2214.Princeton.EDU - address 172.18.65.40 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2216 - alias arun-2216.Princeton.EDU - address 172.18.84.238 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2217 - alias arun-2217.Princeton.EDU - address 172.18.65.74 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2218 - alias arun-2218.Princeton.EDU - address 172.18.65.75 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2220 - alias arun-2220.Princeton.EDU - address 172.18.84.239 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2223 - alias arun-2223.Princeton.EDU - address 172.18.84.240 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2224 - alias arun-2224.Princeton.EDU - address 172.18.84.241 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2226 - alias arun-2226.Princeton.EDU - address 172.18.64.232 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2233 - alias arun-2233.Princeton.EDU - address 172.18.65.150 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2237 - alias arun-2237.Princeton.EDU - address 172.18.65.76 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2245 - alias arun-2245.Princeton.EDU - address 172.18.65.77 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2246 - alias arun-2246.Princeton.EDU - address 172.18.65.78 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2247 - alias arun-2247.Princeton.EDU - address 172.18.65.79 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2250 - alias arun-2250.Princeton.EDU - address 172.18.65.80 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2254 - alias arun-2254.Princeton.EDU - address 172.18.66.80 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2255 - alias arun-2255.Princeton.EDU - address 172.18.67.10 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2256 - alias arun-2256.Princeton.EDU - address 172.18.67.91 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2258 - alias arun-2258.Princeton.EDU - address 172.18.68.69 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2259 - alias arun-2259.Princeton.EDU - address 172.18.68.70 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2261 - alias arun-2261.Princeton.EDU - address 172.18.68.87 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2263 - alias arun-2263.Princeton.EDU - address 172.18.68.88 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2265 - alias arun-2265.Princeton.EDU - address 172.18.70.14 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2267 - alias arun-2267.Princeton.EDU - address 172.18.80.242 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2269 - alias arun-2269.Princeton.EDU - address 172.18.81.29 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2270 - alias arun-2270.Princeton.EDU - address 172.18.83.174 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2271 - alias arun-2271.Princeton.EDU - address 172.18.83.175 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2273 - alias arun-2273.Princeton.EDU - address 172.18.64.67 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2275 - alias arun-2275.Princeton.EDU - address 172.18.84.126 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2276 - alias arun-2276.Princeton.EDU - address 172.18.84.127 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2277 - alias arun-2277.Princeton.EDU - address 172.18.84.128 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2280 - alias arun-2280.Princeton.EDU - address 172.18.84.129 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2284 - alias arun-2284.Princeton.EDU - address 172.18.84.130 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2285 - alias arun-2285.Princeton.EDU - address 172.18.84.131 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2286 - alias arun-2286.Princeton.EDU - address 172.18.84.132 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2287 - alias arun-2287.Princeton.EDU - address 172.18.84.134 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2288 - alias arun-2288.Princeton.EDU - address 172.18.84.135 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2289 - alias arun-2289.Princeton.EDU - address 172.18.84.136 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2290 - alias arun-2290.Princeton.EDU - address 172.18.84.137 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2291 - alias arun-2291.Princeton.EDU - address 172.18.84.105 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2292 - alias arun-2292.Princeton.EDU - address 172.18.84.106 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2293 - alias arun-2293.Princeton.EDU - address 172.18.84.107 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2294 - alias arun-2294.Princeton.EDU - address 172.18.84.108 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2295 - alias arun-2295.Princeton.EDU - address 172.18.84.109 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2296 - alias arun-2296.Princeton.EDU - address 172.18.84.138 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2297 - alias arun-2297.Princeton.EDU - address 172.18.84.139 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2298 - alias arun-2298.Princeton.EDU - address 172.18.84.115 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2309 - alias arun-2309.Princeton.EDU - address 172.18.84.242 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2313 - alias arun-2313.Princeton.EDU - address 172.18.84.116 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2316 - alias arun-2316.Princeton.EDU - address 172.18.66.73 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2317 - alias arun-2317.Princeton.EDU - address 172.18.65.2 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2319 - alias arun-2319.Princeton.EDU - address 172.18.84.243 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2320 - alias arun-2320.Princeton.EDU - address 172.18.83.188 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2321 - alias arun-2321.Princeton.EDU - address 172.18.83.189 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2322 - alias arun-2322.Princeton.EDU - address 172.18.83.190 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2327 - alias arun-2327.Princeton.EDU - address 172.18.84.244 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2332 - alias arun-2332.Princeton.EDU - address 172.18.84.245 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2333 - alias arun-2333.Princeton.EDU - address 172.18.84.246 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2334 - alias arun-2334.Princeton.EDU - address 172.18.84.247 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2336 - alias arun-2336.Princeton.EDU - address 172.18.84.110 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2337 - alias arun-2337.Princeton.EDU - address 172.18.84.111 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2338 - alias arun-2338.Princeton.EDU - address 172.18.84.112 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2339 - alias arun-2339.Princeton.EDU - address 172.18.84.113 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2340 - alias arun-2340.Princeton.EDU - address 172.18.66.74 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2341 - alias arun-2341.Princeton.EDU - address 172.18.83.192 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2342 - alias arun-2342.Princeton.EDU - address 172.18.66.75 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2343 - alias arun-2343.Princeton.EDU - address 172.18.84.114 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2344 - alias arun-2344.Princeton.EDU - address 172.18.84.100 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2346 - alias arun-2346.Princeton.EDU - address 172.18.84.101 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2350 - alias arun-2350.Princeton.EDU - address 172.18.84.102 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2354 - alias arun-2354.Princeton.EDU - address 172.18.84.140 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2359 - alias arun-2359.Princeton.EDU - address 172.18.84.248 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2393 - alias arun-2393.Princeton.EDU - address 172.18.84.141 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2394 - alias arun-2394.Princeton.EDU - address 172.18.84.119 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2395 - alias arun-2395.Princeton.EDU - address 172.18.84.32 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2396 - alias arun-2396.Princeton.EDU - address 172.18.84.33 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2397 - alias arun-2397.Princeton.EDU - address 172.18.84.34 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2398 - alias arun-2398.Princeton.EDU - address 172.18.84.35 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2399 - alias arun-2399.Princeton.EDU - address 172.18.84.36 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2400 - alias arun-2400.Princeton.EDU - address 172.18.84.37 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2401 - alias arun-2401.Princeton.EDU - address 172.18.84.38 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2402 - alias arun-2402.Princeton.EDU - address 172.18.84.39 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2404 - alias arun-2404.Princeton.EDU - address 172.18.84.40 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2405 - alias arun-2405.Princeton.EDU - address 172.18.84.41 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2406 - alias arun-2406.Princeton.EDU - address 172.18.84.142 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2407 - alias arun-2407.Princeton.EDU - address 172.18.84.143 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2410 - alias arun-2410.Princeton.EDU - address 172.18.84.144 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2417 - alias arun-2417.Princeton.EDU - address 172.18.84.20 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2418 - alias arun-2418.Princeton.EDU - address 172.18.84.117 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2419 - alias arun-2419.Princeton.EDU - address 172.18.84.118 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2421 - alias arun-2421.Princeton.EDU - address 172.18.84.120 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2422 - alias arun-2422.Princeton.EDU - address 172.18.84.121 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2423 - alias arun-2423.Princeton.EDU - address 172.18.84.22 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2429 - alias arun-2429.Princeton.EDU - address 172.18.84.24 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2430 - alias arun-2430.Princeton.EDU - address 172.18.84.25 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2434 - alias arun-2434.Princeton.EDU - address 172.18.84.23 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2435 - alias arun-2435.Princeton.EDU - address 172.18.84.26 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2436 - alias arun-2436.Princeton.EDU - address 172.18.84.21 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2437 - alias arun-2437.Princeton.EDU - address 172.18.84.103 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2441 - alias arun-2441.Princeton.EDU - address 172.18.84.124 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2442 - alias arun-2442.Princeton.EDU - address 172.18.84.122 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2443 - alias arun-2443.Princeton.EDU - address 172.18.84.123 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2444 - alias arun-2444.Princeton.EDU - address 172.18.84.27 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2445 - alias arun-2445.Princeton.EDU - address 172.18.68.10 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2446 - alias arun-2446.Princeton.EDU - address 172.18.67.99 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2448 - alias arun-2448.Princeton.EDU - address 172.18.83.193 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2449 - alias arun-2449.Princeton.EDU - address 172.18.83.194 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2450 - alias arun-2450.Princeton.EDU - address 172.18.83.195 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2451 - alias arun-2451.Princeton.EDU - address 172.18.84.28 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2452 - alias arun-2452.Princeton.EDU - address 172.18.84.29 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2453 - alias arun-2453.Princeton.EDU - address 172.18.84.249 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2457 - alias arun-2457.Princeton.EDU - address 172.18.84.30 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2458 - alias arun-2458.Princeton.EDU - address 172.18.84.31 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2459 - alias arun-2459.Princeton.EDU - address 172.18.84.145 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2460 - alias arun-2460.Princeton.EDU - address 172.18.83.196 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2461 - alias arun-2461.Princeton.EDU - address 172.18.83.197 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2462 - alias arun-2462.Princeton.EDU - address 172.18.83.198 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2463 - alias arun-2463.Princeton.EDU - address 172.18.83.201 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2469 - alias arun-2469.Princeton.EDU - address 172.18.84.125 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2470 - alias arun-2470.Princeton.EDU - address 172.18.84.250 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2471 - alias arun-2471.Princeton.EDU - address 172.18.84.251 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2472 - alias arun-2472.Princeton.EDU - address 172.18.84.252 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2473 - alias arun-2473.Princeton.EDU - address 172.18.84.253 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2475 - alias arun-2475.Princeton.EDU - address 172.18.83.231 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2476 - alias arun-2476.Princeton.EDU - address 172.18.83.232 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2479 - alias arun-2479.Princeton.EDU - address 172.18.84.254 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2480 - alias arun-2480.Princeton.EDU - address 172.18.85.1 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2482 - alias arun-2482.Princeton.EDU - address 172.18.85.2 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2483 - alias arun-2483.Princeton.EDU - address 172.18.85.3 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2485 - alias arun-2485.Princeton.EDU - address 172.18.85.4 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2486 - alias arun-2486.Princeton.EDU - address 172.18.85.5 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2490 - alias arun-2490.Princeton.EDU - address 172.18.83.233 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2491 - alias arun-2491.Princeton.EDU - address 172.18.83.234 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2493 - alias arun-2493.Princeton.EDU - address 172.18.83.235 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2496 - alias arun-2496.Princeton.EDU - address 172.18.83.236 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2497 - alias arun-2497.Princeton.EDU - address 172.18.83.237 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2498 - alias arun-2498.Princeton.EDU - address 172.18.83.238 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2499 - alias arun-2499.Princeton.EDU - address 172.18.83.239 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2501 - alias arun-2501.Princeton.EDU - address 172.18.84.73 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2502 - alias arun-2502.Princeton.EDU - address 172.18.84.74 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2503 - alias arun-2503.Princeton.EDU - address 172.18.84.75 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2504 - alias arun-2504.Princeton.EDU - address 172.18.84.76 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2512 - alias arun-2512.Princeton.EDU - address 172.18.84.77 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2513 - alias arun-2513.Princeton.EDU - address 172.18.84.78 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2514 - alias arun-2514.Princeton.EDU - address 172.18.85.6 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2515 - alias arun-2515.Princeton.EDU - address 172.18.84.80 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2516 - alias arun-2516.Princeton.EDU - address 172.18.84.81 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2517 - alias arun-2517.Princeton.EDU - address 172.18.64.181 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2518 - alias arun-2518.Princeton.EDU - address 172.18.66.77 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2519 - alias arun-2519.Princeton.EDU - address 172.18.85.7 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2522 - alias arun-2522.Princeton.EDU - address 172.18.85.8 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2524 - alias arun-2524.Princeton.EDU - address 172.18.85.9 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2525 - alias arun-2525.Princeton.EDU - address 172.18.85.10 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2527 - alias arun-2527.Princeton.EDU - address 172.18.85.11 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2528 - alias arun-2528.Princeton.EDU - address 172.18.85.12 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2533 - alias arun-2533.Princeton.EDU - address 172.18.85.13 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2534 - alias arun-2534.Princeton.EDU - address 172.18.85.14 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2536 - alias arun-2536.Princeton.EDU - address 172.18.85.15 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2537 - alias arun-2537.Princeton.EDU - address 172.18.85.16 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2539 - alias arun-2539.Princeton.EDU - address 172.18.85.17 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2540 - alias arun-2540.Princeton.EDU - address 172.18.85.18 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2542 - alias arun-2542.Princeton.EDU - address 172.18.85.19 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2543 - alias arun-2543.Princeton.EDU - address 172.18.85.20 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2545 - alias arun-2545.Princeton.EDU - address 172.18.85.21 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2546 - alias arun-2546.Princeton.EDU - address 172.18.85.22 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2554 - alias arun-2554.Princeton.EDU - address 172.18.87.71 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2555 - alias arun-2555.Princeton.EDU - address 172.18.87.72 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2556 - alias arun-2556.Princeton.EDU - address 172.18.87.73 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2557 - alias arun-2557.Princeton.EDU - address 172.18.69.172 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2558 - alias arun-2558.Princeton.EDU - address 172.18.69.171 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2567 - alias arun-2567.Princeton.EDU - address 172.18.84.84 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2568 - alias arun-2568.Princeton.EDU - address 172.18.84.85 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2573 - alias arun-2573.Princeton.EDU - address 172.18.83.240 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2574 - alias arun-2574.Princeton.EDU - address 172.18.85.23 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2577 - alias arun-2577.Princeton.EDU - address 172.18.83.241 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2578 - alias arun-2578.Princeton.EDU - address 172.18.83.242 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2579 - alias arun-2579.Princeton.EDU - address 172.18.83.243 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2603 - alias arun-2603.Princeton.EDU - address 172.18.88.82 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2605 - alias arun-2605.Princeton.EDU - address 172.18.88.87 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2606 - alias arun-2606.Princeton.EDU - address 172.18.88.93 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2608 - alias arun-2608.Princeton.EDU - address 172.18.232.211 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2610 - alias arun-2610.Princeton.EDU - address 172.18.69.28 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2611 - alias arun-2611.Princeton.EDU - address 172.18.88.208 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2613 - alias arun-2613.Princeton.EDU - address 172.18.66.174 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2614 - alias arun-2614.Princeton.EDU - address 172.18.64.27 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2622 - alias arun-2622.Princeton.EDU - address 172.18.65.245 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2623 - alias arun-2623.Princeton.EDU - address 172.18.66.168 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2626 - alias arun-2626.Princeton.EDU - address 172.18.67.166 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2627 - alias arun-2627.Princeton.EDU - address 172.18.67.165 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2643 - alias arun-2643.Princeton.EDU - address 172.18.85.24 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2646 - alias arun-2646.Princeton.EDU - address 172.18.83.245 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2649 - alias arun-2649.Princeton.EDU - address 172.18.84.89 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2650 - alias arun-2650.Princeton.EDU - address 172.18.84.90 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2781 - alias arun-2781.Princeton.EDU - address 172.18.85.25 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2782 - alias arun-2782.Princeton.EDU - address 172.18.83.246 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2783 - alias arun-2783.Princeton.EDU - address 172.18.83.199 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2784 - alias arun-2784.Princeton.EDU - address 172.18.83.200 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2785 - alias arun-2785.Princeton.EDU - address 172.18.83.247 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2797 - alias arun-2797.Princeton.EDU - address 172.18.84.91 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2798 - alias arun-2798.Princeton.EDU - address 172.18.84.92 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2951 - alias arun-2951.Princeton.EDU - address 172.18.84.93 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2955 - alias arun-2955.Princeton.EDU - address 172.18.84.94 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2956 - alias arun-2956.Princeton.EDU - address 172.18.84.95 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2996 - alias arun-2996.Princeton.EDU - address 172.18.84.97 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-2997 - alias arun-2997.Princeton.EDU - address 172.18.84.98 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3007 - alias arun-3007.Princeton.EDU - address 172.18.84.99 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3009 - alias arun-3009.Princeton.EDU - address 172.18.65.68 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3010 - alias arun-3010.Princeton.EDU - address 172.18.66.85 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3011 - alias arun-3011.Princeton.EDU - address 172.18.67.98 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3014 - alias arun-3014.Princeton.EDU - address 172.18.68.3 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3015 - alias arun-3015.Princeton.EDU - address 172.18.69.54 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3017 - alias arun-3017.Princeton.EDU - address 172.18.73.97 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3018 - alias arun-3018.Princeton.EDU - address 172.18.65.69 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3019 - alias arun-3019.Princeton.EDU - address 172.18.84.211 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3022 - alias arun-3022.Princeton.EDU - address 172.18.84.225 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3023 - alias arun-3023.Princeton.EDU - address 172.18.84.213 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3024 - alias arun-3024.Princeton.EDU - address 172.18.84.217 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3027 - alias arun-3027.Princeton.EDU - address 172.18.84.15 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3029 - alias arun-3029.Princeton.EDU - address 172.18.84.16 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3035 - alias arun-3035.Princeton.EDU - address 172.18.84.17 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3036 - alias arun-3036.Princeton.EDU - address 172.18.84.18 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3040 - alias arun-3040.Princeton.EDU - address 172.18.84.19 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3045 - alias arun-3045.Princeton.EDU - address 172.18.84.57 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3046 - alias arun-3046.Princeton.EDU - address 172.18.84.58 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3047 - alias arun-3047.Princeton.EDU - address 172.18.84.59 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3048 - alias arun-3048.Princeton.EDU - address 172.18.84.60 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3050 - alias arun-3050.Princeton.EDU - address 172.18.84.61 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3051 - alias arun-3051.Princeton.EDU - address 172.18.64.72 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3054 - alias arun-3054.Princeton.EDU - address 172.18.73.11 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3061 - alias arun-3061.Princeton.EDU - address 172.18.66.144 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3062 - alias arun-3062.Princeton.EDU - address 172.18.73.234 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3063 - alias arun-3063.Princeton.EDU - address 172.18.73.235 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3064 - alias arun-3064.Princeton.EDU - address 172.18.73.236 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3066 - alias arun-3066.Princeton.EDU - address 172.18.89.83 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3067 - alias arun-3067.Princeton.EDU - address 172.18.89.84 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3068 - alias arun-3068.Princeton.EDU - address 172.18.89.85 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3069 - alias arun-3069.Princeton.EDU - address 172.18.89.86 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3070 - alias arun-3070.Princeton.EDU - address 172.18.89.87 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3071 - alias arun-3071.Princeton.EDU - address 172.18.74.225 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3072 - alias arun-3072.Princeton.EDU - address 172.18.74.238 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3073 - alias arun-3073.Princeton.EDU - address 172.18.74.239 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3074 - alias arun-3074.Princeton.EDU - address 172.18.74.240 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3076 - alias arun-3076.Princeton.EDU - address 172.18.67.153 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3078 - alias arun-3078.Princeton.EDU - address 172.18.89.172 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3079 - alias arun-3079.Princeton.EDU - address 172.18.64.46 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3082 - alias arun-3082.Princeton.EDU - address 172.18.224.52 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3083 - alias arun-3083.Princeton.EDU - address 172.18.224.53 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3084 - alias arun-3084.Princeton.EDU - address 172.18.224.54 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3085 - alias arun-3085.Princeton.EDU - address 172.18.224.55 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3308 - alias arun-3308.Princeton.EDU - address 172.18.84.62 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3377 - alias arun-3377.Princeton.EDU - address 172.18.70.226 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3378 - alias arun-3378.Princeton.EDU - address 172.18.70.224 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3379 - alias arun-3379.Princeton.EDU - address 172.18.70.223 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3380 - alias arun-3380.Princeton.EDU - address 172.18.70.222 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3381 - alias arun-3381.Princeton.EDU - address 172.18.70.221 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3382 - alias arun-3382.Princeton.EDU - address 172.18.70.220 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3383 - alias arun-3383.Princeton.EDU - address 172.18.70.219 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3384 - alias arun-3384.Princeton.EDU - address 172.18.70.218 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3385 - alias arun-3385.Princeton.EDU - address 172.18.70.217 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3386 - alias arun-3386.Princeton.EDU - address 172.18.70.216 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3387 - alias arun-3387.Princeton.EDU - address 172.18.70.215 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3388 - alias arun-3388.Princeton.EDU - address 172.18.70.225 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3389 - alias arun-3389.Princeton.EDU - address 172.18.70.227 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3390 - alias arun-3390.Princeton.EDU - address 172.18.70.228 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3391 - alias arun-3391.Princeton.EDU - address 172.18.70.229 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3392 - alias arun-3392.Princeton.EDU - address 172.18.70.230 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3393 - alias arun-3393.Princeton.EDU - address 172.18.70.231 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3394 - alias arun-3394.Princeton.EDU - address 172.18.70.232 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3395 - alias arun-3395.Princeton.EDU - address 172.18.70.233 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3396 - alias arun-3396.Princeton.EDU - address 172.18.70.234 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3397 - alias arun-3397.Princeton.EDU - address 172.18.70.235 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3398 - alias arun-3398.Princeton.EDU - address 172.18.70.236 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3399 - alias arun-3399.Princeton.EDU - address 172.18.70.237 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3400 - alias arun-3400.Princeton.EDU - address 172.18.70.238 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3401 - alias arun-3401.Princeton.EDU - address 172.18.70.239 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3402 - alias arun-3402.Princeton.EDU - address 172.18.70.240 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3403 - alias arun-3403.Princeton.EDU - address 172.18.70.241 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3404 - alias arun-3404.Princeton.EDU - address 172.18.70.242 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3405 - alias arun-3405.Princeton.EDU - address 172.18.70.243 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3406 - alias arun-3406.Princeton.EDU - address 172.18.70.244 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3408 - alias arun-3408.Princeton.EDU - address 172.18.70.246 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3409 - alias arun-3409.Princeton.EDU - address 172.18.70.247 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3410 - alias arun-3410.Princeton.EDU - address 172.18.70.248 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3411 - alias arun-3411.Princeton.EDU - address 172.18.70.249 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3412 - alias arun-3412.Princeton.EDU - address 172.18.70.250 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3413 - alias arun-3413.Princeton.EDU - address 172.18.70.251 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3414 - alias arun-3414.Princeton.EDU - address 172.18.70.252 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3415 - alias arun-3415.Princeton.EDU - address 172.18.70.253 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3416 - alias arun-3416.Princeton.EDU - address 172.18.70.254 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3417 - alias arun-3417.Princeton.EDU - address 172.18.71.1 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3418 - alias arun-3418.Princeton.EDU - address 172.18.71.2 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3419 - alias arun-3419.Princeton.EDU - address 172.18.71.3 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3420 - alias arun-3420.Princeton.EDU - address 172.18.71.4 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3421 - alias arun-3421.Princeton.EDU - address 172.18.71.5 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3422 - alias arun-3422.Princeton.EDU - address 172.18.71.6 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3423 - alias arun-3423.Princeton.EDU - address 172.18.71.7 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3424 - alias arun-3424.Princeton.EDU - address 172.18.71.8 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3425 - alias arun-3425.Princeton.EDU - address 172.18.71.9 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3426 - alias arun-3426.Princeton.EDU - address 172.18.71.10 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3427 - alias arun-3427.Princeton.EDU - address 172.18.71.12 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3428 - alias arun-3428.Princeton.EDU - address 172.18.71.11 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3429 - alias arun-3429.Princeton.EDU - address 172.18.71.13 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3430 - alias arun-3430.Princeton.EDU - address 172.18.71.14 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3431 - alias arun-3431.Princeton.EDU - address 172.18.71.15 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3432 - alias arun-3432.Princeton.EDU - address 172.18.71.18 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3433 - alias arun-3433.Princeton.EDU - address 172.18.71.19 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3434 - alias arun-3434.Princeton.EDU - address 172.18.71.21 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3435 - alias arun-3435.Princeton.EDU - address 172.18.71.25 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3436 - alias arun-3436.Princeton.EDU - address 172.18.71.28 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3437 - alias arun-3437.Princeton.EDU - address 172.18.71.30 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3438 - alias arun-3438.Princeton.EDU - address 172.18.71.16 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3439 - alias arun-3439.Princeton.EDU - address 172.18.71.17 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3440 - alias arun-3440.Princeton.EDU - address 172.18.71.20 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3441 - alias arun-3441.Princeton.EDU - address 172.18.71.22 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3442 - alias arun-3442.Princeton.EDU - address 172.18.71.23 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3443 - alias arun-3443.Princeton.EDU - address 172.18.71.24 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3444 - alias arun-3444.Princeton.EDU - address 172.18.71.26 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3445 - alias arun-3445.Princeton.EDU - address 172.18.71.27 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3446 - alias arun-3446.Princeton.EDU - address 172.18.71.29 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3447 - alias arun-3447.Princeton.EDU - address 172.18.71.31 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3448 - alias arun-3448.Princeton.EDU - address 172.18.71.32 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3449 - alias arun-3449.Princeton.EDU - address 172.18.71.35 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3450 - alias arun-3450.Princeton.EDU - address 172.18.71.38 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3451 - alias arun-3451.Princeton.EDU - address 172.18.71.40 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3452 - alias arun-3452.Princeton.EDU - address 172.18.71.43 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3453 - alias arun-3453.Princeton.EDU - address 172.18.71.45 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3454 - alias arun-3454.Princeton.EDU - address 172.18.71.48 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3455 - alias arun-3455.Princeton.EDU - address 172.18.71.49 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3456 - alias arun-3456.Princeton.EDU - address 172.18.71.50 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3457 - alias arun-3457.Princeton.EDU - address 172.18.71.51 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3458 - alias arun-3458.Princeton.EDU - address 172.18.71.33 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3459 - alias arun-3459.Princeton.EDU - address 172.18.71.34 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3460 - alias arun-3460.Princeton.EDU - address 172.18.71.36 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3461 - alias arun-3461.Princeton.EDU - address 172.18.71.37 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3462 - alias arun-3462.Princeton.EDU - address 172.18.71.39 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3463 - alias arun-3463.Princeton.EDU - address 172.18.71.41 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3464 - alias arun-3464.Princeton.EDU - address 172.18.71.42 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3465 - alias arun-3465.Princeton.EDU - address 172.18.71.44 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3466 - alias arun-3466.Princeton.EDU - address 172.18.71.46 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3467 - alias arun-3467.Princeton.EDU - address 172.18.71.47 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3468 - alias arun-3468.Princeton.EDU - address 172.18.71.55 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3469 - alias arun-3469.Princeton.EDU - address 172.18.71.57 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3470 - alias arun-3470.Princeton.EDU - address 172.18.71.58 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3471 - alias arun-3471.Princeton.EDU - address 172.18.71.65 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3472 - alias arun-3472.Princeton.EDU - address 172.18.71.66 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3473 - alias arun-3473.Princeton.EDU - address 172.18.71.67 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3474 - alias arun-3474.Princeton.EDU - address 172.18.71.68 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3475 - alias arun-3475.Princeton.EDU - address 172.18.71.69 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3476 - alias arun-3476.Princeton.EDU - address 172.18.71.70 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3477 - alias arun-3477.Princeton.EDU - address 172.18.71.71 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3478 - alias arun-3478.Princeton.EDU - address 172.18.71.52 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3479 - alias arun-3479.Princeton.EDU - address 172.18.71.53 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3480 - alias arun-3480.Princeton.EDU - address 172.18.71.54 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3481 - alias arun-3481.Princeton.EDU - address 172.18.71.56 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3482 - alias arun-3482.Princeton.EDU - address 172.18.71.59 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3483 - alias arun-3483.Princeton.EDU - address 172.18.71.60 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3484 - alias arun-3484.Princeton.EDU - address 172.18.71.61 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3485 - alias arun-3485.Princeton.EDU - address 172.18.71.62 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3486 - alias arun-3486.Princeton.EDU - address 172.18.71.63 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3510 - alias arun-3510.Princeton.EDU - address 172.18.84.63 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3511 - alias arun-3511.Princeton.EDU - address 172.18.84.64 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3512 - alias arun-3512.Princeton.EDU - address 172.18.84.65 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3513 - alias arun-3513.Princeton.EDU - address 172.18.84.66 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3555 - alias arun-3555.Princeton.EDU - address 172.18.84.67 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3556 - alias arun-3556.Princeton.EDU - address 172.18.84.68 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3557 - alias arun-3557.Princeton.EDU - address 172.18.84.69 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3558 - alias arun-3558.Princeton.EDU - address 172.18.84.70 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3559 - alias arun-3559.Princeton.EDU - address 172.18.84.71 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3560 - alias arun-3560.Princeton.EDU - address 172.18.83.176 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3561 - alias arun-3561.Princeton.EDU - address 172.18.83.177 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3562 - alias arun-3562.Princeton.EDU - address 172.18.83.178 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3563 - alias arun-3563.Princeton.EDU - address 172.18.83.179 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3564 - alias arun-3564.Princeton.EDU - address 172.18.83.180 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3565 - alias arun-3565.Princeton.EDU - address 172.18.83.181 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3566 - alias arun-3566.Princeton.EDU - address 172.18.83.182 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3567 - alias arun-3567.Princeton.EDU - address 172.18.83.183 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3568 - alias arun-3568.Princeton.EDU - address 172.18.83.184 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3569 - alias arun-3569.Princeton.EDU - address 172.18.83.185 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3570 - alias arun-3570.Princeton.EDU - address 172.18.83.186 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3571 - alias arun-3571.Princeton.EDU - address 172.18.83.187 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3592 - alias arun-3592.Princeton.EDU - address 172.18.84.133 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3663 - alias arun-3663.Princeton.EDU - address 172.18.84.104 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3665 - alias arun-3665.Princeton.EDU - address 172.18.233.33 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3666 - alias arun-3666.Princeton.EDU - address 172.18.233.34 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3667 - alias arun-3667.Princeton.EDU - address 172.18.233.35 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3668 - alias arun-3668.Princeton.EDU - address 172.18.233.36 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3669 - alias arun-3669.Princeton.EDU - address 172.18.233.37 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3670 - alias arun-3670.Princeton.EDU - address 172.18.233.38 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3671 - alias arun-3671.Princeton.EDU - address 172.18.233.39 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3672 - alias arun-3672.Princeton.EDU - address 172.18.83.191 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3673 - alias arun-3673.Princeton.EDU - address 172.18.83.203 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3674 - alias arun-3674.Princeton.EDU - address 172.18.83.204 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3755 - alias arun-3755.Princeton.EDU - address 172.18.83.205 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3756 - alias arun-3756.Princeton.EDU - address 172.18.83.206 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3757 - alias arun-3757.Princeton.EDU - address 172.18.78.88 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3758 - alias arun-3758.Princeton.EDU - address 172.18.78.89 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3759 - alias arun-3759.Princeton.EDU - address 172.18.81.37 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3760 - alias arun-3760.Princeton.EDU - address 172.18.81.38 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3761 - alias arun-3761.Princeton.EDU - address 172.18.83.226 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3762 - alias arun-3762.Princeton.EDU - address 172.18.83.227 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3763 - alias arun-3763.Princeton.EDU - address 172.18.83.228 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3764 - alias arun-3764.Princeton.EDU - address 172.18.83.229 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3765 - alias arun-3765.Princeton.EDU - address 172.18.83.230 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3766 - alias arun-3766.Princeton.EDU - address 172.18.84.79 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3767 - alias arun-3767.Princeton.EDU - address 172.18.84.83 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3768 - alias arun-3768.Princeton.EDU - address 172.18.84.86 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3769 - alias arun-3769.Princeton.EDU - address 172.18.84.87 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3770 - alias arun-3770.Princeton.EDU - address 172.18.84.72 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3771 - alias arun-3771.Princeton.EDU - address 172.18.65.36 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3772 - alias arun-3772.Princeton.EDU - address 172.18.65.37 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3773 - alias arun-3773.Princeton.EDU - address 172.18.83.207 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3774 - alias arun-3774.Princeton.EDU - address 172.18.83.208 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3775 - alias arun-3775.Princeton.EDU - address 172.18.83.209 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3776 - alias arun-3776.Princeton.EDU - address 172.18.66.254 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3810 - alias arun-3810.Princeton.EDU - address 172.18.83.211 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3862 - alias arun-3862.Princeton.EDU - address 172.18.83.212 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3863 - alias arun-3863.Princeton.EDU - address 172.18.83.213 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3864 - alias arun-3864.Princeton.EDU - address 172.18.83.214 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3870 - alias arun-3870.Princeton.EDU - address 172.18.83.220 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3871 - alias arun-3871.Princeton.EDU - address 172.18.83.210 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3877 - alias arun-3877.Princeton.EDU - address 172.18.83.215 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3878 - alias arun-3878.Princeton.EDU - address 172.18.83.216 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3879 - alias arun-3879.Princeton.EDU - address 172.18.83.217 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3880 - alias arun-3880.Princeton.EDU - address 172.18.83.218 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-3881 - alias arun-3881.Princeton.EDU - address 172.18.83.219 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-4412 - alias arun-4412.Princeton.EDU - address 172.18.64.100 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-4413 - alias arun-4413.Princeton.EDU - address 172.18.64.101 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-4414 - alias arun-4414.Princeton.EDU - address 172.18.65.161 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-4415 - alias arun-4415.Princeton.EDU - address 172.18.65.162 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-4416 - alias arun-4416.Princeton.EDU - address 172.18.65.163 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-4417 - alias arun-4417.Princeton.EDU - address 172.18.66.40 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-4418 - alias arun-4418.Princeton.EDU - address 172.18.66.41 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-4419 - alias arun-4419.Princeton.EDU - address 172.18.66.42 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-4420 - alias arun-4420.Princeton.EDU - address 172.18.66.44 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-4421 - alias arun-4421.Princeton.EDU - address 172.18.65.164 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-4422 - alias arun-4422.Princeton.EDU - address 172.18.66.45 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-4423 - alias arun-4423.Princeton.EDU - address 172.18.66.46 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-4424 - alias arun-4424.Princeton.EDU - address 172.18.66.47 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-4425 - alias arun-4425.Princeton.EDU - address 172.18.66.48 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-4426 - alias arun-4426.Princeton.EDU - address 172.18.66.49 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-4428 - alias arun-4428.Princeton.EDU - address 172.18.65.38 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-4429 - alias arun-4429.Princeton.EDU - address 172.18.65.195 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-4430 - alias arun-4430.Princeton.EDU - address 172.18.65.196 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-4431 - alias arun-4431.Princeton.EDU - address 172.18.65.197 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-4432 - alias arun-4432.Princeton.EDU - address 172.18.65.198 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-4433 - alias arun-4433.Princeton.EDU - address 172.18.65.247 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-4434 - alias arun-4434.Princeton.EDU - address 172.18.65.248 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-4435 - alias arun-4435.Princeton.EDU - address 172.18.67.221 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-4436 - alias arun-4436.Princeton.EDU - address 172.18.68.145 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-4437 - alias arun-4437.Princeton.EDU - address 172.18.68.146 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-4438 - alias arun-4438.Princeton.EDU - address 172.18.68.151 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-4439 - alias arun-4439.Princeton.EDU - address 172.18.72.133 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-4440 - alias arun-4440.Princeton.EDU - address 172.18.75.19 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-4441 - alias arun-4441.Princeton.EDU - address 172.18.75.153 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-4442 - alias arun-4442.Princeton.EDU - address 172.18.75.154 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-4443 - alias arun-4443.Princeton.EDU - address 172.18.75.155 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-4445 - alias arun-4445.Princeton.EDU - address 172.18.233.42 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-4446 - alias arun-4446.Princeton.EDU - address 172.18.233.43 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-4660 - alias arun-4660.Princeton.EDU - address 172.18.225.173 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-4681 - alias arun-4681.Princeton.EDU - address 172.18.225.194 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-4682 - alias arun-4682.Princeton.EDU - address 172.18.225.195 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-4683 - alias arun-4683.Princeton.EDU - address 172.18.225.196 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-4684 - alias arun-4684.Princeton.EDU - address 172.18.225.197 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-4988 - alias arun-4988.Princeton.EDU - address 172.18.233.44 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5340 - alias arun-5340.Princeton.EDU - address 172.18.65.112 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5341 - alias arun-5341.Princeton.EDU - address 172.18.233.45 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5342 - alias arun-5342.Princeton.EDU - address 172.18.233.46 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5343 - alias arun-5343.Princeton.EDU - address 172.18.233.47 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5344 - alias arun-5344.Princeton.EDU - address 172.18.233.48 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5347 - alias arun-5347.Princeton.EDU - address 172.18.80.191 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5362 - alias arun-5362.Princeton.EDU - address 172.18.83.244 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5363 - alias arun-5363.Princeton.EDU - address 172.18.66.78 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5365 - alias arun-5365.Princeton.EDU - address 172.18.66.32 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5367 - alias arun-5367.Princeton.EDU - address 172.18.66.82 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5368 - alias arun-5368.Princeton.EDU - address 172.18.66.83 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5369 - alias arun-5369.Princeton.EDU - address 172.18.66.84 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5370 - alias arun-5370.Princeton.EDU - address 172.18.76.224 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5371 - alias arun-5371.Princeton.EDU - address 172.18.78.84 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5372 - alias arun-5372.Princeton.EDU - address 172.18.78.85 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5373 - alias arun-5373.Princeton.EDU - address 172.18.78.86 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5374 - alias arun-5374.Princeton.EDU - address 172.18.78.87 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5375 - alias arun-5375.Princeton.EDU - address 172.18.82.180 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5376 - alias arun-5376.Princeton.EDU - address 172.18.84.189 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5377 - alias arun-5377.Princeton.EDU - address 172.18.84.190 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5378 - alias arun-5378.Princeton.EDU - address 172.18.84.191 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5440 - alias arun-5440.Princeton.EDU - address 172.18.66.53 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5441 - alias arun-5441.Princeton.EDU - address 172.18.66.54 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5442 - alias arun-5442.Princeton.EDU - address 172.18.66.55 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5443 - alias arun-5443.Princeton.EDU - address 172.18.66.56 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5444 - alias arun-5444.Princeton.EDU - address 172.18.66.57 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5445 - alias arun-5445.Princeton.EDU - address 172.18.66.58 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5446 - alias arun-5446.Princeton.EDU - address 172.18.66.59 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5447 - alias arun-5447.Princeton.EDU - address 172.18.66.60 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5448 - alias arun-5448.Princeton.EDU - address 172.18.66.61 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5449 - alias arun-5449.Princeton.EDU - address 172.18.66.62 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5450 - alias arun-5450.Princeton.EDU - address 172.18.66.63 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5451 - alias arun-5451.Princeton.EDU - address 172.18.66.101 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5452 - alias arun-5452.Princeton.EDU - address 172.18.66.119 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5453 - alias arun-5453.Princeton.EDU - address 172.18.66.120 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5454 - alias arun-5454.Princeton.EDU - address 172.18.66.123 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5455 - alias arun-5455.Princeton.EDU - address 172.18.66.125 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5456 - alias arun-5456.Princeton.EDU - address 172.18.66.127 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5457 - alias arun-5457.Princeton.EDU - address 172.18.66.130 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5458 - alias arun-5458.Princeton.EDU - address 172.18.66.133 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5459 - alias arun-5459.Princeton.EDU - address 172.18.66.134 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5460 - alias arun-5460.Princeton.EDU - address 172.18.67.24 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5461 - alias arun-5461.Princeton.EDU - address 172.18.67.25 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5462 - alias arun-5462.Princeton.EDU - address 172.18.67.26 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5463 - alias arun-5463.Princeton.EDU - address 172.18.67.27 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5464 - alias arun-5464.Princeton.EDU - address 172.18.67.28 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5465 - alias arun-5465.Princeton.EDU - address 172.18.67.29 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5466 - alias arun-5466.Princeton.EDU - address 172.18.67.30 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5467 - alias arun-5467.Princeton.EDU - address 172.18.67.31 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5468 - alias arun-5468.Princeton.EDU - address 172.18.67.32 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5481 - alias arun-5481.Princeton.EDU - address 172.18.66.245 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5482 - alias arun-5482.Princeton.EDU - address 172.18.88.84 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5483 - alias arun-5483.Princeton.EDU - address 172.18.88.85 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5484 - alias arun-5484.Princeton.EDU - address 172.18.88.86 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5485 - alias arun-5485.Princeton.EDU - address 172.18.88.97 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5486 - alias arun-5486.Princeton.EDU - address 172.18.88.98 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5487 - alias arun-5487.Princeton.EDU - address 172.18.88.88 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5488 - alias arun-5488.Princeton.EDU - address 172.18.88.94 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5489 - alias arun-5489.Princeton.EDU - address 172.18.88.95 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5490 - alias arun-5490.Princeton.EDU - address 172.18.81.19 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5491 - alias arun-5491.Princeton.EDU - address 172.18.81.20 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5492 - alias arun-5492.Princeton.EDU - address 172.18.81.21 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5493 - alias arun-5493.Princeton.EDU - address 172.18.64.61 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5494 - alias arun-5494.Princeton.EDU - address 172.18.67.158 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5495 - alias arun-5495.Princeton.EDU - address 172.18.88.96 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5496 - alias arun-5496.Princeton.EDU - address 172.18.88.90 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5497 - alias arun-5497.Princeton.EDU - address 172.18.81.28 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5498 - alias arun-5498.Princeton.EDU - address 172.18.67.159 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5499 - alias arun-5499.Princeton.EDU - address 172.18.88.92 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5500 - alias arun-5500.Princeton.EDU - address 172.18.67.160 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5502 - alias arun-5502.Princeton.EDU - address 172.18.81.23 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5503 - alias arun-5503.Princeton.EDU - address 172.18.81.24 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5504 - alias arun-5504.Princeton.EDU - address 172.18.81.25 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5506 - alias arun-5506.Princeton.EDU - address 172.18.66.176 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5508 - alias arun-5508.Princeton.EDU - address 172.18.84.48 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5509 - alias arun-5509.Princeton.EDU - address 172.18.84.47 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5512 - alias arun-5512.Princeton.EDU - address 172.18.84.148 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5513 - alias arun-5513.Princeton.EDU - address 172.18.67.161 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5514 - alias arun-5514.Princeton.EDU - address 172.18.68.91 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5515 - alias arun-5515.Princeton.EDU - address 172.18.84.46 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5516 - alias arun-5516.Princeton.EDU - address 172.18.65.214 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5519 - alias arun-5519.Princeton.EDU - address 172.18.67.164 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5520 - alias arun-5520.Princeton.EDU - address 172.18.66.26 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5521 - alias arun-5521.Princeton.EDU - address 172.18.65.215 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5525 - alias arun-5525.Princeton.EDU - address 172.18.84.43 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5527 - alias arun-5527.Princeton.EDU - address 172.18.67.211 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5529 - alias arun-5529.Princeton.EDU - address 172.18.84.42 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5530 - alias arun-5530.Princeton.EDU - address 172.18.67.212 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5531 - alias arun-5531.Princeton.EDU - address 172.18.67.213 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5532 - alias arun-5532.Princeton.EDU - address 172.18.67.214 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5533 - alias arun-5533.Princeton.EDU - address 172.18.88.68 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5534 - alias arun-5534.Princeton.EDU - address 172.18.88.71 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5535 - alias arun-5535.Princeton.EDU - address 172.18.88.72 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5536 - alias arun-5536.Princeton.EDU - address 172.18.65.244 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5537 - alias arun-5537.Princeton.EDU - address 172.18.88.74 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5539 - alias arun-5539.Princeton.EDU - address 172.18.81.213 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5540 - alias arun-5540.Princeton.EDU - address 172.18.81.217 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5541 - alias arun-5541.Princeton.EDU - address 172.18.88.75 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5542 - alias arun-5542.Princeton.EDU - address 172.18.68.106 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5543 - alias arun-5543.Princeton.EDU - address 172.18.68.107 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5544 - alias arun-5544.Princeton.EDU - address 172.18.81.210 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5545 - alias arun-5545.Princeton.EDU - address 172.18.88.76 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5546 - alias arun-5546.Princeton.EDU - address 172.18.68.108 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5547 - alias arun-5547.Princeton.EDU - address 172.18.81.215 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5548 - alias arun-5548.Princeton.EDU - address 172.18.81.218 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5549 - alias arun-5549.Princeton.EDU - address 172.18.88.81 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5550 - alias arun-5550.Princeton.EDU - address 172.18.88.77 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5551 - alias arun-5551.Princeton.EDU - address 172.18.68.109 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5552 - alias arun-5552.Princeton.EDU - address 172.18.81.211 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5553 - alias arun-5553.Princeton.EDU - address 172.18.88.79 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5554 - alias arun-5554.Princeton.EDU - address 172.18.81.209 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5555 - alias arun-5555.Princeton.EDU - address 172.18.81.214 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5556 - alias arun-5556.Princeton.EDU - address 172.18.81.219 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5557 - alias arun-5557.Princeton.EDU - address 172.18.84.154 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5558 - alias arun-5558.Princeton.EDU - address 172.18.88.78 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5559 - alias arun-5559.Princeton.EDU - address 172.18.81.212 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5560 - alias arun-5560.Princeton.EDU - address 172.18.64.18 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5561 - alias arun-5561.Princeton.EDU - address 172.18.84.153 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5562 - alias arun-5562.Princeton.EDU - address 172.18.68.110 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5563 - alias arun-5563.Princeton.EDU - address 172.18.68.82 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5564 - alias arun-5564.Princeton.EDU - address 172.18.68.83 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5565 - alias arun-5565.Princeton.EDU - address 172.18.68.111 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5566 - alias arun-5566.Princeton.EDU - address 172.18.67.233 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5567 - alias arun-5567.Princeton.EDU - address 172.18.68.112 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5568 - alias arun-5568.Princeton.EDU - address 172.18.68.84 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5569 - alias arun-5569.Princeton.EDU - address 172.18.71.124 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5570 - alias arun-5570.Princeton.EDU - address 172.18.68.114 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5571 - alias arun-5571.Princeton.EDU - address 172.18.66.88 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5572 - alias arun-5572.Princeton.EDU - address 172.18.76.154 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5573 - alias arun-5573.Princeton.EDU - address 172.18.68.133 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5574 - alias arun-5574.Princeton.EDU - address 172.18.84.147 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5575 - alias arun-5575.Princeton.EDU - address 172.18.69.31 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5576 - alias arun-5576.Princeton.EDU - address 172.18.66.64 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5577 - alias arun-5577.Princeton.EDU - address 172.18.82.127 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5578 - alias arun-5578.Princeton.EDU - address 172.18.69.32 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5579 - alias arun-5579.Princeton.EDU - address 172.18.65.110 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5580 - alias arun-5580.Princeton.EDU - address 172.18.82.179 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5581 - alias arun-5581.Princeton.EDU - address 172.18.69.35 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5582 - alias arun-5582.Princeton.EDU - address 172.18.84.151 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5583 - alias arun-5583.Princeton.EDU - address 172.18.69.210 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5584 - alias arun-5584.Princeton.EDU - address 172.18.65.249 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5585 - alias arun-5585.Princeton.EDU - address 172.18.70.70 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5586 - alias arun-5586.Princeton.EDU - address 172.18.66.89 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5587 - alias arun-5587.Princeton.EDU - address 172.18.65.250 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5588 - alias arun-5588.Princeton.EDU - address 172.18.82.178 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5590 - alias arun-5590.Princeton.EDU - address 172.18.84.150 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5591 - alias arun-5591.Princeton.EDU - address 172.18.80.192 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5592 - alias arun-5592.Princeton.EDU - address 172.18.81.188 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5593 - alias arun-5593.Princeton.EDU - address 172.18.65.251 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5594 - alias arun-5594.Princeton.EDU - address 172.18.84.172 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5595 - alias arun-5595.Princeton.EDU - address 172.18.84.170 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5596 - alias arun-5596.Princeton.EDU - address 172.18.84.171 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5597 - alias arun-5597.Princeton.EDU - address 172.18.71.163 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5598 - alias arun-5598.Princeton.EDU - address 172.18.78.149 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5599 - alias arun-5599.Princeton.EDU - address 172.18.75.234 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5600 - alias arun-5600.Princeton.EDU - address 172.18.71.227 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5601 - alias arun-5601.Princeton.EDU - address 172.18.66.184 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5602 - alias arun-5602.Princeton.EDU - address 172.18.67.245 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5603 - alias arun-5603.Princeton.EDU - address 172.18.67.93 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5604 - alias arun-5604.Princeton.EDU - address 172.18.67.96 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5605 - alias arun-5605.Princeton.EDU - address 172.18.67.244 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5606 - alias arun-5606.Princeton.EDU - address 172.18.67.97 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5607 - alias arun-5607.Princeton.EDU - address 172.18.71.228 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5608 - alias arun-5608.Princeton.EDU - address 172.18.73.93 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5609 - alias arun-5609.Princeton.EDU - address 172.18.73.94 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5611 - alias arun-5611.Princeton.EDU - address 172.18.73.95 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5612 - alias arun-5612.Princeton.EDU - address 172.18.71.230 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5613 - alias arun-5613.Princeton.EDU - address 172.18.73.96 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5614 - alias arun-5614.Princeton.EDU - address 172.18.75.235 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5616 - alias arun-5616.Princeton.EDU - address 172.18.75.237 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5617 - alias arun-5617.Princeton.EDU - address 172.18.73.41 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5618 - alias arun-5618.Princeton.EDU - address 172.18.75.238 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5619 - alias arun-5619.Princeton.EDU - address 172.18.75.239 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5621 - alias arun-5621.Princeton.EDU - address 172.18.75.241 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5622 - alias arun-5622.Princeton.EDU - address 172.18.73.42 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5623 - alias arun-5623.Princeton.EDU - address 172.18.75.242 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5624 - alias arun-5624.Princeton.EDU - address 172.18.73.43 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5625 - alias arun-5625.Princeton.EDU - address 172.18.68.11 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5626 - alias arun-5626.Princeton.EDU - address 172.18.84.169 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5627 - alias arun-5627.Princeton.EDU - address 172.18.73.44 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5628 - alias arun-5628.Princeton.EDU - address 172.18.73.47 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5629 - alias arun-5629.Princeton.EDU - address 172.18.73.45 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5630 - alias arun-5630.Princeton.EDU - address 172.18.73.46 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5631 - alias arun-5631.Princeton.EDU - address 172.18.67.215 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5632 - alias arun-5632.Princeton.EDU - address 172.18.67.216 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5633 - alias arun-5633.Princeton.EDU - address 172.18.73.231 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5634 - alias arun-5634.Princeton.EDU - address 172.18.83.160 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5636 - alias arun-5636.Princeton.EDU - address 172.18.73.232 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5639 - alias arun-5639.Princeton.EDU - address 172.18.83.161 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5641 - alias arun-5641.Princeton.EDU - address 172.18.73.230 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5642 - alias arun-5642.Princeton.EDU - address 172.18.73.233 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5643 - alias arun-5643.Princeton.EDU - address 172.18.68.66 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5644 - alias arun-5644.Princeton.EDU - address 172.18.68.67 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5645 - alias arun-5645.Princeton.EDU - address 172.18.68.85 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5646 - alias arun-5646.Princeton.EDU - address 172.18.68.94 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5647 - alias arun-5647.Princeton.EDU - address 172.18.73.229 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5648 - alias arun-5648.Princeton.EDU - address 172.18.87.74 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5649 - alias arun-5649.Princeton.EDU - address 172.18.73.228 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5650 - alias arun-5650.Princeton.EDU - address 172.18.68.95 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5651 - alias arun-5651.Princeton.EDU - address 172.18.87.75 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5652 - alias arun-5652.Princeton.EDU - address 172.18.76.54 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5653 - alias arun-5653.Princeton.EDU - address 172.18.76.55 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5654 - alias arun-5654.Princeton.EDU - address 172.18.76.56 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5655 - alias arun-5655.Princeton.EDU - address 172.18.68.96 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5656 - alias arun-5656.Princeton.EDU - address 172.18.64.65 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5657 - alias arun-5657.Princeton.EDU - address 172.18.76.53 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5658 - alias arun-5658.Princeton.EDU - address 172.18.76.57 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5659 - alias arun-5659.Princeton.EDU - address 172.18.76.58 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5660 - alias arun-5660.Princeton.EDU - address 172.18.76.59 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5661 - alias arun-5661.Princeton.EDU - address 172.18.66.95 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5662 - alias arun-5662.Princeton.EDU - address 172.18.67.168 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5663 - alias arun-5663.Princeton.EDU - address 172.18.68.97 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5665 - alias arun-5665.Princeton.EDU - address 172.18.76.60 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5666 - alias arun-5666.Princeton.EDU - address 172.18.76.62 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5667 - alias arun-5667.Princeton.EDU - address 172.18.68.100 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5668 - alias arun-5668.Princeton.EDU - address 172.18.76.63 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5669 - alias arun-5669.Princeton.EDU - address 172.18.68.101 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5670 - alias arun-5670.Princeton.EDU - address 172.18.68.102 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5671 - alias arun-5671.Princeton.EDU - address 172.18.76.64 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5672 - alias arun-5672.Princeton.EDU - address 172.18.68.103 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5673 - alias arun-5673.Princeton.EDU - address 172.18.68.104 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5674 - alias arun-5674.Princeton.EDU - address 172.18.76.65 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5675 - alias arun-5675.Princeton.EDU - address 172.18.76.66 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5676 - alias arun-5676.Princeton.EDU - address 172.18.76.67 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5677 - alias arun-5677.Princeton.EDU - address 172.18.65.152 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5678 - alias arun-5678.Princeton.EDU - address 172.18.76.68 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5679 - alias arun-5679.Princeton.EDU - address 172.18.76.69 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5680 - alias arun-5680.Princeton.EDU - address 172.18.76.70 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5681 - alias arun-5681.Princeton.EDU - address 172.18.76.71 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5682 - alias arun-5682.Princeton.EDU - address 172.18.76.72 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5683 - alias arun-5683.Princeton.EDU - address 172.18.76.61 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5685 - alias arun-5685.Princeton.EDU - address 172.18.78.150 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5686 - alias arun-5686.Princeton.EDU - address 172.18.78.151 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5687 - alias arun-5687.Princeton.EDU - address 172.18.78.152 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5688 - alias arun-5688.Princeton.EDU - address 172.18.81.22 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5689 - alias arun-5689.Princeton.EDU - address 172.18.81.26 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5690 - alias arun-5690.Princeton.EDU - address 172.18.81.27 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5691 - alias arun-5691.Princeton.EDU - address 172.18.65.216 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5692 - alias arun-5692.Princeton.EDU - address 172.18.88.83 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5693 - alias arun-5693.Princeton.EDU - address 172.18.88.89 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5789 - alias arun-5789.Princeton.EDU - address 172.18.75.175 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5790 - alias arun-5790.Princeton.EDU - address 172.18.75.176 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5791 - alias arun-5791.Princeton.EDU - address 172.18.75.177 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5792 - alias arun-5792.Princeton.EDU - address 172.18.75.188 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5793 - alias arun-5793.Princeton.EDU - address 172.18.75.189 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-5853 - alias arun-5853.Princeton.EDU - address 172.18.64.16 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6000 - alias arun-6000.Princeton.EDU - address 172.18.233.19 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6008 - alias arun-6008.Princeton.EDU - address 172.18.66.122 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6016 - alias arun-6016.Princeton.EDU - address 172.18.83.248 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6020 - alias arun-6020.Princeton.EDU - address 172.18.83.249 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6038 - alias arun-6038.Princeton.EDU - address 172.18.83.250 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6041 - alias arun-6041.Princeton.EDU - address 172.18.83.251 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6047 - alias arun-6047.Princeton.EDU - address 172.18.65.234 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6048 - alias arun-6048.Princeton.EDU - address 172.18.65.199 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6068 - alias arun-6068.Princeton.EDU - address 172.18.65.233 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6076 - alias arun-6076.Princeton.EDU - address 172.18.82.126 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6077 - alias arun-6077.Princeton.EDU - address 172.18.83.252 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6089 - alias arun-6089.Princeton.EDU - address 172.18.83.253 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6090 - alias arun-6090.Princeton.EDU - address 172.18.83.254 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6107 - alias arun-6107.Princeton.EDU - address 172.18.64.51 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6108 - alias arun-6108.Princeton.EDU - address 172.18.64.77 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6109 - alias arun-6109.Princeton.EDU - address 172.18.64.78 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6110 - alias arun-6110.Princeton.EDU - address 172.18.64.111 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6111 - alias arun-6111.Princeton.EDU - address 172.18.66.92 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6112 - alias arun-6112.Princeton.EDU - address 172.18.67.191 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6113 - alias arun-6113.Princeton.EDU - address 172.18.67.192 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6114 - alias arun-6114.Princeton.EDU - address 172.18.67.193 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6115 - alias arun-6115.Princeton.EDU - address 172.18.67.194 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6116 - alias arun-6116.Princeton.EDU - address 172.18.67.195 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6117 - alias arun-6117.Princeton.EDU - address 172.18.66.241 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6118 - alias arun-6118.Princeton.EDU - address 172.18.67.180 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6119 - alias arun-6119.Princeton.EDU - address 172.18.67.181 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6120 - alias arun-6120.Princeton.EDU - address 172.18.67.182 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6121 - alias arun-6121.Princeton.EDU - address 172.18.67.183 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6122 - alias arun-6122.Princeton.EDU - address 172.18.67.184 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6123 - alias arun-6123.Princeton.EDU - address 172.18.67.185 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6124 - alias arun-6124.Princeton.EDU - address 172.18.67.186 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6125 - alias arun-6125.Princeton.EDU - address 172.18.67.187 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6126 - alias arun-6126.Princeton.EDU - address 172.18.67.188 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6127 - alias arun-6127.Princeton.EDU - address 172.18.67.189 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6128 - alias arun-6128.Princeton.EDU - address 172.18.67.190 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6129 - alias arun-6129.Princeton.EDU - address 172.18.67.196 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6130 - alias arun-6130.Princeton.EDU - address 172.18.67.197 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6131 - alias arun-6131.Princeton.EDU - address 172.18.67.198 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6135 - alias arun-6135.Princeton.EDU - address 172.18.67.199 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6138 - alias arun-6138.Princeton.EDU - address 172.18.68.142 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6142 - alias arun-6142.Princeton.EDU - address 172.18.74.115 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6152 - alias arun-6152.Princeton.EDU - address 172.18.74.116 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6153 - alias arun-6153.Princeton.EDU - address 172.18.74.117 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6154 - alias arun-6154.Princeton.EDU - address 172.18.74.118 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6155 - alias arun-6155.Princeton.EDU - address 172.18.74.119 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6156 - alias arun-6156.Princeton.EDU - address 172.18.74.120 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6157 - alias arun-6157.Princeton.EDU - address 172.18.74.121 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6158 - alias arun-6158.Princeton.EDU - address 172.18.74.122 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6159 - alias arun-6159.Princeton.EDU - address 172.18.74.123 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6160 - alias arun-6160.Princeton.EDU - address 172.18.74.124 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6161 - alias arun-6161.Princeton.EDU - address 172.18.74.125 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6162 - alias arun-6162.Princeton.EDU - address 172.18.74.126 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6163 - alias arun-6163.Princeton.EDU - address 172.18.74.127 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6164 - alias arun-6164.Princeton.EDU - address 172.18.74.128 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6165 - alias arun-6165.Princeton.EDU - address 172.18.74.129 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6166 - alias arun-6166.Princeton.EDU - address 172.18.74.130 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6167 - alias arun-6167.Princeton.EDU - address 172.18.74.131 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6168 - alias arun-6168.Princeton.EDU - address 172.18.74.132 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6169 - alias arun-6169.Princeton.EDU - address 172.18.74.133 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6170 - alias arun-6170.Princeton.EDU - address 172.18.74.134 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6171 - alias arun-6171.Princeton.EDU - address 172.18.74.135 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6172 - alias arun-6172.Princeton.EDU - address 172.18.84.1 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6173 - alias arun-6173.Princeton.EDU - address 172.18.74.136 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6174 - alias arun-6174.Princeton.EDU - address 172.18.74.137 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6175 - alias arun-6175.Princeton.EDU - address 172.18.74.138 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6176 - alias arun-6176.Princeton.EDU - address 172.18.74.139 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6177 - alias arun-6177.Princeton.EDU - address 172.18.74.140 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6192 - alias arun-6192.Princeton.EDU - address 172.18.74.141 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6193 - alias arun-6193.Princeton.EDU - address 172.18.74.142 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6194 - alias arun-6194.Princeton.EDU - address 172.18.74.143 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6195 - alias arun-6195.Princeton.EDU - address 172.18.74.144 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6196 - alias arun-6196.Princeton.EDU - address 172.18.68.135 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6197 - alias arun-6197.Princeton.EDU - address 172.18.74.145 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6198 - alias arun-6198.Princeton.EDU - address 172.18.74.146 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6199 - alias arun-6199.Princeton.EDU - address 172.18.74.147 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6200 - alias arun-6200.Princeton.EDU - address 172.18.74.148 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6201 - alias arun-6201.Princeton.EDU - address 172.18.74.149 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6202 - alias arun-6202.Princeton.EDU - address 172.18.74.150 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6203 - alias arun-6203.Princeton.EDU - address 172.18.74.151 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6204 - alias arun-6204.Princeton.EDU - address 172.18.74.152 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6205 - alias arun-6205.Princeton.EDU - address 172.18.74.153 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6206 - alias arun-6206.Princeton.EDU - address 172.18.74.154 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6207 - alias arun-6207.Princeton.EDU - address 172.18.74.155 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6208 - alias arun-6208.Princeton.EDU - address 172.18.74.156 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6209 - alias arun-6209.Princeton.EDU - address 172.18.74.157 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6210 - alias arun-6210.Princeton.EDU - address 172.18.74.163 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6211 - alias arun-6211.Princeton.EDU - address 172.18.74.164 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6212 - alias arun-6212.Princeton.EDU - address 172.18.74.165 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6213 - alias arun-6213.Princeton.EDU - address 172.18.74.166 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6214 - alias arun-6214.Princeton.EDU - address 172.18.74.168 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6215 - alias arun-6215.Princeton.EDU - address 172.18.74.169 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6229 - alias arun-6229.Princeton.EDU - address 172.18.74.170 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6230 - alias arun-6230.Princeton.EDU - address 172.18.74.171 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6231 - alias arun-6231.Princeton.EDU - address 172.18.74.172 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6232 - alias arun-6232.Princeton.EDU - address 172.18.74.173 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6233 - alias arun-6233.Princeton.EDU - address 172.18.74.174 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6234 - alias arun-6234.Princeton.EDU - address 172.18.74.175 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6235 - alias arun-6235.Princeton.EDU - address 172.18.74.176 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6236 - alias arun-6236.Princeton.EDU - address 172.18.74.177 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6237 - alias arun-6237.Princeton.EDU - address 172.18.74.178 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6238 - alias arun-6238.Princeton.EDU - address 172.18.74.179 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6239 - alias arun-6239.Princeton.EDU - address 172.18.74.180 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6240 - alias arun-6240.Princeton.EDU - address 172.18.74.181 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6241 - alias arun-6241.Princeton.EDU - address 172.18.74.182 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6242 - alias arun-6242.Princeton.EDU - address 172.18.74.183 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6243 - alias arun-6243.Princeton.EDU - address 172.18.74.184 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6244 - alias arun-6244.Princeton.EDU - address 172.18.74.185 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6245 - alias arun-6245.Princeton.EDU - address 172.18.74.186 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6246 - alias arun-6246.Princeton.EDU - address 172.18.65.187 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6247 - alias arun-6247.Princeton.EDU - address 172.18.65.190 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6248 - alias arun-6248.Princeton.EDU - address 172.18.65.191 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6267 - alias arun-6267.Princeton.EDU - address 172.18.74.187 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6268 - alias arun-6268.Princeton.EDU - address 172.18.74.188 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6269 - alias arun-6269.Princeton.EDU - address 172.18.74.189 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6270 - alias arun-6270.Princeton.EDU - address 172.18.74.190 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6271 - alias arun-6271.Princeton.EDU - address 172.18.74.191 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6272 - alias arun-6272.Princeton.EDU - address 172.18.74.192 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6273 - alias arun-6273.Princeton.EDU - address 172.18.74.193 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6274 - alias arun-6274.Princeton.EDU - address 172.18.74.194 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6275 - alias arun-6275.Princeton.EDU - address 172.18.74.195 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6276 - alias arun-6276.Princeton.EDU - address 172.18.74.196 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6277 - alias arun-6277.Princeton.EDU - address 172.18.74.197 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6278 - alias arun-6278.Princeton.EDU - address 172.18.74.198 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6279 - alias arun-6279.Princeton.EDU - address 172.18.74.212 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6280 - alias arun-6280.Princeton.EDU - address 172.18.74.200 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6281 - alias arun-6281.Princeton.EDU - address 172.18.74.201 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6282 - alias arun-6282.Princeton.EDU - address 172.18.74.202 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6283 - alias arun-6283.Princeton.EDU - address 172.18.74.203 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6284 - alias arun-6284.Princeton.EDU - address 172.18.74.204 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6285 - alias arun-6285.Princeton.EDU - address 172.18.74.205 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6286 - alias arun-6286.Princeton.EDU - address 172.18.74.206 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6287 - alias arun-6287.Princeton.EDU - address 172.18.74.207 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6288 - alias arun-6288.Princeton.EDU - address 172.18.74.208 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6289 - alias arun-6289.Princeton.EDU - address 172.18.74.209 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6290 - alias arun-6290.Princeton.EDU - address 172.18.74.210 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6291 - alias arun-6291.Princeton.EDU - address 172.18.74.211 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6292 - alias arun-6292.Princeton.EDU - address 172.18.75.12 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6293 - alias arun-6293.Princeton.EDU - address 172.18.74.213 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6294 - alias arun-6294.Princeton.EDU - address 172.18.74.214 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6295 - alias arun-6295.Princeton.EDU - address 172.18.74.215 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6296 - alias arun-6296.Princeton.EDU - address 172.18.74.216 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6297 - alias arun-6297.Princeton.EDU - address 172.18.74.217 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6298 - alias arun-6298.Princeton.EDU - address 172.18.74.218 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6299 - alias arun-6299.Princeton.EDU - address 172.18.74.159 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6300 - alias arun-6300.Princeton.EDU - address 172.18.74.160 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6301 - alias arun-6301.Princeton.EDU - address 172.18.74.158 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6302 - alias arun-6302.Princeton.EDU - address 172.18.74.162 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6303 - alias arun-6303.Princeton.EDU - address 172.18.74.161 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6304 - alias arun-6304.Princeton.EDU - address 172.18.73.184 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6305 - alias arun-6305.Princeton.EDU - address 172.18.74.220 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6306 - alias arun-6306.Princeton.EDU - address 172.18.83.29 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6307 - alias arun-6307.Princeton.EDU - address 172.18.84.2 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6308 - alias arun-6308.Princeton.EDU - address 172.18.84.3 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6309 - alias arun-6309.Princeton.EDU - address 172.18.84.4 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6310 - alias arun-6310.Princeton.EDU - address 172.18.84.5 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6347 - alias arun-6347.Princeton.EDU - address 172.18.231.108 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6348 - alias arun-6348.Princeton.EDU - address 172.18.231.109 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6349 - alias arun-6349.Princeton.EDU - address 172.18.231.110 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6350 - alias arun-6350.Princeton.EDU - address 172.18.231.111 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6351 - alias arun-6351.Princeton.EDU - address 172.18.231.112 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6352 - alias arun-6352.Princeton.EDU - address 172.18.231.113 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6353 - alias arun-6353.Princeton.EDU - address 172.18.231.114 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6354 - alias arun-6354.Princeton.EDU - address 172.18.231.115 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6355 - alias arun-6355.Princeton.EDU - address 172.18.231.116 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6356 - alias arun-6356.Princeton.EDU - address 172.18.231.117 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6357 - alias arun-6357.Princeton.EDU - address 172.18.231.118 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6442 - alias arun-6442.Princeton.EDU - address 172.18.84.6 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6576 - alias arun-6576.Princeton.EDU - address 172.18.66.108 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6577 - alias arun-6577.Princeton.EDU - address 172.18.65.114 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6578 - alias arun-6578.Princeton.EDU - address 172.18.65.115 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6579 - alias arun-6579.Princeton.EDU - address 172.18.66.109 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6580 - alias arun-6580.Princeton.EDU - address 172.18.66.90 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6581 - alias arun-6581.Princeton.EDU - address 172.18.66.117 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6582 - alias arun-6582.Princeton.EDU - address 172.18.66.103 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6583 - alias arun-6583.Princeton.EDU - address 172.18.66.121 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6584 - alias arun-6584.Princeton.EDU - address 172.18.66.152 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6585 - alias arun-6585.Princeton.EDU - address 172.18.66.153 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6586 - alias arun-6586.Princeton.EDU - address 172.18.67.110 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6587 - alias arun-6587.Princeton.EDU - address 172.18.67.171 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6681 - alias arun-6681.Princeton.EDU - address 172.18.228.193 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6682 - alias arun-6682.Princeton.EDU - address 172.18.228.194 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6683 - alias arun-6683.Princeton.EDU - address 172.18.228.195 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6684 - alias arun-6684.Princeton.EDU - address 172.18.228.196 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6685 - alias arun-6685.Princeton.EDU - address 172.18.228.197 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6686 - alias arun-6686.Princeton.EDU - address 172.18.228.198 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6687 - alias arun-6687.Princeton.EDU - address 172.18.228.199 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6688 - alias arun-6688.Princeton.EDU - address 172.18.228.200 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6689 - alias arun-6689.Princeton.EDU - address 172.18.228.201 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6690 - alias arun-6690.Princeton.EDU - address 172.18.228.202 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6691 - alias arun-6691.Princeton.EDU - address 172.18.229.47 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6692 - alias arun-6692.Princeton.EDU - address 172.18.228.203 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6693 - alias arun-6693.Princeton.EDU - address 172.18.228.204 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6694 - alias arun-6694.Princeton.EDU - address 172.18.228.205 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6695 - alias arun-6695.Princeton.EDU - address 172.18.228.206 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6696 - alias arun-6696.Princeton.EDU - address 172.18.228.207 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6697 - alias arun-6697.Princeton.EDU - address 172.18.228.208 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6698 - alias arun-6698.Princeton.EDU - address 172.18.228.209 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6699 - alias arun-6699.Princeton.EDU - address 172.18.228.210 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6700 - alias arun-6700.Princeton.EDU - address 172.18.228.211 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6701 - alias arun-6701.Princeton.EDU - address 172.18.228.212 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6703 - alias arun-6703.Princeton.EDU - address 172.18.228.214 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6704 - alias arun-6704.Princeton.EDU - address 172.18.228.215 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6705 - alias arun-6705.Princeton.EDU - address 172.18.228.216 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6706 - alias arun-6706.Princeton.EDU - address 172.18.228.217 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6707 - alias arun-6707.Princeton.EDU - address 172.18.228.218 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6708 - alias arun-6708.Princeton.EDU - address 172.18.228.219 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6709 - alias arun-6709.Princeton.EDU - address 172.18.228.220 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6710 - alias arun-6710.Princeton.EDU - address 172.18.228.221 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6711 - alias arun-6711.Princeton.EDU - address 172.18.228.222 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6712 - alias arun-6712.Princeton.EDU - address 172.18.228.223 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6713 - alias arun-6713.Princeton.EDU - address 172.18.228.224 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6714 - alias arun-6714.Princeton.EDU - address 172.18.228.225 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6715 - alias arun-6715.Princeton.EDU - address 172.18.228.226 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6716 - alias arun-6716.Princeton.EDU - address 172.18.228.227 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6717 - alias arun-6717.Princeton.EDU - address 172.18.228.228 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6718 - alias arun-6718.Princeton.EDU - address 172.18.228.229 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6719 - alias arun-6719.Princeton.EDU - address 172.18.228.230 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6720 - alias arun-6720.Princeton.EDU - address 172.18.228.231 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6721 - alias arun-6721.Princeton.EDU - address 172.18.228.232 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6722 - alias arun-6722.Princeton.EDU - address 172.18.228.233 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6723 - alias arun-6723.Princeton.EDU - address 172.18.228.234 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6734 - alias arun-6734.Princeton.EDU - address 172.18.228.245 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6735 - alias arun-6735.Princeton.EDU - address 172.18.228.246 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6736 - alias arun-6736.Princeton.EDU - address 172.18.228.247 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6737 - alias arun-6737.Princeton.EDU - address 172.18.228.248 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6738 - alias arun-6738.Princeton.EDU - address 172.18.228.249 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6739 - alias arun-6739.Princeton.EDU - address 172.18.228.250 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6740 - alias arun-6740.Princeton.EDU - address 172.18.228.251 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6741 - alias arun-6741.Princeton.EDU - address 172.18.228.252 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6742 - alias arun-6742.Princeton.EDU - address 172.18.228.253 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6743 - alias arun-6743.Princeton.EDU - address 172.18.228.254 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6744 - alias arun-6744.Princeton.EDU - address 172.18.229.1 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6745 - alias arun-6745.Princeton.EDU - address 172.18.229.2 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6746 - alias arun-6746.Princeton.EDU - address 172.18.229.3 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6747 - alias arun-6747.Princeton.EDU - address 172.18.229.4 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6748 - alias arun-6748.Princeton.EDU - address 172.18.229.5 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6749 - alias arun-6749.Princeton.EDU - address 172.18.229.6 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6750 - alias arun-6750.Princeton.EDU - address 172.18.229.7 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6751 - alias arun-6751.Princeton.EDU - address 172.18.229.8 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6752 - alias arun-6752.Princeton.EDU - address 172.18.229.9 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6753 - alias arun-6753.Princeton.EDU - address 172.18.229.10 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6754 - alias arun-6754.Princeton.EDU - address 172.18.229.11 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6755 - alias arun-6755.Princeton.EDU - address 172.18.229.12 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6762 - alias arun-6762.Princeton.EDU - address 172.18.229.19 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6763 - alias arun-6763.Princeton.EDU - address 172.18.229.20 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6764 - alias arun-6764.Princeton.EDU - address 172.18.229.21 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6765 - alias arun-6765.Princeton.EDU - address 172.18.229.22 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6766 - alias arun-6766.Princeton.EDU - address 172.18.229.23 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6767 - alias arun-6767.Princeton.EDU - address 172.18.229.24 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6768 - alias arun-6768.Princeton.EDU - address 172.18.229.25 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6769 - alias arun-6769.Princeton.EDU - address 172.18.229.26 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6770 - alias arun-6770.Princeton.EDU - address 172.18.229.27 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6771 - alias arun-6771.Princeton.EDU - address 172.18.229.28 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6772 - alias arun-6772.Princeton.EDU - address 172.18.229.29 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6773 - alias arun-6773.Princeton.EDU - address 172.18.229.30 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6774 - alias arun-6774.Princeton.EDU - address 172.18.229.31 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6775 - alias arun-6775.Princeton.EDU - address 172.18.229.32 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6776 - alias arun-6776.Princeton.EDU - address 172.18.229.33 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6783 - alias arun-6783.Princeton.EDU - address 172.18.229.40 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6784 - alias arun-6784.Princeton.EDU - address 172.18.229.41 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6785 - alias arun-6785.Princeton.EDU - address 172.18.229.42 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6786 - alias arun-6786.Princeton.EDU - address 172.18.229.43 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6787 - alias arun-6787.Princeton.EDU - address 172.18.229.44 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6789 - alias arun-6789.Princeton.EDU - address 172.18.229.46 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-6880 - alias arun-6880.Princeton.EDU - address 172.18.84.7 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7200 - alias arun-7200.Princeton.EDU - address 172.18.231.120 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7201 - alias arun-7201.Princeton.EDU - address 172.18.231.121 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7202 - alias arun-7202.Princeton.EDU - address 172.18.231.122 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7203 - alias arun-7203.Princeton.EDU - address 172.18.231.123 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7204 - alias arun-7204.Princeton.EDU - address 172.18.231.124 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7205 - alias arun-7205.Princeton.EDU - address 172.18.84.8 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7206 - alias arun-7206.Princeton.EDU - address 172.18.84.9 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7207 - alias arun-7207.Princeton.EDU - address 172.18.84.10 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7208 - alias arun-7208.Princeton.EDU - address 172.18.84.11 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7209 - alias arun-7209.Princeton.EDU - address 172.18.84.12 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7210 - alias arun-7210.Princeton.EDU - address 172.18.84.13 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7211 - alias arun-7211.Princeton.EDU - address 172.18.84.14 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7214 - alias arun-7214.Princeton.EDU - address 172.18.233.23 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7215 - alias arun-7215.Princeton.EDU - address 172.18.233.24 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7216 - alias arun-7216.Princeton.EDU - address 172.18.233.26 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7217 - alias arun-7217.Princeton.EDU - address 172.18.233.27 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7302 - alias arun-7302.Princeton.EDU - address 172.18.233.28 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7303 - alias arun-7303.Princeton.EDU - address 172.18.233.29 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7304 - alias arun-7304.Princeton.EDU - address 172.18.233.63 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7305 - alias arun-7305.Princeton.EDU - address 172.18.233.64 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7306 - alias arun-7306.Princeton.EDU - address 172.18.233.65 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7307 - alias arun-7307.Princeton.EDU - address 172.18.233.66 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7308 - alias arun-7308.Princeton.EDU - address 172.18.233.67 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7309 - alias arun-7309.Princeton.EDU - address 172.18.233.68 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7310 - alias arun-7310.Princeton.EDU - address 172.18.233.69 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7311 - alias arun-7311.Princeton.EDU - address 172.18.233.70 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7312 - alias arun-7312.Princeton.EDU - address 172.18.233.71 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7313 - alias arun-7313.Princeton.EDU - address 172.18.233.72 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7314 - alias arun-7314.Princeton.EDU - address 172.18.233.73 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7315 - alias arun-7315.Princeton.EDU - address 172.18.233.74 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7316 - alias arun-7316.Princeton.EDU - address 172.18.233.75 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7317 - alias arun-7317.Princeton.EDU - address 172.18.233.76 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7318 - alias arun-7318.Princeton.EDU - address 172.18.233.77 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7319 - alias arun-7319.Princeton.EDU - address 172.18.65.232 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7320 - alias arun-7320.Princeton.EDU - address 172.18.71.94 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7321 - alias arun-7321.Princeton.EDU - address 172.18.71.231 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7322 - alias arun-7322.Princeton.EDU - address 172.18.67.100 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7323 - alias arun-7323.Princeton.EDU - address 172.18.71.254 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7324 - alias arun-7324.Princeton.EDU - address 172.18.84.49 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7325 - alias arun-7325.Princeton.EDU - address 172.18.84.50 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7326 - alias arun-7326.Princeton.EDU - address 172.18.84.51 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7332 - alias arun-7332.Princeton.EDU - address 172.18.84.88 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7333 - alias arun-7333.Princeton.EDU - address 172.18.84.96 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7338 - alias arun-7338.Princeton.EDU - address 172.18.83.222 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7339 - alias arun-7339.Princeton.EDU - address 172.18.83.223 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7340 - alias arun-7340.Princeton.EDU - address 172.18.84.175 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7341 - alias arun-7341.Princeton.EDU - address 172.18.84.176 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7342 - alias arun-7342.Princeton.EDU - address 172.18.84.230 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7343 - alias arun-7343.Princeton.EDU - address 172.18.84.178 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7344 - alias arun-7344.Princeton.EDU - address 172.18.84.179 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7345 - alias arun-7345.Princeton.EDU - address 172.18.84.180 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7346 - alias arun-7346.Princeton.EDU - address 172.18.84.229 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7347 - alias arun-7347.Princeton.EDU - address 172.18.84.227 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7348 - alias arun-7348.Princeton.EDU - address 172.18.84.228 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7349 - alias arun-7349.Princeton.EDU - address 172.18.84.188 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7350 - alias arun-7350.Princeton.EDU - address 172.18.84.184 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7351 - alias arun-7351.Princeton.EDU - address 172.18.84.185 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7352 - alias arun-7352.Princeton.EDU - address 172.18.84.186 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7353 - alias arun-7353.Princeton.EDU - address 172.18.84.187 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7354 - alias arun-7354.Princeton.EDU - address 172.18.65.145 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7429 - alias arun-7429.Princeton.EDU - address 172.18.66.199 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7430 - alias arun-7430.Princeton.EDU - address 172.18.66.200 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7431 - alias arun-7431.Princeton.EDU - address 172.18.67.170 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7432 - alias arun-7432.Princeton.EDU - address 172.18.68.52 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7433 - alias arun-7433.Princeton.EDU - address 172.18.68.55 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7434 - alias arun-7434.Princeton.EDU - address 172.18.68.57 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7435 - alias arun-7435.Princeton.EDU - address 172.18.68.58 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7436 - alias arun-7436.Princeton.EDU - address 172.18.68.59 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7437 - alias arun-7437.Princeton.EDU - address 172.18.68.60 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7438 - alias arun-7438.Princeton.EDU - address 172.18.68.61 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7439 - alias arun-7439.Princeton.EDU - address 172.18.68.62 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7440 - alias arun-7440.Princeton.EDU - address 172.18.76.9 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7441 - alias arun-7441.Princeton.EDU - address 172.18.76.10 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7442 - alias arun-7442.Princeton.EDU - address 172.18.76.11 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7443 - alias arun-7443.Princeton.EDU - address 172.18.76.12 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7444 - alias arun-7444.Princeton.EDU - address 172.18.76.13 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7445 - alias arun-7445.Princeton.EDU - address 172.18.76.14 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7446 - alias arun-7446.Princeton.EDU - address 172.18.76.15 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7447 - alias arun-7447.Princeton.EDU - address 172.18.76.16 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7448 - alias arun-7448.Princeton.EDU - address 172.18.76.17 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7449 - alias arun-7449.Princeton.EDU - address 172.18.76.18 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7450 - alias arun-7450.Princeton.EDU - address 172.18.76.19 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7451 - alias arun-7451.Princeton.EDU - address 172.18.76.20 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7452 - alias arun-7452.Princeton.EDU - address 172.18.76.21 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7453 - alias arun-7453.Princeton.EDU - address 172.18.76.22 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7454 - alias arun-7454.Princeton.EDU - address 172.18.76.23 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7455 - alias arun-7455.Princeton.EDU - address 172.18.76.24 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7456 - alias arun-7456.Princeton.EDU - address 172.18.76.25 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7457 - alias arun-7457.Princeton.EDU - address 172.18.76.26 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7458 - alias arun-7458.Princeton.EDU - address 172.18.76.27 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7459 - alias arun-7459.Princeton.EDU - address 172.18.76.28 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7460 - alias arun-7460.Princeton.EDU - address 172.18.76.29 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7461 - alias arun-7461.Princeton.EDU - address 172.18.76.30 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7462 - alias arun-7462.Princeton.EDU - address 172.18.76.31 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7463 - alias arun-7463.Princeton.EDU - address 172.18.76.32 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7464 - alias arun-7464.Princeton.EDU - address 172.18.76.33 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7465 - alias arun-7465.Princeton.EDU - address 172.18.76.34 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7466 - alias arun-7466.Princeton.EDU - address 172.18.76.35 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7467 - alias arun-7467.Princeton.EDU - address 172.18.76.36 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7468 - alias arun-7468.Princeton.EDU - address 172.18.76.37 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7469 - alias arun-7469.Princeton.EDU - address 172.18.76.38 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7470 - alias arun-7470.Princeton.EDU - address 172.18.76.39 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7471 - alias arun-7471.Princeton.EDU - address 172.18.76.40 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7472 - alias arun-7472.Princeton.EDU - address 172.18.76.41 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7473 - alias arun-7473.Princeton.EDU - address 172.18.76.42 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7474 - alias arun-7474.Princeton.EDU - address 172.18.76.43 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7475 - alias arun-7475.Princeton.EDU - address 172.18.76.44 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7476 - alias arun-7476.Princeton.EDU - address 172.18.76.45 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7477 - alias arun-7477.Princeton.EDU - address 172.18.76.46 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7478 - alias arun-7478.Princeton.EDU - address 172.18.76.47 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7479 - alias arun-7479.Princeton.EDU - address 172.18.76.48 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7480 - alias arun-7480.Princeton.EDU - address 172.18.76.49 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7481 - alias arun-7481.Princeton.EDU - address 172.18.76.50 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7482 - alias arun-7482.Princeton.EDU - address 172.18.76.51 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7483 - alias arun-7483.Princeton.EDU - address 172.18.76.52 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7500 - alias arun-7500.Princeton.EDU - address 172.18.65.217 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7501 - alias arun-7501.Princeton.EDU - address 172.18.65.218 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7502 - alias arun-7502.Princeton.EDU - address 172.18.65.219 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7503 - alias arun-7503.Princeton.EDU - address 172.18.65.220 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7504 - alias arun-7504.Princeton.EDU - address 172.18.65.221 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7505 - alias arun-7505.Princeton.EDU - address 172.18.65.222 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7506 - alias arun-7506.Princeton.EDU - address 172.18.65.223 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7507 - alias arun-7507.Princeton.EDU - address 172.18.65.224 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7508 - alias arun-7508.Princeton.EDU - address 172.18.76.90 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7509 - alias arun-7509.Princeton.EDU - address 172.18.76.91 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7510 - alias arun-7510.Princeton.EDU - address 172.18.76.92 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7511 - alias arun-7511.Princeton.EDU - address 172.18.76.93 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7512 - alias arun-7512.Princeton.EDU - address 172.18.76.94 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7513 - alias arun-7513.Princeton.EDU - address 172.18.76.95 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7514 - alias arun-7514.Princeton.EDU - address 172.18.76.96 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7515 - alias arun-7515.Princeton.EDU - address 172.18.76.97 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7516 - alias arun-7516.Princeton.EDU - address 172.18.76.98 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7517 - alias arun-7517.Princeton.EDU - address 172.18.76.99 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7518 - alias arun-7518.Princeton.EDU - address 172.18.76.100 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7519 - alias arun-7519.Princeton.EDU - address 172.18.76.101 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7520 - alias arun-7520.Princeton.EDU - address 172.18.76.102 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7521 - alias arun-7521.Princeton.EDU - address 172.18.76.103 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7522 - alias arun-7522.Princeton.EDU - address 172.18.76.104 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7523 - alias arun-7523.Princeton.EDU - address 172.18.76.105 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7524 - alias arun-7524.Princeton.EDU - address 172.18.76.106 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7525 - alias arun-7525.Princeton.EDU - address 172.18.76.107 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7526 - alias arun-7526.Princeton.EDU - address 172.18.76.108 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7527 - alias arun-7527.Princeton.EDU - address 172.18.76.109 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7528 - alias arun-7528.Princeton.EDU - address 172.18.76.110 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7529 - alias arun-7529.Princeton.EDU - address 172.18.76.111 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7530 - alias arun-7530.Princeton.EDU - address 172.18.76.112 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7531 - alias arun-7531.Princeton.EDU - address 172.18.76.113 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7532 - alias arun-7532.Princeton.EDU - address 172.18.76.114 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7533 - alias arun-7533.Princeton.EDU - address 172.18.76.115 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7534 - alias arun-7534.Princeton.EDU - address 172.18.76.116 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7535 - alias arun-7535.Princeton.EDU - address 172.18.76.117 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7536 - alias arun-7536.Princeton.EDU - address 172.18.76.118 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7537 - alias arun-7537.Princeton.EDU - address 172.18.76.119 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7538 - alias arun-7538.Princeton.EDU - address 172.18.76.120 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7539 - alias arun-7539.Princeton.EDU - address 172.18.76.121 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7540 - alias arun-7540.Princeton.EDU - address 172.18.76.122 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7541 - alias arun-7541.Princeton.EDU - address 172.18.76.123 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7542 - alias arun-7542.Princeton.EDU - address 172.18.76.124 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7543 - alias arun-7543.Princeton.EDU - address 172.18.76.125 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7544 - alias arun-7544.Princeton.EDU - address 172.18.76.126 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7545 - alias arun-7545.Princeton.EDU - address 172.18.76.127 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7546 - alias arun-7546.Princeton.EDU - address 172.18.76.128 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7547 - alias arun-7547.Princeton.EDU - address 172.18.76.129 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7548 - alias arun-7548.Princeton.EDU - address 172.18.76.130 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7549 - alias arun-7549.Princeton.EDU - address 172.18.76.131 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7550 - alias arun-7550.Princeton.EDU - address 172.18.76.132 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7551 - alias arun-7551.Princeton.EDU - address 172.18.76.133 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7552 - alias arun-7552.Princeton.EDU - address 172.18.76.134 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7553 - alias arun-7553.Princeton.EDU - address 172.18.76.135 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7554 - alias arun-7554.Princeton.EDU - address 172.18.76.136 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7555 - alias arun-7555.Princeton.EDU - address 172.18.76.137 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7556 - alias arun-7556.Princeton.EDU - address 172.18.76.138 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7557 - alias arun-7557.Princeton.EDU - address 172.18.67.217 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7558 - alias arun-7558.Princeton.EDU - address 172.18.76.139 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7559 - alias arun-7559.Princeton.EDU - address 172.18.76.140 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7560 - alias arun-7560.Princeton.EDU - address 172.18.76.141 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7561 - alias arun-7561.Princeton.EDU - address 172.18.76.142 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7562 - alias arun-7562.Princeton.EDU - address 172.18.76.143 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7563 - alias arun-7563.Princeton.EDU - address 172.18.76.144 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7564 - alias arun-7564.Princeton.EDU - address 172.18.76.146 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7565 - alias arun-7565.Princeton.EDU - address 172.18.76.147 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7566 - alias arun-7566.Princeton.EDU - address 172.18.65.146 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7567 - alias arun-7567.Princeton.EDU - address 172.18.65.147 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7645 - alias arun-7645.Princeton.EDU - address 172.18.65.21 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7794 - alias arun-7794.Princeton.EDU - address 172.18.64.66 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7795 - alias arun-7795.Princeton.EDU - address 172.18.64.69 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7796 - alias arun-7796.Princeton.EDU - address 172.18.64.83 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7797 - alias arun-7797.Princeton.EDU - address 172.18.64.201 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7798 - alias arun-7798.Princeton.EDU - address 172.18.65.212 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7799 - alias arun-7799.Princeton.EDU - address 172.18.65.213 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7800 - alias arun-7800.Princeton.EDU - address 172.18.67.138 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7801 - alias arun-7801.Princeton.EDU - address 172.18.67.139 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7802 - alias arun-7802.Princeton.EDU - address 172.18.67.140 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7803 - alias arun-7803.Princeton.EDU - address 172.18.67.142 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7804 - alias arun-7804.Princeton.EDU - address 172.18.67.143 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7805 - alias arun-7805.Princeton.EDU - address 172.18.67.144 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7806 - alias arun-7806.Princeton.EDU - address 172.18.67.145 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7807 - alias arun-7807.Princeton.EDU - address 172.18.67.146 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7808 - alias arun-7808.Princeton.EDU - address 172.18.67.147 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7809 - alias arun-7809.Princeton.EDU - address 172.18.67.148 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7810 - alias arun-7810.Princeton.EDU - address 172.18.68.16 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7811 - alias arun-7811.Princeton.EDU - address 172.18.68.17 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7812 - alias arun-7812.Princeton.EDU - address 172.18.68.18 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7813 - alias arun-7813.Princeton.EDU - address 172.18.68.81 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7814 - alias arun-7814.Princeton.EDU - address 172.18.69.37 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7815 - alias arun-7815.Princeton.EDU - address 172.18.69.55 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7816 - alias arun-7816.Princeton.EDU - address 172.18.69.57 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7817 - alias arun-7817.Princeton.EDU - address 172.18.69.58 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7818 - alias arun-7818.Princeton.EDU - address 172.18.69.59 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7819 - alias arun-7819.Princeton.EDU - address 172.18.64.22 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7820 - alias arun-7820.Princeton.EDU - address 172.18.68.4 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7821 - alias arun-7821.Princeton.EDU - address 172.18.68.6 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7822 - alias arun-7822.Princeton.EDU - address 172.18.69.61 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7823 - alias arun-7823.Princeton.EDU - address 172.18.69.62 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7824 - alias arun-7824.Princeton.EDU - address 172.18.71.91 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7825 - alias arun-7825.Princeton.EDU - address 172.18.71.92 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7826 - alias arun-7826.Princeton.EDU - address 172.18.71.93 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7827 - alias arun-7827.Princeton.EDU - address 172.18.67.70 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7828 - alias arun-7828.Princeton.EDU - address 172.18.71.109 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7829 - alias arun-7829.Princeton.EDU - address 172.18.66.79 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7830 - alias arun-7830.Princeton.EDU - address 172.18.73.8 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7831 - alias arun-7831.Princeton.EDU - address 172.18.73.237 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7832 - alias arun-7832.Princeton.EDU - address 172.18.76.155 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7833 - alias arun-7833.Princeton.EDU - address 172.18.76.156 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7834 - alias arun-7834.Princeton.EDU - address 172.18.76.183 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7835 - alias arun-7835.Princeton.EDU - address 172.18.76.184 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7836 - alias arun-7836.Princeton.EDU - address 172.18.76.185 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7837 - alias arun-7837.Princeton.EDU - address 172.18.77.59 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7838 - alias arun-7838.Princeton.EDU - address 172.18.77.60 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7839 - alias arun-7839.Princeton.EDU - address 172.18.77.61 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7840 - alias arun-7840.Princeton.EDU - address 172.18.77.62 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7841 - alias arun-7841.Princeton.EDU - address 172.18.77.63 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7842 - alias arun-7842.Princeton.EDU - address 172.18.77.64 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7843 - alias arun-7843.Princeton.EDU - address 172.18.77.65 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7844 - alias arun-7844.Princeton.EDU - address 172.18.77.66 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7845 - alias arun-7845.Princeton.EDU - address 172.18.77.67 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7846 - alias arun-7846.Princeton.EDU - address 172.18.77.82 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7847 - alias arun-7847.Princeton.EDU - address 172.18.77.83 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7848 - alias arun-7848.Princeton.EDU - address 172.18.77.68 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7849 - alias arun-7849.Princeton.EDU - address 172.18.77.69 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7850 - alias arun-7850.Princeton.EDU - address 172.18.77.70 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7851 - alias arun-7851.Princeton.EDU - address 172.18.77.71 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7852 - alias arun-7852.Princeton.EDU - address 172.18.77.72 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7853 - alias arun-7853.Princeton.EDU - address 172.18.77.73 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7854 - alias arun-7854.Princeton.EDU - address 172.18.77.74 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7855 - alias arun-7855.Princeton.EDU - address 172.18.77.75 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7856 - alias arun-7856.Princeton.EDU - address 172.18.77.76 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7857 - alias arun-7857.Princeton.EDU - address 172.18.77.77 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7858 - alias arun-7858.Princeton.EDU - address 172.18.77.78 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7859 - alias arun-7859.Princeton.EDU - address 172.18.77.79 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7860 - alias arun-7860.Princeton.EDU - address 172.18.77.80 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7861 - alias arun-7861.Princeton.EDU - address 172.18.77.81 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7885 - alias arun-7885.Princeton.EDU - address 172.18.64.54 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7886 - alias arun-7886.Princeton.EDU - address 172.18.76.186 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7887 - alias arun-7887.Princeton.EDU - address 172.18.77.84 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7888 - alias arun-7888.Princeton.EDU - address 172.18.77.85 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7889 - alias arun-7889.Princeton.EDU - address 172.18.77.86 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7890 - alias arun-7890.Princeton.EDU - address 172.18.77.87 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7891 - alias arun-7891.Princeton.EDU - address 172.18.77.88 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7892 - alias arun-7892.Princeton.EDU - address 172.18.77.89 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7893 - alias arun-7893.Princeton.EDU - address 172.18.77.90 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7894 - alias arun-7894.Princeton.EDU - address 172.18.77.91 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7895 - alias arun-7895.Princeton.EDU - address 172.18.77.92 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7896 - alias arun-7896.Princeton.EDU - address 172.18.77.93 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7897 - alias arun-7897.Princeton.EDU - address 172.18.77.94 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7898 - alias arun-7898.Princeton.EDU - address 172.18.77.95 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7899 - alias arun-7899.Princeton.EDU - address 172.18.77.96 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7900 - alias arun-7900.Princeton.EDU - address 172.18.77.102 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7901 - alias arun-7901.Princeton.EDU - address 172.18.77.103 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7902 - alias arun-7902.Princeton.EDU - address 172.18.77.104 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7903 - alias arun-7903.Princeton.EDU - address 172.18.77.105 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7904 - alias arun-7904.Princeton.EDU - address 172.18.77.106 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7905 - alias arun-7905.Princeton.EDU - address 172.18.65.53 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7906 - alias arun-7906.Princeton.EDU - address 172.18.65.56 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7907 - alias arun-7907.Princeton.EDU - address 172.18.65.57 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7908 - alias arun-7908.Princeton.EDU - address 172.18.65.58 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7909 - alias arun-7909.Princeton.EDU - address 172.18.65.59 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7910 - alias arun-7910.Princeton.EDU - address 172.18.65.62 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7911 - alias arun-7911.Princeton.EDU - address 172.18.77.97 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7912 - alias arun-7912.Princeton.EDU - address 172.18.65.63 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7913 - alias arun-7913.Princeton.EDU - address 172.18.77.112 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7914 - alias arun-7914.Princeton.EDU - address 172.18.77.113 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7915 - alias arun-7915.Princeton.EDU - address 172.18.77.114 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7916 - alias arun-7916.Princeton.EDU - address 172.18.77.115 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7917 - alias arun-7917.Princeton.EDU - address 172.18.77.116 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7918 - alias arun-7918.Princeton.EDU - address 172.18.77.117 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7919 - alias arun-7919.Princeton.EDU - address 172.18.77.118 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7920 - alias arun-7920.Princeton.EDU - address 172.18.77.119 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7921 - alias arun-7921.Princeton.EDU - address 172.18.77.120 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7922 - alias arun-7922.Princeton.EDU - address 172.18.77.121 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7923 - alias arun-7923.Princeton.EDU - address 172.18.77.122 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7924 - alias arun-7924.Princeton.EDU - address 172.18.77.123 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7925 - alias arun-7925.Princeton.EDU - address 172.18.77.124 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7926 - alias arun-7926.Princeton.EDU - address 172.18.77.107 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7927 - alias arun-7927.Princeton.EDU - address 172.18.77.125 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7928 - alias arun-7928.Princeton.EDU - address 172.18.77.126 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7929 - alias arun-7929.Princeton.EDU - address 172.18.77.127 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7930 - alias arun-7930.Princeton.EDU - address 172.18.77.108 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7931 - alias arun-7931.Princeton.EDU - address 172.18.77.128 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7932 - alias arun-7932.Princeton.EDU - address 172.18.77.129 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7933 - alias arun-7933.Princeton.EDU - address 172.18.77.98 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7934 - alias arun-7934.Princeton.EDU - address 172.18.77.130 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7935 - alias arun-7935.Princeton.EDU - address 172.18.77.131 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7936 - alias arun-7936.Princeton.EDU - address 172.18.77.132 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7937 - alias arun-7937.Princeton.EDU - address 172.18.77.133 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7938 - alias arun-7938.Princeton.EDU - address 172.18.77.134 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7939 - alias arun-7939.Princeton.EDU - address 172.18.77.136 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7940 - alias arun-7940.Princeton.EDU - address 172.18.77.137 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7941 - alias arun-7941.Princeton.EDU - address 172.18.77.101 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7942 - alias arun-7942.Princeton.EDU - address 172.18.77.99 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7943 - alias arun-7943.Princeton.EDU - address 172.18.77.138 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7944 - alias arun-7944.Princeton.EDU - address 172.18.77.139 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7945 - alias arun-7945.Princeton.EDU - address 172.18.77.140 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7946 - alias arun-7946.Princeton.EDU - address 172.18.77.141 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7947 - alias arun-7947.Princeton.EDU - address 172.18.77.100 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7948 - alias arun-7948.Princeton.EDU - address 172.18.77.142 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7949 - alias arun-7949.Princeton.EDU - address 172.18.77.109 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7950 - alias arun-7950.Princeton.EDU - address 172.18.77.110 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7951 - alias arun-7951.Princeton.EDU - address 172.18.77.111 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7952 - alias arun-7952.Princeton.EDU - address 172.18.77.143 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7953 - alias arun-7953.Princeton.EDU - address 172.18.77.144 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7954 - alias arun-7954.Princeton.EDU - address 172.18.77.145 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7955 - alias arun-7955.Princeton.EDU - address 172.18.77.146 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7956 - alias arun-7956.Princeton.EDU - address 172.18.77.147 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7957 - alias arun-7957.Princeton.EDU - address 172.18.77.148 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7958 - alias arun-7958.Princeton.EDU - address 172.18.77.149 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7959 - alias arun-7959.Princeton.EDU - address 172.18.77.170 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7960 - alias arun-7960.Princeton.EDU - address 172.18.77.176 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7961 - alias arun-7961.Princeton.EDU - address 172.18.77.177 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7962 - alias arun-7962.Princeton.EDU - address 172.18.77.171 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7963 - alias arun-7963.Princeton.EDU - address 172.18.77.172 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7964 - alias arun-7964.Princeton.EDU - address 172.18.77.173 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7965 - alias arun-7965.Princeton.EDU - address 172.18.77.174 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7966 - alias arun-7966.Princeton.EDU - address 172.18.77.175 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7967 - alias arun-7967.Princeton.EDU - address 172.18.77.178 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7968 - alias arun-7968.Princeton.EDU - address 172.18.77.179 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7969 - alias arun-7969.Princeton.EDU - address 172.18.77.181 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7970 - alias arun-7970.Princeton.EDU - address 172.18.77.155 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7971 - alias arun-7971.Princeton.EDU - address 172.18.77.153 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7972 - alias arun-7972.Princeton.EDU - address 172.18.77.156 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7973 - alias arun-7973.Princeton.EDU - address 172.18.77.152 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7974 - alias arun-7974.Princeton.EDU - address 172.18.77.157 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7975 - alias arun-7975.Princeton.EDU - address 172.18.77.154 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7976 - alias arun-7976.Princeton.EDU - address 172.18.77.151 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7977 - alias arun-7977.Princeton.EDU - address 172.18.77.150 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7978 - alias arun-7978.Princeton.EDU - address 172.18.77.166 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7979 - alias arun-7979.Princeton.EDU - address 172.18.77.167 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7980 - alias arun-7980.Princeton.EDU - address 172.18.77.168 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7981 - alias arun-7981.Princeton.EDU - address 172.18.77.169 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7982 - alias arun-7982.Princeton.EDU - address 172.18.77.158 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7983 - alias arun-7983.Princeton.EDU - address 172.18.77.159 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7984 - alias arun-7984.Princeton.EDU - address 172.18.77.160 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7985 - alias arun-7985.Princeton.EDU - address 172.18.77.161 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7986 - alias arun-7986.Princeton.EDU - address 172.18.77.162 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7987 - alias arun-7987.Princeton.EDU - address 172.18.77.163 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7988 - alias arun-7988.Princeton.EDU - address 172.18.77.164 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7989 - alias arun-7989.Princeton.EDU - address 172.18.77.165 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7990 - alias arun-7990.Princeton.EDU - address 172.18.77.182 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7991 - alias arun-7991.Princeton.EDU - address 172.18.77.183 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7992 - alias arun-7992.Princeton.EDU - address 172.18.77.184 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7993 - alias arun-7993.Princeton.EDU - address 172.18.77.205 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7994 - alias arun-7994.Princeton.EDU - address 172.18.77.206 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7995 - alias arun-7995.Princeton.EDU - address 172.18.77.207 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7996 - alias arun-7996.Princeton.EDU - address 172.18.77.208 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7997 - alias arun-7997.Princeton.EDU - address 172.18.77.209 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7998 - alias arun-7998.Princeton.EDU - address 172.18.77.210 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-7999 - alias arun-7999.Princeton.EDU - address 172.18.77.211 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8000 - alias arun-8000.Princeton.EDU - address 172.18.77.212 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8001 - alias arun-8001.Princeton.EDU - address 172.18.77.213 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8002 - alias arun-8002.Princeton.EDU - address 172.18.77.218 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8003 - alias arun-8003.Princeton.EDU - address 172.18.77.219 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8004 - alias arun-8004.Princeton.EDU - address 172.18.77.220 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8005 - alias arun-8005.Princeton.EDU - address 172.18.77.221 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8006 - alias arun-8006.Princeton.EDU - address 172.18.77.185 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8007 - alias arun-8007.Princeton.EDU - address 172.18.77.186 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8008 - alias arun-8008.Princeton.EDU - address 172.18.77.187 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8009 - alias arun-8009.Princeton.EDU - address 172.18.77.188 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8010 - alias arun-8010.Princeton.EDU - address 172.18.77.189 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8011 - alias arun-8011.Princeton.EDU - address 172.18.77.190 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8012 - alias arun-8012.Princeton.EDU - address 172.18.77.191 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8013 - alias arun-8013.Princeton.EDU - address 172.18.77.192 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8014 - alias arun-8014.Princeton.EDU - address 172.18.77.193 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8015 - alias arun-8015.Princeton.EDU - address 172.18.77.194 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8016 - alias arun-8016.Princeton.EDU - address 172.18.77.195 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8017 - alias arun-8017.Princeton.EDU - address 172.18.77.196 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8018 - alias arun-8018.Princeton.EDU - address 172.18.77.197 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8019 - alias arun-8019.Princeton.EDU - address 172.18.77.198 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8020 - alias arun-8020.Princeton.EDU - address 172.18.77.199 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8021 - alias arun-8021.Princeton.EDU - address 172.18.77.200 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8022 - alias arun-8022.Princeton.EDU - address 172.18.77.201 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8023 - alias arun-8023.Princeton.EDU - address 172.18.77.202 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8024 - alias arun-8024.Princeton.EDU - address 172.18.77.203 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8025 - alias arun-8025.Princeton.EDU - address 172.18.77.204 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8026 - alias arun-8026.Princeton.EDU - address 172.18.77.180 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8038 - alias arun-8038.Princeton.EDU - address 172.18.231.80 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8039 - alias arun-8039.Princeton.EDU - address 172.18.231.81 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8063 - alias arun-8063.Princeton.EDU - address 172.18.77.223 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8064 - alias arun-8064.Princeton.EDU - address 172.18.77.224 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8065 - alias arun-8065.Princeton.EDU - address 172.18.77.238 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8066 - alias arun-8066.Princeton.EDU - address 172.18.77.239 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8067 - alias arun-8067.Princeton.EDU - address 172.18.77.240 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8068 - alias arun-8068.Princeton.EDU - address 172.18.77.241 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8069 - alias arun-8069.Princeton.EDU - address 172.18.77.242 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8070 - alias arun-8070.Princeton.EDU - address 172.18.77.243 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8071 - alias arun-8071.Princeton.EDU - address 172.18.77.244 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8072 - alias arun-8072.Princeton.EDU - address 172.18.77.225 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8073 - alias arun-8073.Princeton.EDU - address 172.18.77.228 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8074 - alias arun-8074.Princeton.EDU - address 172.18.77.226 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8075 - alias arun-8075.Princeton.EDU - address 172.18.77.229 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8076 - alias arun-8076.Princeton.EDU - address 172.18.77.230 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8077 - alias arun-8077.Princeton.EDU - address 172.18.77.227 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8078 - alias arun-8078.Princeton.EDU - address 172.18.77.214 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8079 - alias arun-8079.Princeton.EDU - address 172.18.77.222 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8080 - alias arun-8080.Princeton.EDU - address 172.18.77.232 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8081 - alias arun-8081.Princeton.EDU - address 172.18.77.233 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8082 - alias arun-8082.Princeton.EDU - address 172.18.77.235 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8083 - alias arun-8083.Princeton.EDU - address 172.18.77.234 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8084 - alias arun-8084.Princeton.EDU - address 172.18.77.236 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8085 - alias arun-8085.Princeton.EDU - address 172.18.77.215 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8086 - alias arun-8086.Princeton.EDU - address 172.18.77.231 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8087 - alias arun-8087.Princeton.EDU - address 172.18.77.237 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8088 - alias arun-8088.Princeton.EDU - address 172.18.77.250 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8089 - alias arun-8089.Princeton.EDU - address 172.18.77.251 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8090 - alias arun-8090.Princeton.EDU - address 172.18.77.247 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8091 - alias arun-8091.Princeton.EDU - address 172.18.77.248 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8092 - alias arun-8092.Princeton.EDU - address 172.18.77.249 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8093 - alias arun-8093.Princeton.EDU - address 172.18.77.252 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8094 - alias arun-8094.Princeton.EDU - address 172.18.77.253 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8098 - alias arun-8098.Princeton.EDU - address 172.18.66.183 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8099 - alias arun-8099.Princeton.EDU - address 172.18.67.1 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8100 - alias arun-8100.Princeton.EDU - address 172.18.67.241 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8101 - alias arun-8101.Princeton.EDU - address 172.18.73.39 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8102 - alias arun-8102.Princeton.EDU - address 172.18.77.217 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8103 - alias arun-8103.Princeton.EDU - address 172.18.65.117 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8104 - alias arun-8104.Princeton.EDU - address 172.18.78.3 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8105 - alias arun-8105.Princeton.EDU - address 172.18.78.4 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8106 - alias arun-8106.Princeton.EDU - address 172.18.78.5 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8107 - alias arun-8107.Princeton.EDU - address 172.18.78.6 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8108 - alias arun-8108.Princeton.EDU - address 172.18.78.7 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8109 - alias arun-8109.Princeton.EDU - address 172.18.78.8 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8110 - alias arun-8110.Princeton.EDU - address 172.18.78.9 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8111 - alias arun-8111.Princeton.EDU - address 172.18.78.10 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8112 - alias arun-8112.Princeton.EDU - address 172.18.78.11 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8113 - alias arun-8113.Princeton.EDU - address 172.18.78.12 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8114 - alias arun-8114.Princeton.EDU - address 172.18.78.13 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8115 - alias arun-8115.Princeton.EDU - address 172.18.78.14 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8116 - alias arun-8116.Princeton.EDU - address 172.18.78.15 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8117 - alias arun-8117.Princeton.EDU - address 172.18.77.245 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8118 - alias arun-8118.Princeton.EDU - address 172.18.78.16 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8119 - alias arun-8119.Princeton.EDU - address 172.18.66.198 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8120 - alias arun-8120.Princeton.EDU - address 172.18.66.253 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8121 - alias arun-8121.Princeton.EDU - address 172.18.77.246 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8122 - alias arun-8122.Princeton.EDU - address 172.18.68.53 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8123 - alias arun-8123.Princeton.EDU - address 172.18.68.54 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8124 - alias arun-8124.Princeton.EDU - address 172.18.68.56 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8125 - alias arun-8125.Princeton.EDU - address 172.18.67.34 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8126 - alias arun-8126.Princeton.EDU - address 172.18.67.35 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8127 - alias arun-8127.Princeton.EDU - address 172.18.67.36 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8128 - alias arun-8128.Princeton.EDU - address 172.18.67.37 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8129 - alias arun-8129.Princeton.EDU - address 172.18.67.38 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8130 - alias arun-8130.Princeton.EDU - address 172.18.67.39 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8131 - alias arun-8131.Princeton.EDU - address 172.18.67.40 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8132 - alias arun-8132.Princeton.EDU - address 172.18.67.41 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8133 - alias arun-8133.Princeton.EDU - address 172.18.67.42 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8134 - alias arun-8134.Princeton.EDU - address 172.18.67.43 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8135 - alias arun-8135.Princeton.EDU - address 172.18.67.44 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8136 - alias arun-8136.Princeton.EDU - address 172.18.77.254 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8137 - alias arun-8137.Princeton.EDU - address 172.18.78.24 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8138 - alias arun-8138.Princeton.EDU - address 172.18.78.25 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8139 - alias arun-8139.Princeton.EDU - address 172.18.78.26 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8140 - alias arun-8140.Princeton.EDU - address 172.18.78.27 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8141 - alias arun-8141.Princeton.EDU - address 172.18.78.28 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8142 - alias arun-8142.Princeton.EDU - address 172.18.78.29 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8143 - alias arun-8143.Princeton.EDU - address 172.18.78.30 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8144 - alias arun-8144.Princeton.EDU - address 172.18.78.31 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8145 - alias arun-8145.Princeton.EDU - address 172.18.68.131 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8146 - alias arun-8146.Princeton.EDU - address 172.18.68.132 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8147 - alias arun-8147.Princeton.EDU - address 172.18.68.182 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8150 - alias arun-8150.Princeton.EDU - address 172.18.69.34 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8151 - alias arun-8151.Princeton.EDU - address 172.18.69.36 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8152 - alias arun-8152.Princeton.EDU - address 172.18.73.185 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8153 - alias arun-8153.Princeton.EDU - address 172.18.75.158 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8154 - alias arun-8154.Princeton.EDU - address 172.18.80.101 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8155 - alias arun-8155.Princeton.EDU - address 172.18.80.102 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8156 - alias arun-8156.Princeton.EDU - address 172.18.80.103 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8157 - alias arun-8157.Princeton.EDU - address 172.18.80.104 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8158 - alias arun-8158.Princeton.EDU - address 172.18.80.105 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8159 - alias arun-8159.Princeton.EDU - address 172.18.80.84 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8160 - alias arun-8160.Princeton.EDU - address 172.18.80.85 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8161 - alias arun-8161.Princeton.EDU - address 172.18.80.86 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8162 - alias arun-8162.Princeton.EDU - address 172.18.80.87 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8163 - alias arun-8163.Princeton.EDU - address 172.18.80.88 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8164 - alias arun-8164.Princeton.EDU - address 172.18.75.164 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8165 - alias arun-8165.Princeton.EDU - address 172.18.75.165 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8166 - alias arun-8166.Princeton.EDU - address 172.18.75.166 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8167 - alias arun-8167.Princeton.EDU - address 172.18.75.167 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8168 - alias arun-8168.Princeton.EDU - address 172.18.75.168 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8169 - alias arun-8169.Princeton.EDU - address 172.18.75.159 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8170 - alias arun-8170.Princeton.EDU - address 172.18.75.160 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8171 - alias arun-8171.Princeton.EDU - address 172.18.75.161 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8172 - alias arun-8172.Princeton.EDU - address 172.18.75.162 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8173 - alias arun-8173.Princeton.EDU - address 172.18.75.163 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8174 - alias arun-8174.Princeton.EDU - address 172.18.80.94 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8175 - alias arun-8175.Princeton.EDU - address 172.18.80.95 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8176 - alias arun-8176.Princeton.EDU - address 172.18.80.96 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8177 - alias arun-8177.Princeton.EDU - address 172.18.80.97 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8178 - alias arun-8178.Princeton.EDU - address 172.18.80.98 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8179 - alias arun-8179.Princeton.EDU - address 172.18.75.169 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8180 - alias arun-8180.Princeton.EDU - address 172.18.75.170 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8181 - alias arun-8181.Princeton.EDU - address 172.18.75.171 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8182 - alias arun-8182.Princeton.EDU - address 172.18.75.172 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8183 - alias arun-8183.Princeton.EDU - address 172.18.75.173 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8184 - alias arun-8184.Princeton.EDU - address 172.18.80.89 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8185 - alias arun-8185.Princeton.EDU - address 172.18.80.90 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8186 - alias arun-8186.Princeton.EDU - address 172.18.80.91 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8187 - alias arun-8187.Princeton.EDU - address 172.18.80.92 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8188 - alias arun-8188.Princeton.EDU - address 172.18.80.93 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8189 - alias arun-8189.Princeton.EDU - address 172.18.75.174 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8190 - alias arun-8190.Princeton.EDU - address 172.18.80.80 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8191 - alias arun-8191.Princeton.EDU - address 172.18.80.81 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8192 - alias arun-8192.Princeton.EDU - address 172.18.80.82 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8193 - alias arun-8193.Princeton.EDU - address 172.18.80.83 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8194 - alias arun-8194.Princeton.EDU - address 172.18.80.100 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8195 - alias arun-8195.Princeton.EDU - address 172.18.80.99 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8196 - alias arun-8196.Princeton.EDU - address 172.18.78.1 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8197 - alias arun-8197.Princeton.EDU - address 172.18.80.187 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8198 - alias arun-8198.Princeton.EDU - address 172.18.67.33 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8199 - alias arun-8199.Princeton.EDU - address 172.18.78.17 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8200 - alias arun-8200.Princeton.EDU - address 172.18.78.22 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8201 - alias arun-8201.Princeton.EDU - address 172.18.78.21 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8202 - alias arun-8202.Princeton.EDU - address 172.18.78.23 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8203 - alias arun-8203.Princeton.EDU - address 172.18.78.32 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8204 - alias arun-8204.Princeton.EDU - address 172.18.78.33 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8205 - alias arun-8205.Princeton.EDU - address 172.18.78.34 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8206 - alias arun-8206.Princeton.EDU - address 172.18.78.35 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8207 - alias arun-8207.Princeton.EDU - address 172.18.78.36 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8208 - alias arun-8208.Princeton.EDU - address 172.18.78.37 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8209 - alias arun-8209.Princeton.EDU - address 172.18.78.38 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8210 - alias arun-8210.Princeton.EDU - address 172.18.78.39 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8211 - alias arun-8211.Princeton.EDU - address 172.18.78.40 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8212 - alias arun-8212.Princeton.EDU - address 172.18.78.41 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8213 - alias arun-8213.Princeton.EDU - address 172.18.78.42 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8214 - alias arun-8214.Princeton.EDU - address 172.18.78.43 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8215 - alias arun-8215.Princeton.EDU - address 172.18.78.44 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8216 - alias arun-8216.Princeton.EDU - address 172.18.78.45 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8217 - alias arun-8217.Princeton.EDU - address 172.18.78.46 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8218 - alias arun-8218.Princeton.EDU - address 172.18.78.47 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8219 - alias arun-8219.Princeton.EDU - address 172.18.78.48 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8220 - alias arun-8220.Princeton.EDU - address 172.18.78.49 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8221 - alias arun-8221.Princeton.EDU - address 172.18.78.50 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8222 - alias arun-8222.Princeton.EDU - address 172.18.78.51 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8223 - alias arun-8223.Princeton.EDU - address 172.18.78.52 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8224 - alias arun-8224.Princeton.EDU - address 172.18.78.53 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8225 - alias arun-8225.Princeton.EDU - address 172.18.78.54 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8226 - alias arun-8226.Princeton.EDU - address 172.18.78.55 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8227 - alias arun-8227.Princeton.EDU - address 172.18.78.56 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8228 - alias arun-8228.Princeton.EDU - address 172.18.78.57 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8229 - alias arun-8229.Princeton.EDU - address 172.18.78.58 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8230 - alias arun-8230.Princeton.EDU - address 172.18.78.59 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8231 - alias arun-8231.Princeton.EDU - address 172.18.78.60 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8232 - alias arun-8232.Princeton.EDU - address 172.18.78.61 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8233 - alias arun-8233.Princeton.EDU - address 172.18.78.62 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8234 - alias arun-8234.Princeton.EDU - address 172.18.78.63 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8235 - alias arun-8235.Princeton.EDU - address 172.18.78.64 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8236 - alias arun-8236.Princeton.EDU - address 172.18.78.65 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8237 - alias arun-8237.Princeton.EDU - address 172.18.78.66 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8238 - alias arun-8238.Princeton.EDU - address 172.18.78.67 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8239 - alias arun-8239.Princeton.EDU - address 172.18.78.68 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8240 - alias arun-8240.Princeton.EDU - address 172.18.78.69 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8241 - alias arun-8241.Princeton.EDU - address 172.18.78.70 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8242 - alias arun-8242.Princeton.EDU - address 172.18.78.71 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8243 - alias arun-8243.Princeton.EDU - address 172.18.78.72 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8244 - alias arun-8244.Princeton.EDU - address 172.18.78.73 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8245 - alias arun-8245.Princeton.EDU - address 172.18.78.74 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8246 - alias arun-8246.Princeton.EDU - address 172.18.78.75 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8247 - alias arun-8247.Princeton.EDU - address 172.18.78.76 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8248 - alias arun-8248.Princeton.EDU - address 172.18.78.77 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8249 - alias arun-8249.Princeton.EDU - address 172.18.78.78 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8250 - alias arun-8250.Princeton.EDU - address 172.18.78.79 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8251 - alias arun-8251.Princeton.EDU - address 172.18.78.80 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8252 - alias arun-8252.Princeton.EDU - address 172.18.78.81 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8253 - alias arun-8253.Princeton.EDU - address 172.18.78.82 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8254 - alias arun-8254.Princeton.EDU - address 172.18.78.83 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8256 - alias arun-8256.Princeton.EDU - address 172.18.78.90 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8257 - alias arun-8257.Princeton.EDU - address 172.18.78.91 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8258 - alias arun-8258.Princeton.EDU - address 172.18.78.92 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8259 - alias arun-8259.Princeton.EDU - address 172.18.78.93 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8260 - alias arun-8260.Princeton.EDU - address 172.18.78.94 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8261 - alias arun-8261.Princeton.EDU - address 172.18.78.95 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8262 - alias arun-8262.Princeton.EDU - address 172.18.78.96 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8263 - alias arun-8263.Princeton.EDU - address 172.18.78.97 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8264 - alias arun-8264.Princeton.EDU - address 172.18.78.98 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8265 - alias arun-8265.Princeton.EDU - address 172.18.78.99 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8266 - alias arun-8266.Princeton.EDU - address 172.18.78.100 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8267 - alias arun-8267.Princeton.EDU - address 172.18.78.101 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8268 - alias arun-8268.Princeton.EDU - address 172.18.78.102 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8269 - alias arun-8269.Princeton.EDU - address 172.18.78.103 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8270 - alias arun-8270.Princeton.EDU - address 172.18.78.104 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8271 - alias arun-8271.Princeton.EDU - address 172.18.78.105 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8272 - alias arun-8272.Princeton.EDU - address 172.18.78.106 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8273 - alias arun-8273.Princeton.EDU - address 172.18.78.107 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8274 - alias arun-8274.Princeton.EDU - address 172.18.78.108 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8275 - alias arun-8275.Princeton.EDU - address 172.18.78.109 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8276 - alias arun-8276.Princeton.EDU - address 172.18.78.110 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8277 - alias arun-8277.Princeton.EDU - address 172.18.78.111 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8278 - alias arun-8278.Princeton.EDU - address 172.18.78.112 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8279 - alias arun-8279.Princeton.EDU - address 172.18.78.113 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8280 - alias arun-8280.Princeton.EDU - address 172.18.78.114 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8281 - alias arun-8281.Princeton.EDU - address 172.18.78.115 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8282 - alias arun-8282.Princeton.EDU - address 172.18.78.116 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8283 - alias arun-8283.Princeton.EDU - address 172.18.78.117 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8284 - alias arun-8284.Princeton.EDU - address 172.18.78.118 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8285 - alias arun-8285.Princeton.EDU - address 172.18.78.119 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8286 - alias arun-8286.Princeton.EDU - address 172.18.78.120 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8287 - alias arun-8287.Princeton.EDU - address 172.18.78.121 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8288 - alias arun-8288.Princeton.EDU - address 172.18.78.122 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8289 - alias arun-8289.Princeton.EDU - address 172.18.78.123 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8290 - alias arun-8290.Princeton.EDU - address 172.18.78.128 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8291 - alias arun-8291.Princeton.EDU - address 172.18.78.129 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8292 - alias arun-8292.Princeton.EDU - address 172.18.78.130 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8293 - alias arun-8293.Princeton.EDU - address 172.18.78.131 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8294 - alias arun-8294.Princeton.EDU - address 172.18.78.132 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8295 - alias arun-8295.Princeton.EDU - address 172.18.78.133 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8296 - alias arun-8296.Princeton.EDU - address 172.18.78.134 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8297 - alias arun-8297.Princeton.EDU - address 172.18.78.135 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8298 - alias arun-8298.Princeton.EDU - address 172.18.78.136 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8299 - alias arun-8299.Princeton.EDU - address 172.18.78.137 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8300 - alias arun-8300.Princeton.EDU - address 172.18.78.138 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8301 - alias arun-8301.Princeton.EDU - address 172.18.78.139 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8302 - alias arun-8302.Princeton.EDU - address 172.18.78.140 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8303 - alias arun-8303.Princeton.EDU - address 172.18.78.141 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8304 - alias arun-8304.Princeton.EDU - address 172.18.78.142 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8305 - alias arun-8305.Princeton.EDU - address 172.18.78.143 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8306 - alias arun-8306.Princeton.EDU - address 172.18.78.144 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8307 - alias arun-8307.Princeton.EDU - address 172.18.78.145 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8308 - alias arun-8308.Princeton.EDU - address 172.18.78.146 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8309 - alias arun-8309.Princeton.EDU - address 172.18.78.147 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8310 - alias arun-8310.Princeton.EDU - address 172.18.78.154 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8311 - alias arun-8311.Princeton.EDU - address 172.18.78.155 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8312 - alias arun-8312.Princeton.EDU - address 172.18.78.156 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8313 - alias arun-8313.Princeton.EDU - address 172.18.78.157 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8314 - alias arun-8314.Princeton.EDU - address 172.18.78.158 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8315 - alias arun-8315.Princeton.EDU - address 172.18.78.159 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8316 - alias arun-8316.Princeton.EDU - address 172.18.78.160 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8317 - alias arun-8317.Princeton.EDU - address 172.18.78.161 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8319 - alias arun-8319.Princeton.EDU - address 172.18.78.153 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8320 - alias arun-8320.Princeton.EDU - address 172.18.80.51 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8321 - alias arun-8321.Princeton.EDU - address 172.18.80.52 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8322 - alias arun-8322.Princeton.EDU - address 172.18.80.53 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8323 - alias arun-8323.Princeton.EDU - address 172.18.80.54 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8324 - alias arun-8324.Princeton.EDU - address 172.18.78.184 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8325 - alias arun-8325.Princeton.EDU - address 172.18.78.185 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8326 - alias arun-8326.Princeton.EDU - address 172.18.78.186 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8327 - alias arun-8327.Princeton.EDU - address 172.18.78.187 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8328 - alias arun-8328.Princeton.EDU - address 172.18.78.188 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8329 - alias arun-8329.Princeton.EDU - address 172.18.78.189 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8330 - alias arun-8330.Princeton.EDU - address 172.18.78.190 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8331 - alias arun-8331.Princeton.EDU - address 172.18.78.191 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8332 - alias arun-8332.Princeton.EDU - address 172.18.78.192 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8333 - alias arun-8333.Princeton.EDU - address 172.18.78.193 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8334 - alias arun-8334.Princeton.EDU - address 172.18.78.194 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8335 - alias arun-8335.Princeton.EDU - address 172.18.78.195 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8336 - alias arun-8336.Princeton.EDU - address 172.18.78.196 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8337 - alias arun-8337.Princeton.EDU - address 172.18.78.197 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8338 - alias arun-8338.Princeton.EDU - address 172.18.78.198 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8339 - alias arun-8339.Princeton.EDU - address 172.18.78.199 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8340 - alias arun-8340.Princeton.EDU - address 172.18.78.200 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8341 - alias arun-8341.Princeton.EDU - address 172.18.78.201 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8342 - alias arun-8342.Princeton.EDU - address 172.18.78.202 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8343 - alias arun-8343.Princeton.EDU - address 172.18.78.203 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8344 - alias arun-8344.Princeton.EDU - address 172.18.78.204 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8345 - alias arun-8345.Princeton.EDU - address 172.18.78.205 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8346 - alias arun-8346.Princeton.EDU - address 172.18.78.206 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8347 - alias arun-8347.Princeton.EDU - address 172.18.78.207 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8348 - alias arun-8348.Princeton.EDU - address 172.18.78.208 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8349 - alias arun-8349.Princeton.EDU - address 172.18.78.209 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8350 - alias arun-8350.Princeton.EDU - address 172.18.78.210 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8351 - alias arun-8351.Princeton.EDU - address 172.18.78.211 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8352 - alias arun-8352.Princeton.EDU - address 172.18.78.212 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8353 - alias arun-8353.Princeton.EDU - address 172.18.78.213 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8354 - alias arun-8354.Princeton.EDU - address 172.18.78.214 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8355 - alias arun-8355.Princeton.EDU - address 172.18.78.215 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8356 - alias arun-8356.Princeton.EDU - address 172.18.78.216 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8357 - alias arun-8357.Princeton.EDU - address 172.18.78.217 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8358 - alias arun-8358.Princeton.EDU - address 172.18.78.218 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8359 - alias arun-8359.Princeton.EDU - address 172.18.78.219 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8360 - alias arun-8360.Princeton.EDU - address 172.18.78.220 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8361 - alias arun-8361.Princeton.EDU - address 172.18.78.221 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8362 - alias arun-8362.Princeton.EDU - address 172.18.78.222 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8363 - alias arun-8363.Princeton.EDU - address 172.18.78.223 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8364 - alias arun-8364.Princeton.EDU - address 172.18.78.224 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8365 - alias arun-8365.Princeton.EDU - address 172.18.78.225 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8366 - alias arun-8366.Princeton.EDU - address 172.18.78.228 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8367 - alias arun-8367.Princeton.EDU - address 172.18.78.229 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8368 - alias arun-8368.Princeton.EDU - address 172.18.78.230 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8369 - alias arun-8369.Princeton.EDU - address 172.18.78.231 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8370 - alias arun-8370.Princeton.EDU - address 172.18.78.232 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8371 - alias arun-8371.Princeton.EDU - address 172.18.78.233 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8372 - alias arun-8372.Princeton.EDU - address 172.18.78.234 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8373 - alias arun-8373.Princeton.EDU - address 172.18.78.235 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8374 - alias arun-8374.Princeton.EDU - address 172.18.78.236 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8375 - alias arun-8375.Princeton.EDU - address 172.18.78.237 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8376 - alias arun-8376.Princeton.EDU - address 172.18.78.238 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8377 - alias arun-8377.Princeton.EDU - address 172.18.78.239 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8378 - alias arun-8378.Princeton.EDU - address 172.18.78.240 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8379 - alias arun-8379.Princeton.EDU - address 172.18.78.241 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8380 - alias arun-8380.Princeton.EDU - address 172.18.78.242 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8381 - alias arun-8381.Princeton.EDU - address 172.18.78.243 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8382 - alias arun-8382.Princeton.EDU - address 172.18.78.244 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8383 - alias arun-8383.Princeton.EDU - address 172.18.78.245 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8384 - alias arun-8384.Princeton.EDU - address 172.18.78.246 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8385 - alias arun-8385.Princeton.EDU - address 172.18.78.247 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8386 - alias arun-8386.Princeton.EDU - address 172.18.78.248 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8387 - alias arun-8387.Princeton.EDU - address 172.18.78.249 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8388 - alias arun-8388.Princeton.EDU - address 172.18.78.250 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8389 - alias arun-8389.Princeton.EDU - address 172.18.78.251 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8390 - alias arun-8390.Princeton.EDU - address 172.18.78.252 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8391 - alias arun-8391.Princeton.EDU - address 172.18.78.253 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8392 - alias arun-8392.Princeton.EDU - address 172.18.78.254 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8393 - alias arun-8393.Princeton.EDU - address 172.18.80.2 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8394 - alias arun-8394.Princeton.EDU - address 172.18.80.3 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8395 - alias arun-8395.Princeton.EDU - address 172.18.80.4 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8396 - alias arun-8396.Princeton.EDU - address 172.18.80.5 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8397 - alias arun-8397.Princeton.EDU - address 172.18.80.6 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8398 - alias arun-8398.Princeton.EDU - address 172.18.80.7 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8399 - alias arun-8399.Princeton.EDU - address 172.18.80.8 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8400 - alias arun-8400.Princeton.EDU - address 172.18.80.9 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8401 - alias arun-8401.Princeton.EDU - address 172.18.80.10 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8402 - alias arun-8402.Princeton.EDU - address 172.18.80.11 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8403 - alias arun-8403.Princeton.EDU - address 172.18.80.12 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8404 - alias arun-8404.Princeton.EDU - address 172.18.80.13 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8405 - alias arun-8405.Princeton.EDU - address 172.18.80.14 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8406 - alias arun-8406.Princeton.EDU - address 172.18.80.15 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8407 - alias arun-8407.Princeton.EDU - address 172.18.80.16 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8408 - alias arun-8408.Princeton.EDU - address 172.18.80.17 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8409 - alias arun-8409.Princeton.EDU - address 172.18.80.18 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8410 - alias arun-8410.Princeton.EDU - address 172.18.80.19 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8411 - alias arun-8411.Princeton.EDU - address 172.18.80.20 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8412 - alias arun-8412.Princeton.EDU - address 172.18.64.84 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8413 - alias arun-8413.Princeton.EDU - address 172.18.67.205 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8414 - alias arun-8414.Princeton.EDU - address 172.18.67.206 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8415 - alias arun-8415.Princeton.EDU - address 172.18.67.207 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8416 - alias arun-8416.Princeton.EDU - address 172.18.67.254 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8417 - alias arun-8417.Princeton.EDU - address 172.18.68.143 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8418 - alias arun-8418.Princeton.EDU - address 172.18.68.144 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8419 - alias arun-8419.Princeton.EDU - address 172.18.68.148 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8420 - alias arun-8420.Princeton.EDU - address 172.18.68.149 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8421 - alias arun-8421.Princeton.EDU - address 172.18.78.18 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8422 - alias arun-8422.Princeton.EDU - address 172.18.78.19 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8423 - alias arun-8423.Princeton.EDU - address 172.18.78.20 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8424 - alias arun-8424.Princeton.EDU - address 172.18.80.21 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8425 - alias arun-8425.Princeton.EDU - address 172.18.80.22 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8426 - alias arun-8426.Princeton.EDU - address 172.18.80.23 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8427 - alias arun-8427.Princeton.EDU - address 172.18.80.24 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8428 - alias arun-8428.Princeton.EDU - address 172.18.80.25 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8429 - alias arun-8429.Princeton.EDU - address 172.18.80.26 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8430 - alias arun-8430.Princeton.EDU - address 172.18.80.27 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8431 - alias arun-8431.Princeton.EDU - address 172.18.80.28 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8432 - alias arun-8432.Princeton.EDU - address 172.18.80.29 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8433 - alias arun-8433.Princeton.EDU - address 172.18.80.30 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8434 - alias arun-8434.Princeton.EDU - address 172.18.80.31 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8435 - alias arun-8435.Princeton.EDU - address 172.18.80.32 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8436 - alias arun-8436.Princeton.EDU - address 172.18.80.33 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8437 - alias arun-8437.Princeton.EDU - address 172.18.80.34 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8438 - alias arun-8438.Princeton.EDU - address 172.18.80.35 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8439 - alias arun-8439.Princeton.EDU - address 172.18.80.36 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8440 - alias arun-8440.Princeton.EDU - address 172.18.80.37 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8441 - alias arun-8441.Princeton.EDU - address 172.18.80.38 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8442 - alias arun-8442.Princeton.EDU - address 172.18.80.39 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8443 - alias arun-8443.Princeton.EDU - address 172.18.80.40 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8444 - alias arun-8444.Princeton.EDU - address 172.18.80.41 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8445 - alias arun-8445.Princeton.EDU - address 172.18.80.42 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8446 - alias arun-8446.Princeton.EDU - address 172.18.80.43 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8447 - alias arun-8447.Princeton.EDU - address 172.18.80.44 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8448 - alias arun-8448.Princeton.EDU - address 172.18.80.45 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8449 - alias arun-8449.Princeton.EDU - address 172.18.80.46 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8450 - alias arun-8450.Princeton.EDU - address 172.18.80.47 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8451 - alias arun-8451.Princeton.EDU - address 172.18.80.48 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8452 - alias arun-8452.Princeton.EDU - address 172.18.80.49 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8453 - alias arun-8453.Princeton.EDU - address 172.18.80.50 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8454 - alias arun-8454.Princeton.EDU - address 172.18.78.162 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8455 - alias arun-8455.Princeton.EDU - address 172.18.78.163 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8456 - alias arun-8456.Princeton.EDU - address 172.18.78.164 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8457 - alias arun-8457.Princeton.EDU - address 172.18.78.165 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8458 - alias arun-8458.Princeton.EDU - address 172.18.78.166 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8459 - alias arun-8459.Princeton.EDU - address 172.18.78.167 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8460 - alias arun-8460.Princeton.EDU - address 172.18.78.168 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8461 - alias arun-8461.Princeton.EDU - address 172.18.78.169 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8462 - alias arun-8462.Princeton.EDU - address 172.18.78.174 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8463 - alias arun-8463.Princeton.EDU - address 172.18.78.175 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8464 - alias arun-8464.Princeton.EDU - address 172.18.78.176 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8465 - alias arun-8465.Princeton.EDU - address 172.18.78.177 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8466 - alias arun-8466.Princeton.EDU - address 172.18.78.178 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8467 - alias arun-8467.Princeton.EDU - address 172.18.78.179 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8468 - alias arun-8468.Princeton.EDU - address 172.18.78.180 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8469 - alias arun-8469.Princeton.EDU - address 172.18.78.181 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8470 - alias arun-8470.Princeton.EDU - address 172.18.78.182 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8471 - alias arun-8471.Princeton.EDU - address 172.18.78.183 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8472 - alias arun-8472.Princeton.EDU - address 172.18.78.170 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8473 - alias arun-8473.Princeton.EDU - address 172.18.78.171 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8474 - alias arun-8474.Princeton.EDU - address 172.18.80.1 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8475 - alias arun-8475.Princeton.EDU - address 172.18.78.172 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8476 - alias arun-8476.Princeton.EDU - address 172.18.78.173 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8477 - alias arun-8477.Princeton.EDU - address 172.18.78.226 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8478 - alias arun-8478.Princeton.EDU - address 172.18.78.227 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8481 - alias arun-8481.Princeton.EDU - address 172.18.80.55 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8482 - alias arun-8482.Princeton.EDU - address 172.18.80.56 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8483 - alias arun-8483.Princeton.EDU - address 172.18.80.57 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8484 - alias arun-8484.Princeton.EDU - address 172.18.80.58 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8485 - alias arun-8485.Princeton.EDU - address 172.18.80.59 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8486 - alias arun-8486.Princeton.EDU - address 172.18.80.60 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8487 - alias arun-8487.Princeton.EDU - address 172.18.80.61 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8488 - alias arun-8488.Princeton.EDU - address 172.18.80.62 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8489 - alias arun-8489.Princeton.EDU - address 172.18.80.63 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8490 - alias arun-8490.Princeton.EDU - address 172.18.80.64 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8491 - alias arun-8491.Princeton.EDU - address 172.18.80.65 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8492 - alias arun-8492.Princeton.EDU - address 172.18.80.66 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8493 - alias arun-8493.Princeton.EDU - address 172.18.80.67 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8494 - alias arun-8494.Princeton.EDU - address 172.18.80.68 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8495 - alias arun-8495.Princeton.EDU - address 172.18.80.69 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8496 - alias arun-8496.Princeton.EDU - address 172.18.80.70 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8497 - alias arun-8497.Princeton.EDU - address 172.18.80.71 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8498 - alias arun-8498.Princeton.EDU - address 172.18.80.72 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8499 - alias arun-8499.Princeton.EDU - address 172.18.80.73 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8500 - alias arun-8500.Princeton.EDU - address 172.18.80.74 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8501 - alias arun-8501.Princeton.EDU - address 172.18.80.75 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8502 - alias arun-8502.Princeton.EDU - address 172.18.80.76 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8503 - alias arun-8503.Princeton.EDU - address 172.18.80.77 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8504 - alias arun-8504.Princeton.EDU - address 172.18.64.87 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8505 - alias arun-8505.Princeton.EDU - address 172.18.80.78 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8506 - alias arun-8506.Princeton.EDU - address 172.18.80.79 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8507 - alias arun-8507.Princeton.EDU - address 172.18.67.103 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8508 - alias arun-8508.Princeton.EDU - address 172.18.68.42 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8509 - alias arun-8509.Princeton.EDU - address 172.18.68.43 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8510 - alias arun-8510.Princeton.EDU - address 172.18.68.44 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8511 - alias arun-8511.Princeton.EDU - address 172.18.68.45 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8512 - alias arun-8512.Princeton.EDU - address 172.18.68.46 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8513 - alias arun-8513.Princeton.EDU - address 172.18.68.48 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8514 - alias arun-8514.Princeton.EDU - address 172.18.68.49 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8515 - alias arun-8515.Princeton.EDU - address 172.18.68.50 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8516 - alias arun-8516.Princeton.EDU - address 172.18.68.51 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8517 - alias arun-8517.Princeton.EDU - address 172.18.68.71 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8518 - alias arun-8518.Princeton.EDU - address 172.18.68.72 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8519 - alias arun-8519.Princeton.EDU - address 172.18.68.73 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8520 - alias arun-8520.Princeton.EDU - address 172.18.68.74 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8521 - alias arun-8521.Princeton.EDU - address 172.18.68.75 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8522 - alias arun-8522.Princeton.EDU - address 172.18.68.76 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8523 - alias arun-8523.Princeton.EDU - address 172.18.68.77 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8524 - alias arun-8524.Princeton.EDU - address 172.18.68.78 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8525 - alias arun-8525.Princeton.EDU - address 172.18.68.79 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8526 - alias arun-8526.Princeton.EDU - address 172.18.68.113 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8527 - alias arun-8527.Princeton.EDU - address 172.18.68.130 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8528 - alias arun-8528.Princeton.EDU - address 172.18.64.211 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8529 - alias arun-8529.Princeton.EDU - address 172.18.82.72 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8530 - alias arun-8530.Princeton.EDU - address 172.18.82.85 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8531 - alias arun-8531.Princeton.EDU - address 172.18.82.86 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8532 - alias arun-8532.Princeton.EDU - address 172.18.82.73 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8533 - alias arun-8533.Princeton.EDU - address 172.18.82.74 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8534 - alias arun-8534.Princeton.EDU - address 172.18.82.75 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8535 - alias arun-8535.Princeton.EDU - address 172.18.82.76 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8536 - alias arun-8536.Princeton.EDU - address 172.18.82.77 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8537 - alias arun-8537.Princeton.EDU - address 172.18.82.78 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8538 - alias arun-8538.Princeton.EDU - address 172.18.82.79 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8539 - alias arun-8539.Princeton.EDU - address 172.18.82.80 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8540 - alias arun-8540.Princeton.EDU - address 172.18.82.81 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8541 - alias arun-8541.Princeton.EDU - address 172.18.82.82 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8542 - alias arun-8542.Princeton.EDU - address 172.18.82.83 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8543 - alias arun-8543.Princeton.EDU - address 172.18.82.84 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8545 - alias arun-8545.Princeton.EDU - address 172.18.66.28 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8546 - alias arun-8546.Princeton.EDU - address 172.18.66.50 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8547 - alias arun-8547.Princeton.EDU - address 172.18.65.211 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8548 - alias arun-8548.Princeton.EDU - address 172.18.66.247 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8549 - alias arun-8549.Princeton.EDU - address 172.18.66.248 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8550 - alias arun-8550.Princeton.EDU - address 172.18.67.174 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8551 - alias arun-8551.Princeton.EDU - address 172.18.73.211 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8552 - alias arun-8552.Princeton.EDU - address 172.18.65.208 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8553 - alias arun-8553.Princeton.EDU - address 172.18.65.209 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8554 - alias arun-8554.Princeton.EDU - address 172.18.65.210 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8555 - alias arun-8555.Princeton.EDU - address 172.18.82.88 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8556 - alias arun-8556.Princeton.EDU - address 172.18.82.89 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8557 - alias arun-8557.Princeton.EDU - address 172.18.82.87 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8559 - alias arun-8559.Princeton.EDU - address 172.18.72.68 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8560 - alias arun-8560.Princeton.EDU - address 172.18.82.91 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8561 - alias arun-8561.Princeton.EDU - address 172.18.82.92 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8562 - alias arun-8562.Princeton.EDU - address 172.18.82.93 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8563 - alias arun-8563.Princeton.EDU - address 172.18.82.94 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8564 - alias arun-8564.Princeton.EDU - address 172.18.82.95 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8565 - alias arun-8565.Princeton.EDU - address 172.18.82.96 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8566 - alias arun-8566.Princeton.EDU - address 172.18.82.97 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8567 - alias arun-8567.Princeton.EDU - address 172.18.82.98 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8568 - alias arun-8568.Princeton.EDU - address 172.18.82.99 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8569 - alias arun-8569.Princeton.EDU - address 172.18.82.100 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8570 - alias arun-8570.Princeton.EDU - address 172.18.82.101 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8571 - alias arun-8571.Princeton.EDU - address 172.18.82.102 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8572 - alias arun-8572.Princeton.EDU - address 172.18.82.103 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8573 - alias arun-8573.Princeton.EDU - address 172.18.82.104 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8574 - alias arun-8574.Princeton.EDU - address 172.18.82.105 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8575 - alias arun-8575.Princeton.EDU - address 172.18.82.106 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8579 - alias arun-8579.Princeton.EDU - address 172.18.82.159 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8581 - alias arun-8581.Princeton.EDU - address 172.18.82.176 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8582 - alias arun-8582.Princeton.EDU - address 172.18.82.240 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8583 - alias arun-8583.Princeton.EDU - address 172.18.82.241 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8584 - alias arun-8584.Princeton.EDU - address 172.18.82.242 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8585 - alias arun-8585.Princeton.EDU - address 172.18.82.243 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8586 - alias arun-8586.Princeton.EDU - address 172.18.85.79 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8687 - alias arun-8687.Princeton.EDU - address 172.18.80.188 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8688 - alias arun-8688.Princeton.EDU - address 172.18.80.189 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8689 - alias arun-8689.Princeton.EDU - address 172.18.68.90 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8690 - alias arun-8690.Princeton.EDU - address 172.18.84.192 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8691 - alias arun-8691.Princeton.EDU - address 172.18.80.195 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8692 - alias arun-8692.Princeton.EDU - address 172.18.80.196 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8693 - alias arun-8693.Princeton.EDU - address 172.18.80.199 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8694 - alias arun-8694.Princeton.EDU - address 172.18.80.200 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8695 - alias arun-8695.Princeton.EDU - address 172.18.80.201 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8696 - alias arun-8696.Princeton.EDU - address 172.18.80.202 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8697 - alias arun-8697.Princeton.EDU - address 172.18.80.203 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8698 - alias arun-8698.Princeton.EDU - address 172.18.80.204 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8699 - alias arun-8699.Princeton.EDU - address 172.18.80.205 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8700 - alias arun-8700.Princeton.EDU - address 172.18.80.206 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8701 - alias arun-8701.Princeton.EDU - address 172.18.84.168 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8702 - alias arun-8702.Princeton.EDU - address 172.18.84.193 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8703 - alias arun-8703.Princeton.EDU - address 172.18.84.194 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8704 - alias arun-8704.Princeton.EDU - address 172.18.84.195 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8705 - alias arun-8705.Princeton.EDU - address 172.18.84.196 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8706 - alias arun-8706.Princeton.EDU - address 172.18.84.197 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8707 - alias arun-8707.Princeton.EDU - address 172.18.84.198 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8708 - alias arun-8708.Princeton.EDU - address 172.18.84.199 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8709 - alias arun-8709.Princeton.EDU - address 172.18.84.200 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8710 - alias arun-8710.Princeton.EDU - address 172.18.84.201 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8711 - alias arun-8711.Princeton.EDU - address 172.18.84.202 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8712 - alias arun-8712.Princeton.EDU - address 172.18.84.203 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8713 - alias arun-8713.Princeton.EDU - address 172.18.84.204 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8714 - alias arun-8714.Princeton.EDU - address 172.18.84.205 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8715 - alias arun-8715.Princeton.EDU - address 172.18.84.206 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8720 - alias arun-8720.Princeton.EDU - address 172.18.66.33 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8721 - alias arun-8721.Princeton.EDU - address 172.18.66.34 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8722 - alias arun-8722.Princeton.EDU - address 172.18.66.35 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8723 - alias arun-8723.Princeton.EDU - address 172.18.66.36 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8724 - alias arun-8724.Princeton.EDU - address 172.18.66.37 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8725 - alias arun-8725.Princeton.EDU - address 172.18.66.38 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8726 - alias arun-8726.Princeton.EDU - address 172.18.66.39 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8727 - alias arun-8727.Princeton.EDU - address 172.18.67.83 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8728 - alias arun-8728.Princeton.EDU - address 172.18.67.85 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8730 - alias arun-8730.Princeton.EDU - address 172.18.67.218 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8731 - alias arun-8731.Princeton.EDU - address 172.18.80.235 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8732 - alias arun-8732.Princeton.EDU - address 172.18.80.236 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8733 - alias arun-8733.Princeton.EDU - address 172.18.80.237 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8734 - alias arun-8734.Princeton.EDU - address 172.18.80.238 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8735 - alias arun-8735.Princeton.EDU - address 172.18.80.239 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8736 - alias arun-8736.Princeton.EDU - address 172.18.67.220 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8737 - alias arun-8737.Princeton.EDU - address 172.18.76.145 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8738 - alias arun-8738.Princeton.EDU - address 172.18.76.148 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8739 - alias arun-8739.Princeton.EDU - address 172.18.76.149 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8740 - alias arun-8740.Princeton.EDU - address 172.18.78.125 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8741 - alias arun-8741.Princeton.EDU - address 172.18.80.240 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8742 - alias arun-8742.Princeton.EDU - address 172.18.80.207 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8743 - alias arun-8743.Princeton.EDU - address 172.18.80.208 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8744 - alias arun-8744.Princeton.EDU - address 172.18.80.209 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8745 - alias arun-8745.Princeton.EDU - address 172.18.80.210 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8746 - alias arun-8746.Princeton.EDU - address 172.18.80.241 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8747 - alias arun-8747.Princeton.EDU - address 172.18.80.213 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8748 - alias arun-8748.Princeton.EDU - address 172.18.80.214 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8749 - alias arun-8749.Princeton.EDU - address 172.18.80.215 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8750 - alias arun-8750.Princeton.EDU - address 172.18.80.216 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8751 - alias arun-8751.Princeton.EDU - address 172.18.80.217 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8752 - alias arun-8752.Princeton.EDU - address 172.18.80.243 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8753 - alias arun-8753.Princeton.EDU - address 172.18.80.244 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8754 - alias arun-8754.Princeton.EDU - address 172.18.80.218 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8755 - alias arun-8755.Princeton.EDU - address 172.18.80.219 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8756 - alias arun-8756.Princeton.EDU - address 172.18.80.245 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8757 - alias arun-8757.Princeton.EDU - address 172.18.80.246 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8758 - alias arun-8758.Princeton.EDU - address 172.18.80.220 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8759 - alias arun-8759.Princeton.EDU - address 172.18.80.221 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8760 - alias arun-8760.Princeton.EDU - address 172.18.80.222 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8761 - alias arun-8761.Princeton.EDU - address 172.18.80.223 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8762 - alias arun-8762.Princeton.EDU - address 172.18.80.224 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8763 - alias arun-8763.Princeton.EDU - address 172.18.80.225 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8764 - alias arun-8764.Princeton.EDU - address 172.18.80.226 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8765 - alias arun-8765.Princeton.EDU - address 172.18.80.227 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8766 - alias arun-8766.Princeton.EDU - address 172.18.80.228 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8767 - alias arun-8767.Princeton.EDU - address 172.18.80.229 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8768 - alias arun-8768.Princeton.EDU - address 172.18.80.230 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8769 - alias arun-8769.Princeton.EDU - address 172.18.80.247 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8770 - alias arun-8770.Princeton.EDU - address 172.18.80.231 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8771 - alias arun-8771.Princeton.EDU - address 172.18.80.232 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8772 - alias arun-8772.Princeton.EDU - address 172.18.80.248 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8773 - alias arun-8773.Princeton.EDU - address 172.18.80.249 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8774 - alias arun-8774.Princeton.EDU - address 172.18.80.233 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8775 - alias arun-8775.Princeton.EDU - address 172.18.80.234 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8776 - alias arun-8776.Princeton.EDU - address 172.18.80.211 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8777 - alias arun-8777.Princeton.EDU - address 172.18.80.212 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8778 - alias arun-8778.Princeton.EDU - address 172.18.80.250 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8779 - alias arun-8779.Princeton.EDU - address 172.18.80.251 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8780 - alias arun-8780.Princeton.EDU - address 172.18.80.252 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8781 - alias arun-8781.Princeton.EDU - address 172.18.80.253 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8782 - alias arun-8782.Princeton.EDU - address 172.18.80.254 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8783 - alias arun-8783.Princeton.EDU - address 172.18.81.1 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8784 - alias arun-8784.Princeton.EDU - address 172.18.81.2 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8785 - alias arun-8785.Princeton.EDU - address 172.18.81.3 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8786 - alias arun-8786.Princeton.EDU - address 172.18.81.4 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8787 - alias arun-8787.Princeton.EDU - address 172.18.81.5 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8788 - alias arun-8788.Princeton.EDU - address 172.18.81.6 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8789 - alias arun-8789.Princeton.EDU - address 172.18.81.7 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8790 - alias arun-8790.Princeton.EDU - address 172.18.81.8 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8791 - alias arun-8791.Princeton.EDU - address 172.18.81.9 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8792 - alias arun-8792.Princeton.EDU - address 172.18.81.10 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8793 - alias arun-8793.Princeton.EDU - address 172.18.81.11 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8794 - alias arun-8794.Princeton.EDU - address 172.18.81.12 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8795 - alias arun-8795.Princeton.EDU - address 172.18.81.13 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8796 - alias arun-8796.Princeton.EDU - address 172.18.81.14 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8797 - alias arun-8797.Princeton.EDU - address 172.18.81.15 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8798 - alias arun-8798.Princeton.EDU - address 172.18.81.16 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8799 - alias arun-8799.Princeton.EDU - address 172.18.81.17 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8800 - alias arun-8800.Princeton.EDU - address 172.18.81.32 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8801 - alias arun-8801.Princeton.EDU - address 172.18.88.91 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8804 - alias arun-8804.Princeton.EDU - address 172.18.84.44 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8806 - alias arun-8806.Princeton.EDU - address 172.18.64.33 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8807 - alias arun-8807.Princeton.EDU - address 172.18.64.32 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8809 - alias arun-8809.Princeton.EDU - address 172.18.84.149 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8813 - alias arun-8813.Princeton.EDU - address 172.18.88.69 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8814 - alias arun-8814.Princeton.EDU - address 172.18.88.70 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8815 - alias arun-8815.Princeton.EDU - address 172.18.88.73 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8816 - alias arun-8816.Princeton.EDU - address 172.18.81.208 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8817 - alias arun-8817.Princeton.EDU - address 172.18.64.26 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8818 - alias arun-8818.Princeton.EDU - address 172.18.65.246 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8819 - alias arun-8819.Princeton.EDU - address 172.18.82.2 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8820 - alias arun-8820.Princeton.EDU - address 172.18.82.3 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8821 - alias arun-8821.Princeton.EDU - address 172.18.88.80 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8822 - alias arun-8822.Princeton.EDU - address 172.18.81.216 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8825 - alias arun-8825.Princeton.EDU - address 172.18.75.191 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8828 - alias arun-8828.Princeton.EDU - address 172.18.76.153 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8829 - alias arun-8829.Princeton.EDU - address 172.18.84.152 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8830 - alias arun-8830.Princeton.EDU - address 172.18.83.221 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8831 - alias arun-8831.Princeton.EDU - address 172.18.82.4 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8832 - alias arun-8832.Princeton.EDU - address 172.18.82.5 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8833 - alias arun-8833.Princeton.EDU - address 172.18.66.3 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8834 - alias arun-8834.Princeton.EDU - address 172.18.80.194 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8835 - alias arun-8835.Princeton.EDU - address 172.18.65.153 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8836 - alias arun-8836.Princeton.EDU - address 172.18.66.31 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8837 - alias arun-8837.Princeton.EDU - address 172.18.81.207 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8838 - alias arun-8838.Princeton.EDU - address 172.18.81.220 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8839 - alias arun-8839.Princeton.EDU - address 172.18.82.177 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8840 - alias arun-8840.Princeton.EDU - address 172.18.83.224 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8841 - alias arun-8841.Princeton.EDU - address 172.18.81.39 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8842 - alias arun-8842.Princeton.EDU - address 172.18.81.40 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8843 - alias arun-8843.Princeton.EDU - address 172.18.81.41 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8844 - alias arun-8844.Princeton.EDU - address 172.18.81.42 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8845 - alias arun-8845.Princeton.EDU - address 172.18.81.43 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8846 - alias arun-8846.Princeton.EDU - address 172.18.81.44 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8847 - alias arun-8847.Princeton.EDU - address 172.18.81.45 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8848 - alias arun-8848.Princeton.EDU - address 172.18.81.46 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8849 - alias arun-8849.Princeton.EDU - address 172.18.81.47 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8850 - alias arun-8850.Princeton.EDU - address 172.18.81.48 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8851 - alias arun-8851.Princeton.EDU - address 172.18.81.49 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8852 - alias arun-8852.Princeton.EDU - address 172.18.81.50 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8853 - alias arun-8853.Princeton.EDU - address 172.18.81.51 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8854 - alias arun-8854.Princeton.EDU - address 172.18.81.52 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8855 - alias arun-8855.Princeton.EDU - address 172.18.81.53 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8856 - alias arun-8856.Princeton.EDU - address 172.18.81.54 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8857 - alias arun-8857.Princeton.EDU - address 172.18.81.55 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8858 - alias arun-8858.Princeton.EDU - address 172.18.81.56 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8859 - alias arun-8859.Princeton.EDU - address 172.18.81.57 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8860 - alias arun-8860.Princeton.EDU - address 172.18.81.58 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8861 - alias arun-8861.Princeton.EDU - address 172.18.81.59 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8862 - alias arun-8862.Princeton.EDU - address 172.18.81.60 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8863 - alias arun-8863.Princeton.EDU - address 172.18.81.61 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8864 - alias arun-8864.Princeton.EDU - address 172.18.81.62 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8865 - alias arun-8865.Princeton.EDU - address 172.18.81.63 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8866 - alias arun-8866.Princeton.EDU - address 172.18.81.64 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8867 - alias arun-8867.Princeton.EDU - address 172.18.81.111 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8868 - alias arun-8868.Princeton.EDU - address 172.18.81.112 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8869 - alias arun-8869.Princeton.EDU - address 172.18.81.113 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8870 - alias arun-8870.Princeton.EDU - address 172.18.81.114 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8871 - alias arun-8871.Princeton.EDU - address 172.18.66.81 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8872 - alias arun-8872.Princeton.EDU - address 172.18.66.100 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8873 - alias arun-8873.Princeton.EDU - address 172.18.81.93 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8874 - alias arun-8874.Princeton.EDU - address 172.18.81.115 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8875 - alias arun-8875.Princeton.EDU - address 172.18.81.116 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8876 - alias arun-8876.Princeton.EDU - address 172.18.66.104 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8877 - alias arun-8877.Princeton.EDU - address 172.18.66.105 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8878 - alias arun-8878.Princeton.EDU - address 172.18.66.111 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8879 - alias arun-8879.Princeton.EDU - address 172.18.66.128 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8880 - alias arun-8880.Princeton.EDU - address 172.18.66.188 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8881 - alias arun-8881.Princeton.EDU - address 172.18.66.189 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8882 - alias arun-8882.Princeton.EDU - address 172.18.81.117 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8883 - alias arun-8883.Princeton.EDU - address 172.18.81.118 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8884 - alias arun-8884.Princeton.EDU - address 172.18.68.14 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8885 - alias arun-8885.Princeton.EDU - address 172.18.68.63 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8886 - alias arun-8886.Princeton.EDU - address 172.18.68.64 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8887 - alias arun-8887.Princeton.EDU - address 172.18.68.65 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8888 - alias arun-8888.Princeton.EDU - address 172.18.81.65 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8889 - alias arun-8889.Princeton.EDU - address 172.18.81.119 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8890 - alias arun-8890.Princeton.EDU - address 172.18.81.94 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8891 - alias arun-8891.Princeton.EDU - address 172.18.81.120 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8892 - alias arun-8892.Princeton.EDU - address 172.18.81.121 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8893 - alias arun-8893.Princeton.EDU - address 172.18.81.95 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8894 - alias arun-8894.Princeton.EDU - address 172.18.81.122 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8895 - alias arun-8895.Princeton.EDU - address 172.18.81.66 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8896 - alias arun-8896.Princeton.EDU - address 172.18.81.96 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8897 - alias arun-8897.Princeton.EDU - address 172.18.81.97 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8898 - alias arun-8898.Princeton.EDU - address 172.18.81.123 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8899 - alias arun-8899.Princeton.EDU - address 172.18.81.98 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8900 - alias arun-8900.Princeton.EDU - address 172.18.81.99 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8901 - alias arun-8901.Princeton.EDU - address 172.18.81.124 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8902 - alias arun-8902.Princeton.EDU - address 172.18.81.100 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8903 - alias arun-8903.Princeton.EDU - address 172.18.81.101 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8904 - alias arun-8904.Princeton.EDU - address 172.18.81.102 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8905 - alias arun-8905.Princeton.EDU - address 172.18.81.67 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8906 - alias arun-8906.Princeton.EDU - address 172.18.81.125 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8907 - alias arun-8907.Princeton.EDU - address 172.18.81.126 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8908 - alias arun-8908.Princeton.EDU - address 172.18.81.127 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8909 - alias arun-8909.Princeton.EDU - address 172.18.81.103 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8910 - alias arun-8910.Princeton.EDU - address 172.18.81.68 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8911 - alias arun-8911.Princeton.EDU - address 172.18.81.104 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8912 - alias arun-8912.Princeton.EDU - address 172.18.81.105 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8913 - alias arun-8913.Princeton.EDU - address 172.18.81.128 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8914 - alias arun-8914.Princeton.EDU - address 172.18.81.106 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8915 - alias arun-8915.Princeton.EDU - address 172.18.81.129 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8916 - alias arun-8916.Princeton.EDU - address 172.18.81.69 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8917 - alias arun-8917.Princeton.EDU - address 172.18.81.70 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8918 - alias arun-8918.Princeton.EDU - address 172.18.78.2 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8919 - alias arun-8919.Princeton.EDU - address 172.18.81.130 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8920 - alias arun-8920.Princeton.EDU - address 172.18.81.33 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8921 - alias arun-8921.Princeton.EDU - address 172.18.81.131 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8922 - alias arun-8922.Princeton.EDU - address 172.18.81.71 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8923 - alias arun-8923.Princeton.EDU - address 172.18.81.72 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8924 - alias arun-8924.Princeton.EDU - address 172.18.81.34 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8925 - alias arun-8925.Princeton.EDU - address 172.18.81.132 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8926 - alias arun-8926.Princeton.EDU - address 172.18.81.35 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8927 - alias arun-8927.Princeton.EDU - address 172.18.81.133 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8928 - alias arun-8928.Princeton.EDU - address 172.18.81.36 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8929 - alias arun-8929.Princeton.EDU - address 172.18.81.107 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8930 - alias arun-8930.Princeton.EDU - address 172.18.81.134 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8931 - alias arun-8931.Princeton.EDU - address 172.18.81.108 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8932 - alias arun-8932.Princeton.EDU - address 172.18.81.109 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8933 - alias arun-8933.Princeton.EDU - address 172.18.81.110 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8934 - alias arun-8934.Princeton.EDU - address 172.18.81.135 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8935 - alias arun-8935.Princeton.EDU - address 172.18.81.73 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8936 - alias arun-8936.Princeton.EDU - address 172.18.81.136 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8937 - alias arun-8937.Princeton.EDU - address 172.18.81.74 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8938 - alias arun-8938.Princeton.EDU - address 172.18.81.75 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8939 - alias arun-8939.Princeton.EDU - address 172.18.81.137 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8940 - alias arun-8940.Princeton.EDU - address 172.18.81.76 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8941 - alias arun-8941.Princeton.EDU - address 172.18.81.77 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8942 - alias arun-8942.Princeton.EDU - address 172.18.81.78 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8943 - alias arun-8943.Princeton.EDU - address 172.18.81.79 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8944 - alias arun-8944.Princeton.EDU - address 172.18.81.80 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8945 - alias arun-8945.Princeton.EDU - address 172.18.81.81 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8946 - alias arun-8946.Princeton.EDU - address 172.18.81.82 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8947 - alias arun-8947.Princeton.EDU - address 172.18.81.83 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8948 - alias arun-8948.Princeton.EDU - address 172.18.81.84 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8949 - alias arun-8949.Princeton.EDU - address 172.18.81.85 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8950 - alias arun-8950.Princeton.EDU - address 172.18.81.86 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8951 - alias arun-8951.Princeton.EDU - address 172.18.81.87 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8952 - alias arun-8952.Princeton.EDU - address 172.18.81.88 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8953 - alias arun-8953.Princeton.EDU - address 172.18.81.89 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8954 - alias arun-8954.Princeton.EDU - address 172.18.81.90 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8955 - alias arun-8955.Princeton.EDU - address 172.18.81.91 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8956 - alias arun-8956.Princeton.EDU - address 172.18.81.92 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8969 - alias arun-8969.Princeton.EDU - address 172.18.81.149 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8991 - alias arun-8991.Princeton.EDU - address 172.18.81.169 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8992 - alias arun-8992.Princeton.EDU - address 172.18.81.170 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8993 - alias arun-8993.Princeton.EDU - address 172.18.81.171 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8994 - alias arun-8994.Princeton.EDU - address 172.18.81.172 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8995 - alias arun-8995.Princeton.EDU - address 172.18.81.173 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8996 - alias arun-8996.Princeton.EDU - address 172.18.81.174 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8997 - alias arun-8997.Princeton.EDU - address 172.18.81.175 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8998 - alias arun-8998.Princeton.EDU - address 172.18.81.176 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-8999 - alias arun-8999.Princeton.EDU - address 172.18.81.177 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9000 - alias arun-9000.Princeton.EDU - address 172.18.81.178 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9001 - alias arun-9001.Princeton.EDU - address 172.18.81.179 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9002 - alias arun-9002.Princeton.EDU - address 172.18.81.180 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9003 - alias arun-9003.Princeton.EDU - address 172.18.81.181 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9004 - alias arun-9004.Princeton.EDU - address 172.18.81.182 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9005 - alias arun-9005.Princeton.EDU - address 172.18.81.183 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9006 - alias arun-9006.Princeton.EDU - address 172.18.81.184 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9007 - alias arun-9007.Princeton.EDU - address 172.18.81.185 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9008 - alias arun-9008.Princeton.EDU - address 172.18.81.186 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9009 - alias arun-9009.Princeton.EDU - address 172.18.81.187 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9010 - alias arun-9010.Princeton.EDU - address 172.18.81.189 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9013 - alias arun-9013.Princeton.EDU - address 172.18.81.192 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9014 - alias arun-9014.Princeton.EDU - address 172.18.81.193 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9015 - alias arun-9015.Princeton.EDU - address 172.18.81.194 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9016 - alias arun-9016.Princeton.EDU - address 172.18.81.195 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9017 - alias arun-9017.Princeton.EDU - address 172.18.81.196 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9018 - alias arun-9018.Princeton.EDU - address 172.18.81.197 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9019 - alias arun-9019.Princeton.EDU - address 172.18.81.198 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9020 - alias arun-9020.Princeton.EDU - address 172.18.81.199 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9021 - alias arun-9021.Princeton.EDU - address 172.18.81.200 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9022 - alias arun-9022.Princeton.EDU - address 172.18.81.201 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9023 - alias arun-9023.Princeton.EDU - address 172.18.81.202 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9024 - alias arun-9024.Princeton.EDU - address 172.18.81.203 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9025 - alias arun-9025.Princeton.EDU - address 172.18.81.204 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9026 - alias arun-9026.Princeton.EDU - address 172.18.65.61 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9027 - alias arun-9027.Princeton.EDU - address 172.18.65.64 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9028 - alias arun-9028.Princeton.EDU - address 172.18.65.65 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9029 - alias arun-9029.Princeton.EDU - address 172.18.65.66 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9030 - alias arun-9030.Princeton.EDU - address 172.18.65.67 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9031 - alias arun-9031.Princeton.EDU - address 172.18.65.148 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9032 - alias arun-9032.Princeton.EDU - address 172.18.65.149 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9033 - alias arun-9033.Princeton.EDU - address 172.18.64.76 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9034 - alias arun-9034.Princeton.EDU - address 172.18.64.97 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9035 - alias arun-9035.Princeton.EDU - address 172.18.65.1 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9036 - alias arun-9036.Princeton.EDU - address 172.18.67.94 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9037 - alias arun-9037.Princeton.EDU - address 172.18.80.193 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9104 - alias arun-9104.Princeton.EDU - address 172.18.231.245 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9105 - alias arun-9105.Princeton.EDU - address 172.18.231.251 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9106 - alias arun-9106.Princeton.EDU - address 172.18.231.252 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9107 - alias arun-9107.Princeton.EDU - address 172.18.231.253 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9108 - alias arun-9108.Princeton.EDU - address 172.18.231.254 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9109 - alias arun-9109.Princeton.EDU - address 172.18.232.1 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9110 - alias arun-9110.Princeton.EDU - address 172.18.232.2 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9111 - alias arun-9111.Princeton.EDU - address 172.18.232.3 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9112 - alias arun-9112.Princeton.EDU - address 172.18.232.4 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9113 - alias arun-9113.Princeton.EDU - address 172.18.232.5 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9114 - alias arun-9114.Princeton.EDU - address 172.18.232.6 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9115 - alias arun-9115.Princeton.EDU - address 172.18.232.7 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9116 - alias arun-9116.Princeton.EDU - address 172.18.232.8 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9117 - alias arun-9117.Princeton.EDU - address 172.18.232.9 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9118 - alias arun-9118.Princeton.EDU - address 172.18.232.10 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9119 - alias arun-9119.Princeton.EDU - address 172.18.232.11 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9120 - alias arun-9120.Princeton.EDU - address 172.18.232.12 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9121 - alias arun-9121.Princeton.EDU - address 172.18.232.13 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9122 - alias arun-9122.Princeton.EDU - address 172.18.232.14 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9123 - alias arun-9123.Princeton.EDU - address 172.18.232.15 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9124 - alias arun-9124.Princeton.EDU - address 172.18.232.16 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9125 - alias arun-9125.Princeton.EDU - address 172.18.232.25 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9126 - alias arun-9126.Princeton.EDU - address 172.18.232.26 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9127 - alias arun-9127.Princeton.EDU - address 172.18.232.27 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9128 - alias arun-9128.Princeton.EDU - address 172.18.232.28 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9129 - alias arun-9129.Princeton.EDU - address 172.18.232.29 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9130 - alias arun-9130.Princeton.EDU - address 172.18.232.30 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9131 - alias arun-9131.Princeton.EDU - address 172.18.232.31 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9132 - alias arun-9132.Princeton.EDU - address 172.18.232.32 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9133 - alias arun-9133.Princeton.EDU - address 172.18.231.238 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9134 - alias arun-9134.Princeton.EDU - address 172.18.232.33 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9135 - alias arun-9135.Princeton.EDU - address 172.18.231.239 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9136 - alias arun-9136.Princeton.EDU - address 172.18.231.240 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9137 - alias arun-9137.Princeton.EDU - address 172.18.231.241 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9138 - alias arun-9138.Princeton.EDU - address 172.18.231.242 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9139 - alias arun-9139.Princeton.EDU - address 172.18.231.243 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9140 - alias arun-9140.Princeton.EDU - address 172.18.232.17 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9141 - alias arun-9141.Princeton.EDU - address 172.18.231.244 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9142 - alias arun-9142.Princeton.EDU - address 172.18.232.18 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9143 - alias arun-9143.Princeton.EDU - address 172.18.232.19 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9144 - alias arun-9144.Princeton.EDU - address 172.18.232.20 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9145 - alias arun-9145.Princeton.EDU - address 172.18.231.246 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9146 - alias arun-9146.Princeton.EDU - address 172.18.231.247 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9147 - alias arun-9147.Princeton.EDU - address 172.18.231.248 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9148 - alias arun-9148.Princeton.EDU - address 172.18.231.249 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9149 - alias arun-9149.Princeton.EDU - address 172.18.231.250 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9150 - alias arun-9150.Princeton.EDU - address 172.18.232.21 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9151 - alias arun-9151.Princeton.EDU - address 172.18.232.22 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9152 - alias arun-9152.Princeton.EDU - address 172.18.232.23 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9153 - alias arun-9153.Princeton.EDU - address 172.18.232.24 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9154 - alias arun-9154.Princeton.EDU - address 172.18.65.121 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9155 - alias arun-9155.Princeton.EDU - address 172.18.65.122 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9156 - alias arun-9156.Princeton.EDU - address 172.18.65.123 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9157 - alias arun-9157.Princeton.EDU - address 172.18.65.124 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9158 - alias arun-9158.Princeton.EDU - address 172.18.65.125 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9159 - alias arun-9159.Princeton.EDU - address 172.18.65.126 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9160 - alias arun-9160.Princeton.EDU - address 172.18.65.127 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9161 - alias arun-9161.Princeton.EDU - address 172.18.65.128 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9162 - alias arun-9162.Princeton.EDU - address 172.18.65.129 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9163 - alias arun-9163.Princeton.EDU - address 172.18.65.130 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9164 - alias arun-9164.Princeton.EDU - address 172.18.65.131 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9165 - alias arun-9165.Princeton.EDU - address 172.18.65.132 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9166 - alias arun-9166.Princeton.EDU - address 172.18.65.133 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9167 - alias arun-9167.Princeton.EDU - address 172.18.65.134 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9168 - alias arun-9168.Princeton.EDU - address 172.18.65.135 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9169 - alias arun-9169.Princeton.EDU - address 172.18.65.136 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9170 - alias arun-9170.Princeton.EDU - address 172.18.65.137 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9171 - alias arun-9171.Princeton.EDU - address 172.18.65.138 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9172 - alias arun-9172.Princeton.EDU - address 172.18.65.139 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9173 - alias arun-9173.Princeton.EDU - address 172.18.65.140 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9174 - alias arun-9174.Princeton.EDU - address 172.18.65.141 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9175 - alias arun-9175.Princeton.EDU - address 172.18.65.142 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9176 - alias arun-9176.Princeton.EDU - address 172.18.65.143 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9177 - alias arun-9177.Princeton.EDU - address 172.18.65.151 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9178 - alias arun-9178.Princeton.EDU - address 172.18.65.165 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9179 - alias arun-9179.Princeton.EDU - address 172.18.65.166 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9180 - alias arun-9180.Princeton.EDU - address 172.18.65.167 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9181 - alias arun-9181.Princeton.EDU - address 172.18.65.173 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9182 - alias arun-9182.Princeton.EDU - address 172.18.65.174 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9183 - alias arun-9183.Princeton.EDU - address 172.18.65.175 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9184 - alias arun-9184.Princeton.EDU - address 172.18.65.200 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9185 - alias arun-9185.Princeton.EDU - address 172.18.66.51 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9186 - alias arun-9186.Princeton.EDU - address 172.18.66.52 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9187 - alias arun-9187.Princeton.EDU - address 172.18.82.11 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9188 - alias arun-9188.Princeton.EDU - address 172.18.64.68 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9189 - alias arun-9189.Princeton.EDU - address 172.18.64.80 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9190 - alias arun-9190.Princeton.EDU - address 172.18.64.112 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9191 - alias arun-9191.Princeton.EDU - address 172.18.64.113 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9192 - alias arun-9192.Princeton.EDU - address 172.18.82.12 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9193 - alias arun-9193.Princeton.EDU - address 172.18.82.13 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9194 - alias arun-9194.Princeton.EDU - address 172.18.82.14 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9195 - alias arun-9195.Princeton.EDU - address 172.18.82.15 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9196 - alias arun-9196.Princeton.EDU - address 172.18.82.16 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9197 - alias arun-9197.Princeton.EDU - address 172.18.82.17 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9198 - alias arun-9198.Princeton.EDU - address 172.18.82.18 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9199 - alias arun-9199.Princeton.EDU - address 172.18.64.114 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9200 - alias arun-9200.Princeton.EDU - address 172.18.64.115 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9201 - alias arun-9201.Princeton.EDU - address 172.18.64.116 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9202 - alias arun-9202.Princeton.EDU - address 172.18.64.117 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9203 - alias arun-9203.Princeton.EDU - address 172.18.64.118 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9204 - alias arun-9204.Princeton.EDU - address 172.18.64.119 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9205 - alias arun-9205.Princeton.EDU - address 172.18.64.120 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9206 - alias arun-9206.Princeton.EDU - address 172.18.64.121 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9207 - alias arun-9207.Princeton.EDU - address 172.18.64.122 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9208 - alias arun-9208.Princeton.EDU - address 172.18.64.123 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9209 - alias arun-9209.Princeton.EDU - address 172.18.64.124 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9210 - alias arun-9210.Princeton.EDU - address 172.18.64.125 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9211 - alias arun-9211.Princeton.EDU - address 172.18.64.126 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9212 - alias arun-9212.Princeton.EDU - address 172.18.64.127 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9213 - alias arun-9213.Princeton.EDU - address 172.18.64.128 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9214 - alias arun-9214.Princeton.EDU - address 172.18.64.129 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9215 - alias arun-9215.Princeton.EDU - address 172.18.64.130 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9216 - alias arun-9216.Princeton.EDU - address 172.18.64.131 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9217 - alias arun-9217.Princeton.EDU - address 172.18.64.132 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9218 - alias arun-9218.Princeton.EDU - address 172.18.64.133 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9219 - alias arun-9219.Princeton.EDU - address 172.18.64.134 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9220 - alias arun-9220.Princeton.EDU - address 172.18.64.135 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9221 - alias arun-9221.Princeton.EDU - address 172.18.64.136 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9222 - alias arun-9222.Princeton.EDU - address 172.18.64.137 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9223 - alias arun-9223.Princeton.EDU - address 172.18.64.138 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9224 - alias arun-9224.Princeton.EDU - address 172.18.64.139 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9225 - alias arun-9225.Princeton.EDU - address 172.18.64.140 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9226 - alias arun-9226.Princeton.EDU - address 172.18.64.141 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9227 - alias arun-9227.Princeton.EDU - address 172.18.64.142 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9228 - alias arun-9228.Princeton.EDU - address 172.18.64.143 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9229 - alias arun-9229.Princeton.EDU - address 172.18.64.144 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9230 - alias arun-9230.Princeton.EDU - address 172.18.64.145 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9231 - alias arun-9231.Princeton.EDU - address 172.18.64.146 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9232 - alias arun-9232.Princeton.EDU - address 172.18.64.147 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9233 - alias arun-9233.Princeton.EDU - address 172.18.64.148 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9234 - alias arun-9234.Princeton.EDU - address 172.18.64.149 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9235 - alias arun-9235.Princeton.EDU - address 172.18.64.150 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9236 - alias arun-9236.Princeton.EDU - address 172.18.64.159 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9237 - alias arun-9237.Princeton.EDU - address 172.18.64.160 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9238 - alias arun-9238.Princeton.EDU - address 172.18.64.151 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9239 - alias arun-9239.Princeton.EDU - address 172.18.64.153 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9240 - alias arun-9240.Princeton.EDU - address 172.18.64.154 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9241 - alias arun-9241.Princeton.EDU - address 172.18.64.161 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9242 - alias arun-9242.Princeton.EDU - address 172.18.64.162 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9243 - alias arun-9243.Princeton.EDU - address 172.18.64.163 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9244 - alias arun-9244.Princeton.EDU - address 172.18.64.164 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9245 - alias arun-9245.Princeton.EDU - address 172.18.64.165 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9246 - alias arun-9246.Princeton.EDU - address 172.18.64.166 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9247 - alias arun-9247.Princeton.EDU - address 172.18.64.167 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9248 - alias arun-9248.Princeton.EDU - address 172.18.64.168 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9249 - alias arun-9249.Princeton.EDU - address 172.18.64.169 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9250 - alias arun-9250.Princeton.EDU - address 172.18.64.170 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9251 - alias arun-9251.Princeton.EDU - address 172.18.64.171 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9252 - alias arun-9252.Princeton.EDU - address 172.18.64.172 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9253 - alias arun-9253.Princeton.EDU - address 172.18.64.173 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9254 - alias arun-9254.Princeton.EDU - address 172.18.64.174 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9255 - alias arun-9255.Princeton.EDU - address 172.18.64.175 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9256 - alias arun-9256.Princeton.EDU - address 172.18.64.176 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9257 - alias arun-9257.Princeton.EDU - address 172.18.64.177 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9258 - alias arun-9258.Princeton.EDU - address 172.18.64.178 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9259 - alias arun-9259.Princeton.EDU - address 172.18.64.179 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9260 - alias arun-9260.Princeton.EDU - address 172.18.64.180 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9261 - alias arun-9261.Princeton.EDU - address 172.18.64.182 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9262 - alias arun-9262.Princeton.EDU - address 172.18.64.183 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9263 - alias arun-9263.Princeton.EDU - address 172.18.64.184 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9264 - alias arun-9264.Princeton.EDU - address 172.18.64.185 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9265 - alias arun-9265.Princeton.EDU - address 172.18.64.186 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9266 - alias arun-9266.Princeton.EDU - address 172.18.64.187 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9267 - alias arun-9267.Princeton.EDU - address 172.18.64.188 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9268 - alias arun-9268.Princeton.EDU - address 172.18.64.189 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9269 - alias arun-9269.Princeton.EDU - address 172.18.64.190 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9270 - alias arun-9270.Princeton.EDU - address 172.18.64.191 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9271 - alias arun-9271.Princeton.EDU - address 172.18.64.192 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9272 - alias arun-9272.Princeton.EDU - address 172.18.64.193 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9273 - alias arun-9273.Princeton.EDU - address 172.18.64.194 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9274 - alias arun-9274.Princeton.EDU - address 172.18.64.195 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9275 - alias arun-9275.Princeton.EDU - address 172.18.64.196 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9276 - alias arun-9276.Princeton.EDU - address 172.18.64.155 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9277 - alias arun-9277.Princeton.EDU - address 172.18.64.197 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9278 - alias arun-9278.Princeton.EDU - address 172.18.64.156 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9279 - alias arun-9279.Princeton.EDU - address 172.18.64.198 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9280 - alias arun-9280.Princeton.EDU - address 172.18.64.199 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9281 - alias arun-9281.Princeton.EDU - address 172.18.64.200 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9282 - alias arun-9282.Princeton.EDU - address 172.18.64.202 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9283 - alias arun-9283.Princeton.EDU - address 172.18.64.203 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9284 - alias arun-9284.Princeton.EDU - address 172.18.64.204 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9285 - alias arun-9285.Princeton.EDU - address 172.18.64.206 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9286 - alias arun-9286.Princeton.EDU - address 172.18.64.207 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9287 - alias arun-9287.Princeton.EDU - address 172.18.64.208 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9288 - alias arun-9288.Princeton.EDU - address 172.18.64.209 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9289 - alias arun-9289.Princeton.EDU - address 172.18.64.210 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9290 - alias arun-9290.Princeton.EDU - address 172.18.64.212 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9291 - alias arun-9291.Princeton.EDU - address 172.18.64.213 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9292 - alias arun-9292.Princeton.EDU - address 172.18.64.214 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9293 - alias arun-9293.Princeton.EDU - address 172.18.64.215 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9294 - alias arun-9294.Princeton.EDU - address 172.18.64.216 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9295 - alias arun-9295.Princeton.EDU - address 172.18.64.217 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9296 - alias arun-9296.Princeton.EDU - address 172.18.64.218 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9297 - alias arun-9297.Princeton.EDU - address 172.18.64.157 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9298 - alias arun-9298.Princeton.EDU - address 172.18.64.158 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9299 - alias arun-9299.Princeton.EDU - address 172.18.64.219 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9300 - alias arun-9300.Princeton.EDU - address 172.18.64.222 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9301 - alias arun-9301.Princeton.EDU - address 172.18.64.220 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9302 - alias arun-9302.Princeton.EDU - address 172.18.64.221 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9303 - alias arun-9303.Princeton.EDU - address 172.18.67.175 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9304 - alias arun-9304.Princeton.EDU - address 172.18.82.26 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9305 - alias arun-9305.Princeton.EDU - address 172.18.82.27 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9306 - alias arun-9306.Princeton.EDU - address 172.18.82.29 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9307 - alias arun-9307.Princeton.EDU - address 172.18.67.246 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9308 - alias arun-9308.Princeton.EDU - address 172.18.67.247 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9309 - alias arun-9309.Princeton.EDU - address 172.18.82.28 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9310 - alias arun-9310.Princeton.EDU - address 172.18.67.248 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9311 - alias arun-9311.Princeton.EDU - address 172.18.82.30 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9312 - alias arun-9312.Princeton.EDU - address 172.18.82.31 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9313 - alias arun-9313.Princeton.EDU - address 172.18.67.249 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9314 - alias arun-9314.Princeton.EDU - address 172.18.67.250 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9315 - alias arun-9315.Princeton.EDU - address 172.18.82.32 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9316 - alias arun-9316.Princeton.EDU - address 172.18.67.251 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9317 - alias arun-9317.Princeton.EDU - address 172.18.67.252 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9318 - alias arun-9318.Princeton.EDU - address 172.18.68.7 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9319 - alias arun-9319.Princeton.EDU - address 172.18.68.8 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9320 - alias arun-9320.Princeton.EDU - address 172.18.82.62 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9321 - alias arun-9321.Princeton.EDU - address 172.18.81.18 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9322 - alias arun-9322.Princeton.EDU - address 172.18.81.30 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9323 - alias arun-9323.Princeton.EDU - address 172.18.81.31 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9324 - alias arun-9324.Princeton.EDU - address 172.18.82.19 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9325 - alias arun-9325.Princeton.EDU - address 172.18.82.20 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9326 - alias arun-9326.Princeton.EDU - address 172.18.82.21 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9327 - alias arun-9327.Princeton.EDU - address 172.18.82.22 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9328 - alias arun-9328.Princeton.EDU - address 172.18.82.23 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9329 - alias arun-9329.Princeton.EDU - address 172.18.82.24 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9330 - alias arun-9330.Princeton.EDU - address 172.18.82.25 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9331 - alias arun-9331.Princeton.EDU - address 172.18.66.136 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9332 - alias arun-9332.Princeton.EDU - address 172.18.66.186 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9333 - alias arun-9333.Princeton.EDU - address 172.18.82.63 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9334 - alias arun-9334.Princeton.EDU - address 172.18.82.71 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9335 - alias arun-9335.Princeton.EDU - address 172.18.67.95 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9336 - alias arun-9336.Princeton.EDU - address 172.18.82.33 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9337 - alias arun-9337.Princeton.EDU - address 172.18.68.5 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9338 - alias arun-9338.Princeton.EDU - address 172.18.82.64 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9339 - alias arun-9339.Princeton.EDU - address 172.18.82.55 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9340 - alias arun-9340.Princeton.EDU - address 172.18.82.56 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9341 - alias arun-9341.Princeton.EDU - address 172.18.82.34 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9342 - alias arun-9342.Princeton.EDU - address 172.18.82.35 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9343 - alias arun-9343.Princeton.EDU - address 172.18.82.57 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9344 - alias arun-9344.Princeton.EDU - address 172.18.82.36 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9345 - alias arun-9345.Princeton.EDU - address 172.18.82.37 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9346 - alias arun-9346.Princeton.EDU - address 172.18.82.38 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9347 - alias arun-9347.Princeton.EDU - address 172.18.82.39 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9348 - alias arun-9348.Princeton.EDU - address 172.18.82.40 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9349 - alias arun-9349.Princeton.EDU - address 172.18.82.41 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9350 - alias arun-9350.Princeton.EDU - address 172.18.82.42 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9351 - alias arun-9351.Princeton.EDU - address 172.18.82.43 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9352 - alias arun-9352.Princeton.EDU - address 172.18.82.44 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9353 - alias arun-9353.Princeton.EDU - address 172.18.82.45 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9354 - alias arun-9354.Princeton.EDU - address 172.18.82.65 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9355 - alias arun-9355.Princeton.EDU - address 172.18.82.66 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9356 - alias arun-9356.Princeton.EDU - address 172.18.82.67 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9357 - alias arun-9357.Princeton.EDU - address 172.18.65.207 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9358 - alias arun-9358.Princeton.EDU - address 172.18.82.68 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9359 - alias arun-9359.Princeton.EDU - address 172.18.82.58 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9360 - alias arun-9360.Princeton.EDU - address 172.18.82.69 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9361 - alias arun-9361.Princeton.EDU - address 172.18.82.51 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9362 - alias arun-9362.Princeton.EDU - address 172.18.64.205 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9363 - alias arun-9363.Princeton.EDU - address 172.18.82.52 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9364 - alias arun-9364.Princeton.EDU - address 172.18.82.70 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9365 - alias arun-9365.Princeton.EDU - address 172.18.82.59 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9366 - alias arun-9366.Princeton.EDU - address 172.18.82.46 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9367 - alias arun-9367.Princeton.EDU - address 172.18.82.54 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9368 - alias arun-9368.Princeton.EDU - address 172.18.82.47 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9369 - alias arun-9369.Princeton.EDU - address 172.18.82.60 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9370 - alias arun-9370.Princeton.EDU - address 172.18.82.48 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9371 - alias arun-9371.Princeton.EDU - address 172.18.82.49 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9372 - alias arun-9372.Princeton.EDU - address 172.18.82.50 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9373 - alias arun-9373.Princeton.EDU - address 172.18.82.53 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9374 - alias arun-9374.Princeton.EDU - address 172.18.82.61 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9375 - alias arun-9375.Princeton.EDU - address 172.18.67.92 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9376 - alias arun-9376.Princeton.EDU - address 172.18.82.107 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9377 - alias arun-9377.Princeton.EDU - address 172.18.82.108 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9378 - alias arun-9378.Princeton.EDU - address 172.18.82.109 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9379 - alias arun-9379.Princeton.EDU - address 172.18.82.110 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9380 - alias arun-9380.Princeton.EDU - address 172.18.82.111 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9381 - alias arun-9381.Princeton.EDU - address 172.18.82.113 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9382 - alias arun-9382.Princeton.EDU - address 172.18.82.112 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9383 - alias arun-9383.Princeton.EDU - address 172.18.82.114 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9384 - alias arun-9384.Princeton.EDU - address 172.18.82.115 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9385 - alias arun-9385.Princeton.EDU - address 172.18.82.116 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9386 - alias arun-9386.Princeton.EDU - address 172.18.82.117 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9387 - alias arun-9387.Princeton.EDU - address 172.18.82.118 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9388 - alias arun-9388.Princeton.EDU - address 172.18.82.119 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9389 - alias arun-9389.Princeton.EDU - address 172.18.82.120 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9390 - alias arun-9390.Princeton.EDU - address 172.18.82.121 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9391 - alias arun-9391.Princeton.EDU - address 172.18.82.122 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9392 - alias arun-9392.Princeton.EDU - address 172.18.82.123 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9393 - alias arun-9393.Princeton.EDU - address 172.18.82.124 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9394 - alias arun-9394.Princeton.EDU - address 172.18.64.60 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9395 - alias arun-9395.Princeton.EDU - address 172.18.64.91 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9396 - alias arun-9396.Princeton.EDU - address 172.18.66.99 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9397 - alias arun-9397.Princeton.EDU - address 172.18.66.142 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9398 - alias arun-9398.Princeton.EDU - address 172.18.66.249 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9399 - alias arun-9399.Princeton.EDU - address 172.18.67.228 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9400 - alias arun-9400.Princeton.EDU - address 172.18.67.227 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9401 - alias arun-9401.Princeton.EDU - address 172.18.67.229 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9402 - alias arun-9402.Princeton.EDU - address 172.18.67.230 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9403 - alias arun-9403.Princeton.EDU - address 172.18.68.9 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9404 - alias arun-9404.Princeton.EDU - address 172.18.68.125 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9405 - alias arun-9405.Princeton.EDU - address 172.18.80.190 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9406 - alias arun-9406.Princeton.EDU - address 172.18.82.90 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9407 - alias arun-9407.Princeton.EDU - address 172.18.82.129 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9408 - alias arun-9408.Princeton.EDU - address 172.18.67.242 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9409 - alias arun-9409.Princeton.EDU - address 172.18.231.140 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9410 - alias arun-9410.Princeton.EDU - address 172.18.231.126 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9411 - alias arun-9411.Princeton.EDU - address 172.18.231.127 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9412 - alias arun-9412.Princeton.EDU - address 172.18.231.141 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9413 - alias arun-9413.Princeton.EDU - address 172.18.231.142 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9414 - alias arun-9414.Princeton.EDU - address 172.18.231.143 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9415 - alias arun-9415.Princeton.EDU - address 172.18.231.128 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9416 - alias arun-9416.Princeton.EDU - address 172.18.231.129 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9417 - alias arun-9417.Princeton.EDU - address 172.18.231.144 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9418 - alias arun-9418.Princeton.EDU - address 172.18.231.145 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9419 - alias arun-9419.Princeton.EDU - address 172.18.231.146 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9420 - alias arun-9420.Princeton.EDU - address 172.18.231.147 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9421 - alias arun-9421.Princeton.EDU - address 172.18.231.148 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9422 - alias arun-9422.Princeton.EDU - address 172.18.231.149 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9423 - alias arun-9423.Princeton.EDU - address 172.18.231.150 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9424 - alias arun-9424.Princeton.EDU - address 172.18.231.151 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9425 - alias arun-9425.Princeton.EDU - address 172.18.231.152 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9426 - alias arun-9426.Princeton.EDU - address 172.18.231.130 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9427 - alias arun-9427.Princeton.EDU - address 172.18.231.132 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9428 - alias arun-9428.Princeton.EDU - address 172.18.231.133 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9429 - alias arun-9429.Princeton.EDU - address 172.18.231.131 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9430 - alias arun-9430.Princeton.EDU - address 172.18.231.153 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9431 - alias arun-9431.Princeton.EDU - address 172.18.231.154 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9432 - alias arun-9432.Princeton.EDU - address 172.18.231.134 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9433 - alias arun-9433.Princeton.EDU - address 172.18.231.155 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9434 - alias arun-9434.Princeton.EDU - address 172.18.231.156 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9435 - alias arun-9435.Princeton.EDU - address 172.18.231.157 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9436 - alias arun-9436.Princeton.EDU - address 172.18.231.158 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9437 - alias arun-9437.Princeton.EDU - address 172.18.231.159 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9438 - alias arun-9438.Princeton.EDU - address 172.18.231.160 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9439 - alias arun-9439.Princeton.EDU - address 172.18.231.161 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9440 - alias arun-9440.Princeton.EDU - address 172.18.231.162 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9441 - alias arun-9441.Princeton.EDU - address 172.18.231.163 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9442 - alias arun-9442.Princeton.EDU - address 172.18.231.135 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9443 - alias arun-9443.Princeton.EDU - address 172.18.231.136 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9444 - alias arun-9444.Princeton.EDU - address 172.18.231.137 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9445 - alias arun-9445.Princeton.EDU - address 172.18.231.164 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9446 - alias arun-9446.Princeton.EDU - address 172.18.231.139 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9447 - alias arun-9447.Princeton.EDU - address 172.18.231.138 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9448 - alias arun-9448.Princeton.EDU - address 172.18.231.165 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9449 - alias arun-9449.Princeton.EDU - address 172.18.231.166 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9450 - alias arun-9450.Princeton.EDU - address 172.18.231.167 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9451 - alias arun-9451.Princeton.EDU - address 172.18.231.168 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9452 - alias arun-9452.Princeton.EDU - address 172.18.231.169 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9453 - alias arun-9453.Princeton.EDU - address 172.18.82.134 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9454 - alias arun-9454.Princeton.EDU - address 172.18.82.135 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9455 - alias arun-9455.Princeton.EDU - address 172.18.82.136 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9456 - alias arun-9456.Princeton.EDU - address 172.18.82.137 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9457 - alias arun-9457.Princeton.EDU - address 172.18.82.138 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9458 - alias arun-9458.Princeton.EDU - address 172.18.82.139 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9459 - alias arun-9459.Princeton.EDU - address 172.18.82.140 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9460 - alias arun-9460.Princeton.EDU - address 172.18.82.141 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9461 - alias arun-9461.Princeton.EDU - address 172.18.82.142 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9462 - alias arun-9462.Princeton.EDU - address 172.18.82.143 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9463 - alias arun-9463.Princeton.EDU - address 172.18.82.144 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9464 - alias arun-9464.Princeton.EDU - address 172.18.82.145 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9465 - alias arun-9465.Princeton.EDU - address 172.18.82.146 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9466 - alias arun-9466.Princeton.EDU - address 172.18.82.147 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9467 - alias arun-9467.Princeton.EDU - address 172.18.82.148 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9468 - alias arun-9468.Princeton.EDU - address 172.18.82.149 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9469 - alias arun-9469.Princeton.EDU - address 172.18.82.150 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9470 - alias arun-9470.Princeton.EDU - address 172.18.82.151 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9471 - alias arun-9471.Princeton.EDU - address 172.18.82.152 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9472 - alias arun-9472.Princeton.EDU - address 172.18.82.153 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9473 - alias arun-9473.Princeton.EDU - address 172.18.82.154 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9474 - alias arun-9474.Princeton.EDU - address 172.18.82.155 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9475 - alias arun-9475.Princeton.EDU - address 172.18.82.156 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9476 - alias arun-9476.Princeton.EDU - address 172.18.64.62 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9477 - alias arun-9477.Princeton.EDU - address 172.18.66.86 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9478 - alias arun-9478.Princeton.EDU - address 172.18.66.87 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9479 - alias arun-9479.Princeton.EDU - address 172.18.82.157 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9480 - alias arun-9480.Princeton.EDU - address 172.18.82.160 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9481 - alias arun-9481.Princeton.EDU - address 172.18.82.161 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9482 - alias arun-9482.Princeton.EDU - address 172.18.82.162 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9483 - alias arun-9483.Princeton.EDU - address 172.18.82.163 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9484 - alias arun-9484.Princeton.EDU - address 172.18.82.164 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9485 - alias arun-9485.Princeton.EDU - address 172.18.82.165 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9486 - alias arun-9486.Princeton.EDU - address 172.18.82.166 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9487 - alias arun-9487.Princeton.EDU - address 172.18.82.168 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9488 - alias arun-9488.Princeton.EDU - address 172.18.82.167 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9489 - alias arun-9489.Princeton.EDU - address 172.18.82.169 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9490 - alias arun-9490.Princeton.EDU - address 172.18.82.170 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9491 - alias arun-9491.Princeton.EDU - address 172.18.82.171 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9492 - alias arun-9492.Princeton.EDU - address 172.18.82.172 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9493 - alias arun-9493.Princeton.EDU - address 172.18.82.173 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9494 - alias arun-9494.Princeton.EDU - address 172.18.82.174 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9495 - alias arun-9495.Princeton.EDU - address 172.18.82.183 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9496 - alias arun-9496.Princeton.EDU - address 172.18.82.184 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9497 - alias arun-9497.Princeton.EDU - address 172.18.82.185 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9498 - alias arun-9498.Princeton.EDU - address 172.18.82.186 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9499 - alias arun-9499.Princeton.EDU - address 172.18.82.187 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9500 - alias arun-9500.Princeton.EDU - address 172.18.82.188 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9501 - alias arun-9501.Princeton.EDU - address 172.18.82.189 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9502 - alias arun-9502.Princeton.EDU - address 172.18.82.190 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9503 - alias arun-9503.Princeton.EDU - address 172.18.82.191 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9504 - alias arun-9504.Princeton.EDU - address 172.18.82.192 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9505 - alias arun-9505.Princeton.EDU - address 172.18.82.193 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9506 - alias arun-9506.Princeton.EDU - address 172.18.82.194 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9507 - alias arun-9507.Princeton.EDU - address 172.18.82.195 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9508 - alias arun-9508.Princeton.EDU - address 172.18.82.196 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9509 - alias arun-9509.Princeton.EDU - address 172.18.82.197 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9510 - alias arun-9510.Princeton.EDU - address 172.18.82.198 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9511 - alias arun-9511.Princeton.EDU - address 172.18.82.199 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9512 - alias arun-9512.Princeton.EDU - address 172.18.82.200 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9513 - alias arun-9513.Princeton.EDU - address 172.18.82.201 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9514 - alias arun-9514.Princeton.EDU - address 172.18.82.202 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9515 - alias arun-9515.Princeton.EDU - address 172.18.82.203 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9516 - alias arun-9516.Princeton.EDU - address 172.18.82.204 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9517 - alias arun-9517.Princeton.EDU - address 172.18.82.205 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9518 - alias arun-9518.Princeton.EDU - address 172.18.82.206 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9519 - alias arun-9519.Princeton.EDU - address 172.18.82.207 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9520 - alias arun-9520.Princeton.EDU - address 172.18.82.208 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9521 - alias arun-9521.Princeton.EDU - address 172.18.82.209 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9522 - alias arun-9522.Princeton.EDU - address 172.18.82.210 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9523 - alias arun-9523.Princeton.EDU - address 172.18.82.211 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9524 - alias arun-9524.Princeton.EDU - address 172.18.82.212 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9525 - alias arun-9525.Princeton.EDU - address 172.18.82.213 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9526 - alias arun-9526.Princeton.EDU - address 172.18.82.214 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9527 - alias arun-9527.Princeton.EDU - address 172.18.82.215 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9528 - alias arun-9528.Princeton.EDU - address 172.18.82.216 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9529 - alias arun-9529.Princeton.EDU - address 172.18.82.217 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9530 - alias arun-9530.Princeton.EDU - address 172.18.82.218 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9531 - alias arun-9531.Princeton.EDU - address 172.18.82.219 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9532 - alias arun-9532.Princeton.EDU - address 172.18.82.220 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9533 - alias arun-9533.Princeton.EDU - address 172.18.82.221 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9534 - alias arun-9534.Princeton.EDU - address 172.18.82.222 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9535 - alias arun-9535.Princeton.EDU - address 172.18.82.223 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9536 - alias arun-9536.Princeton.EDU - address 172.18.82.224 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9537 - alias arun-9537.Princeton.EDU - address 172.18.82.225 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9538 - alias arun-9538.Princeton.EDU - address 172.18.82.226 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9539 - alias arun-9539.Princeton.EDU - address 172.18.82.227 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9540 - alias arun-9540.Princeton.EDU - address 172.18.82.228 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9541 - alias arun-9541.Princeton.EDU - address 172.18.82.229 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9542 - alias arun-9542.Princeton.EDU - address 172.18.82.230 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9543 - alias arun-9543.Princeton.EDU - address 172.18.82.231 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9544 - alias arun-9544.Princeton.EDU - address 172.18.82.232 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9545 - alias arun-9545.Princeton.EDU - address 172.18.82.233 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9546 - alias arun-9546.Princeton.EDU - address 172.18.231.171 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9547 - alias arun-9547.Princeton.EDU - address 172.18.231.172 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9548 - alias arun-9548.Princeton.EDU - address 172.18.231.173 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9549 - alias arun-9549.Princeton.EDU - address 172.18.231.174 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9550 - alias arun-9550.Princeton.EDU - address 172.18.231.175 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9551 - alias arun-9551.Princeton.EDU - address 172.18.231.176 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9552 - alias arun-9552.Princeton.EDU - address 172.18.231.177 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9553 - alias arun-9553.Princeton.EDU - address 172.18.231.178 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9554 - alias arun-9554.Princeton.EDU - address 172.18.231.179 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9555 - alias arun-9555.Princeton.EDU - address 172.18.231.119 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9556 - alias arun-9556.Princeton.EDU - address 172.18.231.180 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9557 - alias arun-9557.Princeton.EDU - address 172.18.231.181 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9558 - alias arun-9558.Princeton.EDU - address 172.18.231.182 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9559 - alias arun-9559.Princeton.EDU - address 172.18.231.183 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9560 - alias arun-9560.Princeton.EDU - address 172.18.231.184 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9561 - alias arun-9561.Princeton.EDU - address 172.18.231.185 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9562 - alias arun-9562.Princeton.EDU - address 172.18.231.186 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9563 - alias arun-9563.Princeton.EDU - address 172.18.231.187 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9564 - alias arun-9564.Princeton.EDU - address 172.18.231.188 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9565 - alias arun-9565.Princeton.EDU - address 172.18.231.189 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9566 - alias arun-9566.Princeton.EDU - address 172.18.231.190 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9567 - alias arun-9567.Princeton.EDU - address 172.18.231.191 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9568 - alias arun-9568.Princeton.EDU - address 172.18.231.192 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9569 - alias arun-9569.Princeton.EDU - address 172.18.231.193 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9570 - alias arun-9570.Princeton.EDU - address 172.18.231.194 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9571 - alias arun-9571.Princeton.EDU - address 172.18.231.195 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9572 - alias arun-9572.Princeton.EDU - address 172.18.231.196 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9573 - alias arun-9573.Princeton.EDU - address 172.18.231.197 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9574 - alias arun-9574.Princeton.EDU - address 172.18.231.198 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9575 - alias arun-9575.Princeton.EDU - address 172.18.231.199 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9576 - alias arun-9576.Princeton.EDU - address 172.18.231.200 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9577 - alias arun-9577.Princeton.EDU - address 172.18.231.201 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9578 - alias arun-9578.Princeton.EDU - address 172.18.231.202 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9579 - alias arun-9579.Princeton.EDU - address 172.18.231.203 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9580 - alias arun-9580.Princeton.EDU - address 172.18.231.205 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9581 - alias arun-9581.Princeton.EDU - address 172.18.231.206 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9582 - alias arun-9582.Princeton.EDU - address 172.18.231.204 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9583 - alias arun-9583.Princeton.EDU - address 172.18.232.119 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9584 - alias arun-9584.Princeton.EDU - address 172.18.232.120 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9585 - alias arun-9585.Princeton.EDU - address 172.18.232.121 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9586 - alias arun-9586.Princeton.EDU - address 172.18.232.122 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9587 - alias arun-9587.Princeton.EDU - address 172.18.232.123 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9588 - alias arun-9588.Princeton.EDU - address 172.18.232.124 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9589 - alias arun-9589.Princeton.EDU - address 172.18.232.125 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9590 - alias arun-9590.Princeton.EDU - address 172.18.232.126 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9591 - alias arun-9591.Princeton.EDU - address 172.18.232.127 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9592 - alias arun-9592.Princeton.EDU - address 172.18.232.128 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9593 - alias arun-9593.Princeton.EDU - address 172.18.232.129 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9594 - alias arun-9594.Princeton.EDU - address 172.18.232.130 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9595 - alias arun-9595.Princeton.EDU - address 172.18.232.131 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9596 - alias arun-9596.Princeton.EDU - address 172.18.232.132 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9597 - alias arun-9597.Princeton.EDU - address 172.18.232.133 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9598 - alias arun-9598.Princeton.EDU - address 172.18.232.134 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9599 - alias arun-9599.Princeton.EDU - address 172.18.232.135 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9600 - alias arun-9600.Princeton.EDU - address 172.18.232.136 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9601 - alias arun-9601.Princeton.EDU - address 172.18.232.137 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9602 - alias arun-9602.Princeton.EDU - address 172.18.232.138 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9603 - alias arun-9603.Princeton.EDU - address 172.18.232.139 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9604 - alias arun-9604.Princeton.EDU - address 172.18.232.140 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9605 - alias arun-9605.Princeton.EDU - address 172.18.232.141 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9606 - alias arun-9606.Princeton.EDU - address 172.18.232.142 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9607 - alias arun-9607.Princeton.EDU - address 172.18.232.143 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9608 - alias arun-9608.Princeton.EDU - address 172.18.232.144 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9609 - alias arun-9609.Princeton.EDU - address 172.18.232.145 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9610 - alias arun-9610.Princeton.EDU - address 172.18.232.146 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9611 - alias arun-9611.Princeton.EDU - address 172.18.232.147 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9612 - alias arun-9612.Princeton.EDU - address 172.18.232.148 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9613 - alias arun-9613.Princeton.EDU - address 172.18.232.149 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9614 - alias arun-9614.Princeton.EDU - address 172.18.232.150 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9615 - alias arun-9615.Princeton.EDU - address 172.18.232.151 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9616 - alias arun-9616.Princeton.EDU - address 172.18.232.152 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9617 - alias arun-9617.Princeton.EDU - address 172.18.232.153 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9618 - alias arun-9618.Princeton.EDU - address 172.18.232.154 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9619 - alias arun-9619.Princeton.EDU - address 172.18.231.216 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9620 - alias arun-9620.Princeton.EDU - address 172.18.231.217 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9621 - alias arun-9621.Princeton.EDU - address 172.18.231.218 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9622 - alias arun-9622.Princeton.EDU - address 172.18.231.209 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9623 - alias arun-9623.Princeton.EDU - address 172.18.231.219 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9624 - alias arun-9624.Princeton.EDU - address 172.18.231.207 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9625 - alias arun-9625.Princeton.EDU - address 172.18.231.220 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9626 - alias arun-9626.Princeton.EDU - address 172.18.231.208 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9627 - alias arun-9627.Princeton.EDU - address 172.18.231.210 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9628 - alias arun-9628.Princeton.EDU - address 172.18.231.211 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9629 - alias arun-9629.Princeton.EDU - address 172.18.231.221 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9630 - alias arun-9630.Princeton.EDU - address 172.18.231.222 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9631 - alias arun-9631.Princeton.EDU - address 172.18.231.223 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9633 - alias arun-9633.Princeton.EDU - address 172.18.231.225 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9634 - alias arun-9634.Princeton.EDU - address 172.18.231.212 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9636 - alias arun-9636.Princeton.EDU - address 172.18.232.175 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9637 - alias arun-9637.Princeton.EDU - address 172.18.231.227 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9638 - alias arun-9638.Princeton.EDU - address 172.18.231.228 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9639 - alias arun-9639.Princeton.EDU - address 172.18.231.213 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9640 - alias arun-9640.Princeton.EDU - address 172.18.231.214 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9641 - alias arun-9641.Princeton.EDU - address 172.18.231.229 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9642 - alias arun-9642.Princeton.EDU - address 172.18.231.230 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9643 - alias arun-9643.Princeton.EDU - address 172.18.231.231 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9644 - alias arun-9644.Princeton.EDU - address 172.18.231.232 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9645 - alias arun-9645.Princeton.EDU - address 172.18.231.233 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9646 - alias arun-9646.Princeton.EDU - address 172.18.231.234 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9647 - alias arun-9647.Princeton.EDU - address 172.18.231.235 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9648 - alias arun-9648.Princeton.EDU - address 172.18.231.215 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9649 - alias arun-9649.Princeton.EDU - address 172.18.231.236 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9650 - alias arun-9650.Princeton.EDU - address 172.18.231.237 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9651 - alias arun-9651.Princeton.EDU - address 172.18.232.34 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9652 - alias arun-9652.Princeton.EDU - address 172.18.232.35 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9653 - alias arun-9653.Princeton.EDU - address 172.18.232.36 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9654 - alias arun-9654.Princeton.EDU - address 172.18.232.37 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9655 - alias arun-9655.Princeton.EDU - address 172.18.232.38 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9656 - alias arun-9656.Princeton.EDU - address 172.18.232.39 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9657 - alias arun-9657.Princeton.EDU - address 172.18.232.40 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9658 - alias arun-9658.Princeton.EDU - address 172.18.232.42 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9659 - alias arun-9659.Princeton.EDU - address 172.18.232.43 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9660 - alias arun-9660.Princeton.EDU - address 172.18.232.44 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9661 - alias arun-9661.Princeton.EDU - address 172.18.232.41 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9662 - alias arun-9662.Princeton.EDU - address 172.18.233.21 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9663 - alias arun-9663.Princeton.EDU - address 172.18.232.45 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9664 - alias arun-9664.Princeton.EDU - address 172.18.232.46 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9665 - alias arun-9665.Princeton.EDU - address 172.18.232.47 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9666 - alias arun-9666.Princeton.EDU - address 172.18.232.48 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9667 - alias arun-9667.Princeton.EDU - address 172.18.232.49 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9668 - alias arun-9668.Princeton.EDU - address 172.18.232.50 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9670 - alias arun-9670.Princeton.EDU - address 172.18.232.51 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9671 - alias arun-9671.Princeton.EDU - address 172.18.232.52 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9672 - alias arun-9672.Princeton.EDU - address 172.18.232.53 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9673 - alias arun-9673.Princeton.EDU - address 172.18.232.54 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9674 - alias arun-9674.Princeton.EDU - address 172.18.232.55 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9675 - alias arun-9675.Princeton.EDU - address 172.18.232.56 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9676 - alias arun-9676.Princeton.EDU - address 172.18.232.57 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9677 - alias arun-9677.Princeton.EDU - address 172.18.232.58 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9678 - alias arun-9678.Princeton.EDU - address 172.18.232.59 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9679 - alias arun-9679.Princeton.EDU - address 172.18.232.60 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9680 - alias arun-9680.Princeton.EDU - address 172.18.232.61 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9681 - alias arun-9681.Princeton.EDU - address 172.18.232.62 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9682 - alias arun-9682.Princeton.EDU - address 172.18.232.63 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9683 - alias arun-9683.Princeton.EDU - address 172.18.232.64 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9684 - alias arun-9684.Princeton.EDU - address 172.18.232.65 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9685 - alias arun-9685.Princeton.EDU - address 172.18.232.66 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9686 - alias arun-9686.Princeton.EDU - address 172.18.232.67 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9687 - alias arun-9687.Princeton.EDU - address 172.18.232.68 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9688 - alias arun-9688.Princeton.EDU - address 172.18.232.69 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9689 - alias arun-9689.Princeton.EDU - address 172.18.232.70 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9690 - alias arun-9690.Princeton.EDU - address 172.18.232.71 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9691 - alias arun-9691.Princeton.EDU - address 172.18.232.72 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9692 - alias arun-9692.Princeton.EDU - address 172.18.232.73 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9693 - alias arun-9693.Princeton.EDU - address 172.18.232.74 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9694 - alias arun-9694.Princeton.EDU - address 172.18.232.75 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9695 - alias arun-9695.Princeton.EDU - address 172.18.232.76 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9696 - alias arun-9696.Princeton.EDU - address 172.18.232.77 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9697 - alias arun-9697.Princeton.EDU - address 172.18.233.49 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9698 - alias arun-9698.Princeton.EDU - address 172.18.232.78 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9699 - alias arun-9699.Princeton.EDU - address 172.18.232.79 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9700 - alias arun-9700.Princeton.EDU - address 172.18.232.80 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9701 - alias arun-9701.Princeton.EDU - address 172.18.232.81 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9702 - alias arun-9702.Princeton.EDU - address 172.18.232.82 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9703 - alias arun-9703.Princeton.EDU - address 172.18.232.83 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9704 - alias arun-9704.Princeton.EDU - address 172.18.232.84 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9705 - alias arun-9705.Princeton.EDU - address 172.18.232.85 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9706 - alias arun-9706.Princeton.EDU - address 172.18.232.86 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9708 - alias arun-9708.Princeton.EDU - address 172.18.233.22 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9709 - alias arun-9709.Princeton.EDU - address 172.18.232.88 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9710 - alias arun-9710.Princeton.EDU - address 172.18.232.89 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9711 - alias arun-9711.Princeton.EDU - address 172.18.232.90 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9712 - alias arun-9712.Princeton.EDU - address 172.18.232.91 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9713 - alias arun-9713.Princeton.EDU - address 172.18.232.92 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9714 - alias arun-9714.Princeton.EDU - address 172.18.232.93 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9715 - alias arun-9715.Princeton.EDU - address 172.18.232.94 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9716 - alias arun-9716.Princeton.EDU - address 172.18.232.96 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9717 - alias arun-9717.Princeton.EDU - address 172.18.232.97 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9718 - alias arun-9718.Princeton.EDU - address 172.18.232.98 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9719 - alias arun-9719.Princeton.EDU - address 172.18.232.99 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9720 - alias arun-9720.Princeton.EDU - address 172.18.232.100 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9721 - alias arun-9721.Princeton.EDU - address 172.18.232.101 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9722 - alias arun-9722.Princeton.EDU - address 172.18.232.102 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9723 - alias arun-9723.Princeton.EDU - address 172.18.232.103 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9724 - alias arun-9724.Princeton.EDU - address 172.18.232.104 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9725 - alias arun-9725.Princeton.EDU - address 172.18.233.62 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9726 - alias arun-9726.Princeton.EDU - address 172.18.232.87 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9727 - alias arun-9727.Princeton.EDU - address 172.18.232.105 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9728 - alias arun-9728.Princeton.EDU - address 172.18.232.106 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9729 - alias arun-9729.Princeton.EDU - address 172.18.232.107 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9730 - alias arun-9730.Princeton.EDU - address 172.18.232.108 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9731 - alias arun-9731.Princeton.EDU - address 172.18.232.109 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9732 - alias arun-9732.Princeton.EDU - address 172.18.232.110 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9733 - alias arun-9733.Princeton.EDU - address 172.18.232.111 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9734 - alias arun-9734.Princeton.EDU - address 172.18.232.112 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9735 - alias arun-9735.Princeton.EDU - address 172.18.232.113 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9736 - alias arun-9736.Princeton.EDU - address 172.18.232.114 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9737 - alias arun-9737.Princeton.EDU - address 172.18.232.115 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9738 - alias arun-9738.Princeton.EDU - address 172.18.232.116 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9739 - alias arun-9739.Princeton.EDU - address 172.18.232.117 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9740 - alias arun-9740.Princeton.EDU - address 172.18.232.118 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9741 - alias arun-9741.Princeton.EDU - address 172.18.232.155 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9742 - alias arun-9742.Princeton.EDU - address 172.18.232.156 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9743 - alias arun-9743.Princeton.EDU - address 172.18.232.157 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9744 - alias arun-9744.Princeton.EDU - address 172.18.232.158 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9745 - alias arun-9745.Princeton.EDU - address 172.18.232.159 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9746 - alias arun-9746.Princeton.EDU - address 172.18.232.160 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9747 - alias arun-9747.Princeton.EDU - address 172.18.232.161 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9748 - alias arun-9748.Princeton.EDU - address 172.18.232.162 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9749 - alias arun-9749.Princeton.EDU - address 172.18.232.163 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9750 - alias arun-9750.Princeton.EDU - address 172.18.232.164 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9751 - alias arun-9751.Princeton.EDU - address 172.18.232.165 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9752 - alias arun-9752.Princeton.EDU - address 172.18.232.166 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9753 - alias arun-9753.Princeton.EDU - address 172.18.232.167 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9754 - alias arun-9754.Princeton.EDU - address 172.18.232.168 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9755 - alias arun-9755.Princeton.EDU - address 172.18.84.207 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9756 - alias arun-9756.Princeton.EDU - address 172.18.232.169 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9757 - alias arun-9757.Princeton.EDU - address 172.18.232.170 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9758 - alias arun-9758.Princeton.EDU - address 172.18.232.171 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9759 - alias arun-9759.Princeton.EDU - address 172.18.232.172 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9760 - alias arun-9760.Princeton.EDU - address 172.18.232.173 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9761 - alias arun-9761.Princeton.EDU - address 172.18.232.174 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9763 - alias arun-9763.Princeton.EDU - address 172.18.232.176 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9764 - alias arun-9764.Princeton.EDU - address 172.18.232.177 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9765 - alias arun-9765.Princeton.EDU - address 172.18.233.20 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9766 - alias arun-9766.Princeton.EDU - address 172.18.232.178 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9767 - alias arun-9767.Princeton.EDU - address 172.18.232.179 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9768 - alias arun-9768.Princeton.EDU - address 172.18.232.180 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9769 - alias arun-9769.Princeton.EDU - address 172.18.232.181 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9770 - alias arun-9770.Princeton.EDU - address 172.18.232.182 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9771 - alias arun-9771.Princeton.EDU - address 172.18.232.183 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9772 - alias arun-9772.Princeton.EDU - address 172.18.232.184 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9773 - alias arun-9773.Princeton.EDU - address 172.18.232.185 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9774 - alias arun-9774.Princeton.EDU - address 172.18.232.186 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9775 - alias arun-9775.Princeton.EDU - address 172.18.232.187 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9776 - alias arun-9776.Princeton.EDU - address 172.18.232.188 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9777 - alias arun-9777.Princeton.EDU - address 172.18.232.189 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9778 - alias arun-9778.Princeton.EDU - address 172.18.232.190 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9779 - alias arun-9779.Princeton.EDU - address 172.18.232.191 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9780 - alias arun-9780.Princeton.EDU - address 172.18.85.80 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9781 - alias arun-9781.Princeton.EDU - address 172.18.232.193 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9782 - alias arun-9782.Princeton.EDU - address 172.18.232.194 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9783 - alias arun-9783.Princeton.EDU - address 172.18.232.195 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9784 - alias arun-9784.Princeton.EDU - address 172.18.232.196 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9785 - alias arun-9785.Princeton.EDU - address 172.18.232.197 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9786 - alias arun-9786.Princeton.EDU - address 172.18.85.87 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9787 - alias arun-9787.Princeton.EDU - address 172.18.85.88 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9792 - alias arun-9792.Princeton.EDU - address 172.18.232.204 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9793 - alias arun-9793.Princeton.EDU - address 172.18.85.223 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9794 - alias arun-9794.Princeton.EDU - address 172.18.85.224 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9795 - alias arun-9795.Princeton.EDU - address 172.18.85.225 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9796 - alias arun-9796.Princeton.EDU - address 172.18.85.226 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9799 - alias arun-9799.Princeton.EDU - address 172.18.86.185 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9806 - alias arun-9806.Princeton.EDU - address 172.18.232.218 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9807 - alias arun-9807.Princeton.EDU - address 172.18.232.219 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9808 - alias arun-9808.Princeton.EDU - address 172.18.233.18 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9809 - alias arun-9809.Princeton.EDU - address 172.18.232.220 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9810 - alias arun-9810.Princeton.EDU - address 172.18.232.221 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9811 - alias arun-9811.Princeton.EDU - address 172.18.232.222 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9812 - alias arun-9812.Princeton.EDU - address 172.18.232.223 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9813 - alias arun-9813.Princeton.EDU - address 172.18.232.224 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9814 - alias arun-9814.Princeton.EDU - address 172.18.232.225 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9815 - alias arun-9815.Princeton.EDU - address 172.18.232.226 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9816 - alias arun-9816.Princeton.EDU - address 172.18.232.227 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9818 - alias arun-9818.Princeton.EDU - address 172.18.232.229 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9819 - alias arun-9819.Princeton.EDU - address 172.18.232.230 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9820 - alias arun-9820.Princeton.EDU - address 172.18.232.231 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9821 - alias arun-9821.Princeton.EDU - address 172.18.232.232 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9822 - alias arun-9822.Princeton.EDU - address 172.18.232.233 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9823 - alias arun-9823.Princeton.EDU - address 172.18.232.234 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9824 - alias arun-9824.Princeton.EDU - address 172.18.232.235 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9825 - alias arun-9825.Princeton.EDU - address 172.18.232.236 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9826 - alias arun-9826.Princeton.EDU - address 172.18.232.237 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9827 - alias arun-9827.Princeton.EDU - address 172.18.232.238 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9828 - alias arun-9828.Princeton.EDU - address 172.18.232.239 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9829 - alias arun-9829.Princeton.EDU - address 172.18.232.240 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9830 - alias arun-9830.Princeton.EDU - address 172.18.232.241 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9831 - alias arun-9831.Princeton.EDU - address 172.18.232.242 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9832 - alias arun-9832.Princeton.EDU - address 172.18.232.243 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9833 - alias arun-9833.Princeton.EDU - address 172.18.232.244 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9834 - alias arun-9834.Princeton.EDU - address 172.18.232.245 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9835 - alias arun-9835.Princeton.EDU - address 172.18.232.246 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9836 - alias arun-9836.Princeton.EDU - address 172.18.232.247 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9837 - alias arun-9837.Princeton.EDU - address 172.18.232.248 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9838 - alias arun-9838.Princeton.EDU - address 172.18.232.249 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9839 - alias arun-9839.Princeton.EDU - address 172.18.232.250 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9840 - alias arun-9840.Princeton.EDU - address 172.18.232.251 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9841 - alias arun-9841.Princeton.EDU - address 172.18.232.252 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9842 - alias arun-9842.Princeton.EDU - address 172.18.232.253 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9843 - alias arun-9843.Princeton.EDU - address 172.18.232.254 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9844 - alias arun-9844.Princeton.EDU - address 172.18.233.1 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9846 - alias arun-9846.Princeton.EDU - address 172.18.233.2 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9847 - alias arun-9847.Princeton.EDU - address 172.18.233.3 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9848 - alias arun-9848.Princeton.EDU - address 172.18.233.4 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9849 - alias arun-9849.Princeton.EDU - address 172.18.233.5 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9850 - alias arun-9850.Princeton.EDU - address 172.18.233.6 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9851 - alias arun-9851.Princeton.EDU - address 172.18.233.7 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9852 - alias arun-9852.Princeton.EDU - address 172.18.233.8 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9853 - alias arun-9853.Princeton.EDU - address 172.18.233.9 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9854 - alias arun-9854.Princeton.EDU - address 172.18.233.10 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9855 - alias arun-9855.Princeton.EDU - address 172.18.233.11 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9856 - alias arun-9856.Princeton.EDU - address 172.18.233.12 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9857 - alias arun-9857.Princeton.EDU - address 172.18.233.13 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9858 - alias arun-9858.Princeton.EDU - address 172.18.233.14 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9859 - alias arun-9859.Princeton.EDU - address 172.18.233.15 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9860 - alias arun-9860.Princeton.EDU - address 172.18.233.16 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9861 - alias arun-9861.Princeton.EDU - address 172.18.233.17 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9877 - alias arun-9877.Princeton.EDU - address 172.18.66.43 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9878 - alias arun-9878.Princeton.EDU - address 172.18.66.93 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9879 - alias arun-9879.Princeton.EDU - address 172.18.69.209 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9880 - alias arun-9880.Princeton.EDU - address 172.18.71.123 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9881 - alias arun-9881.Princeton.EDU - address 172.18.71.125 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9882 - alias arun-9882.Princeton.EDU - address 172.18.71.126 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9883 - alias arun-9883.Princeton.EDU - address 172.18.71.127 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9884 - alias arun-9884.Princeton.EDU - address 172.18.71.128 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9885 - alias arun-9885.Princeton.EDU - address 172.18.71.129 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9886 - alias arun-9886.Princeton.EDU - address 172.18.71.130 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9887 - alias arun-9887.Princeton.EDU - address 172.18.71.131 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9888 - alias arun-9888.Princeton.EDU - address 172.18.71.132 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9889 - alias arun-9889.Princeton.EDU - address 172.18.71.133 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9890 - alias arun-9890.Princeton.EDU - address 172.18.71.134 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9891 - alias arun-9891.Princeton.EDU - address 172.18.71.211 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9892 - alias arun-9892.Princeton.EDU - address 172.18.71.212 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9893 - alias arun-9893.Princeton.EDU - address 172.18.71.213 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9894 - alias arun-9894.Princeton.EDU - address 172.18.71.214 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9895 - alias arun-9895.Princeton.EDU - address 172.18.71.215 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9896 - alias arun-9896.Princeton.EDU - address 172.18.71.216 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9897 - alias arun-9897.Princeton.EDU - address 172.18.71.217 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9898 - alias arun-9898.Princeton.EDU - address 172.18.71.218 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9899 - alias arun-9899.Princeton.EDU - address 172.18.71.219 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9900 - alias arun-9900.Princeton.EDU - address 172.18.71.220 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9901 - alias arun-9901.Princeton.EDU - address 172.18.71.221 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9902 - alias arun-9902.Princeton.EDU - address 172.18.71.222 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9903 - alias arun-9903.Princeton.EDU - address 172.18.71.223 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9904 - alias arun-9904.Princeton.EDU - address 172.18.71.224 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9905 - alias arun-9905.Princeton.EDU - address 172.18.71.225 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9906 - alias arun-9906.Princeton.EDU - address 172.18.71.226 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9907 - alias arun-9907.Princeton.EDU - address 172.18.82.181 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9908 - alias arun-9908.Princeton.EDU - address 172.18.82.182 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9909 - alias arun-9909.Princeton.EDU - address 172.18.82.234 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9910 - alias arun-9910.Princeton.EDU - address 172.18.82.235 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9911 - alias arun-9911.Princeton.EDU - address 172.18.82.236 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9912 - alias arun-9912.Princeton.EDU - address 172.18.82.237 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9913 - alias arun-9913.Princeton.EDU - address 172.18.82.238 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9914 - alias arun-9914.Princeton.EDU - address 172.18.82.239 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9915 - alias arun-9915.Princeton.EDU - address 172.18.82.244 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9916 - alias arun-9916.Princeton.EDU - address 172.18.82.245 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9917 - alias arun-9917.Princeton.EDU - address 172.18.82.246 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9918 - alias arun-9918.Princeton.EDU - address 172.18.66.124 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9919 - alias arun-9919.Princeton.EDU - address 172.18.82.247 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9920 - alias arun-9920.Princeton.EDU - address 172.18.64.45 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9921 - alias arun-9921.Princeton.EDU - address 172.18.82.248 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9922 - alias arun-9922.Princeton.EDU - address 172.18.82.249 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9923 - alias arun-9923.Princeton.EDU - address 172.18.82.250 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9924 - alias arun-9924.Princeton.EDU - address 172.18.82.251 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9925 - alias arun-9925.Princeton.EDU - address 172.18.82.252 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9926 - alias arun-9926.Princeton.EDU - address 172.18.82.253 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9927 - alias arun-9927.Princeton.EDU - address 172.18.82.254 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9928 - alias arun-9928.Princeton.EDU - address 172.18.83.1 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9929 - alias arun-9929.Princeton.EDU - address 172.18.83.11 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9930 - alias arun-9930.Princeton.EDU - address 172.18.83.2 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9931 - alias arun-9931.Princeton.EDU - address 172.18.83.3 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9932 - alias arun-9932.Princeton.EDU - address 172.18.83.4 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9933 - alias arun-9933.Princeton.EDU - address 172.18.83.5 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9934 - alias arun-9934.Princeton.EDU - address 172.18.83.6 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9935 - alias arun-9935.Princeton.EDU - address 172.18.83.7 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9936 - alias arun-9936.Princeton.EDU - address 172.18.83.8 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9937 - alias arun-9937.Princeton.EDU - address 172.18.83.9 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9938 - alias arun-9938.Princeton.EDU - address 172.18.83.10 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9939 - alias arun-9939.Princeton.EDU - address 172.18.83.12 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9940 - alias arun-9940.Princeton.EDU - address 172.18.83.13 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9941 - alias arun-9941.Princeton.EDU - address 172.18.83.14 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9942 - alias arun-9942.Princeton.EDU - address 172.18.83.15 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9943 - alias arun-9943.Princeton.EDU - address 172.18.83.16 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9944 - alias arun-9944.Princeton.EDU - address 172.18.83.17 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9945 - alias arun-9945.Princeton.EDU - address 172.18.83.18 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9946 - alias arun-9946.Princeton.EDU - address 172.18.83.19 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9947 - alias arun-9947.Princeton.EDU - address 172.18.83.20 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9948 - alias arun-9948.Princeton.EDU - address 172.18.83.21 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9949 - alias arun-9949.Princeton.EDU - address 172.18.83.22 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9950 - alias arun-9950.Princeton.EDU - address 172.18.83.24 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9951 - alias arun-9951.Princeton.EDU - address 172.18.83.23 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9952 - alias arun-9952.Princeton.EDU - address 172.18.83.25 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9953 - alias arun-9953.Princeton.EDU - address 172.18.83.26 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9954 - alias arun-9954.Princeton.EDU - address 172.18.83.27 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9955 - alias arun-9955.Princeton.EDU - address 172.18.83.28 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9956 - alias arun-9956.Princeton.EDU - address 172.18.64.17 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9961 - alias arun-9961.Princeton.EDU - address 172.18.83.30 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9962 - alias arun-9962.Princeton.EDU - address 172.18.83.31 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9963 - alias arun-9963.Princeton.EDU - address 172.18.83.32 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9964 - alias arun-9964.Princeton.EDU - address 172.18.83.33 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9965 - alias arun-9965.Princeton.EDU - address 172.18.83.34 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9966 - alias arun-9966.Princeton.EDU - address 172.18.83.35 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9967 - alias arun-9967.Princeton.EDU - address 172.18.83.36 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9968 - alias arun-9968.Princeton.EDU - address 172.18.83.37 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9969 - alias arun-9969.Princeton.EDU - address 172.18.83.38 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9970 - alias arun-9970.Princeton.EDU - address 172.18.83.39 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9971 - alias arun-9971.Princeton.EDU - address 172.18.83.40 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9972 - alias arun-9972.Princeton.EDU - address 172.18.83.41 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9973 - alias arun-9973.Princeton.EDU - address 172.18.83.42 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9974 - alias arun-9974.Princeton.EDU - address 172.18.83.43 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9975 - alias arun-9975.Princeton.EDU - address 172.18.83.44 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9976 - alias arun-9976.Princeton.EDU - address 172.18.83.45 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9977 - alias arun-9977.Princeton.EDU - address 172.18.83.46 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9978 - alias arun-9978.Princeton.EDU - address 172.18.83.47 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9979 - alias arun-9979.Princeton.EDU - address 172.18.83.48 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9980 - alias arun-9980.Princeton.EDU - address 172.18.83.49 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9981 - alias arun-9981.Princeton.EDU - address 172.18.83.50 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9982 - alias arun-9982.Princeton.EDU - address 172.18.83.51 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9983 - alias arun-9983.Princeton.EDU - address 172.18.83.52 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9984 - alias arun-9984.Princeton.EDU - address 172.18.83.53 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9985 - alias arun-9985.Princeton.EDU - address 172.18.83.54 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9986 - alias arun-9986.Princeton.EDU - address 172.18.83.55 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9987 - alias arun-9987.Princeton.EDU - address 172.18.83.56 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9988 - alias arun-9988.Princeton.EDU - address 172.18.83.57 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9989 - alias arun-9989.Princeton.EDU - address 172.18.83.58 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9990 - alias arun-9990.Princeton.EDU - address 172.18.83.59 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9991 - alias arun-9991.Princeton.EDU - address 172.18.83.60 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9992 - alias arun-9992.Princeton.EDU - address 172.18.83.61 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9993 - alias arun-9993.Princeton.EDU - address 172.18.83.62 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9994 - alias arun-9994.Princeton.EDU - address 172.18.83.63 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9995 - alias arun-9995.Princeton.EDU - address 172.18.83.64 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9996 - alias arun-9996.Princeton.EDU - address 172.18.83.65 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9997 - alias arun-9997.Princeton.EDU - address 172.18.83.66 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9998 - alias arun-9998.Princeton.EDU - address 172.18.83.67 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name arun-9999 - alias arun-9999.Princeton.EDU - address 172.18.83.68 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name ca12-0007 - alias ca12-0007.Princeton.EDU - address 172.18.33.121 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name ca12-0029 - alias ca12-0029.Princeton.EDU - address 172.18.33.124 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name ca12-0042 - alias ca12-0042.Princeton.EDU - address 172.18.32.243 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name ca12-0093 - alias ca12-0093.Princeton.EDU - address 172.18.1.81 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name ca12-0190 - alias ca12-0190.Princeton.EDU - address 172.18.32.253 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name ca12-0192 - alias ca12-0192.Princeton.EDU - address 172.18.1.125 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name ca12-0292 - alias ca12-0292.Princeton.EDU - address 172.18.192.22 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name ca12-0311 - alias ca12-0311.Princeton.EDU - address 172.18.32.223 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name ca12-0330 - alias ca12-0330.Princeton.EDU - address 172.18.33.105 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name ca12-0382 - alias ca12-0382.Princeton.EDU - address 172.18.1.135 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name ca12-0437 - alias ca12-0437.Princeton.EDU - address 172.18.0.237 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name ca12-0657 - alias ca12-0657.Princeton.EDU - address 172.18.32.18 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name ca12-1015 - alias ca12-1015.Princeton.EDU - address 172.18.2.15 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name ca12-1070 - alias ca12-1070.Princeton.EDU - address 172.18.4.11 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name ca12-1080 - alias ca12-1080.Princeton.EDU - address 172.18.192.57 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name ca12-1109 - alias ca12-1109.Princeton.EDU - address 172.18.194.91 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name ca12-1159 - alias ca12-1159.Princeton.EDU - address 172.18.2.153 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name ca12-1160 - alias ca12-1160.Princeton.EDU - address 172.18.192.27 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name ca12-1170 - alias ca12-1170.Princeton.EDU - address 172.18.32.61 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name ca12-1190 - alias ca12-1190.Princeton.EDU - address 172.18.32.250 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name ca12-1198 - alias ca12-1198.Princeton.EDU - address 172.18.0.186 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name ca12-1336 - alias ca12-1336.Princeton.EDU - address 172.18.32.64 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name ca12-1355 - alias ca12-1355.Princeton.EDU - address 172.18.194.132 - hostgroups OIT Aruba WAP, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-8 - alias gate-core-cdn-router-8.Princeton.EDU - address 128.112.8.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-16 - alias gate-core-cdn-router-16.Princeton.EDU - address 128.112.16.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-20 - alias gate-core-cdn-router-20.Princeton.EDU - address 128.112.20.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-24 - alias gate-core-cdn-router-24.Princeton.EDU - address 128.112.24.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-28 - alias gate-core-cdn-router-28.Princeton.EDU - address 128.112.28.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-32 - alias gate-core-cdn-router-32.Princeton.EDU - address 128.112.32.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-40 - alias gate-core-cdn-router-40.Princeton.EDU - address 128.112.40.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-48 - alias gate-core-cdn-router-48.Princeton.EDU - address 128.112.48.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-52 - alias gate-core-cdn-router-52.Princeton.EDU - address 128.112.52.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-56 - alias gate-core-cdn-router-56.Princeton.EDU - address 128.112.56.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-64 - alias gate-core-cdn-router-64.Princeton.EDU - address 128.112.64.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-72 - alias gate-core-cdn-router-72.Princeton.EDU - address 128.112.72.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-84 - alias gate-core-cdn-router-84.Princeton.EDU - address 128.112.84.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-88 - alias gate-core-cdn-router-88.Princeton.EDU - address 128.112.88.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-100 - alias gate-core-cdn-router-100.Princeton.EDU - address 128.112.100.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-101 - alias gate-core-cdn-router-101.Princeton.EDU - address 128.112.101.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-102 - alias gate-core-cdn-router-102.Princeton.EDU - address 128.112.102.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-108 - alias gate-core-cdn-router-108.Princeton.EDU - address 128.112.108.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-112 - alias gate-core-cdn-router-112.Princeton.EDU - address 128.112.112.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-116 - alias gate-core-cdn-router-116.Princeton.EDU - address 128.112.116.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-120 - alias gate-core-cdn-router-120.Princeton.EDU - address 128.112.120.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-128 - alias gate-core-cdn-router-128.Princeton.EDU - address 128.112.128.114 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-140 - alias gate-core-cdn-router-140.Princeton.EDU - address 128.112.140.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-144 - alias gate-core-cdn-router-144.Princeton.EDU - address 128.112.144.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-148 - alias gate-core-cdn-router-148.Princeton.EDU - address 128.112.148.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-156 - alias gate-core-cdn-router-156.Princeton.EDU - address 128.112.156.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-160 - alias gate-core-cdn-router-160.Princeton.EDU - address 128.112.160.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-164 - alias gate-core-cdn-router-164.Princeton.EDU - address 128.112.164.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-172 - alias gate-core-cdn-router-172.Princeton.EDU - address 128.112.172.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-176 - alias gate-core-cdn-router-176.Princeton.EDU - address 128.112.176.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-184 - alias gate-core-cdn-router-184.Princeton.EDU - address 128.112.184.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-192 - alias gate-core-cdn-router-192.Princeton.EDU - address 128.112.192.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-196 - alias gate-core-cdn-router-196.Princeton.EDU - address 128.112.196.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-200 - alias gate-core-cdn-router-200.Princeton.EDU - address 128.112.200.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-208 - alias gate-core-cdn-router-208.Princeton.EDU - address 128.112.208.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-216 - alias gate-core-cdn-router-216.Princeton.EDU - address 128.112.216.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-224 - alias gate-core-cdn-router-224.Princeton.EDU - address 128.112.224.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-228 - alias gate-core-cdn-router-228.Princeton.EDU - address 128.112.228.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-232 - alias gate-core-cdn-router-232.Princeton.EDU - address 128.112.232.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-240 - alias gate-core-cdn-router-240.Princeton.EDU - address 128.112.240.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-252 - alias gate-core-cdn-router-252.Princeton.EDU - address 128.112.252.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-athvideonet - alias gate-core-cdn-router-athvideonet.Princeton.EDU - address 128.112.1.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-basnet - alias gate-core-cdn-router-basnet.Princeton.EDU - address 172.20.48.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-beacon-net - alias gate-core-cdn-router-beacon-net.Princeton.EDU - address 140.180.224.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-directornet - alias gate-core-cdn-router-directornet.Princeton.EDU - address 172.20.240.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-dormnet - alias gate-core-cdn-router-dormnet.Princeton.EDU - address 140.180.128.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-dotdotdashnet - alias gate-core-cdn-router-dotdotdashnet.Princeton.EDU - address 172.20.32.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-firenet - alias gate-core-cdn-router-firenet.Princeton.EDU - address 192.168.30.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-guestnet - alias gate-core-cdn-router-guestnet.Princeton.EDU - address 66.180.176.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-infranet1 - alias gate-core-cdn-router-infranet1.Princeton.EDU - address 172.18.0.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-infranet2 - alias gate-core-cdn-router-infranet2.Princeton.EDU - address 172.18.32.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-infranet3 - alias gate-core-cdn-router-infranet3.Princeton.EDU - address 172.18.64.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-infranet7 - alias gate-core-cdn-router-infranet7.Princeton.EDU - address 172.18.224.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-lca-theatrical-lighting - alias gate-core-cdn-router-lca-theatrical-lighting.Princeton.EDU - address 172.19.76.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-linknet16 - alias gate-core-cdn-router-linknet16.Princeton.EDU - address 128.112.12.65 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-linknet20 - alias gate-core-cdn-router-linknet20.Princeton.EDU - address 128.112.12.81 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-linknet24 - alias gate-core-cdn-router-linknet24.Princeton.EDU - address 128.112.12.97 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-linknet28 - alias gate-core-cdn-router-linknet28.Princeton.EDU - address 128.112.12.113 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-linknet36 - alias gate-core-cdn-router-linknet36.Princeton.EDU - address 128.112.12.145 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-linknet48 - alias gate-core-cdn-router-linknet48.Princeton.EDU - address 128.112.12.193 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-mosquitonet - alias gate-core-cdn-router-mosquitonet.Princeton.EDU - address 172.19.70.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-plinknet40 - alias gate-core-cdn-router-plinknet40.Princeton.EDU - address 192.168.9.161 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name core-cdn-router-lca-clear-com-helixnet - alias core-cdn-router-lca-clear-com-helixnet.Princeton.EDU - address 192.168.22.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name core-cdn-router-lca-dante-audio - alias core-cdn-router-lca-dante-audio.Princeton.EDU - address 192.168.26.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name core-cdn-router-lca-dante-audio-secondary - alias core-cdn-router-lca-dante-audio-secondary.Princeton.EDU - address 192.168.28.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name core-cdn-router-linknet40 - alias core-cdn-router-linknet40.Princeton.EDU - address 128.112.12.161 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name core-cdn-router-plinknet4 - alias core-cdn-router-plinknet4.Princeton.EDU - address 192.168.9.17 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name core-cdn-router-plinknet20 - alias core-cdn-router-plinknet20.Princeton.EDU - address 192.168.9.81 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name core-cdn-router-plinknet28 - alias core-cdn-router-plinknet28.Princeton.EDU - address 192.168.9.113 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name core-cdn-router-plinknet32 - alias core-cdn-router-plinknet32.Princeton.EDU - address 192.168.9.129 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name core-cdn-router-plinknet34 - alias core-cdn-router-plinknet34.Princeton.EDU - address 192.168.9.137 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name core-cdn-router-plinknet36 - alias core-cdn-router-plinknet36.Princeton.EDU - address 192.168.9.145 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name core-cdn-router-pony-express-net - alias core-cdn-router-pony-express-net.Princeton.EDU - address 172.20.72.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-pppl-microwave-linknet - alias gate-core-cdn-router-pppl-microwave-linknet.Princeton.EDU - address 192.168.8.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-pulpnet - alias gate-core-cdn-router-pulpnet.Princeton.EDU - address 10.254.0.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-ringnet - alias gate-core-cdn-router-ringnet.Princeton.EDU - address 192.168.4.33 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-rutherenet - alias gate-core-cdn-router-rutherenet.Princeton.EDU - address 192.168.4.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-smoke-signals-net - alias gate-core-cdn-router-smoke-signals-net.Princeton.EDU - address 172.20.94.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-sonnet - alias gate-core-cdn-router-sonnet.Princeton.EDU - address 192.168.24.129 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-tbnnet - alias gate-core-cdn-router-tbnnet.Princeton.EDU - address 172.19.0.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-unt-servernet-1 - alias gate-core-cdn-router-unt-servernet-1.Princeton.EDU - address 128.112.101.129 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-cdn-router-videonet - alias gate-core-cdn-router-videonet.Princeton.EDU - address 66.180.177.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87 - alias gate-core-87.Princeton.EDU - address 172.18.174.11 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-mgmt - alias gate-core-87-mgmt.Princeton.EDU - address 172.18.193.19 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-8 - alias gate-core-87-router-8.Princeton.EDU - address 128.112.8.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-16 - alias gate-core-87-router-16.Princeton.EDU - address 128.112.16.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-20 - alias gate-core-87-router-20.Princeton.EDU - address 128.112.20.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-24 - alias gate-core-87-router-24.Princeton.EDU - address 128.112.24.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-28 - alias gate-core-87-router-28.Princeton.EDU - address 128.112.28.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-32 - alias gate-core-87-router-32.Princeton.EDU - address 128.112.32.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-40 - alias gate-core-87-router-40.Princeton.EDU - address 128.112.40.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-48 - alias gate-core-87-router-48.Princeton.EDU - address 128.112.48.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-52 - alias gate-core-87-router-52.Princeton.EDU - address 128.112.52.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-56 - alias gate-core-87-router-56.Princeton.EDU - address 128.112.56.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-64 - alias gate-core-87-router-64.Princeton.EDU - address 128.112.64.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-72 - alias gate-core-87-router-72.Princeton.EDU - address 128.112.72.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-84 - alias gate-core-87-router-84.Princeton.EDU - address 128.112.84.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-88 - alias gate-core-87-router-88.Princeton.EDU - address 128.112.88.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-100 - alias gate-core-87-router-100.Princeton.EDU - address 128.112.100.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-101 - alias gate-core-87-router-101.Princeton.EDU - address 128.112.101.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-102 - alias gate-core-87-router-102.Princeton.EDU - address 128.112.102.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-108 - alias gate-core-87-router-108.Princeton.EDU - address 128.112.108.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-112 - alias gate-core-87-router-112.Princeton.EDU - address 128.112.112.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-116 - alias gate-core-87-router-116.Princeton.EDU - address 128.112.116.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-120 - alias gate-core-87-router-120.Princeton.EDU - address 128.112.120.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-128 - alias gate-core-87-router-128.Princeton.EDU - address 128.112.128.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-140 - alias gate-core-87-router-140.Princeton.EDU - address 128.112.140.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-144 - alias gate-core-87-router-144.Princeton.EDU - address 128.112.144.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-148 - alias gate-core-87-router-148.Princeton.EDU - address 128.112.148.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-156 - alias gate-core-87-router-156.Princeton.EDU - address 128.112.156.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-160 - alias gate-core-87-router-160.Princeton.EDU - address 128.112.160.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-164 - alias gate-core-87-router-164.Princeton.EDU - address 128.112.164.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-172 - alias gate-core-87-router-172.Princeton.EDU - address 128.112.172.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-176 - alias gate-core-87-router-176.Princeton.EDU - address 128.112.176.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-184 - alias gate-core-87-router-184.Princeton.EDU - address 128.112.184.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-192 - alias gate-core-87-router-192.Princeton.EDU - address 128.112.192.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-196 - alias gate-core-87-router-196.Princeton.EDU - address 128.112.196.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-200 - alias gate-core-87-router-200.Princeton.EDU - address 128.112.200.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-208 - alias gate-core-87-router-208.Princeton.EDU - address 128.112.208.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-216 - alias gate-core-87-router-216.Princeton.EDU - address 128.112.216.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-224 - alias gate-core-87-router-224.Princeton.EDU - address 128.112.224.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-228 - alias gate-core-87-router-228.Princeton.EDU - address 128.112.228.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-232 - alias gate-core-87-router-232.Princeton.EDU - address 128.112.232.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-240 - alias gate-core-87-router-240.Princeton.EDU - address 128.112.240.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-252 - alias gate-core-87-router-252.Princeton.EDU - address 128.112.252.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-athvideonet - alias gate-core-87-router-athvideonet.Princeton.EDU - address 128.112.1.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-basnet - alias gate-core-87-router-basnet.Princeton.EDU - address 172.20.48.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-beacon-net - alias gate-core-87-router-beacon-net.Princeton.EDU - address 140.180.224.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-directornet - alias gate-core-87-router-directornet.Princeton.EDU - address 172.20.240.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-dormnet - alias gate-core-87-router-dormnet.Princeton.EDU - address 140.180.128.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-dotdotdashnet - alias gate-core-87-router-dotdotdashnet.Princeton.EDU - address 172.20.32.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-firenet - alias gate-core-87-router-firenet.Princeton.EDU - address 192.168.30.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-guestnet - alias gate-core-87-router-guestnet.Princeton.EDU - address 66.180.176.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-infranet1 - alias gate-core-87-router-infranet1.Princeton.EDU - address 172.18.0.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-infranet2 - alias gate-core-87-router-infranet2.Princeton.EDU - address 172.18.32.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-infranet3 - alias gate-core-87-router-infranet3.Princeton.EDU - address 172.18.64.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-infranet7 - alias gate-core-87-router-infranet7.Princeton.EDU - address 172.18.224.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-lca-theatrical-lighting - alias gate-core-87-router-lca-theatrical-lighting.Princeton.EDU - address 172.19.76.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-linknet11 - alias gate-core-87-router-linknet11.Princeton.EDU - address 128.112.12.45 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-linknet13 - alias gate-core-87-router-linknet13.Princeton.EDU - address 128.112.12.53 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-linknet14 - alias gate-core-87-router-linknet14.Princeton.EDU - address 128.112.12.57 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-linknet16 - alias gate-core-87-router-linknet16.Princeton.EDU - address 128.112.12.66 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-linknet20 - alias gate-core-87-router-linknet20.Princeton.EDU - address 128.112.12.82 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-linknet24 - alias gate-core-87-router-linknet24.Princeton.EDU - address 128.112.12.98 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-linknet28 - alias gate-core-87-router-linknet28.Princeton.EDU - address 128.112.12.114 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-linknet36 - alias gate-core-87-router-linknet36.Princeton.EDU - address 128.112.12.146 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-linknet48 - alias gate-core-87-router-linknet48.Princeton.EDU - address 128.112.12.194 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-mosquitonet - alias gate-core-87-router-mosquitonet.Princeton.EDU - address 172.19.70.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-plinknet40 - alias gate-core-87-router-plinknet40.Princeton.EDU - address 192.168.9.162 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-unt-servernet-1 - alias gate-core-87-router-unt-servernet-1.Princeton.EDU - address 128.112.101.130 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name core-87-router-lca-clear-com-helixnet - alias core-87-router-lca-clear-com-helixnet.Princeton.EDU - address 192.168.22.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name core-87-router-lca-dante-audio - alias core-87-router-lca-dante-audio.Princeton.EDU - address 192.168.26.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name core-87-router-lca-dante-audio-secondary - alias core-87-router-lca-dante-audio-secondary.Princeton.EDU - address 192.168.28.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name core-87-router-linknet40 - alias core-87-router-linknet40.Princeton.EDU - address 128.112.12.162 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name core-87-router-plinknet20 - alias core-87-router-plinknet20.Princeton.EDU - address 192.168.9.82 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name core-87-router-plinknet28 - alias core-87-router-plinknet28.Princeton.EDU - address 192.168.9.114 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name core-87-router-plinknet3 - alias core-87-router-plinknet3.Princeton.EDU - address 192.168.9.14 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name core-87-router-plinknet32 - alias core-87-router-plinknet32.Princeton.EDU - address 192.168.9.130 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name core-87-router-plinknet34 - alias core-87-router-plinknet34.Princeton.EDU - address 192.168.9.138 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name core-87-router-plinknet36 - alias core-87-router-plinknet36.Princeton.EDU - address 192.168.9.146 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name core-87-router-pony-express-net - alias core-87-router-pony-express-net.Princeton.EDU - address 172.20.72.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-pppl-microwave-linknet - alias gate-core-87-router-pppl-microwave-linknet.Princeton.EDU - address 192.168.8.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-pulpnet - alias gate-core-87-router-pulpnet.Princeton.EDU - address 10.254.0.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-ringnet - alias gate-core-87-router-ringnet.Princeton.EDU - address 192.168.4.34 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-rutherenet - alias gate-core-87-router-rutherenet.Princeton.EDU - address 192.168.4.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-smoke-signals-net - alias gate-core-87-router-smoke-signals-net.Princeton.EDU - address 172.20.94.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-sonnet - alias gate-core-87-router-sonnet.Princeton.EDU - address 192.168.24.130 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-tbnnet - alias gate-core-87-router-tbnnet.Princeton.EDU - address 172.19.0.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-87-router-videonet - alias gate-core-87-router-videonet.Princeton.EDU - address 66.180.177.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-lewis-mgmt - alias gate-core-lewis-mgmt.Princeton.EDU - address 172.18.3.187 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-ns - alias gate-core-ns.Princeton.EDU - address 172.18.174.13 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-ns-mgmt - alias gate-core-ns-mgmt.Princeton.EDU - address 172.18.193.130 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-core-ns-router-linknet11 - alias gate-core-ns-router-linknet11.Princeton.EDU - address 128.112.12.46 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-gigagate6-mgmt - alias gate-gigagate6-mgmt.Princeton.EDU - address 172.18.0.81 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-border-87 - alias gate-border-87.Princeton.EDU - address 172.18.174.12 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-hpcrc-router-cogent - alias gate-rtr-border-hpcrc-router-cogent.Princeton.EDU - address 38.122.150.2 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-87-router-hurricane-electric - alias gate-rtr-border-87-router-hurricane-electric.Princeton.EDU - address 216.66.49.74 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-border-87-router-extern-linknet62 - alias gate-border-87-router-extern-linknet62.Princeton.EDU - address 204.153.48.249 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-border-87-router-extern-linknet11 - alias gate-border-87-router-extern-linknet11.Princeton.EDU - address 204.153.48.45 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-border-87-router-extern-linknet4 - alias gate-border-87-router-extern-linknet4.Princeton.EDU - address 204.153.48.17 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-hpcrc-router-magpi - alias gate-rtr-border-hpcrc-router-magpi.Princeton.EDU - address 216.27.98.114 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-router-mccarternet - alias gate-rtr-border-router-mccarternet.Princeton.EDU - address 205.172.164.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-border-87-router-vrf-aws-vpcs-plinknet40 - alias gate-border-87-router-vrf-aws-vpcs-plinknet40.Princeton.EDU - address 192.168.9.174 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-border-87-router-vrf-aws-vpcs-plinknet44 - alias gate-border-87-router-vrf-aws-vpcs-plinknet44.Princeton.EDU - address 192.168.9.177 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-border-87-router-vrf-aws-vpcs-plinknet46 - alias gate-border-87-router-vrf-aws-vpcs-plinknet46.Princeton.EDU - address 192.168.9.185 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-hpcrc-router-esnet - alias gate-rtr-border-hpcrc-router-esnet.Princeton.EDU - address 204.153.48.33 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-router-ext-cust-net-40 - alias gate-rtr-border-router-ext-cust-net-40.Princeton.EDU - address 204.153.51.145 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-router-ext-cust-net-41 - alias gate-rtr-border-router-ext-cust-net-41.Princeton.EDU - address 204.153.51.161 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-router-ext-cust-net-42 - alias gate-rtr-border-router-ext-cust-net-42.Princeton.EDU - address 204.153.51.177 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-router-ext-cust-net-43 - alias gate-rtr-border-router-ext-cust-net-43.Princeton.EDU - address 204.153.51.193 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-router-ext-cust-net-44 - alias gate-rtr-border-router-ext-cust-net-44.Princeton.EDU - address 204.153.51.209 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-router-ext-cust-net-45 - alias gate-rtr-border-router-ext-cust-net-45.Princeton.EDU - address 204.153.51.225 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-router-ext-cust-net-46 - alias gate-rtr-border-router-ext-cust-net-46.Princeton.EDU - address 204.153.51.241 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-router-ext-cust-net-47 - alias gate-rtr-border-router-ext-cust-net-47.Princeton.EDU - address 204.153.50.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-router-ext-cust-net-48 - alias gate-rtr-border-router-ext-cust-net-48.Princeton.EDU - address 204.153.50.33 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-router-ext-cust-net-49 - alias gate-rtr-border-router-ext-cust-net-49.Princeton.EDU - address 204.153.50.65 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-router-ext-cust-net-50 - alias gate-rtr-border-router-ext-cust-net-50.Princeton.EDU - address 204.153.50.97 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-router-ext-cust-net-51 - alias gate-rtr-border-router-ext-cust-net-51.Princeton.EDU - address 204.153.50.129 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-router-ext-cust-net-52 - alias gate-rtr-border-router-ext-cust-net-52.Princeton.EDU - address 204.153.50.161 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-router-ext-cust-net-53 - alias gate-rtr-border-router-ext-cust-net-53.Princeton.EDU - address 204.153.50.193 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-router-ext-cust-net-54 - alias gate-rtr-border-router-ext-cust-net-54.Princeton.EDU - address 204.153.50.225 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-router-ext-cust-net-55 - alias gate-rtr-border-router-ext-cust-net-55.Princeton.EDU - address 66.180.179.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-router-ext-cust-net-56 - alias gate-rtr-border-router-ext-cust-net-56.Princeton.EDU - address 66.180.179.65 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-router-ext-cust-net-57 - alias gate-rtr-border-router-ext-cust-net-57.Princeton.EDU - address 66.180.179.129 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-router-ext-cust-net-58 - alias gate-rtr-border-router-ext-cust-net-58.Princeton.EDU - address 66.180.179.193 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-router-ext-cust-net-59 - alias gate-rtr-border-router-ext-cust-net-59.Princeton.EDU - address 66.180.178.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-router-ext-cust-net-60 - alias gate-rtr-border-router-ext-cust-net-60.Princeton.EDU - address 66.180.178.129 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-router-ext-cust-net-61 - alias gate-rtr-border-router-ext-cust-net-61.Princeton.EDU - address 204.153.51.73 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-router-ext-cust-net-31 - alias gate-rtr-border-router-ext-cust-net-31.Princeton.EDU - address 204.153.51.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-router-ext-cust-net-32 - alias gate-rtr-border-router-ext-cust-net-32.Princeton.EDU - address 204.153.51.17 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-router-ext-cust-net-33 - alias gate-rtr-border-router-ext-cust-net-33.Princeton.EDU - address 204.153.51.33 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-router-ext-cust-net-34 - alias gate-rtr-border-router-ext-cust-net-34.Princeton.EDU - address 204.153.51.49 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-router-ext-cust-net-35 - alias gate-rtr-border-router-ext-cust-net-35.Princeton.EDU - address 204.153.51.65 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-router-ext-cust-net-36 - alias gate-rtr-border-router-ext-cust-net-36.Princeton.EDU - address 204.153.51.81 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-router-ext-cust-net-37 - alias gate-rtr-border-router-ext-cust-net-37.Princeton.EDU - address 204.153.51.97 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-router-ext-cust-net-38 - alias gate-rtr-border-router-ext-cust-net-38.Princeton.EDU - address 204.153.51.113 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-router-ext-cust-net-39 - alias gate-rtr-border-router-ext-cust-net-39.Princeton.EDU - address 204.153.51.129 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-border-87-mgmt - alias gate-border-87-mgmt.Princeton.EDU - address 172.18.194.70 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-ppn-router-infranet4 - alias gate-ppn-router-infranet4.Princeton.EDU - address 172.18.192.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-ppplrouter-microwave-linknet - alias gate-ppplrouter-microwave-linknet.Princeton.EDU - address 192.168.8.254 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-151-router-vrf-esnet-ext-linknet24 - alias gate-rtr-border-151-router-vrf-esnet-ext-linknet24.Princeton.EDU - address 204.153.48.98 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-87-router-extern-linknet12 - alias gate-rtr-border-87-router-extern-linknet12.Princeton.EDU - address 204.153.48.49 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-87-router-linknet16 - alias gate-rtr-border-87-router-linknet16.Princeton.EDU - address 128.112.12.78 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-87-router-vrf-esnet-ext-linknet24 - alias gate-rtr-border-87-router-vrf-esnet-ext-linknet24.Princeton.EDU - address 204.153.48.97 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-hpcrc-router-extern-linknet12 - alias gate-rtr-border-hpcrc-router-extern-linknet12.Princeton.EDU - address 204.153.48.54 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-hpcrc-router-extern-linknet16 - alias gate-rtr-border-hpcrc-router-extern-linknet16.Princeton.EDU - address 204.153.48.67 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-hpcrc-router-extern-linknet6 - alias gate-rtr-border-hpcrc-router-extern-linknet6.Princeton.EDU - address 204.153.48.25 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-hpcrc-router-extern-linknet7 - alias gate-rtr-border-hpcrc-router-extern-linknet7.Princeton.EDU - address 204.153.48.29 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-hpcrc-router-linknet24 - alias gate-rtr-border-hpcrc-router-linknet24.Princeton.EDU - address 128.112.12.110 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-hpcrc - alias gate-rtr-border-hpcrc.Princeton.EDU - address 172.18.174.15 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-hpcrc-mgmt - alias gate-rtr-border-hpcrc-mgmt.Princeton.EDU - address 172.18.192.226 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-hpcrc-mgmt0 - alias gate-rtr-border-hpcrc-mgmt0.Princeton.EDU - address 172.18.192.148 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-hpcrc-mgmt1 - alias gate-rtr-border-hpcrc-mgmt1.Princeton.EDU - address 172.18.192.161 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-router-extern-linknet16 - alias gate-rtr-border-router-extern-linknet16.Princeton.EDU - address 204.153.48.65 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-87-router-extern-linknet16 - alias gate-rtr-border-87-router-extern-linknet16.Princeton.EDU - address 204.153.48.66 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-87-router-extern-linknet62 - alias gate-rtr-border-87-router-extern-linknet62.Princeton.EDU - address 204.153.48.250 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-87 - alias gate-rtr-border-87.Princeton.EDU - address 172.18.174.14 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-87-mgmt - alias gate-rtr-border-87-mgmt.Princeton.EDU - address 172.18.192.205 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-87-mgmt0 - alias gate-rtr-border-87-mgmt0.Princeton.EDU - address 172.18.192.49 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-rtr-border-87-mgmt1 - alias gate-rtr-border-87-mgmt1.Princeton.EDU - address 172.18.192.106 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-fw-border-87-router-extern-linknet16 - alias gate-fw-border-87-router-extern-linknet16.Princeton.EDU - address 204.153.48.94 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-fw-border-87-router-linknet48 - alias gate-fw-border-87-router-linknet48.Princeton.EDU - address 128.112.12.222 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-fw-border-hpcrc-router-extern-linknet16 - alias gate-fw-border-hpcrc-router-extern-linknet16.Princeton.EDU - address 204.153.48.93 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-fw-border-hpcrc-router-linknet48 - alias gate-fw-border-hpcrc-router-linknet48.Princeton.EDU - address 128.112.12.221 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-tms-87-extern-linknet11 - alias gate-tms-87-extern-linknet11.Princeton.EDU - address 204.153.48.46 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-tms-87-extern-linknet4 - alias gate-tms-87-extern-linknet4.Princeton.EDU - address 204.153.48.18 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-tms-hpcrc-extern-linknet6 - alias gate-tms-hpcrc-extern-linknet6.Princeton.EDU - address 204.153.48.26 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-tms-hpcrc-extern-linknet7 - alias gate-tms-hpcrc-extern-linknet7.Princeton.EDU - address 204.153.48.30 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-ppn-router-knockknocknet - alias gate-ppn-router-knockknocknet.Princeton.EDU - address 172.19.192.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name gate-ppn-router-opensesamenet - alias gate-ppn-router-opensesamenet.Princeton.EDU - address 172.19.68.1 - hostgroups OIT Core Routers-Switches, Rover hosts - use Rover device -} - - -define host { - host_name convert-87prospect - alias convert-87prospect.Princeton.EDU - address 172.18.3.178 - hostgroups OIT CWDM, Rover hosts - use Rover device -} - - -define host { - host_name convert-hpcrc1 - alias convert-hpcrc1.Princeton.EDU - address 172.18.1.231 - hostgroups OIT CWDM, Rover hosts - use Rover device -} - - -define host { - host_name ct32-2561 - alias ct32-2561.Princeton.EDU - address 172.18.4.156 - hostgroups OIT CWDM, Rover hosts - use Rover device -} - - -define host { - host_name ct32-2957 - alias ct32-2957.Princeton.EDU - address 172.18.4.155 - hostgroups OIT CWDM, Rover hosts - use Rover device -} - - -define host { - host_name ca12-1454 - alias ca12-1454.Princeton.EDU - address 172.18.194.71 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name ca12-1465 - alias ca12-1465.Princeton.EDU - address 172.18.32.25 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name ca12-1501 - alias ca12-1501.Princeton.EDU - address 172.18.1.11 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name ca12-1541 - alias ca12-1541.Princeton.EDU - address 172.18.194.58 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name ca12-1545 - alias ca12-1545.Princeton.EDU - address 172.18.192.46 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name ca12-1622 - alias ca12-1622.Princeton.EDU - address 172.18.194.110 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name ca12-1628 - alias ca12-1628.Princeton.EDU - address 172.18.194.111 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name ca12-1630 - alias ca12-1630.Princeton.EDU - address 172.18.194.113 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name ca12-1654 - alias ca12-1654.Princeton.EDU - address 172.18.194.115 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name ca12-1674 - alias ca12-1674.Princeton.EDU - address 172.18.194.114 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name ca12-1692 - alias ca12-1692.Princeton.EDU - address 172.18.194.117 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name ca12-1698 - alias ca12-1698.Princeton.EDU - address 172.18.194.118 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name ca12-1699 - alias ca12-1699.Princeton.EDU - address 172.18.194.120 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name ca12-1729 - alias ca12-1729.Princeton.EDU - address 172.18.192.35 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name ca12-1771 - alias ca12-1771.Princeton.EDU - address 172.18.1.1 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name ca12-1901 - alias ca12-1901.Princeton.EDU - address 172.18.194.121 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name ca12-1927 - alias ca12-1927.Princeton.EDU - address 172.18.194.122 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name ca12-1942 - alias ca12-1942.Princeton.EDU - address 172.18.33.36 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name ca12-1969 - alias ca12-1969.Princeton.EDU - address 172.18.194.64 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name ca12-1973 - alias ca12-1973.Princeton.EDU - address 172.18.194.119 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name ca12-1991 - alias ca12-1991.Princeton.EDU - address 172.18.194.62 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name ca12-2032 - alias ca12-2032.Princeton.EDU - address 172.18.194.87 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name ca12-2251 - alias ca12-2251.Princeton.EDU - address 172.18.192.15 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name ca12-2303 - alias ca12-2303.Princeton.EDU - address 172.18.192.239 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name ca12-2351 - alias ca12-2351.Princeton.EDU - address 172.18.192.19 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name ca12-2360 - alias ca12-2360.Princeton.EDU - address 172.18.32.188 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name ca12-2464 - alias ca12-2464.Princeton.EDU - address 172.18.192.30 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name ca12-2507 - alias ca12-2507.Princeton.EDU - address 172.18.192.75 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name ca12-2629 - alias ca12-2629.Princeton.EDU - address 172.18.194.63 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name ca12-2964 - alias ca12-2964.Princeton.EDU - address 172.18.193.147 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name ca12-3032 - alias ca12-3032.Princeton.EDU - address 172.18.192.144 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name ca24-0002 - alias ca24-0002.Princeton.EDU - address 172.18.32.45 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name ca24-0010 - alias ca24-0010.Princeton.EDU - address 172.18.32.199 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name ca24-0038 - alias ca24-0038.Princeton.EDU - address 172.18.193.169 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name ca24-0165 - alias ca24-0165.Princeton.EDU - address 172.18.32.201 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name ca24-0525 - alias ca24-0525.Princeton.EDU - address 172.18.1.105 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name ca24-0648 - alias ca24-0648.Princeton.EDU - address 172.18.32.90 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cb12-0039 - alias cb12-0039.Princeton.EDU - address 172.18.1.109 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cb12-0291 - alias cb12-0291.Princeton.EDU - address 172.18.3.147 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cb12-0835 - alias cb12-0835.Princeton.EDU - address 172.18.2.174 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cb12-0883 - alias cb12-0883.Princeton.EDU - address 172.18.1.19 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cb12-0909 - alias cb12-0909.Princeton.EDU - address 172.18.2.70 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cb12-0912 - alias cb12-0912.Princeton.EDU - address 172.18.2.75 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cb12-0956 - alias cb12-0956.Princeton.EDU - address 172.18.3.26 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cb12-0983 - alias cb12-0983.Princeton.EDU - address 172.18.192.84 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cb12-1050 - alias cb12-1050.Princeton.EDU - address 172.18.1.71 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cb12-1293 - alias cb12-1293.Princeton.EDU - address 172.18.3.58 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cb12-1565 - alias cb12-1565.Princeton.EDU - address 172.18.0.17 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cb12-1570 - alias cb12-1570.Princeton.EDU - address 172.18.0.67 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cb12-1617 - alias cb12-1617.Princeton.EDU - address 172.18.2.183 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cb12-1980 - alias cb12-1980.Princeton.EDU - address 172.18.3.41 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cb12-2349 - alias cb12-2349.Princeton.EDU - address 172.18.2.31 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cb24-0155 - alias cb24-0155.Princeton.EDU - address 172.18.0.245 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cb24-0251 - alias cb24-0251.Princeton.EDU - address 172.18.2.146 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cb24-0950 - alias cb24-0950.Princeton.EDU - address 172.18.0.49 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cb24-1100 - alias cb24-1100.Princeton.EDU - address 172.18.3.4 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cb24-1150 - alias cb24-1150.Princeton.EDU - address 172.18.2.147 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cb24-1210 - alias cb24-1210.Princeton.EDU - address 172.18.0.48 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cb24-1257 - alias cb24-1257.Princeton.EDU - address 172.18.2.193 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cb24-1443 - alias cb24-1443.Princeton.EDU - address 172.18.2.236 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cb24-1444 - alias cb24-1444.Princeton.EDU - address 172.18.3.88 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cb24-1445 - alias cb24-1445.Princeton.EDU - address 172.18.3.89 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cb24-1446 - alias cb24-1446.Princeton.EDU - address 172.18.3.90 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cb24-1569 - alias cb24-1569.Princeton.EDU - address 172.18.0.22 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cb24-1571 - alias cb24-1571.Princeton.EDU - address 172.18.0.103 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cb24-1663 - alias cb24-1663.Princeton.EDU - address 172.18.4.20 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cb24-1717 - alias cb24-1717.Princeton.EDU - address 172.18.1.242 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cb24-1719 - alias cb24-1719.Princeton.EDU - address 172.18.1.233 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cb24-1960 - alias cb24-1960.Princeton.EDU - address 172.18.0.39 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cb24-2520 - alias cb24-2520.Princeton.EDU - address 172.18.3.189 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cb24-2583 - alias cb24-2583.Princeton.EDU - address 172.18.1.58 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name ct16-0014 - alias ct16-0014.Princeton.EDU - address 172.18.1.172 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0006 - alias cx24-0006.Princeton.EDU - address 172.18.194.57 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0016 - alias cy48-0016.Princeton.EDU - address 172.18.0.227 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0021 - alias cy48-0021.Princeton.EDU - address 172.18.32.128 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0023 - alias cy48-0023.Princeton.EDU - address 172.18.32.120 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0024 - alias cy48-0024.Princeton.EDU - address 172.18.3.81 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0030 - alias cy48-0030.Princeton.EDU - address 172.18.32.127 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0036 - alias cy48-0036.Princeton.EDU - address 172.18.4.61 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0040 - alias cy48-0040.Princeton.EDU - address 172.18.1.108 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0041 - alias cy48-0041.Princeton.EDU - address 172.18.0.213 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0046 - alias cy48-0046.Princeton.EDU - address 172.18.1.70 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0048 - alias cy48-0048.Princeton.EDU - address 172.18.1.72 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0049 - alias cy48-0049.Princeton.EDU - address 172.18.1.68 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0050 - alias cy48-0050.Princeton.EDU - address 172.18.33.115 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0055 - alias cy48-0055.Princeton.EDU - address 172.18.1.13 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0058 - alias cy48-0058.Princeton.EDU - address 172.18.32.238 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0060 - alias cy48-0060.Princeton.EDU - address 172.18.32.101 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0065 - alias cy48-0065.Princeton.EDU - address 172.18.2.116 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0066 - alias cy48-0066.Princeton.EDU - address 172.18.1.206 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0068 - alias cy48-0068.Princeton.EDU - address 172.18.4.83 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0075 - alias cy48-0075.Princeton.EDU - address 172.18.0.212 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0076 - alias cy48-0076.Princeton.EDU - address 172.18.32.43 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0017 - alias cx48-0017.Princeton.EDU - address 172.18.2.82 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0044 - alias cy24-0044.Princeton.EDU - address 172.18.1.51 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0052 - alias cy24-0052.Princeton.EDU - address 172.18.33.11 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0032 - alias cx24-0032.Princeton.EDU - address 172.18.193.243 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0054 - alias cx48-0054.Princeton.EDU - address 172.18.5.34 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0061 - alias cx48-0061.Princeton.EDU - address 172.18.5.47 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0069 - alias cx48-0069.Princeton.EDU - address 172.18.4.51 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0070 - alias cx48-0070.Princeton.EDU - address 172.18.2.108 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0073 - alias cx24-0073.Princeton.EDU - address 172.18.192.158 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0078 - alias cy48-0078.Princeton.EDU - address 172.18.33.75 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0079 - alias cy48-0079.Princeton.EDU - address 172.18.2.4 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0080 - alias cy24-0080.Princeton.EDU - address 172.18.3.11 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0082 - alias cy24-0082.Princeton.EDU - address 172.18.1.38 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0084 - alias cy24-0084.Princeton.EDU - address 172.18.194.72 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0088 - alias cy24-0088.Princeton.EDU - address 172.18.1.225 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0099 - alias cy24-0099.Princeton.EDU - address 172.18.32.95 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0113 - alias cy24-0113.Princeton.EDU - address 172.18.1.114 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0118 - alias cy24-0118.Princeton.EDU - address 172.18.33.104 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0120 - alias cy24-0120.Princeton.EDU - address 172.18.32.96 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0128 - alias cy24-0128.Princeton.EDU - address 172.18.32.202 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0130 - alias cy24-0130.Princeton.EDU - address 172.18.1.148 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0131 - alias cy24-0131.Princeton.EDU - address 172.18.192.31 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0139 - alias cy24-0139.Princeton.EDU - address 172.18.33.125 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0143 - alias cy24-0143.Princeton.EDU - address 172.18.33.136 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0166 - alias cy24-0166.Princeton.EDU - address 172.18.32.203 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0170 - alias cy24-0170.Princeton.EDU - address 172.18.32.252 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0176 - alias cy24-0176.Princeton.EDU - address 172.18.32.97 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0177 - alias cy24-0177.Princeton.EDU - address 172.18.1.253 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0178 - alias cy24-0178.Princeton.EDU - address 172.18.192.32 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0179 - alias cy24-0179.Princeton.EDU - address 172.18.32.204 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0180 - alias cy24-0180.Princeton.EDU - address 172.18.32.206 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0236 - alias cy24-0236.Princeton.EDU - address 172.18.33.129 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0246 - alias cy24-0246.Princeton.EDU - address 172.18.32.207 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0259 - alias cy24-0259.Princeton.EDU - address 172.18.32.208 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0261 - alias cy24-0261.Princeton.EDU - address 172.18.32.212 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0264 - alias cy24-0264.Princeton.EDU - address 172.18.32.216 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0266 - alias cy24-0266.Princeton.EDU - address 172.18.194.74 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0296 - alias cy24-0296.Princeton.EDU - address 172.18.32.219 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0337 - alias cy24-0337.Princeton.EDU - address 172.18.0.246 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0339 - alias cy24-0339.Princeton.EDU - address 172.18.32.242 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0344 - alias cy24-0344.Princeton.EDU - address 172.18.33.46 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0352 - alias cy24-0352.Princeton.EDU - address 172.18.32.220 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0081 - alias cy48-0081.Princeton.EDU - address 172.18.33.76 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0091 - alias cy48-0091.Princeton.EDU - address 172.18.3.153 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0097 - alias cy48-0097.Princeton.EDU - address 172.18.3.130 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0107 - alias cy48-0107.Princeton.EDU - address 172.18.32.148 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0108 - alias cy48-0108.Princeton.EDU - address 172.18.32.140 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0109 - alias cy48-0109.Princeton.EDU - address 172.18.33.119 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0114 - alias cy48-0114.Princeton.EDU - address 172.18.1.110 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0115 - alias cy48-0115.Princeton.EDU - address 172.18.1.228 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0121 - alias cy48-0121.Princeton.EDU - address 172.18.2.115 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0125 - alias cy48-0125.Princeton.EDU - address 172.18.0.166 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0127 - alias cy48-0127.Princeton.EDU - address 172.18.1.15 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0129 - alias cy48-0129.Princeton.EDU - address 172.18.4.82 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0132 - alias cy48-0132.Princeton.EDU - address 172.18.2.30 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0138 - alias cy48-0138.Princeton.EDU - address 172.18.3.137 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0083 - alias cx24-0083.Princeton.EDU - address 172.18.192.227 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0085 - alias cx48-0085.Princeton.EDU - address 172.18.5.41 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0092 - alias cx48-0092.Princeton.EDU - address 172.18.4.248 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0094 - alias cx48-0094.Princeton.EDU - address 172.18.5.91 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0096 - alias cx24-0096.Princeton.EDU - address 172.18.192.197 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0104 - alias cx48-0104.Princeton.EDU - address 172.18.5.35 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0105 - alias cx48-0105.Princeton.EDU - address 172.18.5.44 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0106 - alias cx48-0106.Princeton.EDU - address 172.18.5.39 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0110 - alias cx48-0110.Princeton.EDU - address 172.18.0.55 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0123 - alias cx48-0123.Princeton.EDU - address 172.18.0.198 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0126 - alias cx24-0126.Princeton.EDU - address 172.18.193.141 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0133 - alias cx48-0133.Princeton.EDU - address 172.18.5.37 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0136 - alias cx48-0136.Princeton.EDU - address 172.18.194.20 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0140 - alias cy48-0140.Princeton.EDU - address 172.18.33.77 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0141 - alias cy48-0141.Princeton.EDU - address 172.18.1.106 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0167 - alias cy48-0167.Princeton.EDU - address 172.18.3.93 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0168 - alias cy48-0168.Princeton.EDU - address 172.18.1.57 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0169 - alias cy48-0169.Princeton.EDU - address 172.18.3.87 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0171 - alias cy48-0171.Princeton.EDU - address 172.18.3.129 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0172 - alias cy48-0172.Princeton.EDU - address 172.18.4.88 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0142 - alias cy48-0142.Princeton.EDU - address 172.18.1.111 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0150 - alias cy48-0150.Princeton.EDU - address 172.18.32.65 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0154 - alias cy48-0154.Princeton.EDU - address 172.18.32.94 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0164 - alias cy48-0164.Princeton.EDU - address 172.18.1.229 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0156 - alias cx48-0156.Princeton.EDU - address 172.18.0.235 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0158 - alias cx48-0158.Princeton.EDU - address 172.18.1.199 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0159 - alias cx24-0159.Princeton.EDU - address 172.18.193.175 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0161 - alias cx24-0161.Princeton.EDU - address 172.18.192.201 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0162 - alias cx24-0162.Princeton.EDU - address 172.18.193.136 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0173 - alias cy48-0173.Princeton.EDU - address 172.18.4.152 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0181 - alias cy48-0181.Princeton.EDU - address 172.18.3.121 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0183 - alias cy48-0183.Princeton.EDU - address 172.18.0.160 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0186 - alias cy48-0186.Princeton.EDU - address 172.18.33.63 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0191 - alias cy48-0191.Princeton.EDU - address 172.18.1.73 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0198 - alias cy48-0198.Princeton.EDU - address 172.18.32.129 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0201 - alias cy48-0201.Princeton.EDU - address 172.18.1.174 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0202 - alias cy48-0202.Princeton.EDU - address 172.18.1.28 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0203 - alias cy48-0203.Princeton.EDU - address 172.18.3.228 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0204 - alias cy48-0204.Princeton.EDU - address 172.18.2.102 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0206 - alias cy48-0206.Princeton.EDU - address 172.18.1.117 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0207 - alias cy48-0207.Princeton.EDU - address 172.18.1.179 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0218 - alias cy48-0218.Princeton.EDU - address 172.18.0.205 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0226 - alias cy48-0226.Princeton.EDU - address 172.18.32.189 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0228 - alias cy48-0228.Princeton.EDU - address 172.18.32.89 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0231 - alias cy48-0231.Princeton.EDU - address 172.18.1.69 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0195 - alias cx24-0195.Princeton.EDU - address 172.18.193.164 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0196 - alias cx24-0196.Princeton.EDU - address 172.18.193.177 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name ct16-0197 - alias ct16-0197.Princeton.EDU - address 172.18.5.36 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0209 - alias cx48-0209.Princeton.EDU - address 172.18.5.46 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0212 - alias cy48-0212.Princeton.EDU - address 172.18.0.154 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0215 - alias cx24-0215.Princeton.EDU - address 172.18.193.178 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0217 - alias cx24-0217.Princeton.EDU - address 172.18.193.165 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0219 - alias cx48-0219.Princeton.EDU - address 172.18.5.49 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0224 - alias cx48-0224.Princeton.EDU - address 172.18.1.201 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0225 - alias cx48-0225.Princeton.EDU - address 172.18.4.249 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0230 - alias cx24-0230.Princeton.EDU - address 172.18.193.105 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0233 - alias cy48-0233.Princeton.EDU - address 172.18.0.155 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0234 - alias cx24-0234.Princeton.EDU - address 172.18.193.235 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0241 - alias cy48-0241.Princeton.EDU - address 172.18.1.29 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0244 - alias cy48-0244.Princeton.EDU - address 172.18.1.107 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0247 - alias cy48-0247.Princeton.EDU - address 172.18.33.74 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0249 - alias cy48-0249.Princeton.EDU - address 172.18.32.50 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0250 - alias cy48-0250.Princeton.EDU - address 172.18.32.145 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0262 - alias cy48-0262.Princeton.EDU - address 172.18.32.230 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0245 - alias cx48-0245.Princeton.EDU - address 172.18.1.155 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0255 - alias cx24-0255.Princeton.EDU - address 172.18.192.184 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0257 - alias cx24-0257.Princeton.EDU - address 172.18.192.199 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0260 - alias cx24-0260.Princeton.EDU - address 172.18.192.202 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0263 - alias cx24-0263.Princeton.EDU - address 172.18.193.179 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0267 - alias cx24-0267.Princeton.EDU - address 172.18.192.206 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0271 - alias cy48-0271.Princeton.EDU - address 172.18.33.78 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0274 - alias cy48-0274.Princeton.EDU - address 172.18.0.40 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0276 - alias cy48-0276.Princeton.EDU - address 172.18.1.34 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0279 - alias cy48-0279.Princeton.EDU - address 172.18.2.179 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0282 - alias cy48-0282.Princeton.EDU - address 172.18.192.33 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0272 - alias cx24-0272.Princeton.EDU - address 172.18.193.244 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0280 - alias cx48-0280.Princeton.EDU - address 172.18.0.27 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0290 - alias cy48-0290.Princeton.EDU - address 172.18.0.75 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0295 - alias cy48-0295.Princeton.EDU - address 172.18.33.116 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0300 - alias cy48-0300.Princeton.EDU - address 172.18.3.162 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0301 - alias cy48-0301.Princeton.EDU - address 172.18.1.205 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0308 - alias cy48-0308.Princeton.EDU - address 172.18.32.85 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0309 - alias cy48-0309.Princeton.EDU - address 172.18.3.171 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0312 - alias cy48-0312.Princeton.EDU - address 172.18.33.99 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0314 - alias cy48-0314.Princeton.EDU - address 172.18.3.227 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0320 - alias cy48-0320.Princeton.EDU - address 172.18.3.232 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0322 - alias cy48-0322.Princeton.EDU - address 172.18.1.32 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0294 - alias cx48-0294.Princeton.EDU - address 172.18.2.72 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0305 - alias cx24-0305.Princeton.EDU - address 172.18.192.228 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0310 - alias cx24-0310.Princeton.EDU - address 172.18.128.130 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0321 - alias cx48-0321.Princeton.EDU - address 172.18.5.48 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0323 - alias cy48-0323.Princeton.EDU - address 172.18.33.82 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0325 - alias cy48-0325.Princeton.EDU - address 172.18.3.122 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0331 - alias cy48-0331.Princeton.EDU - address 172.18.0.89 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0333 - alias cx48-0333.Princeton.EDU - address 172.18.5.73 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0334 - alias cx48-0334.Princeton.EDU - address 172.18.32.135 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0335 - alias cy48-0335.Princeton.EDU - address 172.18.33.84 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0342 - alias cy48-0342.Princeton.EDU - address 172.18.4.93 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0348 - alias cy48-0348.Princeton.EDU - address 172.18.3.224 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0354 - alias cy48-0354.Princeton.EDU - address 172.18.3.143 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0356 - alias cy48-0356.Princeton.EDU - address 172.18.3.38 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0357 - alias cy48-0357.Princeton.EDU - address 172.18.1.140 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0372 - alias cy48-0372.Princeton.EDU - address 172.18.32.241 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0374 - alias cy48-0374.Princeton.EDU - address 172.18.2.10 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0376 - alias cy48-0376.Princeton.EDU - address 172.18.3.148 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0390 - alias cy48-0390.Princeton.EDU - address 172.18.33.64 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0393 - alias cy48-0393.Princeton.EDU - address 172.18.2.6 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0394 - alias cy48-0394.Princeton.EDU - address 172.18.32.229 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0395 - alias cy48-0395.Princeton.EDU - address 172.18.0.138 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0336 - alias cx24-0336.Princeton.EDU - address 172.18.194.11 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0340 - alias cx24-0340.Princeton.EDU - address 172.18.193.180 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0347 - alias cx24-0347.Princeton.EDU - address 172.18.193.152 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0350 - alias cx48-0350.Princeton.EDU - address 172.18.5.53 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0351 - alias cx48-0351.Princeton.EDU - address 172.18.5.38 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0355 - alias cx48-0355.Princeton.EDU - address 172.18.5.74 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0358 - alias cy24-0358.Princeton.EDU - address 172.18.3.194 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0366 - alias cy24-0366.Princeton.EDU - address 172.18.32.228 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0367 - alias cy24-0367.Princeton.EDU - address 172.18.32.225 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0387 - alias cy24-0387.Princeton.EDU - address 172.18.0.72 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0419 - alias cy24-0419.Princeton.EDU - address 172.18.32.221 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0424 - alias cy24-0424.Princeton.EDU - address 172.18.1.124 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0438 - alias cy24-0438.Princeton.EDU - address 172.18.32.227 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0469 - alias cy24-0469.Princeton.EDU - address 172.18.194.83 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0471 - alias cy24-0471.Princeton.EDU - address 172.18.33.103 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0478 - alias cy24-0478.Princeton.EDU - address 172.18.1.62 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0516 - alias cy24-0516.Princeton.EDU - address 172.18.32.226 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0560 - alias cy24-0560.Princeton.EDU - address 172.18.32.74 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0562 - alias cy24-0562.Princeton.EDU - address 172.18.194.130 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0568 - alias cy24-0568.Princeton.EDU - address 172.18.33.122 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0573 - alias cy24-0573.Princeton.EDU - address 172.18.32.13 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0583 - alias cy24-0583.Princeton.EDU - address 172.18.32.222 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0591 - alias cy24-0591.Princeton.EDU - address 172.18.32.32 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0593 - alias cy24-0593.Princeton.EDU - address 172.18.32.73 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0594 - alias cy24-0594.Princeton.EDU - address 172.18.32.52 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0595 - alias cy24-0595.Princeton.EDU - address 172.18.32.55 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0600 - alias cy24-0600.Princeton.EDU - address 172.18.32.19 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0617 - alias cy24-0617.Princeton.EDU - address 172.18.33.128 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0360 - alias cx48-0360.Princeton.EDU - address 172.18.1.82 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0361 - alias cx48-0361.Princeton.EDU - address 172.18.3.247 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0369 - alias cx48-0369.Princeton.EDU - address 172.18.1.218 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0370 - alias cx48-0370.Princeton.EDU - address 172.18.5.40 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0378 - alias cx48-0378.Princeton.EDU - address 172.18.5.1 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0379 - alias cx24-0379.Princeton.EDU - address 172.18.192.21 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0380 - alias cx48-0380.Princeton.EDU - address 172.18.4.253 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0388 - alias cx48-0388.Princeton.EDU - address 172.18.5.45 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0399 - alias cy48-0399.Princeton.EDU - address 172.18.3.28 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0404 - alias cy48-0404.Princeton.EDU - address 172.18.4.85 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0417 - alias cy48-0417.Princeton.EDU - address 172.18.194.25 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0427 - alias cy48-0427.Princeton.EDU - address 172.18.2.12 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0433 - alias cy48-0433.Princeton.EDU - address 172.18.4.94 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0434 - alias cy48-0434.Princeton.EDU - address 172.18.2.80 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0439 - alias cy48-0439.Princeton.EDU - address 172.18.4.90 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0401 - alias cx24-0401.Princeton.EDU - address 172.18.192.62 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0402 - alias cx48-0402.Princeton.EDU - address 172.18.5.52 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0403 - alias cx24-0403.Princeton.EDU - address 172.18.192.97 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0405 - alias cx48-0405.Princeton.EDU - address 172.18.5.50 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0409 - alias cx24-0409.Princeton.EDU - address 172.18.192.11 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0411 - alias cx24-0411.Princeton.EDU - address 172.18.193.181 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0414 - alias cx24-0414.Princeton.EDU - address 172.18.192.195 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0415 - alias cx24-0415.Princeton.EDU - address 172.18.193.101 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0422 - alias cx24-0422.Princeton.EDU - address 172.18.194.12 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0428 - alias cx48-0428.Princeton.EDU - address 172.18.0.52 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0441 - alias cx48-0441.Princeton.EDU - address 172.18.2.48 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0443 - alias cx24-0443.Princeton.EDU - address 172.18.193.123 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0452 - alias cx24-0452.Princeton.EDU - address 172.18.193.142 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0456 - alias cy48-0456.Princeton.EDU - address 172.18.0.252 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0474 - alias cy48-0474.Princeton.EDU - address 172.18.3.131 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0475 - alias cy48-0475.Princeton.EDU - address 172.18.3.222 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0480 - alias cy48-0480.Princeton.EDU - address 172.18.3.159 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0494 - alias cy48-0494.Princeton.EDU - address 172.18.2.3 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0457 - alias cy48-0457.Princeton.EDU - address 172.18.0.164 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0464 - alias cy48-0464.Princeton.EDU - address 172.18.4.109 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0468 - alias cy48-0468.Princeton.EDU - address 172.18.1.250 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0461 - alias cx48-0461.Princeton.EDU - address 172.18.5.51 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0473 - alias cx24-0473.Princeton.EDU - address 172.18.193.124 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0485 - alias cx24-0485.Princeton.EDU - address 172.18.193.245 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0487 - alias cx48-0487.Princeton.EDU - address 172.18.4.191 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0489 - alias cx48-0489.Princeton.EDU - address 172.18.0.193 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0498 - alias cy48-0498.Princeton.EDU - address 172.18.33.68 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0499 - alias cy48-0499.Princeton.EDU - address 172.18.32.224 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0503 - alias cy48-0503.Princeton.EDU - address 172.18.4.112 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0504 - alias cy48-0504.Princeton.EDU - address 172.18.0.93 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0506 - alias cy48-0506.Princeton.EDU - address 172.18.4.84 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0517 - alias cy48-0517.Princeton.EDU - address 172.18.1.118 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0520 - alias cy48-0520.Princeton.EDU - address 172.18.3.139 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0522 - alias cy48-0522.Princeton.EDU - address 172.18.3.144 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0523 - alias cy48-0523.Princeton.EDU - address 172.18.0.47 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0500 - alias cx24-0500.Princeton.EDU - address 172.18.193.166 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0509 - alias cx24-0509.Princeton.EDU - address 172.18.193.162 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0511 - alias cx24-0511.Princeton.EDU - address 172.18.193.125 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0527 - alias cy48-0527.Princeton.EDU - address 172.18.0.226 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0531 - alias cy48-0531.Princeton.EDU - address 172.18.3.248 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0535 - alias cy48-0535.Princeton.EDU - address 172.18.32.86 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0538 - alias cy48-0538.Princeton.EDU - address 172.18.32.88 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0540 - alias cy48-0540.Princeton.EDU - address 172.18.32.87 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0541 - alias cy48-0541.Princeton.EDU - address 172.18.32.84 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0534 - alias cx48-0534.Princeton.EDU - address 172.18.32.113 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0537 - alias cx24-0537.Princeton.EDU - address 172.18.193.50 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0539 - alias cx48-0539.Princeton.EDU - address 172.18.33.1 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0542 - alias cx48-0542.Princeton.EDU - address 172.18.32.115 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0549 - alias cy48-0549.Princeton.EDU - address 172.18.33.86 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0551 - alias cy48-0551.Princeton.EDU - address 172.18.0.208 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0554 - alias cy48-0554.Princeton.EDU - address 172.18.0.25 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0558 - alias cy48-0558.Princeton.EDU - address 172.18.4.92 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0559 - alias cy48-0559.Princeton.EDU - address 172.18.2.44 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0561 - alias cy48-0561.Princeton.EDU - address 172.18.3.111 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0566 - alias cy48-0566.Princeton.EDU - address 172.18.1.45 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0553 - alias cx24-0553.Princeton.EDU - address 172.18.192.175 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0565 - alias cx48-0565.Princeton.EDU - address 172.18.1.83 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0567 - alias cx24-0567.Princeton.EDU - address 172.18.193.242 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0570 - alias cx24-0570.Princeton.EDU - address 172.18.192.220 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0571 - alias cy48-0571.Princeton.EDU - address 172.18.33.81 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0574 - alias cy48-0574.Princeton.EDU - address 172.18.32.12 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0575 - alias cy48-0575.Princeton.EDU - address 172.18.32.93 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0579 - alias cy48-0579.Princeton.EDU - address 172.18.2.57 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0584 - alias cy48-0584.Princeton.EDU - address 172.18.3.155 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0586 - alias cy48-0586.Princeton.EDU - address 172.18.3.163 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0587 - alias cy48-0587.Princeton.EDU - address 172.18.3.156 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0588 - alias cy48-0588.Princeton.EDU - address 172.18.3.164 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0589 - alias cy48-0589.Princeton.EDU - address 172.18.2.35 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0590 - alias cy48-0590.Princeton.EDU - address 172.18.32.168 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0596 - alias cy48-0596.Princeton.EDU - address 172.18.32.72 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0597 - alias cy48-0597.Princeton.EDU - address 172.18.32.75 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0598 - alias cy48-0598.Princeton.EDU - address 172.18.32.60 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0599 - alias cy48-0599.Princeton.EDU - address 172.18.32.20 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0601 - alias cy48-0601.Princeton.EDU - address 172.18.32.68 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0602 - alias cy48-0602.Princeton.EDU - address 172.18.32.70 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0603 - alias cy48-0603.Princeton.EDU - address 172.18.32.24 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0605 - alias cy48-0605.Princeton.EDU - address 172.18.0.251 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0612 - alias cy48-0612.Princeton.EDU - address 172.18.3.109 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0616 - alias cy48-0616.Princeton.EDU - address 172.18.0.51 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0637 - alias cy48-0637.Princeton.EDU - address 172.18.0.165 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0638 - alias cy48-0638.Princeton.EDU - address 172.18.4.86 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0640 - alias cy48-0640.Princeton.EDU - address 172.18.0.87 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0643 - alias cy48-0643.Princeton.EDU - address 172.18.0.94 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0646 - alias cy48-0646.Princeton.EDU - address 172.18.3.174 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0647 - alias cy48-0647.Princeton.EDU - address 172.18.2.114 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0655 - alias cy48-0655.Princeton.EDU - address 172.18.32.83 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0660 - alias cy48-0660.Princeton.EDU - address 172.18.0.102 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0662 - alias cy48-0662.Princeton.EDU - address 172.18.1.103 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0664 - alias cy48-0664.Princeton.EDU - address 172.18.1.100 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0673 - alias cy48-0673.Princeton.EDU - address 172.18.3.229 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0674 - alias cy48-0674.Princeton.EDU - address 172.18.1.17 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0681 - alias cy48-0681.Princeton.EDU - address 172.18.1.35 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0685 - alias cy48-0685.Princeton.EDU - address 172.18.4.114 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0620 - alias cx48-0620.Princeton.EDU - address 172.18.1.214 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0622 - alias cx48-0622.Princeton.EDU - address 172.18.3.56 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0623 - alias cx48-0623.Princeton.EDU - address 172.18.193.135 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0624 - alias cx24-0624.Princeton.EDU - address 172.18.193.137 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0653 - alias cy24-0653.Princeton.EDU - address 172.18.3.126 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0691 - alias cy24-0691.Princeton.EDU - address 172.18.194.59 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0692 - alias cy24-0692.Princeton.EDU - address 172.18.2.14 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0759 - alias cy24-0759.Princeton.EDU - address 172.18.194.21 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0778 - alias cy24-0778.Princeton.EDU - address 172.18.32.126 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0787 - alias cy24-0787.Princeton.EDU - address 172.18.33.9 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0789 - alias cy24-0789.Princeton.EDU - address 172.18.33.4 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0795 - alias cy24-0795.Princeton.EDU - address 172.18.32.15 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0796 - alias cy24-0796.Princeton.EDU - address 172.18.2.123 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0806 - alias cy24-0806.Princeton.EDU - address 172.18.2.124 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0819 - alias cy24-0819.Princeton.EDU - address 172.18.2.78 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0820 - alias cy24-0820.Princeton.EDU - address 172.18.2.125 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0821 - alias cy24-0821.Princeton.EDU - address 172.18.2.126 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0839 - alias cy24-0839.Princeton.EDU - address 172.18.2.131 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0844 - alias cy24-0844.Princeton.EDU - address 172.18.2.117 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0845 - alias cy24-0845.Princeton.EDU - address 172.18.2.223 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0659 - alias cx48-0659.Princeton.EDU - address 172.18.3.225 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0672 - alias cx24-0672.Princeton.EDU - address 172.18.193.167 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0675 - alias cx48-0675.Princeton.EDU - address 172.18.2.93 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0682 - alias cx24-0682.Princeton.EDU - address 172.18.193.182 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0683 - alias cx24-0683.Princeton.EDU - address 172.18.192.137 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0688 - alias cx24-0688.Princeton.EDU - address 172.18.193.183 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0690 - alias cx24-0690.Princeton.EDU - address 172.18.193.140 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0693 - alias cx24-0693.Princeton.EDU - address 172.18.193.168 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0694 - alias cx48-0694.Princeton.EDU - address 172.18.0.231 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0698 - alias cx48-0698.Princeton.EDU - address 172.18.0.196 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0700 - alias cx48-0700.Princeton.EDU - address 172.18.0.192 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0703 - alias cy48-0703.Princeton.EDU - address 172.18.0.249 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0704 - alias cy48-0704.Princeton.EDU - address 172.18.3.136 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0705 - alias cx24-0705.Princeton.EDU - address 172.18.193.78 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0707 - alias cx48-0707.Princeton.EDU - address 172.18.0.185 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0708 - alias cy48-0708.Princeton.EDU - address 172.18.33.69 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0709 - alias cy48-0709.Princeton.EDU - address 172.18.0.99 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0710 - alias cy48-0710.Princeton.EDU - address 172.18.33.83 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0711 - alias cy48-0711.Princeton.EDU - address 172.18.33.85 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0718 - alias cy48-0718.Princeton.EDU - address 172.18.3.140 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0721 - alias cy48-0721.Princeton.EDU - address 172.18.0.44 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0730 - alias cy48-0730.Princeton.EDU - address 172.18.0.91 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0736 - alias cy48-0736.Princeton.EDU - address 172.18.3.243 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0737 - alias cy48-0737.Princeton.EDU - address 172.18.3.253 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0739 - alias cy48-0739.Princeton.EDU - address 172.18.3.240 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0741 - alias cy48-0741.Princeton.EDU - address 172.18.32.23 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0742 - alias cy48-0742.Princeton.EDU - address 172.18.3.244 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0746 - alias cy48-0746.Princeton.EDU - address 172.18.3.242 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0766 - alias cy48-0766.Princeton.EDU - address 172.18.32.76 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0713 - alias cx24-0713.Princeton.EDU - address 172.18.193.106 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0715 - alias cx48-0715.Princeton.EDU - address 172.18.0.194 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0717 - alias cx24-0717.Princeton.EDU - address 172.18.4.68 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0720 - alias cx48-0720.Princeton.EDU - address 172.18.4.251 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0722 - alias cx24-0722.Princeton.EDU - address 172.18.0.180 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0726 - alias cx24-0726.Princeton.EDU - address 172.18.192.129 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0734 - alias cx48-0734.Princeton.EDU - address 172.18.4.252 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0758 - alias cx48-0758.Princeton.EDU - address 172.18.4.250 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0763 - alias cx24-0763.Princeton.EDU - address 172.18.193.83 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0764 - alias cx48-0764.Princeton.EDU - address 172.18.4.254 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0765 - alias cx48-0765.Princeton.EDU - address 172.18.0.13 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0767 - alias cx48-0767.Princeton.EDU - address 172.18.0.222 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0772 - alias cy48-0772.Princeton.EDU - address 172.18.33.100 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0773 - alias cy48-0773.Princeton.EDU - address 172.18.0.168 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0774 - alias cy48-0774.Princeton.EDU - address 172.18.3.127 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0777 - alias cy48-0777.Princeton.EDU - address 172.18.0.171 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0779 - alias cy48-0779.Princeton.EDU - address 172.18.32.244 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0784 - alias cy48-0784.Princeton.EDU - address 172.18.32.131 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0786 - alias cy48-0786.Princeton.EDU - address 172.18.32.136 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0776 - alias cx24-0776.Princeton.EDU - address 172.18.193.49 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0791 - alias cx24-0791.Princeton.EDU - address 172.18.192.240 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0793 - alias cy48-0793.Princeton.EDU - address 172.18.4.168 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0798 - alias cy48-0798.Princeton.EDU - address 172.18.0.232 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0799 - alias cy48-0799.Princeton.EDU - address 172.18.0.234 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0802 - alias cy48-0802.Princeton.EDU - address 172.18.2.22 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0803 - alias cy48-0803.Princeton.EDU - address 172.18.0.233 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0807 - alias cy48-0807.Princeton.EDU - address 172.18.3.128 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0814 - alias cy48-0814.Princeton.EDU - address 172.18.2.28 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0816 - alias cy48-0816.Princeton.EDU - address 172.18.2.26 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0817 - alias cy48-0817.Princeton.EDU - address 172.18.2.29 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0818 - alias cy48-0818.Princeton.EDU - address 172.18.1.194 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0811 - alias cx24-0811.Princeton.EDU - address 172.18.193.107 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0813 - alias cx24-0813.Princeton.EDU - address 172.18.194.2 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0824 - alias cx24-0824.Princeton.EDU - address 172.18.193.230 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0827 - alias cx24-0827.Princeton.EDU - address 172.18.192.86 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0850 - alias cy24-0850.Princeton.EDU - address 172.18.194.78 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0851 - alias cy24-0851.Princeton.EDU - address 172.18.194.79 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0834 - alias cy48-0834.Princeton.EDU - address 172.18.3.80 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0837 - alias cy48-0837.Princeton.EDU - address 172.18.32.44 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0849 - alias cy48-0849.Princeton.EDU - address 172.18.2.178 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name ca24-0836 - alias ca24-0836.Princeton.EDU - address 172.18.32.181 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name ca24-1091 - alias ca24-1091.Princeton.EDU - address 172.18.32.200 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0854 - alias cy48-0854.Princeton.EDU - address 172.18.3.112 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0855 - alias cx24-0855.Princeton.EDU - address 172.18.192.141 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0859 - alias cy48-0859.Princeton.EDU - address 172.18.0.107 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0864 - alias cy48-0864.Princeton.EDU - address 172.18.1.133 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0876 - alias cy48-0876.Princeton.EDU - address 172.18.0.239 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0878 - alias cy48-0878.Princeton.EDU - address 172.18.0.238 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0879 - alias cy48-0879.Princeton.EDU - address 172.18.0.240 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0880 - alias cy48-0880.Princeton.EDU - address 172.18.0.241 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0882 - alias cy48-0882.Princeton.EDU - address 172.18.1.162 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0905 - alias cy48-0905.Princeton.EDU - address 172.18.0.59 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0906 - alias cy48-0906.Princeton.EDU - address 172.18.2.150 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0907 - alias cy48-0907.Princeton.EDU - address 172.18.0.58 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0908 - alias cy48-0908.Princeton.EDU - address 172.18.1.9 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0910 - alias cy48-0910.Princeton.EDU - address 172.18.2.151 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0913 - alias cy48-0913.Princeton.EDU - address 172.18.2.148 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0914 - alias cy48-0914.Princeton.EDU - address 172.18.2.152 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0915 - alias cy48-0915.Princeton.EDU - address 172.18.3.176 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0919 - alias cy48-0919.Princeton.EDU - address 172.18.4.50 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0873 - alias cx48-0873.Princeton.EDU - address 172.18.0.195 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0874 - alias cy24-0874.Princeton.EDU - address 172.18.193.163 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0875 - alias cy24-0875.Princeton.EDU - address 172.18.2.58 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0884 - alias cy24-0884.Princeton.EDU - address 172.18.2.209 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0886 - alias cy24-0886.Princeton.EDU - address 172.18.2.164 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0893 - alias cy24-0893.Princeton.EDU - address 172.18.1.39 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0903 - alias cy24-0903.Princeton.EDU - address 172.18.3.61 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0918 - alias cy24-0918.Princeton.EDU - address 172.18.3.57 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0927 - alias cy24-0927.Princeton.EDU - address 172.18.194.133 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0930 - alias cy24-0930.Princeton.EDU - address 172.18.2.119 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0931 - alias cy24-0931.Princeton.EDU - address 172.18.194.134 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0932 - alias cy24-0932.Princeton.EDU - address 172.18.194.135 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0933 - alias cy24-0933.Princeton.EDU - address 172.18.194.136 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0939 - alias cy24-0939.Princeton.EDU - address 172.18.4.63 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0942 - alias cy24-0942.Princeton.EDU - address 172.18.1.37 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0943 - alias cy24-0943.Princeton.EDU - address 172.18.194.94 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0945 - alias cy24-0945.Princeton.EDU - address 172.18.3.114 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0949 - alias cy24-0949.Princeton.EDU - address 172.18.192.48 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0953 - alias cy24-0953.Princeton.EDU - address 172.18.1.169 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0954 - alias cy24-0954.Princeton.EDU - address 172.18.3.23 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0955 - alias cy24-0955.Princeton.EDU - address 172.18.3.75 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0957 - alias cy24-0957.Princeton.EDU - address 172.18.3.64 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0959 - alias cy24-0959.Princeton.EDU - address 172.18.192.78 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0976 - alias cy24-0976.Princeton.EDU - address 172.18.33.10 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0982 - alias cy24-0982.Princeton.EDU - address 172.18.0.118 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1024 - alias cy24-1024.Princeton.EDU - address 172.18.2.106 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1026 - alias cy24-1026.Princeton.EDU - address 172.18.194.38 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1027 - alias cy24-1027.Princeton.EDU - address 172.18.1.94 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1028 - alias cy24-1028.Princeton.EDU - address 172.18.1.115 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1043 - alias cy24-1043.Princeton.EDU - address 172.18.192.61 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1044 - alias cy24-1044.Princeton.EDU - address 172.18.33.113 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1045 - alias cy24-1045.Princeton.EDU - address 172.18.33.127 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1046 - alias cy24-1046.Princeton.EDU - address 172.18.192.207 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1052 - alias cy24-1052.Princeton.EDU - address 172.18.32.246 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1068 - alias cy24-1068.Princeton.EDU - address 172.18.3.151 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1069 - alias cy24-1069.Princeton.EDU - address 172.18.194.66 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1078 - alias cy24-1078.Princeton.EDU - address 172.18.0.53 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1083 - alias cy24-1083.Princeton.EDU - address 172.18.3.65 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1102 - alias cy24-1102.Princeton.EDU - address 172.18.3.76 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1127 - alias cy24-1127.Princeton.EDU - address 172.18.194.106 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1130 - alias cy24-1130.Princeton.EDU - address 172.18.3.63 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1141 - alias cy24-1141.Princeton.EDU - address 172.18.3.92 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1156 - alias cy24-1156.Princeton.EDU - address 172.18.194.129 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1174 - alias cy24-1174.Princeton.EDU - address 172.18.32.218 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1197 - alias cy24-1197.Princeton.EDU - address 172.18.3.98 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1200 - alias cy24-1200.Princeton.EDU - address 172.18.2.234 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1201 - alias cy24-1201.Princeton.EDU - address 172.18.192.72 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1204 - alias cy24-1204.Princeton.EDU - address 172.18.1.227 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1253 - alias cy24-1253.Princeton.EDU - address 172.18.3.125 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1273 - alias cy24-1273.Princeton.EDU - address 172.18.0.24 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1288 - alias cy24-1288.Princeton.EDU - address 172.18.2.134 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1329 - alias cy24-1329.Princeton.EDU - address 172.18.3.53 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1330 - alias cy24-1330.Princeton.EDU - address 172.18.3.40 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1379 - alias cy24-1379.Princeton.EDU - address 172.18.192.44 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1380 - alias cy24-1380.Princeton.EDU - address 172.18.0.45 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1387 - alias cy24-1387.Princeton.EDU - address 172.18.3.52 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1418 - alias cy24-1418.Princeton.EDU - address 172.18.3.99 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1421 - alias cy24-1421.Princeton.EDU - address 172.18.3.3 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1425 - alias cy24-1425.Princeton.EDU - address 172.18.192.42 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1426 - alias cy24-1426.Princeton.EDU - address 172.18.3.142 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1431 - alias cy24-1431.Princeton.EDU - address 172.18.2.254 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1432 - alias cy24-1432.Princeton.EDU - address 172.18.3.22 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1433 - alias cy24-1433.Princeton.EDU - address 172.18.3.5 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1434 - alias cy24-1434.Princeton.EDU - address 172.18.3.6 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1437 - alias cy24-1437.Princeton.EDU - address 172.18.3.21 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0881 - alias cx24-0881.Princeton.EDU - address 172.18.193.207 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0924 - alias cy48-0924.Princeton.EDU - address 172.18.3.132 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0934 - alias cy48-0934.Princeton.EDU - address 172.18.2.54 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0951 - alias cy48-0951.Princeton.EDU - address 172.18.3.73 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0958 - alias cy48-0958.Princeton.EDU - address 172.18.2.60 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0977 - alias cy48-0977.Princeton.EDU - address 172.18.2.157 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0891 - alias cx48-0891.Princeton.EDU - address 172.18.1.186 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0895 - alias cx24-0895.Princeton.EDU - address 172.18.194.13 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0896 - alias cx24-0896.Princeton.EDU - address 172.18.192.145 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0897 - alias cx24-0897.Princeton.EDU - address 172.18.3.250 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0898 - alias cx24-0898.Princeton.EDU - address 172.18.4.233 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0902 - alias cx24-0902.Princeton.EDU - address 172.18.193.216 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0925 - alias cx48-0925.Princeton.EDU - address 172.18.193.194 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0929 - alias cx48-0929.Princeton.EDU - address 172.18.194.14 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0969 - alias cx24-0969.Princeton.EDU - address 172.18.193.225 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0973 - alias cx48-0973.Princeton.EDU - address 172.18.3.175 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-0975 - alias cx48-0975.Princeton.EDU - address 172.18.4.47 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0978 - alias cy48-0978.Princeton.EDU - address 172.18.1.223 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0979 - alias cy48-0979.Princeton.EDU - address 172.18.2.172 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0984 - alias cy48-0984.Princeton.EDU - address 172.18.3.115 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0987 - alias cy48-0987.Princeton.EDU - address 172.18.3.116 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0988 - alias cy48-0988.Princeton.EDU - address 172.18.3.117 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0989 - alias cy48-0989.Princeton.EDU - address 172.18.3.118 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0990 - alias cy48-0990.Princeton.EDU - address 172.18.3.119 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0999 - alias cy48-0999.Princeton.EDU - address 172.18.32.134 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1007 - alias cy48-1007.Princeton.EDU - address 172.18.33.106 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1016 - alias cy48-1016.Princeton.EDU - address 172.18.2.107 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1017 - alias cy48-1017.Princeton.EDU - address 172.18.2.137 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1018 - alias cy48-1018.Princeton.EDU - address 172.18.2.139 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1019 - alias cy48-1019.Princeton.EDU - address 172.18.2.43 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1029 - alias cy48-1029.Princeton.EDU - address 172.18.1.8 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0991 - alias cx24-0991.Princeton.EDU - address 172.18.192.163 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-0996 - alias cx24-0996.Princeton.EDU - address 172.18.192.122 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-1008 - alias cx48-1008.Princeton.EDU - address 172.18.2.36 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-1009 - alias cx48-1009.Princeton.EDU - address 172.18.1.239 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1014 - alias cx24-1014.Princeton.EDU - address 172.18.192.123 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1031 - alias cx24-1031.Princeton.EDU - address 172.18.193.203 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1032 - alias cx24-1032.Princeton.EDU - address 172.18.193.204 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-1033 - alias cx48-1033.Princeton.EDU - address 172.18.193.205 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1034 - alias cy48-1034.Princeton.EDU - address 172.18.3.123 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1036 - alias cy48-1036.Princeton.EDU - address 172.18.33.22 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1037 - alias cy48-1037.Princeton.EDU - address 172.18.32.58 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1040 - alias cy48-1040.Princeton.EDU - address 172.18.32.41 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1051 - alias cy48-1051.Princeton.EDU - address 172.18.1.210 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1056 - alias cy48-1056.Princeton.EDU - address 172.18.32.49 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1058 - alias cy48-1058.Princeton.EDU - address 172.18.32.235 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1060 - alias cy48-1060.Princeton.EDU - address 172.18.32.51 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1064 - alias cy48-1064.Princeton.EDU - address 172.18.4.81 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1042 - alias cx24-1042.Princeton.EDU - address 172.18.193.199 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1048 - alias cx24-1048.Princeton.EDU - address 172.18.192.128 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1067 - alias cy48-1067.Princeton.EDU - address 172.18.3.70 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1071 - alias cy48-1071.Princeton.EDU - address 172.18.4.70 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1074 - alias cy48-1074.Princeton.EDU - address 172.18.1.86 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1072 - alias cx24-1072.Princeton.EDU - address 172.18.193.229 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1084 - alias cy48-1084.Princeton.EDU - address 172.18.0.14 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1085 - alias cy48-1085.Princeton.EDU - address 172.18.32.66 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1086 - alias cy48-1086.Princeton.EDU - address 172.18.32.63 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1090 - alias cy48-1090.Princeton.EDU - address 172.18.32.54 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1092 - alias cy48-1092.Princeton.EDU - address 172.18.33.29 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1093 - alias cy48-1093.Princeton.EDU - address 172.18.33.30 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1094 - alias cy48-1094.Princeton.EDU - address 172.18.33.54 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1095 - alias cy48-1095.Princeton.EDU - address 172.18.33.55 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1096 - alias cy48-1096.Princeton.EDU - address 172.18.33.56 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1097 - alias cy48-1097.Princeton.EDU - address 172.18.33.51 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1098 - alias cy48-1098.Princeton.EDU - address 172.18.33.52 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1099 - alias cy48-1099.Princeton.EDU - address 172.18.33.53 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1110 - alias cy48-1110.Princeton.EDU - address 172.18.0.177 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1104 - alias cx24-1104.Princeton.EDU - address 172.18.193.252 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1105 - alias cx24-1105.Princeton.EDU - address 172.18.193.184 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1106 - alias cx24-1106.Princeton.EDU - address 172.18.194.1 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1107 - alias cx24-1107.Princeton.EDU - address 172.18.193.185 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1111 - alias cx24-1111.Princeton.EDU - address 172.18.193.12 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1112 - alias cx24-1112.Princeton.EDU - address 172.18.193.15 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1115 - alias cx24-1115.Princeton.EDU - address 172.18.193.186 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1116 - alias cx24-1116.Princeton.EDU - address 172.18.193.218 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1117 - alias cx24-1117.Princeton.EDU - address 172.18.193.223 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1118 - alias cx24-1118.Princeton.EDU - address 172.18.193.224 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1123 - alias cx24-1123.Princeton.EDU - address 172.18.193.187 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1124 - alias cx24-1124.Princeton.EDU - address 172.18.193.191 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-1125 - alias cx48-1125.Princeton.EDU - address 172.18.4.129 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1126 - alias cx24-1126.Princeton.EDU - address 172.18.192.121 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1128 - alias cx24-1128.Princeton.EDU - address 172.18.193.250 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1129 - alias cx24-1129.Princeton.EDU - address 172.18.193.188 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1131 - alias cy48-1131.Princeton.EDU - address 172.18.33.50 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1132 - alias cy48-1132.Princeton.EDU - address 172.18.1.221 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1147 - alias cy48-1147.Princeton.EDU - address 172.18.4.98 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1149 - alias cy48-1149.Princeton.EDU - address 172.18.4.110 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1134 - alias cx24-1134.Princeton.EDU - address 172.18.193.21 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1135 - alias cx24-1135.Princeton.EDU - address 172.18.193.22 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1136 - alias cx24-1136.Princeton.EDU - address 172.18.193.23 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1139 - alias cx24-1139.Princeton.EDU - address 172.18.193.84 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1143 - alias cx24-1143.Princeton.EDU - address 172.18.193.200 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1146 - alias cx24-1146.Princeton.EDU - address 172.18.193.198 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1154 - alias cy48-1154.Princeton.EDU - address 172.18.33.31 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1155 - alias cy48-1155.Princeton.EDU - address 172.18.33.32 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1157 - alias cy48-1157.Princeton.EDU - address 172.18.33.57 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1163 - alias cy48-1163.Princeton.EDU - address 172.18.32.117 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1165 - alias cy48-1165.Princeton.EDU - address 172.18.32.99 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1167 - alias cy48-1167.Princeton.EDU - address 172.18.32.98 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1171 - alias cy48-1171.Princeton.EDU - address 172.18.32.166 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1175 - alias cy48-1175.Princeton.EDU - address 172.18.32.164 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1177 - alias cy48-1177.Princeton.EDU - address 172.18.32.165 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1183 - alias cy48-1183.Princeton.EDU - address 172.18.33.107 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1186 - alias cy48-1186.Princeton.EDU - address 172.18.33.109 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1187 - alias cy48-1187.Princeton.EDU - address 172.18.33.108 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1189 - alias cy48-1189.Princeton.EDU - address 172.18.4.111 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1191 - alias cy48-1191.Princeton.EDU - address 172.18.32.130 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1194 - alias cy48-1194.Princeton.EDU - address 172.18.32.144 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1195 - alias cy48-1195.Princeton.EDU - address 172.18.32.137 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1196 - alias cy48-1196.Princeton.EDU - address 172.18.32.138 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1205 - alias cy48-1205.Princeton.EDU - address 172.18.3.79 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1256 - alias cy48-1256.Princeton.EDU - address 172.18.1.209 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1261 - alias cy48-1261.Princeton.EDU - address 172.18.3.71 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1281 - alias cy48-1281.Princeton.EDU - address 172.18.3.84 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1292 - alias cy48-1292.Princeton.EDU - address 172.18.0.100 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1169 - alias cx24-1169.Princeton.EDU - address 172.18.193.251 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1214 - alias cx24-1214.Princeton.EDU - address 172.18.193.139 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1217 - alias cx24-1217.Princeton.EDU - address 172.18.193.149 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1218 - alias cx24-1218.Princeton.EDU - address 172.18.193.150 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1220 - alias cx24-1220.Princeton.EDU - address 172.18.192.16 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1222 - alias cx24-1222.Princeton.EDU - address 172.18.192.17 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1224 - alias cx24-1224.Princeton.EDU - address 172.18.192.241 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1225 - alias cx24-1225.Princeton.EDU - address 172.18.192.242 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1233 - alias cx24-1233.Princeton.EDU - address 172.18.192.248 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1234 - alias cx24-1234.Princeton.EDU - address 172.18.192.249 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1235 - alias cx24-1235.Princeton.EDU - address 172.18.192.251 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1236 - alias cx24-1236.Princeton.EDU - address 172.18.192.252 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1237 - alias cx24-1237.Princeton.EDU - address 172.18.192.246 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1238 - alias cx24-1238.Princeton.EDU - address 172.18.192.253 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1239 - alias cx24-1239.Princeton.EDU - address 172.18.192.254 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1240 - alias cx24-1240.Princeton.EDU - address 172.18.193.2 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1241 - alias cx24-1241.Princeton.EDU - address 172.18.193.138 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-1246 - alias cx48-1246.Princeton.EDU - address 172.18.1.3 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-1247 - alias cx48-1247.Princeton.EDU - address 172.18.1.254 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1249 - alias cx24-1249.Princeton.EDU - address 172.18.193.151 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1250 - alias cx24-1250.Princeton.EDU - address 172.18.2.38 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-1254 - alias cx48-1254.Princeton.EDU - address 172.18.5.43 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1270 - alias cx24-1270.Princeton.EDU - address 172.18.193.87 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1271 - alias cx24-1271.Princeton.EDU - address 172.18.193.88 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1272 - alias cx24-1272.Princeton.EDU - address 172.18.193.86 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1283 - alias cx24-1283.Princeton.EDU - address 172.18.193.20 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1290 - alias cx24-1290.Princeton.EDU - address 172.18.192.130 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1291 - alias cx24-1291.Princeton.EDU - address 172.18.192.131 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1295 - alias cx24-1295.Princeton.EDU - address 172.18.193.132 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1296 - alias cy48-1296.Princeton.EDU - address 172.18.4.153 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1337 - alias cy48-1337.Princeton.EDU - address 172.18.32.103 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1339 - alias cy48-1339.Princeton.EDU - address 172.18.32.122 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1340 - alias cy48-1340.Princeton.EDU - address 172.18.32.91 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1342 - alias cy48-1342.Princeton.EDU - address 172.18.32.124 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1364 - alias cy48-1364.Princeton.EDU - address 172.18.1.158 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1406 - alias cy48-1406.Princeton.EDU - address 172.18.1.249 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1407 - alias cy48-1407.Princeton.EDU - address 172.18.1.251 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1422 - alias cy48-1422.Princeton.EDU - address 172.18.4.39 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1460 - alias cy48-1460.Princeton.EDU - address 172.18.0.88 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1476 - alias cy48-1476.Princeton.EDU - address 172.18.3.77 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1478 - alias cy48-1478.Princeton.EDU - address 172.18.4.2 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-1299 - alias cx48-1299.Princeton.EDU - address 172.18.0.229 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1302 - alias cx24-1302.Princeton.EDU - address 172.18.192.191 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1305 - alias cx24-1305.Princeton.EDU - address 172.18.193.154 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1306 - alias cx24-1306.Princeton.EDU - address 172.18.193.155 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1307 - alias cx24-1307.Princeton.EDU - address 172.18.193.156 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-1310 - alias cx48-1310.Princeton.EDU - address 172.18.4.123 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1312 - alias cx24-1312.Princeton.EDU - address 172.18.192.23 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1317 - alias cx24-1317.Princeton.EDU - address 172.18.192.159 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1318 - alias cx24-1318.Princeton.EDU - address 172.18.192.168 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1344 - alias cx24-1344.Princeton.EDU - address 172.18.192.179 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1345 - alias cx24-1345.Princeton.EDU - address 172.18.192.149 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1346 - alias cx24-1346.Princeton.EDU - address 172.18.192.151 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1351 - alias cx24-1351.Princeton.EDU - address 172.18.192.180 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1352 - alias cx24-1352.Princeton.EDU - address 172.18.192.183 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1353 - alias cx24-1353.Princeton.EDU - address 172.18.192.181 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1354 - alias cx24-1354.Princeton.EDU - address 172.18.192.182 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1377 - alias cx24-1377.Princeton.EDU - address 172.18.193.48 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-1390 - alias cx48-1390.Princeton.EDU - address 172.18.4.165 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-1489 - alias cx48-1489.Princeton.EDU - address 172.18.2.216 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1428 - alias cx24-1428.Princeton.EDU - address 172.18.192.204 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name ca24-1447 - alias ca24-1447.Princeton.EDU - address 172.18.32.82 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1448 - alias cy24-1448.Princeton.EDU - address 172.18.32.26 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1449 - alias cy24-1449.Princeton.EDU - address 172.18.32.31 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1450 - alias cy24-1450.Princeton.EDU - address 172.18.32.77 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1451 - alias cy24-1451.Princeton.EDU - address 172.18.32.79 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1452 - alias cy24-1452.Princeton.EDU - address 172.18.32.80 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1453 - alias cy24-1453.Princeton.EDU - address 172.18.32.81 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1455 - alias cy24-1455.Princeton.EDU - address 172.18.192.52 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1456 - alias cy24-1456.Princeton.EDU - address 172.18.194.55 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1457 - alias cy24-1457.Princeton.EDU - address 172.18.194.56 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1458 - alias cy24-1458.Princeton.EDU - address 172.18.192.53 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1459 - alias cy24-1459.Princeton.EDU - address 172.18.194.54 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1461 - alias cy24-1461.Princeton.EDU - address 172.18.32.114 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1462 - alias cy24-1462.Princeton.EDU - address 172.18.32.133 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1463 - alias cy24-1463.Princeton.EDU - address 172.18.32.106 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1464 - alias cy24-1464.Princeton.EDU - address 172.18.32.107 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1466 - alias cy24-1466.Princeton.EDU - address 172.18.32.102 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1468 - alias cy24-1468.Princeton.EDU - address 172.18.32.116 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1473 - alias cy24-1473.Princeton.EDU - address 172.18.2.250 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1475 - alias cy24-1475.Princeton.EDU - address 172.18.192.39 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1512 - alias cy24-1512.Princeton.EDU - address 172.18.194.65 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1525 - alias cy24-1525.Princeton.EDU - address 172.18.194.76 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1548 - alias cy24-1548.Princeton.EDU - address 172.18.194.73 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1594 - alias cy24-1594.Princeton.EDU - address 172.18.192.79 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1624 - alias cy24-1624.Princeton.EDU - address 172.18.2.121 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1625 - alias cy24-1625.Princeton.EDU - address 172.18.2.122 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1626 - alias cy24-1626.Princeton.EDU - address 172.18.192.25 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1632 - alias cy24-1632.Princeton.EDU - address 172.18.1.182 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1652 - alias cy24-1652.Princeton.EDU - address 172.18.192.24 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1653 - alias cy24-1653.Princeton.EDU - address 172.18.194.103 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1659 - alias cy24-1659.Princeton.EDU - address 172.18.192.89 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1662 - alias cy24-1662.Princeton.EDU - address 172.18.192.90 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1664 - alias cy24-1664.Princeton.EDU - address 172.18.192.215 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1666 - alias cy24-1666.Princeton.EDU - address 172.18.1.200 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1682 - alias cy24-1682.Princeton.EDU - address 172.18.3.221 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1685 - alias cy24-1685.Princeton.EDU - address 172.18.194.108 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1686 - alias cy24-1686.Princeton.EDU - address 172.18.2.118 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1695 - alias cy24-1695.Princeton.EDU - address 172.18.192.138 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1704 - alias cy24-1704.Princeton.EDU - address 172.18.192.28 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1706 - alias cy24-1706.Princeton.EDU - address 172.18.32.78 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1725 - alias cy24-1725.Princeton.EDU - address 172.18.2.16 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1756 - alias cy24-1756.Princeton.EDU - address 172.18.193.6 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1757 - alias cy24-1757.Princeton.EDU - address 172.18.194.16 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1758 - alias cy24-1758.Princeton.EDU - address 172.18.194.19 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1759 - alias cy24-1759.Princeton.EDU - address 172.18.194.137 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1760 - alias cy24-1760.Princeton.EDU - address 172.18.194.24 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1769 - alias cy24-1769.Princeton.EDU - address 172.18.194.105 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1905 - alias cy24-1905.Princeton.EDU - address 172.18.3.186 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1907 - alias cy24-1907.Princeton.EDU - address 172.18.2.27 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1908 - alias cy24-1908.Princeton.EDU - address 172.18.2.113 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1916 - alias cy24-1916.Princeton.EDU - address 172.18.192.177 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-1495 - alias cx48-1495.Princeton.EDU - address 172.18.2.77 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-1496 - alias cx48-1496.Princeton.EDU - address 172.18.192.115 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1502 - alias cy48-1502.Princeton.EDU - address 172.18.0.224 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1503 - alias cy48-1503.Princeton.EDU - address 172.18.0.223 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1504 - alias cy48-1504.Princeton.EDU - address 172.18.0.220 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1505 - alias cy48-1505.Princeton.EDU - address 172.18.0.225 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1510 - alias cy48-1510.Princeton.EDU - address 172.18.1.18 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1517 - alias cy48-1517.Princeton.EDU - address 172.18.3.236 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1528 - alias cy48-1528.Princeton.EDU - address 172.18.1.74 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1549 - alias cy48-1549.Princeton.EDU - address 172.18.32.40 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1556 - alias cy48-1556.Princeton.EDU - address 172.18.32.53 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1593 - alias cy48-1593.Princeton.EDU - address 172.18.1.50 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1616 - alias cy48-1616.Princeton.EDU - address 172.18.194.112 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1618 - alias cy48-1618.Princeton.EDU - address 172.18.2.182 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1619 - alias cy48-1619.Princeton.EDU - address 172.18.3.27 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1621 - alias cy48-1621.Princeton.EDU - address 172.18.3.12 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1627 - alias cy48-1627.Princeton.EDU - address 172.18.1.127 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1643 - alias cy48-1643.Princeton.EDU - address 172.18.1.76 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1651 - alias cy48-1651.Princeton.EDU - address 172.18.4.79 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1655 - alias cy48-1655.Princeton.EDU - address 172.18.0.150 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1660 - alias cy48-1660.Princeton.EDU - address 172.18.3.37 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1678 - alias cy48-1678.Princeton.EDU - address 172.18.3.241 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1684 - alias cy48-1684.Princeton.EDU - address 172.18.2.184 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1693 - alias cy48-1693.Princeton.EDU - address 172.18.1.22 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1694 - alias cy48-1694.Princeton.EDU - address 172.18.0.42 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1696 - alias cy48-1696.Princeton.EDU - address 172.18.2.37 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1700 - alias cy48-1700.Princeton.EDU - address 172.18.1.16 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1705 - alias cy48-1705.Princeton.EDU - address 172.18.3.211 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1718 - alias cy48-1718.Princeton.EDU - address 172.18.1.241 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1720 - alias cy48-1720.Princeton.EDU - address 172.18.1.236 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1726 - alias cy48-1726.Princeton.EDU - address 172.18.1.152 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1740 - alias cy48-1740.Princeton.EDU - address 172.18.3.54 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1741 - alias cy48-1741.Princeton.EDU - address 172.18.2.235 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-1515 - alias cx48-1515.Princeton.EDU - address 172.18.2.71 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1519 - alias cx24-1519.Princeton.EDU - address 172.18.192.170 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1526 - alias cx24-1526.Princeton.EDU - address 172.18.192.174 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1527 - alias cx24-1527.Princeton.EDU - address 172.18.192.157 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1532 - alias cx24-1532.Princeton.EDU - address 172.18.193.18 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name ca24-1540 - alias ca24-1540.Princeton.EDU - address 172.18.0.219 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name ca24-2495 - alias ca24-2495.Princeton.EDU - address 172.18.192.108 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name ca24-2960 - alias ca24-2960.Princeton.EDU - address 172.18.2.141 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1546 - alias cx24-1546.Princeton.EDU - address 172.18.192.164 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1547 - alias cx24-1547.Princeton.EDU - address 172.18.192.162 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1550 - alias cx24-1550.Princeton.EDU - address 172.18.192.143 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1552 - alias cx24-1552.Princeton.EDU - address 172.18.193.195 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1553 - alias cx24-1553.Princeton.EDU - address 172.18.193.196 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1554 - alias cx24-1554.Princeton.EDU - address 172.18.193.197 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name ct32-1589 - alias ct32-1589.Princeton.EDU - address 172.18.4.245 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-1590 - alias cx48-1590.Princeton.EDU - address 172.18.3.191 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1595 - alias cx24-1595.Princeton.EDU - address 172.18.4.102 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1602 - alias cx24-1602.Princeton.EDU - address 172.18.192.194 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1603 - alias cx24-1603.Princeton.EDU - address 172.18.192.193 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1604 - alias cx24-1604.Princeton.EDU - address 172.18.192.192 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1605 - alias cx24-1605.Princeton.EDU - address 172.18.192.41 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1606 - alias cx24-1606.Princeton.EDU - address 172.18.193.29 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1607 - alias cx24-1607.Princeton.EDU - address 172.18.193.30 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1608 - alias cx24-1608.Princeton.EDU - address 172.18.193.31 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1610 - alias cx24-1610.Princeton.EDU - address 172.18.193.37 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1611 - alias cx24-1611.Princeton.EDU - address 172.18.193.38 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1612 - alias cx24-1612.Princeton.EDU - address 172.18.193.39 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1613 - alias cx24-1613.Princeton.EDU - address 172.18.193.40 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1614 - alias cx24-1614.Princeton.EDU - address 172.18.193.41 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1615 - alias cx24-1615.Princeton.EDU - address 172.18.193.42 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1629 - alias cx24-1629.Princeton.EDU - address 172.18.193.172 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-1644 - alias cx48-1644.Princeton.EDU - address 172.18.5.62 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-1656 - alias cx48-1656.Princeton.EDU - address 172.18.1.202 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1646 - alias cx24-1646.Princeton.EDU - address 172.18.193.67 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1647 - alias cx24-1647.Princeton.EDU - address 172.18.193.68 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1657 - alias cx24-1657.Princeton.EDU - address 172.18.0.21 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1665 - alias cx24-1665.Princeton.EDU - address 172.18.193.69 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1667 - alias cx24-1667.Princeton.EDU - address 172.18.193.70 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1669 - alias cx24-1669.Princeton.EDU - address 172.18.193.75 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1670 - alias cx24-1670.Princeton.EDU - address 172.18.193.76 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1671 - alias cx24-1671.Princeton.EDU - address 172.18.193.110 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1673 - alias cx24-1673.Princeton.EDU - address 172.18.192.221 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1675 - alias cx24-1675.Princeton.EDU - address 172.18.193.111 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1676 - alias cx24-1676.Princeton.EDU - address 172.18.193.112 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1677 - alias cx24-1677.Princeton.EDU - address 172.18.193.79 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-1680 - alias cx48-1680.Princeton.EDU - address 172.18.4.182 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1681 - alias cx24-1681.Princeton.EDU - address 172.18.193.80 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-1707 - alias cx48-1707.Princeton.EDU - address 172.18.5.19 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1708 - alias cx24-1708.Princeton.EDU - address 172.18.193.81 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1713 - alias cx24-1713.Princeton.EDU - address 172.18.192.125 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1715 - alias cx24-1715.Princeton.EDU - address 172.18.192.29 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1724 - alias cx24-1724.Princeton.EDU - address 172.18.193.82 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1727 - alias cx24-1727.Princeton.EDU - address 172.18.193.85 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1728 - alias cx24-1728.Princeton.EDU - address 172.18.193.100 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1730 - alias cx24-1730.Princeton.EDU - address 172.18.193.52 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1731 - alias cx24-1731.Princeton.EDU - address 172.18.193.53 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1732 - alias cx24-1732.Princeton.EDU - address 172.18.193.54 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1735 - alias cx24-1735.Princeton.EDU - address 172.18.193.55 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1736 - alias cx24-1736.Princeton.EDU - address 172.18.193.56 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1737 - alias cx24-1737.Princeton.EDU - address 172.18.193.57 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1738 - alias cx24-1738.Princeton.EDU - address 172.18.193.58 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1739 - alias cx24-1739.Princeton.EDU - address 172.18.193.59 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1883 - alias cx24-1883.Princeton.EDU - address 172.18.193.190 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1902 - alias cx24-1902.Princeton.EDU - address 172.18.193.176 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1903 - alias cy48-1903.Princeton.EDU - address 172.18.3.200 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1928 - alias cy48-1928.Princeton.EDU - address 172.18.32.67 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1929 - alias cy48-1929.Princeton.EDU - address 172.18.33.20 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1909 - alias cx24-1909.Princeton.EDU - address 172.18.193.206 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name ct16-1921 - alias ct16-1921.Princeton.EDU - address 172.18.5.14 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1931 - alias cy48-1931.Princeton.EDU - address 172.18.4.154 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1953 - alias cy48-1953.Princeton.EDU - address 172.18.32.48 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1954 - alias cy48-1954.Princeton.EDU - address 172.18.32.42 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1955 - alias cy48-1955.Princeton.EDU - address 172.18.33.24 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1946 - alias cx24-1946.Princeton.EDU - address 172.18.4.32 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name ct16-2426 - alias ct16-2426.Princeton.EDU - address 172.18.0.169 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1961 - alias cy48-1961.Princeton.EDU - address 172.18.1.234 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1962 - alias cy48-1962.Princeton.EDU - address 172.18.0.210 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1963 - alias cy48-1963.Princeton.EDU - address 172.18.2.47 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1965 - alias cy48-1965.Princeton.EDU - address 172.18.2.92 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1966 - alias cy48-1966.Princeton.EDU - address 172.18.1.67 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1967 - alias cy48-1967.Princeton.EDU - address 172.18.2.97 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-1984 - alias cy48-1984.Princeton.EDU - address 172.18.0.26 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1970 - alias cy24-1970.Princeton.EDU - address 172.18.194.17 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1971 - alias cy24-1971.Princeton.EDU - address 172.18.194.23 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1972 - alias cy24-1972.Princeton.EDU - address 172.18.194.45 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1974 - alias cy24-1974.Princeton.EDU - address 172.18.194.41 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1979 - alias cy24-1979.Princeton.EDU - address 172.18.193.77 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-1985 - alias cy24-1985.Princeton.EDU - address 172.18.192.81 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-2013 - alias cy24-2013.Princeton.EDU - address 172.18.193.133 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-2031 - alias cy24-2031.Princeton.EDU - address 172.18.194.75 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-2035 - alias cy24-2035.Princeton.EDU - address 172.18.192.82 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-2048 - alias cy24-2048.Princeton.EDU - address 172.18.193.144 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-2049 - alias cy24-2049.Princeton.EDU - address 172.18.194.101 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-2061 - alias cy24-2061.Princeton.EDU - address 172.18.33.72 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-2125 - alias cy24-2125.Princeton.EDU - address 172.18.194.60 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-2139 - alias cy24-2139.Princeton.EDU - address 172.18.194.61 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-2174 - alias cy24-2174.Princeton.EDU - address 172.18.194.139 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-2211 - alias cy24-2211.Princeton.EDU - address 172.18.194.138 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-2225 - alias cy24-2225.Princeton.EDU - address 172.18.193.145 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-2232 - alias cy24-2232.Princeton.EDU - address 172.18.192.65 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-2234 - alias cy24-2234.Princeton.EDU - address 172.18.192.60 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-2235 - alias cy24-2235.Princeton.EDU - address 172.18.192.91 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-2236 - alias cy24-2236.Princeton.EDU - address 172.18.192.58 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-2238 - alias cy24-2238.Princeton.EDU - address 172.18.194.33 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-2239 - alias cy24-2239.Princeton.EDU - address 172.18.194.35 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-2240 - alias cy24-2240.Princeton.EDU - address 172.18.192.68 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-2241 - alias cy24-2241.Princeton.EDU - address 172.18.192.59 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-2242 - alias cy24-2242.Princeton.EDU - address 172.18.192.67 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-2243 - alias cy24-2243.Princeton.EDU - address 172.18.194.31 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-2244 - alias cy24-2244.Princeton.EDU - address 172.18.192.69 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-2252 - alias cy24-2252.Princeton.EDU - address 172.18.192.66 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-2278 - alias cy24-2278.Princeton.EDU - address 172.18.192.34 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-2283 - alias cy24-2283.Princeton.EDU - address 172.18.1.36 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-2314 - alias cy24-2314.Princeton.EDU - address 172.18.194.85 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-2323 - alias cy24-2323.Princeton.EDU - address 172.18.194.67 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-2325 - alias cy24-2325.Princeton.EDU - address 172.18.0.76 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-2328 - alias cy24-2328.Princeton.EDU - address 172.18.194.44 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-2347 - alias cy24-2347.Princeton.EDU - address 172.18.194.88 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-2364 - alias cy24-2364.Princeton.EDU - address 172.18.32.191 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-2370 - alias cy24-2370.Princeton.EDU - address 172.18.32.198 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-2371 - alias cy24-2371.Princeton.EDU - address 172.18.32.192 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-2415 - alias cy24-2415.Princeton.EDU - address 172.18.3.36 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-2465 - alias cy24-2465.Princeton.EDU - address 172.18.192.113 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-2466 - alias cy24-2466.Princeton.EDU - address 172.18.192.114 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-2467 - alias cy24-2467.Princeton.EDU - address 172.18.192.211 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-2468 - alias cy24-2468.Princeton.EDU - address 172.18.193.10 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-2494 - alias cy24-2494.Princeton.EDU - address 172.18.192.12 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-2505 - alias cy24-2505.Princeton.EDU - address 172.18.33.45 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-2506 - alias cy24-2506.Princeton.EDU - address 172.18.0.172 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-2530 - alias cy24-2530.Princeton.EDU - address 172.18.194.125 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-2531 - alias cy24-2531.Princeton.EDU - address 172.18.194.126 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-2550 - alias cy24-2550.Princeton.EDU - address 172.18.0.200 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-2641 - alias cy24-2641.Princeton.EDU - address 172.18.194.100 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-2799 - alias cy24-2799.Princeton.EDU - address 172.18.194.95 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-2800 - alias cy24-2800.Princeton.EDU - address 172.18.194.84 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-2950 - alias cy24-2950.Princeton.EDU - address 172.18.194.107 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-2952 - alias cy24-2952.Princeton.EDU - address 172.18.194.80 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-2953 - alias cy24-2953.Princeton.EDU - address 172.18.194.90 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-2954 - alias cy24-2954.Princeton.EDU - address 172.18.194.89 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-3031 - alias cy24-3031.Princeton.EDU - address 172.18.194.52 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-csips-inside - alias cy24-csips-inside.Princeton.EDU - address 172.20.32.15 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-csips-outside - alias cy24-csips-outside.Princeton.EDU - address 172.20.32.16 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0004 - alias cy48-0004.Princeton.EDU - address 172.18.32.121 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0008 - alias cy48-0008.Princeton.EDU - address 172.18.0.104 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-0015 - alias cy48-0015.Princeton.EDU - address 172.18.1.113 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-1981 - alias cx48-1981.Princeton.EDU - address 172.18.4.150 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1982 - alias cx24-1982.Princeton.EDU - address 172.18.193.215 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1983 - alias cx24-1983.Princeton.EDU - address 172.18.194.51 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1992 - alias cx24-1992.Princeton.EDU - address 172.18.192.14 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1993 - alias cx24-1993.Princeton.EDU - address 172.18.193.115 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1994 - alias cx24-1994.Princeton.EDU - address 172.18.193.116 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-1995 - alias cx48-1995.Princeton.EDU - address 172.18.192.225 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1996 - alias cx24-1996.Princeton.EDU - address 172.18.193.119 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1997 - alias cx24-1997.Princeton.EDU - address 172.18.193.121 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1998 - alias cx24-1998.Princeton.EDU - address 172.18.193.118 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-1999 - alias cx24-1999.Princeton.EDU - address 172.18.193.120 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2000 - alias cx24-2000.Princeton.EDU - address 172.18.193.122 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-2002 - alias cx48-2002.Princeton.EDU - address 172.18.193.134 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2018 - alias cy48-2018.Princeton.EDU - address 172.18.0.50 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2030 - alias cy48-2030.Princeton.EDU - address 172.18.0.214 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2063 - alias cy48-2063.Princeton.EDU - address 172.18.0.30 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2095 - alias cy48-2095.Princeton.EDU - address 172.18.32.132 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2105 - alias cy48-2105.Princeton.EDU - address 172.18.33.25 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2110 - alias cy48-2110.Princeton.EDU - address 172.18.2.142 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2111 - alias cy48-2111.Princeton.EDU - address 172.18.194.131 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2112 - alias cy48-2112.Princeton.EDU - address 172.18.194.15 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2113 - alias cy48-2113.Princeton.EDU - address 172.18.194.36 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-2027 - alias cx48-2027.Princeton.EDU - address 172.18.33.8 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2076 - alias cx24-2076.Princeton.EDU - address 172.18.192.150 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2079 - alias cx24-2079.Princeton.EDU - address 172.18.193.11 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2086 - alias cx24-2086.Princeton.EDU - address 172.18.192.142 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2096 - alias cx24-2096.Princeton.EDU - address 172.18.192.176 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2098 - alias cx24-2098.Princeton.EDU - address 172.18.192.196 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2171 - alias cx24-2171.Princeton.EDU - address 172.18.192.198 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2186 - alias cy48-2186.Princeton.EDU - address 172.18.3.185 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2208 - alias cy48-2208.Princeton.EDU - address 172.18.1.33 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2188 - alias cx24-2188.Princeton.EDU - address 172.18.193.253 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-2210 - alias cx48-2210.Princeton.EDU - address 172.18.1.24 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2213 - alias cx24-2213.Princeton.EDU - address 172.18.193.13 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2215 - alias cx24-2215.Princeton.EDU - address 172.18.193.217 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2219 - alias cx24-2219.Princeton.EDU - address 172.18.193.247 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2221 - alias cy48-2221.Princeton.EDU - address 172.18.1.222 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2222 - alias cy48-2222.Princeton.EDU - address 172.18.2.105 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2249 - alias cy48-2249.Princeton.EDU - address 172.18.1.14 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2253 - alias cy48-2253.Princeton.EDU - address 172.18.3.190 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2257 - alias cy48-2257.Princeton.EDU - address 172.18.3.196 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2260 - alias cy48-2260.Princeton.EDU - address 172.18.3.219 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2262 - alias cy48-2262.Princeton.EDU - address 172.18.3.233 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2264 - alias cy48-2264.Princeton.EDU - address 172.18.3.192 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2266 - alias cy48-2266.Princeton.EDU - address 172.18.3.199 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2268 - alias cy48-2268.Princeton.EDU - address 172.18.3.226 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2272 - alias cy48-2272.Princeton.EDU - address 172.18.3.195 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2274 - alias cy48-2274.Princeton.EDU - address 172.18.3.213 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2279 - alias cy48-2279.Princeton.EDU - address 172.18.194.69 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2305 - alias cy48-2305.Princeton.EDU - address 172.18.2.140 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2308 - alias cy48-2308.Princeton.EDU - address 172.18.2.138 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2310 - alias cy48-2310.Princeton.EDU - address 172.18.2.136 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2311 - alias cy48-2311.Princeton.EDU - address 172.18.192.85 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2227 - alias cx24-2227.Princeton.EDU - address 172.18.193.157 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2228 - alias cx24-2228.Princeton.EDU - address 172.18.193.160 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2229 - alias cx24-2229.Princeton.EDU - address 172.18.193.158 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2230 - alias cx24-2230.Princeton.EDU - address 172.18.193.14 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2231 - alias cx24-2231.Princeton.EDU - address 172.18.193.159 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2281 - alias cx24-2281.Princeton.EDU - address 172.18.193.126 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2282 - alias cx24-2282.Princeton.EDU - address 172.18.193.127 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2299 - alias cx24-2299.Princeton.EDU - address 172.18.193.173 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2300 - alias cx24-2300.Princeton.EDU - address 172.18.193.237 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2301 - alias cx24-2301.Princeton.EDU - address 172.18.193.228 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2302 - alias cx24-2302.Princeton.EDU - address 172.18.193.227 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2312 - alias cy48-2312.Princeton.EDU - address 172.18.3.124 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2315 - alias cx24-2315.Princeton.EDU - address 172.18.192.140 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2318 - alias cy48-2318.Princeton.EDU - address 172.18.3.82 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2324 - alias cy48-2324.Princeton.EDU - address 172.18.3.67 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2330 - alias cy48-2330.Princeton.EDU - address 172.18.1.119 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2356 - alias cy48-2356.Princeton.EDU - address 172.18.0.158 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2357 - alias cy48-2357.Princeton.EDU - address 172.18.4.115 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2358 - alias cy48-2358.Princeton.EDU - address 172.18.4.103 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2361 - alias cy48-2361.Princeton.EDU - address 172.18.32.190 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2366 - alias cy48-2366.Princeton.EDU - address 172.18.32.196 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2369 - alias cy48-2369.Princeton.EDU - address 172.18.32.197 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2413 - alias cy48-2413.Princeton.EDU - address 172.18.1.120 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2414 - alias cy48-2414.Princeton.EDU - address 172.18.1.121 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2326 - alias cx24-2326.Princeton.EDU - address 172.18.194.4 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2329 - alias cx24-2329.Princeton.EDU - address 172.18.193.174 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2348 - alias cx24-2348.Princeton.EDU - address 172.18.193.170 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2352 - alias cx24-2352.Princeton.EDU - address 172.18.192.120 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2353 - alias cx24-2353.Princeton.EDU - address 172.18.193.24 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2374 - alias cx24-2374.Princeton.EDU - address 172.18.192.127 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2375 - alias cx24-2375.Princeton.EDU - address 172.18.192.126 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-2377 - alias cx48-2377.Princeton.EDU - address 172.18.4.193 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-2378 - alias cx48-2378.Princeton.EDU - address 172.18.4.212 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-2379 - alias cx48-2379.Princeton.EDU - address 172.18.4.209 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2380 - alias cx24-2380.Princeton.EDU - address 172.18.192.153 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2381 - alias cx24-2381.Princeton.EDU - address 172.18.192.169 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-2382 - alias cx48-2382.Princeton.EDU - address 172.18.4.215 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-2383 - alias cx48-2383.Princeton.EDU - address 172.18.4.216 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-2384 - alias cx48-2384.Princeton.EDU - address 172.18.4.220 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-2385 - alias cx48-2385.Princeton.EDU - address 172.18.4.219 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-2386 - alias cx48-2386.Princeton.EDU - address 172.18.4.223 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-2387 - alias cx48-2387.Princeton.EDU - address 172.18.4.200 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-2388 - alias cx48-2388.Princeton.EDU - address 172.18.4.201 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-2389 - alias cx48-2389.Princeton.EDU - address 172.18.4.202 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-2390 - alias cx48-2390.Princeton.EDU - address 172.18.4.228 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-2391 - alias cx48-2391.Princeton.EDU - address 172.18.4.229 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-2392 - alias cx48-2392.Princeton.EDU - address 172.18.4.230 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2424 - alias cy48-2424.Princeton.EDU - address 172.18.2.155 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2427 - alias cy48-2427.Princeton.EDU - address 172.18.1.21 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2428 - alias cy48-2428.Princeton.EDU - address 172.18.1.23 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2431 - alias cy48-2431.Princeton.EDU - address 172.18.1.65 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2432 - alias cy48-2432.Princeton.EDU - address 172.18.1.64 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2433 - alias cy48-2433.Princeton.EDU - address 172.18.1.2 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2438 - alias cy48-2438.Princeton.EDU - address 172.18.1.5 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2439 - alias cy48-2439.Princeton.EDU - address 172.18.0.175 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2440 - alias cy48-2440.Princeton.EDU - address 172.18.0.204 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2447 - alias cy48-2447.Princeton.EDU - address 172.18.0.173 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2454 - alias cy48-2454.Princeton.EDU - address 172.18.2.40 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2456 - alias cy48-2456.Princeton.EDU - address 172.18.33.94 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2521 - alias cy48-2521.Princeton.EDU - address 172.18.3.120 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2523 - alias cy48-2523.Princeton.EDU - address 172.18.3.69 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2526 - alias cy48-2526.Princeton.EDU - address 172.18.3.157 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2529 - alias cy48-2529.Princeton.EDU - address 172.18.3.94 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2532 - alias cy48-2532.Princeton.EDU - address 172.18.3.184 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2535 - alias cy48-2535.Princeton.EDU - address 172.18.4.27 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2538 - alias cy48-2538.Princeton.EDU - address 172.18.4.44 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2541 - alias cy48-2541.Princeton.EDU - address 172.18.3.193 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2544 - alias cy48-2544.Princeton.EDU - address 172.18.4.78 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2547 - alias cy48-2547.Princeton.EDU - address 172.18.4.65 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2551 - alias cy48-2551.Princeton.EDU - address 172.18.4.48 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2564 - alias cy48-2564.Princeton.EDU - address 172.18.4.76 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2584 - alias cy48-2584.Princeton.EDU - address 172.18.1.92 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2585 - alias cy48-2585.Princeton.EDU - address 172.18.1.98 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2586 - alias cy48-2586.Princeton.EDU - address 172.18.1.131 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2587 - alias cy48-2587.Princeton.EDU - address 172.18.2.64 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2588 - alias cy48-2588.Princeton.EDU - address 172.18.1.129 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2589 - alias cy48-2589.Princeton.EDU - address 172.18.2.41 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2590 - alias cy48-2590.Princeton.EDU - address 172.18.1.204 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2591 - alias cy48-2591.Princeton.EDU - address 172.18.2.74 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2592 - alias cy48-2592.Princeton.EDU - address 172.18.2.91 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2593 - alias cy48-2593.Princeton.EDU - address 172.18.2.2 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2594 - alias cy48-2594.Princeton.EDU - address 172.18.1.154 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2595 - alias cy48-2595.Princeton.EDU - address 172.18.1.188 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2596 - alias cy48-2596.Princeton.EDU - address 172.18.1.244 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2597 - alias cy48-2597.Princeton.EDU - address 172.18.2.81 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2598 - alias cy48-2598.Princeton.EDU - address 172.18.1.193 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2642 - alias cy48-2642.Princeton.EDU - address 172.18.3.72 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2644 - alias cy48-2644.Princeton.EDU - address 172.18.1.147 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2645 - alias cy48-2645.Princeton.EDU - address 172.18.1.153 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-2998 - alias cy48-2998.Princeton.EDU - address 172.18.32.38 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-3004 - alias cy48-3004.Princeton.EDU - address 172.18.0.174 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-3005 - alias cy48-3005.Princeton.EDU - address 172.18.2.143 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-3016 - alias cy48-3016.Princeton.EDU - address 172.18.2.53 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2474 - alias cx24-2474.Princeton.EDU - address 172.18.193.171 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2487 - alias cx24-2487.Princeton.EDU - address 172.18.192.119 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2488 - alias cx24-2488.Princeton.EDU - address 172.18.192.118 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2489 - alias cx24-2489.Princeton.EDU - address 172.18.192.146 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2508 - alias cx24-2508.Princeton.EDU - address 172.18.194.30 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2509 - alias cx24-2509.Princeton.EDU - address 172.18.194.48 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2510 - alias cx24-2510.Princeton.EDU - address 172.18.194.32 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2511 - alias cx24-2511.Princeton.EDU - address 172.18.193.208 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2563 - alias cx24-2563.Princeton.EDU - address 172.18.193.161 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2575 - alias cx24-2575.Princeton.EDU - address 172.18.194.3 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2576 - alias cx24-2576.Princeton.EDU - address 172.18.194.5 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2630 - alias cx24-2630.Princeton.EDU - address 172.18.192.229 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2631 - alias cx24-2631.Princeton.EDU - address 172.18.192.230 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2632 - alias cx24-2632.Princeton.EDU - address 172.18.192.231 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2633 - alias cx24-2633.Princeton.EDU - address 172.18.192.232 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2634 - alias cx24-2634.Princeton.EDU - address 172.18.192.233 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2635 - alias cx24-2635.Princeton.EDU - address 172.18.192.234 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2636 - alias cx24-2636.Princeton.EDU - address 172.18.192.235 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2637 - alias cx24-2637.Princeton.EDU - address 172.18.192.236 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2638 - alias cx24-2638.Princeton.EDU - address 172.18.192.237 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2639 - alias cx24-2639.Princeton.EDU - address 172.18.192.238 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2647 - alias cx24-2647.Princeton.EDU - address 172.18.193.236 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-2891 - alias cx24-2891.Princeton.EDU - address 172.18.192.224 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-2916 - alias cx48-2916.Princeton.EDU - address 172.18.5.79 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-3006 - alias cx48-3006.Princeton.EDU - address 172.18.4.239 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx48-701-lab - alias cx48-701-lab.Princeton.EDU - address 172.18.0.182 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0003 - alias cy24-0003.Princeton.EDU - address 172.18.33.37 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0020 - alias cy24-0020.Princeton.EDU - address 172.18.32.57 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0025 - alias cy24-0025.Princeton.EDU - address 172.18.33.38 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0027 - alias cy24-0027.Princeton.EDU - address 172.18.33.18 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0031 - alias cy24-0031.Princeton.EDU - address 172.18.33.47 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy24-0035 - alias cy24-0035.Princeton.EDU - address 172.18.33.39 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-3033 - alias cx24-3033.Princeton.EDU - address 172.18.192.222 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-3034 - alias cx24-3034.Princeton.EDU - address 172.18.192.223 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cx24-3039 - alias cx24-3039.Princeton.EDU - address 172.18.194.22 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-3042 - alias cy48-3042.Princeton.EDU - address 172.18.33.70 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-3043 - alias cy48-3043.Princeton.EDU - address 172.18.33.79 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name cy48-3044 - alias cy48-3044.Princeton.EDU - address 172.18.33.80 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name mini-swch-ppn - alias mini-swch-ppn.Princeton.EDU - address 172.18.193.28 - hostgroups OIT Ethernet switches-repeaters, Rover hosts - use Rover device -} - - -define host { - host_name airwave-console - alias airwave-console.Princeton.EDU - address 128.112.133.193 - hostgroups OIT hosts, Rover hosts - use Rover device -} - - -define host { - host_name airwave-administrative - alias airwave-administrative.Princeton.EDU - address 128.112.129.16 - hostgroups OIT hosts, Rover hosts - use Rover device -} - - -define host { - host_name airwave-dormnet - alias airwave-dormnet.Princeton.EDU - address 128.112.133.136 - hostgroups OIT hosts, Rover hosts - use Rover device -} - - -define host { - host_name configczar - alias configczar.Princeton.EDU - address 128.112.134.21 - hostgroups OIT hosts, Rover hosts - use Rover device -} - - -define host { - host_name configczar-sn96 - alias configczar-sn96.Princeton.EDU - address 128.112.96.113 - hostgroups OIT hosts, Rover hosts - use Rover device -} - - -define host { - host_name ernie - alias ernie.Princeton.EDU - address 128.112.129.178 - hostgroups OIT hosts, Rover hosts - use Rover device -} - - -define host { - host_name eyeinthesky-subnet96 - alias eyeinthesky-subnet96.Princeton.EDU - address 128.112.97.82 - hostgroups OIT hosts, Rover hosts - use Rover device -} - - -define host { - host_name heymon-bargainnet - alias heymon-bargainnet.Princeton.EDU - address 172.20.16.152 - hostgroups OIT hosts, Rover hosts - use Rover device -} - - -define host { - host_name heymon-ppnnet - alias heymon-ppnnet.Princeton.EDU - address 128.112.96.152 - hostgroups OIT hosts, Rover hosts - use Rover device -} - - -define host { - host_name heymon-smilenet - alias heymon-smilenet.Princeton.EDU - address 172.19.128.152 - hostgroups OIT hosts, Rover hosts - use Rover device -} - - -define host { - host_name heymon-stellanet - alias heymon-stellanet.Princeton.EDU - address 172.19.160.152 - hostgroups OIT hosts, Rover hosts - use Rover device -} - - -define host { - host_name heymon-voip-servernet - alias heymon-voip-servernet.Princeton.EDU - address 172.19.64.152 - hostgroups OIT hosts, Rover hosts - use Rover device -} - - -define host { - host_name new-heymon-bargainnet - alias new-heymon-bargainnet.Princeton.EDU - address 172.20.16.10 - hostgroups OIT hosts, Rover hosts - use Rover device -} - - -define host { - host_name new-heymon-opensesamenet - alias new-heymon-opensesamenet.Princeton.EDU - address 172.19.68.10 - hostgroups OIT hosts, Rover hosts - use Rover device -} - - -define host { - host_name new-heymon-ppnnet - alias new-heymon-ppnnet.Princeton.EDU - address 128.112.96.80 - hostgroups OIT hosts, Rover hosts - use Rover device -} - - -define host { - host_name new-heymon-smilenet - alias new-heymon-smilenet.Princeton.EDU - address 172.19.128.124 - hostgroups OIT hosts, Rover hosts - use Rover device -} - - -define host { - host_name new-heymon-stellanet - alias new-heymon-stellanet.Princeton.EDU - address 172.19.160.178 - hostgroups OIT hosts, Rover hosts - use Rover device -} - - -define host { - host_name new-heymon-voip-servernet - alias new-heymon-voip-servernet.Princeton.EDU - address 172.19.64.20 - hostgroups OIT hosts, Rover hosts - use Rover device -} - - -define host { - host_name puaccess - alias puaccess.Princeton.EDU - address 140.180.222.101 - hostgroups OIT hosts, Rover hosts - use Rover device -} - - -define host { - host_name smtp-f5 - alias smtp-f5.Princeton.EDU - address 140.180.222.58 - hostgroups OIT hosts, Rover hosts - use Rover device -} - - -define host { - host_name statseeker - alias statseeker.Princeton.EDU - address 128.112.131.123 - hostgroups OIT hosts, Rover hosts - use Rover device -} - - -define host { - host_name statseeker-ppnnet - alias statseeker-ppnnet.Princeton.EDU - address 128.112.99.69 - hostgroups OIT hosts, Rover hosts - use Rover device -} - - -define host { - host_name new-www.net - alias new-www.net.Princeton.EDU - address 128.112.134.149 - hostgroups OIT hosts, Rover hosts - use Rover device -} - - -define host { - host_name gate-eis202lb-router1-plinknet20 - alias gate-eis202lb-router1-plinknet20.Princeton.EDU - address 192.168.9.93 - hostgroups OIT Non-core routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-eis203lb-router1-plinknet20 - alias gate-eis203lb-router1-plinknet20.Princeton.EDU - address 192.168.9.92 - hostgroups OIT Non-core routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-lb-prod-float-1-plinknet20 - alias gate-lb-prod-float-1-plinknet20.Princeton.EDU - address 192.168.9.94 - hostgroups OIT Non-core routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-eis202lb-router-fw-plinknet8 - alias gate-eis202lb-router-fw-plinknet8.Princeton.EDU - address 192.168.9.45 - hostgroups OIT Non-core routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-eis203lb-router-fw-plinknet8 - alias gate-eis203lb-router-fw-plinknet8.Princeton.EDU - address 192.168.9.44 - hostgroups OIT Non-core routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-lb-prod-float-fw-plinknet8 - alias gate-lb-prod-float-fw-plinknet8.Princeton.EDU - address 192.168.9.46 - hostgroups OIT Non-core routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-eisfw-linknet28 - alias gate-eisfw-linknet28.Princeton.EDU - address 128.112.12.126 - hostgroups OIT Non-core routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-eisfw-fw-servernet-1 - alias gate-eisfw-fw-servernet-1.Princeton.EDU - address 140.180.220.1 - hostgroups OIT Non-core routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-eisfw-fw-servernet-2 - alias gate-eisfw-fw-servernet-2.Princeton.EDU - address 10.6.48.1 - hostgroups OIT Non-core routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-eisfw-fw-servernet-3 - alias gate-eisfw-fw-servernet-3.Princeton.EDU - address 10.6.52.1 - hostgroups OIT Non-core routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-eisfw-fw-servernet-4 - alias gate-eisfw-fw-servernet-4.Princeton.EDU - address 10.6.63.65 - hostgroups OIT Non-core routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-eisfw-fw-servernet-6 - alias gate-eisfw-fw-servernet-6.Princeton.EDU - address 10.6.63.129 - hostgroups OIT Non-core routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-eisfw-fw-servernet-7 - alias gate-eisfw-fw-servernet-7.Princeton.EDU - address 140.180.219.1 - hostgroups OIT Non-core routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-eisfw-plinknet8 - alias gate-eisfw-plinknet8.Princeton.EDU - address 192.168.9.33 - hostgroups OIT Non-core routers, Rover hosts - use Rover device -} - - -define host { - host_name eispcifw-linknet36 - alias eispcifw-linknet36.Princeton.EDU - address 128.112.12.158 - hostgroups OIT Non-core routers, Rover hosts - use Rover device -} - - -define host { - host_name eispcifw-pci-servernet-1 - alias eispcifw-pci-servernet-1.Princeton.EDU - address 10.6.59.1 - hostgroups OIT Non-core routers, Rover hosts - use Rover device -} - - -define host { - host_name eispcifw-pci-servernet-2 - alias eispcifw-pci-servernet-2.Princeton.EDU - address 10.6.59.17 - hostgroups OIT Non-core routers, Rover hosts - use Rover device -} - - -define host { - host_name eispcifw-pci-servernet-3 - alias eispcifw-pci-servernet-3.Princeton.EDU - address 10.6.59.33 - hostgroups OIT Non-core routers, Rover hosts - use Rover device -} - - -define host { - host_name eispcifw-pci-servernet-4 - alias eispcifw-pci-servernet-4.Princeton.EDU - address 10.6.59.49 - hostgroups OIT Non-core routers, Rover hosts - use Rover device -} - - -define host { - host_name eispcifw-pci-servernet-5 - alias eispcifw-pci-servernet-5.Princeton.EDU - address 10.6.59.65 - hostgroups OIT Non-core routers, Rover hosts - use Rover device -} - - -define host { - host_name eispcifw-pci-servernet-6 - alias eispcifw-pci-servernet-6.Princeton.EDU - address 10.6.59.81 - hostgroups OIT Non-core routers, Rover hosts - use Rover device -} - - -define host { - host_name eispcifw-pci-servernet-7 - alias eispcifw-pci-servernet-7.Princeton.EDU - address 10.6.59.97 - hostgroups OIT Non-core routers, Rover hosts - use Rover device -} - - -define host { - host_name eispcifw-pci-servernet-8 - alias eispcifw-pci-servernet-8.Princeton.EDU - address 10.6.59.113 - hostgroups OIT Non-core routers, Rover hosts - use Rover device -} - - -define host { - host_name eispcifw-pci-servernet-9 - alias eispcifw-pci-servernet-9.Princeton.EDU - address 10.6.59.129 - hostgroups OIT Non-core routers, Rover hosts - use Rover device -} - - -define host { - host_name eispcifw-pci-servernet-10 - alias eispcifw-pci-servernet-10.Princeton.EDU - address 10.6.59.145 - hostgroups OIT Non-core routers, Rover hosts - use Rover device -} - - -define host { - host_name eispcifw-pci-servernet-11 - alias eispcifw-pci-servernet-11.Princeton.EDU - address 10.6.59.161 - hostgroups OIT Non-core routers, Rover hosts - use Rover device -} - - -define host { - host_name eispcifw-pci-servernet-12 - alias eispcifw-pci-servernet-12.Princeton.EDU - address 10.6.59.177 - hostgroups OIT Non-core routers, Rover hosts - use Rover device -} - - -define host { - host_name eispcifw-pci-servernet-13 - alias eispcifw-pci-servernet-13.Princeton.EDU - address 10.6.59.193 - hostgroups OIT Non-core routers, Rover hosts - use Rover device -} - - -define host { - host_name eispcifw-pci-servernet-14 - alias eispcifw-pci-servernet-14.Princeton.EDU - address 10.6.59.209 - hostgroups OIT Non-core routers, Rover hosts - use Rover device -} - - -define host { - host_name eispcifw-pci-vm-mgmt - alias eispcifw-pci-vm-mgmt.Princeton.EDU - address 10.6.59.225 - hostgroups OIT Non-core routers, Rover hosts - use Rover device -} - - -define host { - host_name eispcifw1-linknet36 - alias eispcifw1-linknet36.Princeton.EDU - address 128.112.12.157 - hostgroups OIT Non-core routers, Rover hosts - use Rover device -} - - -define host { - host_name infoblox-87-voip-servernet - alias infoblox-87-voip-servernet.Princeton.EDU - address 172.19.64.11 - hostgroups OIT Telephone-VoIP Servers and Appliances, Rover hosts - use Rover device -} - - -define host { - host_name infoblox-frist-voip-servernet - alias infoblox-frist-voip-servernet.Princeton.EDU - address 172.19.64.10 - hostgroups OIT Telephone-VoIP Servers and Appliances, Rover hosts - use Rover device -} - - -define host { - host_name md-central-admin-87p-1 - alias md-central-admin-87p-1.Princeton.EDU - address 172.18.255.247 - hostgroups OIT Telephone-VoIP Servers and Appliances, Rover hosts - use Rover device -} - - -define host { - host_name md-central-admin-87p-2 - alias md-central-admin-87p-2.Princeton.EDU - address 172.18.255.246 - hostgroups OIT Telephone-VoIP Servers and Appliances, Rover hosts - use Rover device -} - - -define host { - host_name md-central-admin-ns-1 - alias md-central-admin-ns-1.Princeton.EDU - address 172.18.255.228 - hostgroups OIT Telephone-VoIP Servers and Appliances, Rover hosts - use Rover device -} - - -define host { - host_name ups-120prospect-b12idf - alias ups-120prospect-b12idf.Princeton.EDU - address 172.18.4.166 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-158nassau-bdf - alias ups-158nassau-bdf.Princeton.EDU - address 172.18.4.37 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-15dickinson - alias ups-15dickinson.Princeton.EDU - address 172.18.33.150 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-16dickinson - alias ups-16dickinson.Princeton.EDU - address 172.18.33.149 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-16stockton-bdf - alias ups-16stockton-bdf.Princeton.EDU - address 172.18.3.202 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-169nassau-bdf - alias ups-169nassau-bdf.Princeton.EDU - address 172.18.1.96 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-171broadmead - alias ups-171broadmead.Princeton.EDU - address 172.18.1.235 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-179nassau - alias ups-179nassau.Princeton.EDU - address 172.18.1.208 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-185broadmead-bdf - alias ups-185broadmead-bdf.Princeton.EDU - address 172.18.3.210 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-185nassau-bdf - alias ups-185nassau-bdf.Princeton.EDU - address 172.18.3.15 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-185nassau-215idf - alias ups-185nassau-215idf.Princeton.EDU - address 172.18.3.16 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-1901-idfs7-ppn - alias ups-1901-idfs7-ppn.Princeton.EDU - address 172.18.193.108 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-1901-t2-bdf - alias ups-1901-t2-bdf.Princeton.EDU - address 172.18.32.150 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-1901-idfm2-ppn - alias ups-1901-idfm2-ppn.Princeton.EDU - address 172.18.193.109 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-1903 - alias ups-1903.Princeton.EDU - address 172.18.33.153 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-1903-idf400-ppn - alias ups-1903-idf400-ppn.Princeton.EDU - address 172.18.193.71 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-1903-idf210-ppn - alias ups-1903-idf210-ppn.Princeton.EDU - address 172.18.193.72 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-1903-idfs2-ppn - alias ups-1903-idfs2-ppn.Princeton.EDU - address 172.18.193.73 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-1912pavilion-idf - alias ups-1912pavilion-idf.Princeton.EDU - address 172.18.194.68 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-1915hall-bdf - alias ups-1915hall-bdf.Princeton.EDU - address 172.18.32.146 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-1927-bdf - alias ups-1927-bdf.Princeton.EDU - address 172.18.32.21 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-1937-idf208-ppn - alias ups-1937-idf208-ppn.Princeton.EDU - address 172.18.192.210 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-1937hall-bdf - alias ups-1937hall-bdf.Princeton.EDU - address 172.18.32.163 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-1938-bdf - alias ups-1938-bdf.Princeton.EDU - address 172.18.33.132 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-1938-idf101-ppn - alias ups-1938-idf101-ppn.Princeton.EDU - address 172.18.192.160 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-1939-bdf - alias ups-1939-bdf.Princeton.EDU - address 172.18.33.33 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-194-nassau-bdf - alias ups-194-nassau-bdf.Princeton.EDU - address 172.18.0.84 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-194nassau-010idf - alias ups-194nassau-010idf.Princeton.EDU - address 172.18.2.73 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-194nassau-255idf - alias ups-194nassau-255idf.Princeton.EDU - address 172.18.1.25 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-1952-fieldhouse-bdf - alias ups-1952-fieldhouse-bdf.Princeton.EDU - address 172.18.1.43 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-1981-idffb14-ppn - alias ups-1981-idffb14-ppn.Princeton.EDU - address 172.18.193.66 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-201nassau-bdf - alias ups-201nassau-bdf.Princeton.EDU - address 172.18.0.183 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-20washington-111-idf - alias ups-20washington-111-idf.Princeton.EDU - address 172.18.0.57 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-20washington-135-idf - alias ups-20washington-135-idf.Princeton.EDU - address 172.18.0.60 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-20washington-169-idf - alias ups-20washington-169-idf.Princeton.EDU - address 172.18.0.61 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-20washington-188-idf - alias ups-20washington-188-idf.Princeton.EDU - address 172.18.0.62 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-20washington-211-idf - alias ups-20washington-211-idf.Princeton.EDU - address 172.18.0.65 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-20washington-235-idf - alias ups-20washington-235-idf.Princeton.EDU - address 172.18.0.66 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-20washington-269-idf - alias ups-20washington-269-idf.Princeton.EDU - address 172.18.0.68 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-20washington-288-idf - alias ups-20washington-288-idf.Princeton.EDU - address 172.18.0.69 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-20washington-311-idf - alias ups-20washington-311-idf.Princeton.EDU - address 172.18.0.77 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-20washington-388-idf - alias ups-20washington-388-idf.Princeton.EDU - address 172.18.0.82 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-20washington-a11-idf - alias ups-20washington-a11-idf.Princeton.EDU - address 172.18.0.28 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-20washington-a35-bdf - alias ups-20washington-a35-bdf.Princeton.EDU - address 172.18.0.29 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-20washington-a69-idf - alias ups-20washington-a69-idf.Princeton.EDU - address 172.18.0.83 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-20washington-a88-idf - alias ups-20washington-a88-idf.Princeton.EDU - address 172.18.0.33 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-20washington-b47a-idf - alias ups-20washington-b47a-idf.Princeton.EDU - address 172.18.0.54 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-221nassau-bdf - alias ups-221nassau-bdf.Princeton.EDU - address 172.18.3.141 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-228alexander-202b-idf - alias ups-228alexander-202b-idf.Princeton.EDU - address 172.18.0.120 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-22chambers-bdf - alias ups-22chambers-bdf.Princeton.EDU - address 172.18.4.67 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-22chambers-bdf-2 - alias ups-22chambers-bdf-2.Princeton.EDU - address 172.18.4.69 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-22chambers-idf - alias ups-22chambers-idf.Princeton.EDU - address 172.18.3.48 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-24dickinson-idf - alias ups-24dickinson-idf.Princeton.EDU - address 172.18.32.162 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-2dickinson-bdf - alias ups-2dickinson-bdf.Princeton.EDU - address 172.18.32.112 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-228alexander-bdf - alias ups-228alexander-bdf.Princeton.EDU - address 172.18.1.219 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-262alexander-bdf - alias ups-262alexander-bdf.Princeton.EDU - address 172.18.3.165 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-26collegeroadwest - alias ups-26collegeroadwest.Princeton.EDU - address 172.18.0.136 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-282alexander - alias ups-282alexander.Princeton.EDU - address 172.18.1.77 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-294alexander-bdf - alias ups-294alexander-bdf.Princeton.EDU - address 172.18.1.184 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-29edwards - alias ups-29edwards.Princeton.EDU - address 172.18.32.92 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-306alexanderst-bdf - alias ups-306alexanderst-bdf.Princeton.EDU - address 172.18.1.97 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-31edwards - alias ups-31edwards.Princeton.EDU - address 172.18.33.147 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-34chambers-bdf - alias ups-34chambers-bdf.Princeton.EDU - address 172.18.3.134 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-350alexander - alias ups-350alexander.Princeton.EDU - address 172.18.2.165 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-350alexander-idf122a - alias ups-350alexander-idf122a.Princeton.EDU - address 172.18.3.24 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-35university-place - alias ups-35university-place.Princeton.EDU - address 172.18.33.144 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-36uplace-idf015 - alias ups-36uplace-idf015.Princeton.EDU - address 172.18.1.224 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-45universityplace-bdf - alias ups-45universityplace-bdf.Princeton.EDU - address 172.18.32.29 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-4mercer-bdf - alias ups-4mercer-bdf.Princeton.EDU - address 172.18.0.215 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-58pros-bdf - alias ups-58pros-bdf.Princeton.EDU - address 172.18.3.47 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-48universityplace - alias ups-48universityplace.Princeton.EDU - address 172.18.3.158 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-693alex-bdf - alias ups-693alex-bdf.Princeton.EDU - address 172.18.1.159 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-693alex-cwing-idf - alias ups-693alex-cwing-idf.Princeton.EDU - address 172.18.1.252 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-5ivy-bdf - alias ups-5ivy-bdf.Princeton.EDU - address 172.18.2.194 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-693alexander-bdf - alias ups-693alexander-bdf.Princeton.EDU - address 172.18.0.80 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-701carnegie-106tele - alias ups-701carnegie-106tele.Princeton.EDU - address 172.18.4.87 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-701c-bdf-1 - alias ups-701c-bdf-1.Princeton.EDU - address 172.18.1.126 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-701c-bdf-2 - alias ups-701c-bdf-2.Princeton.EDU - address 172.18.1.198 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-701c-2ndfl-idf-1 - alias ups-701c-2ndfl-idf-1.Princeton.EDU - address 172.18.1.128 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-701c-2ndfl-idf-2 - alias ups-701c-2ndfl-idf-2.Princeton.EDU - address 172.18.1.181 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-701c-3rdfl-idf-1 - alias ups-701c-3rdfl-idf-1.Princeton.EDU - address 172.18.1.130 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-701c-3rdfl-idf-2 - alias ups-701c-3rdfl-idf-2.Princeton.EDU - address 172.18.1.167 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-701c-4thfl-idf - alias ups-701c-4thfl-idf.Princeton.EDU - address 172.18.1.132 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-71universityplace-bdf104a - alias ups-71universityplace-bdf104a.Princeton.EDU - address 172.18.1.176 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-755alex-bdf - alias ups-755alex-bdf.Princeton.EDU - address 172.18.3.197 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-755alexander-idf - alias ups-755alexander-idf.Princeton.EDU - address 172.18.0.78 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-8dickinson-bdf - alias ups-8dickinson-bdf.Princeton.EDU - address 172.18.32.240 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-87prospect-bdf1 - alias ups-87prospect-bdf1.Princeton.EDU - address 172.18.0.38 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-87prospect-bdf2 - alias ups-87prospect-bdf2.Princeton.EDU - address 172.18.1.173 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-87prospect-rm032lab - alias ups-87prospect-rm032lab.Princeton.EDU - address 172.18.0.217 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-91prospect-bdf - alias ups-91prospect-bdf.Princeton.EDU - address 172.18.0.178 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-99alexander-bdf-ppn - alias ups-99alexander-bdf-ppn.Princeton.EDU - address 172.18.192.107 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-aaronburr-bdf - alias ups-aaronburr-bdf.Princeton.EDU - address 172.18.1.136 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-aaronburr-idf304 - alias ups-aaronburr-idf304.Princeton.EDU - address 172.18.1.137 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-alexanderhall-bdf - alias ups-alexanderhall-bdf.Princeton.EDU - address 172.18.0.121 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-andlinger-018-idf2 - alias ups-andlinger-018-idf2.Princeton.EDU - address 172.18.1.164 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-andlinger-166-idf3 - alias ups-andlinger-166-idf3.Princeton.EDU - address 172.18.1.165 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-andlinger-236-idf4 - alias ups-andlinger-236-idf4.Princeton.EDU - address 172.18.1.166 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-andlinger-bdf - alias ups-andlinger-bdf.Princeton.EDU - address 172.18.1.142 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-arch-idfn303b - alias ups-arch-idfn303b.Princeton.EDU - address 172.18.3.19 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-arch-idfn304a - alias ups-arch-idfn304a.Princeton.EDU - address 172.18.3.20 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-arch-idfpit - alias ups-arch-idfpit.Princeton.EDU - address 172.18.3.31 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-architecture - alias ups-architecture.Princeton.EDU - address 172.18.3.101 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-architecture-lab - alias ups-architecture-lab.Princeton.EDU - address 172.18.1.47 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-art-museum-storage-fac-bdf - alias ups-art-museum-storage-fac-bdf.Princeton.EDU - address 172.18.0.148 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-artscenter-bdf0m02-das - alias ups-artscenter-bdf0m02-das.Princeton.EDU - address 172.18.0.112 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-artscenter-idf033-das - alias ups-artscenter-idf033-das.Princeton.EDU - address 172.18.0.110 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-artscenterbdf-das - alias ups-artscenterbdf-das.Princeton.EDU - address 172.18.0.108 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-awing-bdfa126 - alias ups-awing-bdfa126.Princeton.EDU - address 172.18.3.150 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-awing-idfa502 - alias ups-awing-idfa502.Princeton.EDU - address 172.18.3.152 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-bakere-idfmezz-ppn - alias ups-bakere-idfmezz-ppn.Princeton.EDU - address 172.18.193.65 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-bakerrink-bdf - alias ups-bakerrink-bdf.Princeton.EDU - address 172.18.0.206 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-bakerrink-idf106 - alias ups-bakerrink-idf106.Princeton.EDU - address 172.18.1.6 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-bcf-idf202a - alias ups-bcf-idf202a.Princeton.EDU - address 172.18.1.160 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-bendheimctrfin-bdf - alias ups-bendheimctrfin-bdf.Princeton.EDU - address 172.18.0.140 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-blair-bdf - alias ups-blair-bdf.Princeton.EDU - address 172.18.32.71 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-blair-idf-312-ppn - alias ups-blair-idf-312-ppn.Princeton.EDU - address 172.18.192.50 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-bloomberg-bdf - alias ups-bloomberg-bdf.Princeton.EDU - address 172.18.32.118 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-bloomberg-idf054-ppn - alias ups-bloomberg-idf054-ppn.Princeton.EDU - address 172.18.192.190 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-bloomberg-idf255-ppn - alias ups-bloomberg-idf255-ppn.Princeton.EDU - address 172.18.192.189 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-bloomberg-idf355-ppn - alias ups-bloomberg-idf355-ppn.Princeton.EDU - address 172.18.192.188 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-bloomberg-idf455-ppn - alias ups-bloomberg-idf455-ppn.Princeton.EDU - address 172.18.192.187 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-bobst-bdf - alias ups-bobst-bdf.Princeton.EDU - address 172.18.0.156 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-bloomberg-idf030h-ppn - alias ups-bloomberg-idf030h-ppn.Princeton.EDU - address 172.18.192.186 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-bloomberg-idf001c-ppn - alias ups-bloomberg-idf001c-ppn.Princeton.EDU - address 172.18.192.185 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-bowen-bdf - alias ups-bowen-bdf.Princeton.EDU - address 172.18.2.251 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-bowenhall-idf202 - alias ups-bowenhall-idf202.Princeton.EDU - address 172.18.0.23 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-bowenhall-idf302 - alias ups-bowenhall-idf302.Princeton.EDU - address 172.18.1.112 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-bowenhall-idf402 - alias ups-bowenhall-idf402.Princeton.EDU - address 172.18.2.175 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-brown-hall - alias ups-brown-hall.Princeton.EDU - address 172.18.32.139 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-butlercollege-bdf - alias ups-butlercollege-bdf.Princeton.EDU - address 172.18.32.104 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-buyershall-idfb11b-ppn - alias ups-buyershall-idfb11b-ppn.Princeton.EDU - address 172.18.192.83 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-bwing-idf108 - alias ups-bwing-idf108.Princeton.EDU - address 172.18.3.160 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-bwing-idfb501 - alias ups-bwing-idfb501.Princeton.EDU - address 172.18.3.169 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-cafeteria-powerhouse9a-idf - alias ups-cafeteria-powerhouse9a-idf.Princeton.EDU - address 172.18.3.188 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-caldwell-bdf - alias ups-caldwell-bdf.Princeton.EDU - address 172.18.0.170 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-caldwell-fieldhouse-idf-a1b - alias ups-caldwell-fieldhouse-idf-a1b.Princeton.EDU - address 172.18.1.10 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-campbell-bdf - alias ups-campbell-bdf.Princeton.EDU - address 172.18.33.58 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-campus-club-bdf - alias ups-campus-club-bdf.Princeton.EDU - address 172.18.2.46 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-cannonclub-bdf - alias ups-cannonclub-bdf.Princeton.EDU - address 172.18.32.156 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-capandgownclub-bdf - alias ups-capandgownclub-bdf.Princeton.EDU - address 172.18.32.155 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-carlichan-bdfm05 - alias ups-carlichan-bdfm05.Princeton.EDU - address 172.18.2.232 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-carlichan-idfm10 - alias ups-carlichan-idfm10.Princeton.EDU - address 172.18.2.210 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-carlichan-idfm33 - alias ups-carlichan-idfm33.Princeton.EDU - address 172.18.2.231 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-carlichan-idfm37 - alias ups-carlichan-idfm37.Princeton.EDU - address 172.18.2.230 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-chancegreen-002idf-ppn - alias ups-chancegreen-002idf-ppn.Princeton.EDU - address 172.18.193.201 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-chapel-bdf - alias ups-chapel-bdf.Princeton.EDU - address 172.18.1.168 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-charltonstreetsubstation-bdf - alias ups-charltonstreetsubstation-bdf.Princeton.EDU - address 172.18.2.133 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-charterclub-bdf - alias ups-charterclub-bdf.Princeton.EDU - address 172.18.32.159 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-chemsciencebldg-idf - alias ups-chemsciencebldg-idf.Princeton.EDU - address 172.18.3.205 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-chilled-water-bdf - alias ups-chilled-water-bdf.Princeton.EDU - address 172.18.1.156 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-cjl-bdf - alias ups-cjl-bdf.Princeton.EDU - address 172.18.3.138 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-clio-bdf - alias ups-clio-bdf.Princeton.EDU - address 172.18.4.174 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-cloisterclub-bdf - alias ups-cloisterclub-bdf.Princeton.EDU - address 172.18.32.160 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-cogen-121idf - alias ups-cogen-121idf.Princeton.EDU - address 172.18.2.109 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-cogen-swgearidf-ppn - alias ups-cogen-swgearidf-ppn.Princeton.EDU - address 172.18.193.234 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-community-idfh005b-ppn - alias ups-community-idfh005b-ppn.Princeton.EDU - address 172.18.193.62 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-cordishfampav-idf - alias ups-cordishfampav-idf.Princeton.EDU - address 172.18.192.55 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-corwin-bdf - alias ups-corwin-bdf.Princeton.EDU - address 172.18.0.134 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-corwinhall-idf029a - alias ups-corwinhall-idf029a.Princeton.EDU - address 172.18.2.241 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-corwinhall-idf128a - alias ups-corwinhall-idf128a.Princeton.EDU - address 172.18.2.242 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-cuyler-bdf - alias ups-cuyler-bdf.Princeton.EDU - address 172.18.32.33 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-cuyler-idf301-ppn - alias ups-cuyler-idf301-ppn.Princeton.EDU - address 172.18.193.74 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-cwing-idfc214a - alias ups-cwing-idfc214a.Princeton.EDU - address 172.18.3.172 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-cwing-idfc502 - alias ups-cwing-idfc502.Princeton.EDU - address 172.18.3.173 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-das-fine-bdf - alias ups-das-fine-bdf.Princeton.EDU - address 172.18.1.255 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-das-fine1205a-idf - alias ups-das-fine1205a-idf.Princeton.EDU - address 172.18.1.123 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-das-firestoneb11g-bdf - alias ups-das-firestoneb11g-bdf.Princeton.EDU - address 172.18.1.141 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-das-fisherhall-idfb30b - alias ups-das-fisherhall-idfb30b.Princeton.EDU - address 172.18.1.183 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-das-hoyt-bdf - alias ups-das-hoyt-bdf.Princeton.EDU - address 172.18.1.122 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-denunzio-pool-bdf - alias ups-denunzio-pool-bdf.Princeton.EDU - address 172.18.3.251 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-dickinson-bdf - alias ups-dickinson-bdf.Princeton.EDU - address 172.18.1.116 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-dillioncourteast-bdf - alias ups-dillioncourteast-bdf.Princeton.EDU - address 172.18.1.245 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-dillioncourtwest-idf - alias ups-dillioncourtwest-idf.Princeton.EDU - address 172.18.2.5 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-dillongym-bdf - alias ups-dillongym-bdf.Princeton.EDU - address 172.18.1.41 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-dillongym-idfa30 - alias ups-dillongym-idfa30.Princeton.EDU - address 172.18.4.18 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-dillongym-idfc01 - alias ups-dillongym-idfc01.Princeton.EDU - address 172.18.2.192 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-dillongym-idfc03 - alias ups-dillongym-idfc03.Princeton.EDU - address 172.18.2.213 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-dod - alias ups-dod.Princeton.EDU - address 172.18.33.155 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-dodgehall-bdf - alias ups-dodgehall-bdf.Princeton.EDU - address 172.18.0.133 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-dodgeosborn-bdf - alias ups-dodgeosborn-bdf.Princeton.EDU - address 172.18.33.156 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-eastpyne-007idf-ppn - alias ups-eastpyne-007idf-ppn.Princeton.EDU - address 172.18.193.202 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-eastpyne-idf320 - alias ups-eastpyne-idf320.Princeton.EDU - address 172.18.3.180 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-eastpyne-idf363 - alias ups-eastpyne-idf363.Princeton.EDU - address 172.18.3.68 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-edwards - alias ups-edwards.Princeton.EDU - address 172.18.32.11 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-edwards-idf001-ppn - alias ups-edwards-idf001-ppn.Princeton.EDU - address 172.18.192.213 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-edwards-idf007-ppn - alias ups-edwards-idf007-ppn.Princeton.EDU - address 172.18.192.214 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-elmdrsub-101idf-ppn - alias ups-elmdrsub-101idf-ppn.Princeton.EDU - address 172.18.193.232 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-enohall-bdf - alias ups-enohall-bdf.Princeton.EDU - address 172.18.0.56 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-elem-part-lab-bdf - alias ups-elem-part-lab-bdf.Princeton.EDU - address 172.18.1.189 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-equaddwing-idfd202 - alias ups-equaddwing-idfd202.Princeton.EDU - address 172.18.3.107 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-equaddwing-idfd501 - alias ups-equaddwing-idfd501.Princeton.EDU - address 172.18.3.201 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-equadewing-bdfe114a - alias ups-equadewing-bdfe114a.Princeton.EDU - address 172.18.3.203 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-equadewing-idfe104a - alias ups-equadewing-idfe104a.Princeton.EDU - address 172.18.0.122 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-equadewing-idfe502 - alias ups-equadewing-idfe502.Princeton.EDU - address 172.18.3.204 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-equadfwing-idff217c - alias ups-equadfwing-idff217c.Princeton.EDU - address 172.18.3.212 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-equadgwing-ga01 - alias ups-equadgwing-ga01.Princeton.EDU - address 172.18.3.215 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-equadjwing-bdfj119b - alias ups-equadjwing-bdfj119b.Princeton.EDU - address 172.18.3.230 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-equadjwing-idfj425a - alias ups-equadjwing-idfj425a.Princeton.EDU - address 172.18.3.231 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-feinberg-bdf - alias ups-feinberg-bdf.Princeton.EDU - address 172.18.32.17 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-equad-j215d-idf - alias ups-equad-j215d-idf.Princeton.EDU - address 172.18.0.105 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-equad-j321c-idf - alias ups-equad-j321c-idf.Princeton.EDU - address 172.18.0.106 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-fine1005a-idf - alias ups-fine1005a-idf.Princeton.EDU - address 172.18.0.98 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-fine1205a-idf - alias ups-fine1205a-idf.Princeton.EDU - address 172.18.0.144 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-fine216-idf - alias ups-fine216-idf.Princeton.EDU - address 172.18.0.97 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-fine405a-idf - alias ups-fine405a-idf.Princeton.EDU - address 172.18.0.176 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-fine705a-idf - alias ups-fine705a-idf.Princeton.EDU - address 172.18.0.187 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-fineb2a-idf - alias ups-fineb2a-idf.Princeton.EDU - address 172.18.0.96 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-finehall-bdf - alias ups-finehall-bdf.Princeton.EDU - address 172.18.0.95 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-firestone-bfloorreno-idf-ppn - alias ups-firestone-bfloorreno-idf-ppn.Princeton.EDU - address 172.18.194.43 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-firestone-b9f-idf - alias ups-firestone-b9f-idf.Princeton.EDU - address 172.18.4.77 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-firestone-c14f2-idf - alias ups-firestone-c14f2-idf.Princeton.EDU - address 172.18.3.249 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-firestone-c18m2-idf - alias ups-firestone-c18m2-idf.Princeton.EDU - address 172.18.0.236 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-firestone-c9f1-idf - alias ups-firestone-c9f1-idf.Princeton.EDU - address 172.18.2.145 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-firestone-c-1-h - alias ups-firestone-c-1-h.Princeton.EDU - address 172.18.0.248 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-firestone-c-14f-2 - alias ups-firestone-c-14f-2.Princeton.EDU - address 172.18.3.135 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-firestone-idf-b18n3 - alias ups-firestone-idf-b18n3.Princeton.EDU - address 172.18.1.161 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-firestone-idf-c4p1 - alias ups-firestone-idf-c4p1.Princeton.EDU - address 172.18.1.54 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-firestonelib-idf-1-6f-1 - alias ups-firestonelib-idf-1-6f-1.Princeton.EDU - address 172.18.0.85 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-fisher-bdf - alias ups-fisher-bdf.Princeton.EDU - address 172.18.0.184 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-fisherhall-idf317a - alias ups-fisherhall-idf317a.Princeton.EDU - address 172.18.1.178 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-fisherhall-idfb125c - alias ups-fisherhall-idfb125c.Princeton.EDU - address 172.18.1.170 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-fisherhall-idfb215a - alias ups-fisherhall-idfb215a.Princeton.EDU - address 172.18.1.171 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-fisherhall-idfb30b - alias ups-fisherhall-idfb30b.Princeton.EDU - address 172.18.1.163 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-firestone-214f2-idf - alias ups-firestone-214f2-idf.Princeton.EDU - address 172.18.5.21 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-firestone-2f92-idf - alias ups-firestone-2f92-idf.Princeton.EDU - address 172.18.3.60 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-firestone-314f2-idf - alias ups-firestone-314f2-idf.Princeton.EDU - address 172.18.5.75 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-firestone-3f92-idf - alias ups-firestone-3f92-idf.Princeton.EDU - address 172.18.5.23 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-firestone-a-12c-1 - alias ups-firestone-a-12c-1.Princeton.EDU - address 172.18.2.9 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-fisherwt-idfa006a-ppn - alias ups-fisherwt-idfa006a-ppn.Princeton.EDU - address 172.18.193.63 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-forbes-annex - alias ups-forbes-annex.Princeton.EDU - address 172.18.32.143 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-forbes-bdf - alias ups-forbes-bdf.Princeton.EDU - address 172.18.32.178 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-forbes-idf026-ppn - alias ups-forbes-idf026-ppn.Princeton.EDU - address 172.18.193.32 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-forbes-idf360-ppn - alias ups-forbes-idf360-ppn.Princeton.EDU - address 172.18.193.34 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-forbes-idfa166oit-ppn - alias ups-forbes-idfa166oit-ppn.Princeton.EDU - address 172.18.193.46 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-forbes-idfa315oit-ppn - alias ups-forbes-idfa315oit-ppn.Princeton.EDU - address 172.18.193.43 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-forbes-idfa325oit-ppn - alias ups-forbes-idfa325oit-ppn.Princeton.EDU - address 172.18.193.44 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-forbes-idfa335oit-ppn - alias ups-forbes-idfa335oit-ppn.Princeton.EDU - address 172.18.193.45 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-forbes-idfa375oit-ppn - alias ups-forbes-idfa375oit-ppn.Princeton.EDU - address 172.18.193.47 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-forbes-idfattic-ppn - alias ups-forbes-idfattic-ppn.Princeton.EDU - address 172.18.193.35 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-forbesmain-idf221-ppn - alias ups-forbesmain-idf221-ppn.Princeton.EDU - address 172.18.192.47 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-foulkehall-bdf - alias ups-foulkehall-bdf.Princeton.EDU - address 172.18.32.119 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-friend-center-bdf - alias ups-friend-center-bdf.Princeton.EDU - address 172.18.1.207 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-friend-m102-idf - alias ups-friend-m102-idf.Princeton.EDU - address 172.18.0.19 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-firestone-a14f2-idf - alias ups-firestone-a14f2-idf.Princeton.EDU - address 172.18.4.247 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-firestone-a9f1-idf - alias ups-firestone-a9f1-idf.Princeton.EDU - address 172.18.1.95 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-firestone-b14f2-idf - alias ups-firestone-b14f2-idf.Princeton.EDU - address 172.18.1.40 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-firestone-1-14f-2-idf - alias ups-firestone-1-14f-2-idf.Princeton.EDU - address 172.18.4.75 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-frist-125c-bdf - alias ups-frist-125c-bdf.Princeton.EDU - address 172.18.0.142 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-frist-idf-m38 - alias ups-frist-idf-m38.Princeton.EDU - address 172.18.2.42 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-frist-m22-idf - alias ups-frist-m22-idf.Princeton.EDU - address 172.18.2.32 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-gasdyn140a-idf - alias ups-gasdyn140a-idf.Princeton.EDU - address 172.18.3.108 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-gasdynamics-bdf - alias ups-gasdynamics-bdf.Princeton.EDU - address 172.18.3.198 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-frist-m24-bdf - alias ups-frist-m24-bdf.Princeton.EDU - address 172.18.0.141 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-frist-m24-bdf-1 - alias ups-frist-m24-bdf-1.Princeton.EDU - address 172.18.2.33 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-frist-m26-idf - alias ups-frist-m26-idf.Princeton.EDU - address 172.18.2.24 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-frist-m36-idf - alias ups-frist-m36-idf.Princeton.EDU - address 172.18.2.39 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-frist-ma4-idf - alias ups-frist-ma4-idf.Princeton.EDU - address 172.18.2.18 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-gauss-bdf - alias ups-gauss-bdf.Princeton.EDU - address 172.18.33.161 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-gbmtrailer-bdf - alias ups-gbmtrailer-bdf.Princeton.EDU - address 172.18.1.134 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-green-bdf-0s10 - alias ups-green-bdf-0s10.Princeton.EDU - address 172.18.2.8 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-green-idf-0n4 - alias ups-green-idf-0n4.Princeton.EDU - address 172.18.2.52 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-green-idf-1e3a - alias ups-green-idf-1e3a.Princeton.EDU - address 172.18.2.55 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-green-idf-1n18 - alias ups-green-idf-1n18.Princeton.EDU - address 172.18.2.56 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-green-idf-2n15 - alias ups-green-idf-2n15.Princeton.EDU - address 172.18.2.59 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-green-idf-2s18 - alias ups-green-idf-2s18.Princeton.EDU - address 172.18.2.62 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-green-idf-3n3 - alias ups-green-idf-3n3.Princeton.EDU - address 172.18.2.66 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-green-idf-3s25 - alias ups-green-idf-3s25.Princeton.EDU - address 172.18.2.65 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-guyot-bdf - alias ups-guyot-bdf.Princeton.EDU - address 172.18.0.41 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-guyot-bdf-2 - alias ups-guyot-bdf-2.Princeton.EDU - address 172.18.3.235 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-guyot-idf14elr - alias ups-guyot-idf14elr.Princeton.EDU - address 172.18.2.202 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-guyot-idf201 - alias ups-guyot-idf201.Princeton.EDU - address 172.18.2.205 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-guyot-idf221 - alias ups-guyot-idf221.Princeton.EDU - address 172.18.2.206 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-guyot-idf312 - alias ups-guyot-idf312.Princeton.EDU - address 172.18.2.207 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-guyot-idfa70 - alias ups-guyot-idfa70.Princeton.EDU - address 172.18.2.203 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-guyot-idfb84 - alias ups-guyot-idfb84.Princeton.EDU - address 172.18.2.201 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-guyot-idfm37 - alias ups-guyot-idfm37.Princeton.EDU - address 172.18.2.204 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-haagahouse-idf - alias ups-haagahouse-idf.Princeton.EDU - address 172.18.4.238 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-hamilton-bdf - alias ups-hamilton-bdf.Princeton.EDU - address 172.18.32.100 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-helm-bdf - alias ups-helm-bdf.Princeton.EDU - address 172.18.0.189 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-helmbuilding-idf245 - alias ups-helmbuilding-idf245.Princeton.EDU - address 172.18.1.7 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-helmbuilding-idf346 - alias ups-helmbuilding-idf346.Princeton.EDU - address 172.18.2.89 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-helmbuilding-idf439 - alias ups-helmbuilding-idf439.Princeton.EDU - address 172.18.2.177 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-henry - alias ups-henry.Princeton.EDU - address 172.18.33.162 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-henry-idf208-ppn - alias ups-henry-idf208-ppn.Princeton.EDU - address 172.18.192.172 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-henry-idf212-ppn - alias ups-henry-idf212-ppn.Princeton.EDU - address 172.18.192.171 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-holder-idfb10e-ppn - alias ups-holder-idfb10e-ppn.Princeton.EDU - address 172.18.192.133 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-holderhall-bdf-b1e - alias ups-holderhall-bdf-b1e.Princeton.EDU - address 172.18.32.147 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-hoyt-bdf - alias ups-hoyt-bdf.Princeton.EDU - address 172.18.3.32 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-icahn-m10idf - alias ups-icahn-m10idf.Princeton.EDU - address 172.18.2.176 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-jadwingym-bdf - alias ups-jadwingym-bdf.Princeton.EDU - address 172.18.0.149 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-jadwingym-idfa-s1a - alias ups-jadwingym-idfa-s1a.Princeton.EDU - address 172.18.0.15 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-jadwingym-m-j1 - alias ups-jadwingym-m-j1.Princeton.EDU - address 172.18.3.254 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-jadwingym-m-j2 - alias ups-jadwingym-m-j2.Princeton.EDU - address 172.18.4.7 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-jadwinhall-315aidf - alias ups-jadwinhall-315aidf.Princeton.EDU - address 172.18.2.168 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-jadwinhall-332idf-1 - alias ups-jadwinhall-332idf-1.Princeton.EDU - address 172.18.2.185 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-jadwinhall-332idf-2 - alias ups-jadwinhall-332idf-2.Princeton.EDU - address 172.18.3.10 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-jadwinhall-468oitidf-1 - alias ups-jadwinhall-468oitidf-1.Princeton.EDU - address 172.18.3.78 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-jadwinhall-468oitidf-2 - alias ups-jadwinhall-468oitidf-2.Princeton.EDU - address 172.18.3.161 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-jadwinhall-468oitidf-3 - alias ups-jadwinhall-468oitidf-3.Princeton.EDU - address 172.18.3.246 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-jadwinhall-a55idf-1 - alias ups-jadwinhall-a55idf-1.Princeton.EDU - address 172.18.2.86 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-jadwinhall-a55idf-2 - alias ups-jadwinhall-a55idf-2.Princeton.EDU - address 172.18.2.96 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-jadwinhall-a55idf-3 - alias ups-jadwinhall-a55idf-3.Princeton.EDU - address 172.18.2.99 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-jadwinhall-mb1idf - alias ups-jadwinhall-mb1idf.Princeton.EDU - address 172.18.2.85 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-jadwinhall-mb3bdf-1 - alias ups-jadwinhall-mb3bdf-1.Princeton.EDU - address 172.18.2.83 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-jadwinhall-mb3bdf-2 - alias ups-jadwinhall-mb3bdf-2.Princeton.EDU - address 172.18.2.84 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-jones-hall - alias ups-jones-hall.Princeton.EDU - address 172.18.0.86 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-josephhenry-house - alias ups-josephhenry-house.Princeton.EDU - address 172.18.1.197 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-lakeside-bldg11-idf - alias ups-lakeside-bldg11-idf.Princeton.EDU - address 172.18.32.179 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-lakeside-bldg2-idf - alias ups-lakeside-bldg2-idf.Princeton.EDU - address 172.18.32.110 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-lakeside-bldg4-bdf - alias ups-lakeside-bldg4-bdf.Princeton.EDU - address 172.18.32.109 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-lakeside-bldg6-idf - alias ups-lakeside-bldg6-idf.Princeton.EDU - address 172.18.32.111 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-lakeside-bldg9-idf - alias ups-lakeside-bldg9-idf.Princeton.EDU - address 172.18.32.151 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-lakeside-bldg13-idf - alias ups-lakeside-bldg13-idf.Princeton.EDU - address 172.18.32.180 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-lawrence-apartments - alias ups-lawrence-apartments.Princeton.EDU - address 172.18.33.168 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-lawrence-bldg2idf-ppn - alias ups-lawrence-bldg2idf-ppn.Princeton.EDU - address 172.18.192.80 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-lawrence-bldg6-idf-ppn - alias ups-lawrence-bldg6-idf-ppn.Princeton.EDU - address 172.18.192.243 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-lawrence-building-12 - alias ups-lawrence-building-12.Princeton.EDU - address 172.18.33.169 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-lca-bdf - alias ups-lca-bdf.Princeton.EDU - address 172.18.3.206 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-lca-idf1 - alias ups-lca-idf1.Princeton.EDU - address 172.18.3.209 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-lca-idf2 - alias ups-lca-idf2.Princeton.EDU - address 172.18.3.207 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-lca-idf3 - alias ups-lca-idf3.Princeton.EDU - address 172.18.3.208 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-lewis-thomas-lab-bdf - alias ups-lewis-thomas-lab-bdf.Princeton.EDU - address 172.18.0.126 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-lewislib-idfm102 - alias ups-lewislib-idfm102.Princeton.EDU - address 172.18.2.219 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-lewislib-idfm104 - alias ups-lewislib-idfm104.Princeton.EDU - address 172.18.2.220 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-lewislib-idfm106 - alias ups-lewislib-idfm106.Princeton.EDU - address 172.18.2.221 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-lewislib-idfm202 - alias ups-lewislib-idfm202.Princeton.EDU - address 172.18.2.224 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-lewislib-idfm204 - alias ups-lewislib-idfm204.Princeton.EDU - address 172.18.2.225 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-lewislib-idfm205 - alias ups-lewislib-idfm205.Princeton.EDU - address 172.18.3.252 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-lewislib-idfm302 - alias ups-lewislib-idfm302.Princeton.EDU - address 172.18.2.227 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-lewislib-idfm303 - alias ups-lewislib-idfm303.Princeton.EDU - address 172.18.2.228 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-lauritzen-idfmezz-ppn - alias ups-lauritzen-idfmezz-ppn.Princeton.EDU - address 172.18.193.64 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-lewislibrary-bdf - alias ups-lewislibrary-bdf.Princeton.EDU - address 172.18.0.199 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-little-bdf - alias ups-little-bdf.Princeton.EDU - address 172.18.32.34 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-little-idfa11-ppn - alias ups-little-idfa11-ppn.Princeton.EDU - address 172.18.192.209 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-lockhart-bdf - alias ups-lockhart-bdf.Princeton.EDU - address 172.18.32.123 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-lowriehouse-bdf - alias ups-lowriehouse-bdf.Princeton.EDU - address 172.18.0.128 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-maclean-bdf - alias ups-maclean-bdf.Princeton.EDU - address 172.18.0.247 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-macm-annex - alias ups-macm-annex.Princeton.EDU - address 172.18.0.124 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-macmb09-idf - alias ups-macmb09-idf.Princeton.EDU - address 172.18.4.74 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-macncheese - alias ups-macncheese.Princeton.EDU - address 172.18.0.243 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-madison-bdf - alias ups-madison-bdf.Princeton.EDU - address 172.18.0.161 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-macmb12-idf - alias ups-macmb12-idf.Princeton.EDU - address 172.18.0.79 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-macmb29-paint-idf - alias ups-macmb29-paint-idf.Princeton.EDU - address 172.18.0.203 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-macmillan-bdf - alias ups-macmillan-bdf.Princeton.EDU - address 172.18.1.4 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-madisonhall-111oitidf-ppn - alias ups-madisonhall-111oitidf-ppn.Princeton.EDU - address 172.18.193.254 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-marxhall-bdf - alias ups-marxhall-bdf.Princeton.EDU - address 172.18.1.187 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-marxhall-idf011 - alias ups-marxhall-idf011.Princeton.EDU - address 172.18.2.215 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-marxhall-idfa02 - alias ups-marxhall-idfa02.Princeton.EDU - address 172.18.2.214 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-mccarter-idf010b-ppn - alias ups-mccarter-idf010b-ppn.Princeton.EDU - address 172.18.192.111 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-mccoshinf-112idf-ppn - alias ups-mccoshinf-112idf-ppn.Princeton.EDU - address 172.18.194.81 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-mccoshinf-307aidf-ppn - alias ups-mccoshinf-307aidf-ppn.Princeton.EDU - address 172.18.194.82 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-mccoshinf-bdf - alias ups-mccoshinf-bdf.Princeton.EDU - address 172.18.1.26 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-mccoshinf-idf212 - alias ups-mccoshinf-idf212.Princeton.EDU - address 172.18.1.27 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-mccormick - alias ups-mccormick.Princeton.EDU - address 172.18.1.44 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-mccormick-137a-idf - alias ups-mccormick-137a-idf.Princeton.EDU - address 172.18.2.246 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-mccormickhall-bdfma2 - alias ups-mccormickhall-bdfma2.Princeton.EDU - address 172.18.2.68 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-mccormickhall-idf317 - alias ups-mccormickhall-idf317.Princeton.EDU - address 172.18.2.88 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-mccormickhall-idfm21 - alias ups-mccormickhall-idfm21.Princeton.EDU - address 172.18.2.87 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-mccormickhall-idfmb2 - alias ups-mccormickhall-idfmb2.Princeton.EDU - address 172.18.2.79 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-mccoshhall-bdfb57 - alias ups-mccoshhall-bdfb57.Princeton.EDU - address 172.18.2.191 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-mccoshhall-idf-b20 - alias ups-mccoshhall-idf-b20.Princeton.EDU - address 172.18.2.187 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-mccoshhall-idf10 - alias ups-mccoshhall-idf10.Princeton.EDU - address 172.18.2.189 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-mccoshhall-idfb36 - alias ups-mccoshhall-idfb36.Princeton.EDU - address 172.18.2.188 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-mccrmck-idfm21-ppn - alias ups-mccrmck-idfm21-ppn.Princeton.EDU - address 172.18.192.18 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-mcdonnell-m22idf - alias ups-mcdonnell-m22idf.Princeton.EDU - address 172.18.4.17 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-mcdonnell-mb2bbdf - alias ups-mcdonnell-mb2bbdf.Princeton.EDU - address 172.18.4.15 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-moffett-idf110cor - alias ups-moffett-idf110cor.Princeton.EDU - address 172.18.2.196 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-moffett-idf225cor - alias ups-moffett-idf225cor.Princeton.EDU - address 172.18.2.197 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-moffett-idf325cor - alias ups-moffett-idf325cor.Princeton.EDU - address 172.18.2.198 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-moffett-idf425cor - alias ups-moffett-idf425cor.Princeton.EDU - address 172.18.2.199 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-morrison-hall-bdf - alias ups-morrison-hall-bdf.Princeton.EDU - address 172.18.0.129 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-morrison-hall-idf215a - alias ups-morrison-hall-idf215a.Princeton.EDU - address 172.18.0.130 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-morrison-hall-idf307a - alias ups-morrison-hall-idf307a.Princeton.EDU - address 172.18.0.131 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-morrison-hall-idfattic - alias ups-morrison-hall-idfattic.Princeton.EDU - address 172.18.0.139 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-mudd - alias ups-mudd.Princeton.EDU - address 172.18.1.217 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-murray-bdf - alias ups-murray-bdf.Princeton.EDU - address 172.18.1.56 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-nassau-bdf - alias ups-nassau-bdf.Princeton.EDU - address 172.18.0.230 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-neuro-bdf - alias ups-neuro-bdf.Princeton.EDU - address 172.18.4.194 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-nassau-hall - alias ups-nassau-hall.Princeton.EDU - address 172.18.1.49 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-neuro-c37oit-idf - alias ups-neuro-c37oit-idf.Princeton.EDU - address 172.18.4.213 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-newchemistry-101idf - alias ups-newchemistry-101idf.Princeton.EDU - address 172.18.2.23 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-newchemistry-102idf - alias ups-newchemistry-102idf.Princeton.EDU - address 172.18.2.20 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-newchemistry-201idf - alias ups-newchemistry-201idf.Princeton.EDU - address 172.18.1.248 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-newchemistry-202idf - alias ups-newchemistry-202idf.Princeton.EDU - address 172.18.1.192 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-newchemistry-301idf - alias ups-newchemistry-301idf.Princeton.EDU - address 172.18.1.191 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-newchemistry-302idf - alias ups-newchemistry-302idf.Princeton.EDU - address 172.18.1.190 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-newchemistry-a01idf - alias ups-newchemistry-a01idf.Princeton.EDU - address 172.18.2.19 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-newchemistry-a02idf - alias ups-newchemistry-a02idf.Princeton.EDU - address 172.18.2.21 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-newchemistry-b02idf - alias ups-newchemistry-b02idf.Princeton.EDU - address 172.18.1.232 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-neuro-a30oit-idf - alias ups-neuro-a30oit-idf.Princeton.EDU - address 172.18.4.210 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-neuro-a62oit-idf - alias ups-neuro-a62oit-idf.Princeton.EDU - address 172.18.4.217 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-neuro-130oit-idf - alias ups-neuro-130oit-idf.Princeton.EDU - address 172.18.4.221 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-neuro-162oit-idf - alias ups-neuro-162oit-idf.Princeton.EDU - address 172.18.4.224 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-neuro-230oit-idf - alias ups-neuro-230oit-idf.Princeton.EDU - address 172.18.4.199 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-neuro-262oit-idf - alias ups-neuro-262oit-idf.Princeton.EDU - address 172.18.4.198 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-neuro-340mec-idf-ppn - alias ups-neuro-340mec-idf-ppn.Princeton.EDU - address 172.18.192.26 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-neuro-425oit-idf - alias ups-neuro-425oit-idf.Princeton.EDU - address 172.18.3.13 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-neuro-425oit-idf-2 - alias ups-neuro-425oit-idf-2.Princeton.EDU - address 172.18.1.31 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-newchemistry-bdf - alias ups-newchemistry-bdf.Princeton.EDU - address 172.18.1.144 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-newchemistry-bdf-2 - alias ups-newchemistry-bdf-2.Princeton.EDU - address 172.18.2.25 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-newgrad-bdf - alias ups-newgrad-bdf.Princeton.EDU - address 172.18.32.149 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-newgrad-rm002idf-ppn - alias ups-newgrad-rm002idf-ppn.Princeton.EDU - address 172.18.192.96 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-newgrad-rm010aidf-ppn - alias ups-newgrad-rm010aidf-ppn.Princeton.EDU - address 172.18.192.95 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-newgrad-rm020idf-ppn - alias ups-newgrad-rm020idf-ppn.Princeton.EDU - address 172.18.192.94 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-newgrad-rm024aidf-ppn - alias ups-newgrad-rm024aidf-ppn.Princeton.EDU - address 172.18.192.93 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-newgrad-rm040idf-ppn - alias ups-newgrad-rm040idf-ppn.Princeton.EDU - address 172.18.192.92 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-newsouth-200a-idf - alias ups-newsouth-200a-idf.Princeton.EDU - address 172.18.4.157 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-newsouth-400a-idf - alias ups-newsouth-400a-idf.Princeton.EDU - address 172.18.5.3 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-newsouth-600a-idf - alias ups-newsouth-600a-idf.Princeton.EDU - address 172.18.5.4 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-newsouth-728-idf - alias ups-newsouth-728-idf.Princeton.EDU - address 172.18.5.66 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-newsouth-afl-bdf - alias ups-newsouth-afl-bdf.Princeton.EDU - address 172.18.0.119 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-newsouth-gatecontrol - alias ups-newsouth-gatecontrol.Princeton.EDU - address 172.18.192.76 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-newsouth-idf-5fl - alias ups-newsouth-idf-5fl.Princeton.EDU - address 172.18.0.216 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-newsouth-idf300a - alias ups-newsouth-idf300a.Princeton.EDU - address 172.18.2.195 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-northgarage-bdf - alias ups-northgarage-bdf.Princeton.EDU - address 172.18.2.162 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-ogadc - alias ups-ogadc.Princeton.EDU - address 172.18.4.89 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-oldgrad-b16d-idf - alias ups-oldgrad-b16d-idf.Princeton.EDU - address 172.18.32.125 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-oldgrad-bdf - alias ups-oldgrad-bdf.Princeton.EDU - address 172.18.32.36 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-scully-idf120b-ppn - alias ups-scully-idf120b-ppn.Princeton.EDU - address 172.18.193.95 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-scully-idf138a-ppn - alias ups-scully-idf138a-ppn.Princeton.EDU - address 172.18.193.94 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-scully-idf220a-ppn - alias ups-scully-idf220a-ppn.Princeton.EDU - address 172.18.193.97 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-scully-idf238a-ppn - alias ups-scully-idf238a-ppn.Princeton.EDU - address 172.18.193.96 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-scully-idf246-ppn - alias ups-scully-idf246-ppn.Princeton.EDU - address 172.18.193.91 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-scully-idf255a-ppn - alias ups-scully-idf255a-ppn.Princeton.EDU - address 172.18.193.90 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-scully-idf318a-ppn - alias ups-scully-idf318a-ppn.Princeton.EDU - address 172.18.193.99 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-scully-idf338a-ppn - alias ups-scully-idf338a-ppn.Princeton.EDU - address 172.18.193.98 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-scully-idf346-ppn - alias ups-scully-idf346-ppn.Princeton.EDU - address 172.18.193.93 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-scully-idf355a-ppn - alias ups-scully-idf355a-ppn.Princeton.EDU - address 172.18.193.92 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-shearowingcenter-idf132 - alias ups-shearowingcenter-idf132.Princeton.EDU - address 172.18.0.181 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-shearowingctr-bdf.princeton.edu - alias ups-shearowingctr-bdf.princeton.edu.Princeton.EDU - address 172.18.2.156 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-sherrerd-316oitidf-ppn - alias ups-sherrerd-316oitidf-ppn.Princeton.EDU - address 172.18.194.6 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-sherrerd-bdf - alias ups-sherrerd-bdf.Princeton.EDU - address 172.18.0.63 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-sherrerd-218oitidf-ppn - alias ups-sherrerd-218oitidf-ppn.Princeton.EDU - address 172.18.194.7 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-thomaslabs-143idf-ppn - alias ups-thomaslabs-143idf-ppn.Princeton.EDU - address 172.18.193.231 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-tigerinnclub-bdf - alias ups-tigerinnclub-bdf.Princeton.EDU - address 172.18.32.154 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-towerclub-bdf - alias ups-towerclub-bdf.Princeton.EDU - address 172.18.32.161 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-vonneumann-bdfh002 - alias ups-vonneumann-bdfh002.Princeton.EDU - address 172.18.3.214 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-vonneumann-h115 - alias ups-vonneumann-h115.Princeton.EDU - address 172.18.3.218 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-vonneumann-h200a - alias ups-vonneumann-h200a.Princeton.EDU - address 172.18.3.216 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-patton-idfa06b-ppn - alias ups-patton-idfa06b-ppn.Princeton.EDU - address 172.18.193.113 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-peyton-bdf - alias ups-peyton-bdf.Princeton.EDU - address 172.18.0.167 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-patton-idf309a-ppn - alias ups-patton-idf309a-ppn.Princeton.EDU - address 172.18.193.114 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-ppn-116prospect-bdf - alias ups-ppn-116prospect-bdf.Princeton.EDU - address 172.18.192.40 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-ppn-1915-a14idf - alias ups-ppn-1915-a14idf.Princeton.EDU - address 172.18.192.38 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-ppn-1967-018oit-idf - alias ups-ppn-1967-018oit-idf.Princeton.EDU - address 172.18.192.135 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-ppn-auxiliarylibrary-bdf - alias ups-ppn-auxiliarylibrary-bdf.Princeton.EDU - address 172.18.192.43 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-mathey-idfa16a - alias ups-mathey-idfa16a.Princeton.EDU - address 172.18.2.149 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-mccarter-bdf-040a - alias ups-mccarter-bdf-040a.Princeton.EDU - address 172.18.0.101 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-palmerhouse-ppn - alias ups-palmerhouse-ppn.Princeton.EDU - address 172.18.194.102 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-particlelab-east - alias ups-particlelab-east.Princeton.EDU - address 172.18.2.67 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-patton-bdf - alias ups-patton-bdf.Princeton.EDU - address 172.18.32.37 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-ppn-wymanhouse-bdf - alias ups-ppn-wymanhouse-bdf.Princeton.EDU - address 172.18.192.109 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-ppn-yoseloff-006oit-idf - alias ups-ppn-yoseloff-006oit-idf.Princeton.EDU - address 172.18.192.124 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-princetonstadium-bdf - alias ups-princetonstadium-bdf.Princeton.EDU - address 172.18.4.3 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-princetonstadium-idf1 - alias ups-princetonstadium-idf1.Princeton.EDU - address 172.18.4.4 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-princetonstadium-idf2 - alias ups-princetonstadium-idf2.Princeton.EDU - address 172.18.4.6 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-princetonstadium-idf3 - alias ups-princetonstadium-idf3.Princeton.EDU - address 172.18.4.8 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-princetonstadium-idf4 - alias ups-princetonstadium-idf4.Princeton.EDU - address 172.18.4.12 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-printingservices-bdf - alias ups-printingservices-bdf.Princeton.EDU - address 172.18.1.30 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-prospecthouse - alias ups-prospecthouse.Princeton.EDU - address 172.18.1.213 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-pu-press-idf157 - alias ups-pu-press-idf157.Princeton.EDU - address 172.18.2.135 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-pupress-bdf - alias ups-pupress-bdf.Princeton.EDU - address 172.18.3.0 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-pyne-bdf - alias ups-pyne-bdf.Princeton.EDU - address 172.18.32.105 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-pyne-idf708-ppn - alias ups-pyne-idf708-ppn.Princeton.EDU - address 172.18.192.165 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-quadrangleclub-bdf - alias ups-quadrangleclub-bdf.Princeton.EDU - address 172.18.32.157 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-radio-20washington-a35-bdf - alias ups-radio-20washington-a35-bdf.Princeton.EDU - address 172.18.0.228 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-radio-20washington-a69-idf - alias ups-radio-20washington-a69-idf.Princeton.EDU - address 172.18.0.244 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-radio-andlinger-bdf - alias ups-radio-andlinger-bdf.Princeton.EDU - address 172.18.0.12 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-radio-andlinger-idf2 - alias ups-radio-andlinger-idf2.Princeton.EDU - address 172.18.0.145 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-radio-andlinger-idf3 - alias ups-radio-andlinger-idf3.Princeton.EDU - address 172.18.0.146 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-recap-031-idf - alias ups-recap-031-idf.Princeton.EDU - address 172.18.3.110 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-recap-bdf - alias ups-recap-bdf.Princeton.EDU - address 172.18.1.240 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-roberts-stadium-bdf - alias ups-roberts-stadium-bdf.Princeton.EDU - address 172.18.4.53 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-recap-800cor-idf-ppn - alias ups-recap-800cor-idf-ppn.Princeton.EDU - address 172.18.193.128 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-robertsonhall-007-bdf - alias ups-robertsonhall-007-bdf.Princeton.EDU - address 172.18.3.1 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-robertsonhall-024a-idf - alias ups-robertsonhall-024a-idf.Princeton.EDU - address 172.18.2.247 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-robertsstadium-idf121elr - alias ups-robertsstadium-idf121elr.Princeton.EDU - address 172.18.4.1 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-sayrehall-bdf - alias ups-sayrehall-bdf.Princeton.EDU - address 172.18.0.157 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-scheidecaldwell-bdf1 - alias ups-scheidecaldwell-bdf1.Princeton.EDU - address 172.18.1.55 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-scully - alias ups-scully.Princeton.EDU - address 172.18.32.47 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-scully-161idf-ppn - alias ups-scully-161idf-ppn.Princeton.EDU - address 172.18.192.37 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-spelman-bdf - alias ups-spelman-bdf.Princeton.EDU - address 172.18.32.108 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-spelman-idfa32b-ppn - alias ups-spelman-idfa32b-ppn.Princeton.EDU - address 172.18.192.56 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-spelman-idfbldg1-ppn - alias ups-spelman-idfbldg1-ppn.Princeton.EDU - address 172.18.192.36 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-spelman-idfbldg2-ppn - alias ups-spelman-idfbldg2-ppn.Princeton.EDU - address 172.18.192.247 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-spelman-idfbldg4-ppn - alias ups-spelman-idfbldg4-ppn.Princeton.EDU - address 172.18.193.1 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-spelman-idfbldg6-ppn - alias ups-spelman-idfbldg6-ppn.Princeton.EDU - address 172.18.193.3 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-spelman-idfbldg7-ppn - alias ups-spelman-idfbldg7-ppn.Princeton.EDU - address 172.18.193.4 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-spelman-idfbldg8-ppn - alias ups-spelman-idfbldg8-ppn.Princeton.EDU - address 172.18.193.5 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-stadium-022a-idf-ppn - alias ups-stadium-022a-idf-ppn.Princeton.EDU - address 172.18.192.74 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-stanhope-bdf - alias ups-stanhope-bdf.Princeton.EDU - address 172.18.3.43 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-terraceclub-bdf - alias ups-terraceclub-bdf.Princeton.EDU - address 172.18.32.153 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-thomaslab-idf106 - alias ups-thomaslab-idf106.Princeton.EDU - address 172.18.1.79 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-thomaslab-idf143 - alias ups-thomaslab-idf143.Princeton.EDU - address 172.18.1.87 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-thomaslab-idf206 - alias ups-thomaslab-idf206.Princeton.EDU - address 172.18.1.88 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-thomaslab-idf250 - alias ups-thomaslab-idf250.Princeton.EDU - address 172.18.1.89 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-thomaslab-idf306 - alias ups-thomaslab-idf306.Princeton.EDU - address 172.18.1.90 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-thomaslab-idf350 - alias ups-thomaslab-idf350.Princeton.EDU - address 172.18.1.93 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-walker-bdf - alias ups-walker-bdf.Princeton.EDU - address 172.18.32.173 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-wallace-bdf - alias ups-wallace-bdf.Princeton.EDU - address 172.18.0.188 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-wallace-idf100j - alias ups-wallace-idf100j.Princeton.EDU - address 172.18.3.46 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-wallace-idf225b - alias ups-wallace-idf225b.Princeton.EDU - address 172.18.3.50 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-wallace-idf321a - alias ups-wallace-idf321a.Princeton.EDU - address 172.18.1.20 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-walker-idf306-ppn - alias ups-walker-idf306-ppn.Princeton.EDU - address 172.18.192.147 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-wendellb-idfmezz-ppn - alias ups-wendellb-idfmezz-ppn.Princeton.EDU - address 172.18.193.60 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-wendellc-idfattic-ppn - alias ups-wendellc-idfattic-ppn.Princeton.EDU - address 172.18.193.61 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-westgarage-bdf - alias ups-westgarage-bdf.Princeton.EDU - address 172.18.2.170 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-westwindsorsubstation-bdf - alias ups-westwindsorsubstation-bdf.Princeton.EDU - address 172.18.4.14 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-westwindsorsubstation-bdf2 - alias ups-westwindsorsubstation-bdf2.Princeton.EDU - address 172.18.1.185 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-whig - alias ups-whig.Princeton.EDU - address 172.18.1.151 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-whitman-bdf - alias ups-whitman-bdf.Princeton.EDU - address 172.18.32.14 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-wilcox-201idf-ppn - alias ups-wilcox-201idf-ppn.Princeton.EDU - address 172.18.193.51 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-wilcoxhall-bdf005 - alias ups-wilcoxhall-bdf005.Princeton.EDU - address 172.18.2.244 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-witherspoon - alias ups-witherspoon.Princeton.EDU - address 172.18.32.141 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-woolworth-206-idf - alias ups-woolworth-206-idf.Princeton.EDU - address 172.18.2.51 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-woolworth-bdf - alias ups-woolworth-bdf.Princeton.EDU - address 172.18.2.1 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name ups-ww-maint-yard-bdf - alias ups-ww-maint-yard-bdf.Princeton.EDU - address 172.18.4.237 - hostgroups OIT UPS, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-infranet5 - alias gate-voipgate-infranet5.Princeton.EDU - address 172.18.128.1 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-linknet13 - alias gate-voipgate-linknet13.Princeton.EDU - address 128.112.12.54 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-plinknet3 - alias gate-voipgate-plinknet3.Princeton.EDU - address 192.168.9.13 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voip-servernet - alias gate-voipgate-voip-servernet.Princeton.EDU - address 172.19.64.1 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voip-servernet2 - alias gate-voipgate-voip-servernet2.Princeton.EDU - address 172.19.69.1 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet1 - alias gate-voipgate-voipnet1.Princeton.EDU - address 10.2.0.1 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet2 - alias gate-voipgate-voipnet2.Princeton.EDU - address 10.2.4.1 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet3 - alias gate-voipgate-voipnet3.Princeton.EDU - address 10.2.5.1 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet4 - alias gate-voipgate-voipnet4.Princeton.EDU - address 10.2.6.1 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet5 - alias gate-voipgate-voipnet5.Princeton.EDU - address 10.2.8.1 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet6 - alias gate-voipgate-voipnet6.Princeton.EDU - address 10.2.10.1 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet7 - alias gate-voipgate-voipnet7.Princeton.EDU - address 10.2.9.1 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet8 - alias gate-voipgate-voipnet8.Princeton.EDU - address 10.2.12.1 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet9 - alias gate-voipgate-voipnet9.Princeton.EDU - address 10.2.13.1 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet10 - alias gate-voipgate-voipnet10.Princeton.EDU - address 10.2.14.1 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet11 - alias gate-voipgate-voipnet11.Princeton.EDU - address 10.2.8.65 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet12 - alias gate-voipgate-voipnet12.Princeton.EDU - address 10.2.8.97 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet13 - alias gate-voipgate-voipnet13.Princeton.EDU - address 10.2.16.1 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet14 - alias gate-voipgate-voipnet14.Princeton.EDU - address 10.2.16.65 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet15 - alias gate-voipgate-voipnet15.Princeton.EDU - address 10.2.16.129 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet16 - alias gate-voipgate-voipnet16.Princeton.EDU - address 10.2.17.1 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet17 - alias gate-voipgate-voipnet17.Princeton.EDU - address 10.2.17.129 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet18 - alias gate-voipgate-voipnet18.Princeton.EDU - address 10.2.18.1 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet19 - alias gate-voipgate-voipnet19.Princeton.EDU - address 10.2.18.33 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet20 - alias gate-voipgate-voipnet20.Princeton.EDU - address 10.2.18.65 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet21 - alias gate-voipgate-voipnet21.Princeton.EDU - address 10.2.18.97 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet22 - alias gate-voipgate-voipnet22.Princeton.EDU - address 10.2.18.129 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet23 - alias gate-voipgate-voipnet23.Princeton.EDU - address 10.2.18.161 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet24 - alias gate-voipgate-voipnet24.Princeton.EDU - address 10.2.18.193 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet25 - alias gate-voipgate-voipnet25.Princeton.EDU - address 10.2.18.225 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet26 - alias gate-voipgate-voipnet26.Princeton.EDU - address 10.2.19.1 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet27 - alias gate-voipgate-voipnet27.Princeton.EDU - address 10.2.19.65 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet28 - alias gate-voipgate-voipnet28.Princeton.EDU - address 10.2.19.129 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet29 - alias gate-voipgate-voipnet29.Princeton.EDU - address 10.2.19.193 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet30 - alias gate-voipgate-voipnet30.Princeton.EDU - address 10.2.20.1 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet31 - alias gate-voipgate-voipnet31.Princeton.EDU - address 10.2.20.65 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet32 - alias gate-voipgate-voipnet32.Princeton.EDU - address 10.2.20.129 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet33 - alias gate-voipgate-voipnet33.Princeton.EDU - address 10.2.20.193 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet34 - alias gate-voipgate-voipnet34.Princeton.EDU - address 10.2.21.1 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet35 - alias gate-voipgate-voipnet35.Princeton.EDU - address 10.2.21.129 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet36 - alias gate-voipgate-voipnet36.Princeton.EDU - address 10.2.22.1 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet37 - alias gate-voipgate-voipnet37.Princeton.EDU - address 10.2.22.129 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet38 - alias gate-voipgate-voipnet38.Princeton.EDU - address 10.2.23.1 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet39 - alias gate-voipgate-voipnet39.Princeton.EDU - address 10.2.23.129 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet40 - alias gate-voipgate-voipnet40.Princeton.EDU - address 10.2.24.1 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet41 - alias gate-voipgate-voipnet41.Princeton.EDU - address 10.2.24.129 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet42 - alias gate-voipgate-voipnet42.Princeton.EDU - address 10.2.25.1 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet43 - alias gate-voipgate-voipnet43.Princeton.EDU - address 10.2.26.1 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet44 - alias gate-voipgate-voipnet44.Princeton.EDU - address 10.2.27.1 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet45 - alias gate-voipgate-voipnet45.Princeton.EDU - address 10.2.28.1 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet46 - alias gate-voipgate-voipnet46.Princeton.EDU - address 10.2.29.1 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet47 - alias gate-voipgate-voipnet47.Princeton.EDU - address 10.2.30.1 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet48 - alias gate-voipgate-voipnet48.Princeton.EDU - address 10.2.31.1 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet49 - alias gate-voipgate-voipnet49.Princeton.EDU - address 10.2.32.1 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet50 - alias gate-voipgate-voipnet50.Princeton.EDU - address 10.2.34.1 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet51 - alias gate-voipgate-voipnet51.Princeton.EDU - address 10.2.36.1 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet52 - alias gate-voipgate-voipnet52.Princeton.EDU - address 10.2.38.1 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet53 - alias gate-voipgate-voipnet53.Princeton.EDU - address 10.2.40.1 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet54 - alias gate-voipgate-voipnet54.Princeton.EDU - address 10.2.42.1 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet55 - alias gate-voipgate-voipnet55.Princeton.EDU - address 10.2.44.1 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet56 - alias gate-voipgate-voipnet56.Princeton.EDU - address 10.2.46.1 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet57 - alias gate-voipgate-voipnet57.Princeton.EDU - address 10.2.48.1 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet58 - alias gate-voipgate-voipnet58.Princeton.EDU - address 10.2.52.1 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet59 - alias gate-voipgate-voipnet59.Princeton.EDU - address 10.2.56.1 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name gate-voipgate-voipnet60 - alias gate-voipgate-voipnet60.Princeton.EDU - address 10.2.60.1 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name voipgate2 - alias voipgate2.Princeton.EDU - address 172.18.128.11 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - - -define host { - host_name voipgate3 - alias voipgate3.Princeton.EDU - address 172.18.128.13 - hostgroups OIT VOIP routers, Rover hosts - use Rover device -} - -define host { - host_name Arizona_Cluster - alias Arizona Cluster VIP - address 127.0.0.1 - use generic-host - check_interval 1440 - obsess_over_host 0 - event_handler_enabled 0 - process_perf_data 0 - flap_detection_enabled 0 - contacts nobody -} - -define host { - host_name csg_host - alias faux webcheck csg host - address 140.180.223.42 - use generic-host - check_interval 0 - contacts nobody -} - -define host { - host_name email-end2end - alias End-to-end email testing - address 127.0.0.1 - use generic-host - notifications_enabled 0 - contacts nobody -} - -define host { - host_name epoxy - alias epoxy.Princeton.EDU - address 140.180.222.35 - _department Enterprise Infrastructure Services, Office of Information Technology - _building New South - check_command check_ssh - check_interval 10 - notification_interval 30 - retry_interval 5 - contact_groups null - contacts ESS Page - _contacts unix@princeton.edu - use UNIX Production -} - -define host { - host_name Kaltura Live - alias kaltura live virtual host - address 127.0.0.1 - use generic-host - check_interval 0 - contacts nobody - #contacts Dwight D. Bashore, CSG OnCall -} - -define host { - host_name tsm - alias tsm session counter - address 127.0.0.1 - use generic-host - contacts nobody -} - -define host { - host_name Webcheck_Firefox - alias Pseudo host for Firefox webchecks - address 127.0.0.1 - use generic-host - check_interval 1440 - obsess_over_host 0 - event_handler_enabled 0 - process_perf_data 0 - flap_detection_enabled 0 - contacts nobody -} - -define host { - host_name Webcheck_host - alias Webcheck_host.princeton.edu - address 127.0.0.1 - use generic-host - check_interval 0 - contacts nobody -} - -define host { - host_name Webhead_Cluster - alias Webhead Cluster VIP - address 127.0.0.1 - use generic-host - check_interval 1440 - obsess_over_host 0 - event_handler_enabled 0 - process_perf_data 0 - flap_detection_enabled 0 - contacts nobody -} - -define host { - host_name www_roxen - alias faux host for Roxen pages - address 127.0.0.1 - use generic-host - check_interval 0 - contacts nobody -} - -define host { - host_name autumn-dev - alias autumn-dev.Princeton.EDU - display_name F5 VIP to autom100l and autom101l - address 10.6.58.46 - use generic-host - check_interval 0 - contacts Networking -} - -define host { - host_name autumn - alias autumn.Princeton.EDU - display_name F5 VIP to autom200l and autom201l - address 10.6.58.20 - use generic-host - check_interval 0 - contact_groups Networking Pager -} - -# -# $Header: /usr/local/monitoring/nagios/etc/hosts/RCS/roxen-hosts.cfg,v 1.22 2014/08/25 15:12:19 nagios Exp nagios $ -# -# Roxen hosts - Web Services group -# - - -define host { - host_name roxdb01 - alias roxdb01.Princeton.EDU - address 10.6.52.14 - use UNIX Production 151 Trust - contacts CSG List, CSG OnCall -} - -define host { - host_name roxdb01qa - alias roxdb01qa.Princeton.EDU - address 10.6.52.71 - use UNIX Dev/QA Trust - contacts CSG List, CSG OnCall -} - -define host { - host_name roxdb02 - alias roxdb02.Princeton.EDU - address 10.6.52.72 - use UNIX Production NS Trust - contacts CSG List, CSG OnCall -} - -define host { - host_name roxdb02qa - alias roxdb02qa.Princeton.EDU - address 10.6.52.73 - use UNIX Dev/QA Trust - contacts CSG List, CSG OnCall -} - - - -define host { - host_name alumni-ldap - alias alumni-ldap.Princeton.EDU - use generic-host - contacts Identity and Access Management -} - -define host { - host_name alumni-ldap1 - alias alumni-ldap1.Princeton.EDU - use generic-host - contacts Identity and Access Management -} - -define host { - host_name alumni-ldap2 - alias alumni-ldap2.Princeton.EDU - use generic-host - contacts Identity and Access Management -} - -define host { - host_name alumni05 - alias alumni05.Princeton.EDU - address 10.6.63.109 - use generic-host - contacts Identity and Access Management -} - -define host { - host_name alumni06 - alias alumni06.Princeton.EDU - address 10.6.63.110 - use generic-host - contacts Identity and Access Management -} - -define host { - host_name dsml - alias dsml.Princeton.EDU - use generic-host - check_interval 0 - contacts Identity and Access Management -} - -# Now in AWS -define host { - host_name fed - alias fed.Princeton.EDU - address 140.180.222.18 - use generic-host -# address 3.220.234.24,3.211.185.100 -# use AWS Load Balancer - contacts Identity and Access Management -} - -#Now in AWS -define host { - host_name fedqa - alias fedqa.Princeton.EDU - address 3.220.168.135,3.220.168.44 - use AWS Load Balancer - contacts Identity and Access Management -} - -#Now in AWS -define host { - host_name idp - alias idp.Princeton.EDU - address 140.180.222.55 - use generic-host -# address 18.235.250.95,54.159.202.168 -# use AWS Load Balancer - contacts Identity and Access Management -} - -#Now in AWS -define host { - host_name idpqa - alias idpqa.Princeton.EDU - address 100.24.220.125,18.215.32.83 - use AWS Load Balancer - contacts Identity and Access Management -} - -define host { - host_name webservices - alias webservices.Princeton.EDU - address 140.180.222.61 - use generic-host - check_interval 0 - contacts Identity and Access Management -} - -define host { - host_name ldap - alias ldap.Princeton.EDU - use generic-host - check_interval 0 - contacts Identity and Access Management -} - -define host { - host_name dumper05 - alias dumper05.Princeton.EDU - address 10.6.63.108 - use generic-host - check_interval 0 - contacts Identity and Access Management -} - -define host { - host_name dumper06 - alias dumper06.Princeton.EDU - address 10.6.63.111 - use generic-host - check_interval 0 - contacts Identity and Access Management -} - -define host { - host_name ldapprime - alias ldapprime.Princeton.edu - use generic-host - check_interval 0 - contacts Identity and Access Management -} - -define host { - host_name ldapproxyqa - alias ldapproxyqa.Princeton.edu - use generic-host - check_interval 0 - contacts Identity and Access Management -} - -define host { - host_name ldapremote - alias ldapremote.Princeton.edu - use generic-host - check_interval 0 - contacts Identity and Access Management -} - -define host { - host_name ldap05 - alias ldap05.Princeton.edu - address 10.6.63.112 - use generic-host - check_interval 0 - contacts Identity and Access Management -} - -define host { - host_name ldap06 - alias ldap06.Princeton.edu - address 10.6.63.113 - use generic-host - check_interval 0 - contacts Identity and Access Management -} - -define host { - host_name ldapupdate - alias ldapupdate.Princeton.EDU - address 140.180.222.45 - use generic-host - check_interval 0 - contacts Identity and Access Management -} - -define host { - host_name newdumper - alias newdumper.Princeton.EDU - use generic-host - contacts Identity and Access Management -} - -define host { - host_name ovdprod - alias ovdprod.Princeton.EDU - address 140.180.222.103 - use generic-host - check_interval 0 - contacts Identity and Access Management -} - -define host { - host_name qaovd - alias qaovd.Princeton.EDU - address 10.6.58.25 - use generic-host - check_interval 0 - contacts Identity and Access Management -} - -define host { - host_name PUAccess - alias puaccess.Princeton.EDU - address 140.180.222.101 - use generic-host - contacts Identity and Access Management -} - -define host { - host_name PUAccessQA - alias puaccessqa.Princeton.EDU - address 10.6.58.12 - use generic-host - contacts Identity and Access Management -} - -define host { - host_name tools - alias tools.Princeton.EDU - address 140.180.222.56 - use generic-host - contacts Identity and Access Management -} - - -# -# $Header: /usr/local/monitoring/nagios/etc/hosts/RCS/sharepoint-vips.cfg,v 1.8 2014/09/24 01:15:08 nagios Exp nagios $ -# -# SharePoint VIP's -# - - -define host { - host_name sp - alias sp.princeton.edu - use generic-host - contacts Sharepoint Admin - contact_groups null -} - - -define host { - host_name sp2010prod - alias sp2010prod.princeton.edu - use generic-host - contacts Sharepoint Admin - contact_groups null -} - - -define host { - host_name sp2016 - alias sp2016.princeton.edu - use generic-host - contacts Sharepoint Admin - contact_groups null -} - - - - - - -define host { - host_name EP-Poe-Field-9019-Phone - alias Mini-Tower 1 (EP-Poe-Field-9019-Phone) - address 10.2.48.201 - hostgroups Talk-A-Phone Mini-Towers - check_interval 1 - retry_interval 1 - max_check_attempts 3 - _Device Talk-A-Phone VOIP-500 Emergency Phone - _Location Poe Field - _Phone 077-9019 - contacts EBT - use generic-host -} - - -define host { - host_name EP-Princeton-Station-9076-Phone - alias Mini-Tower 2 (EP-Princeton-Station-9076-Phone) - address 10.2.48.202 - hostgroups Talk-A-Phone Mini-Towers - check_interval 1 - retry_interval 1 - max_check_attempts 3 - _Device Talk-A-Phone VOIP-500 Emergency Phone - _Location WAWA Parking Lot (EP Princeton Station) - _Phone 077-9076 - contacts EBT - use generic-host -} - - -define host { - host_name EP-Lakeside-1232-Phone - alias Mini-Tower 3 (EP-Lakeside-1232-Phone) - address 10.2.22.39 - hostgroups Talk-A-Phone Mini-Towers - check_interval 1 - retry_interval 1 - max_check_attempts 3 - _Device Talk-A-Phone VOIP-500 Emergency Phone - _Location Lakeside - _Phone 077-1232 - contacts EBT - use generic-host -} - - - - -define host { - host_name test-border-router-hpcrc-science-dmz-net - alias test-border-router-hpcrc-science-dmz-net.Princeton.EDU - address 128.112.229.1 - hostgroups test-border-router, Rover hosts - use Rover device -} - - -define host { - host_name ups-100overlookcenter-bdf-c401 - alias ups-100overlookcenter-bdf-c401.Princeton.EDU - address 172.18.1.63 - hostgroups test-border-router, Rover hosts - use Rover device -} - - -define host { - host_name test-border-hpcrc-router-plinknet36 - alias test-border-hpcrc-router-plinknet36.Princeton.EDU - address 192.168.9.158 - hostgroups test-border-router, Rover hosts - use Rover device -} - - -define host { - host_name nwn-cisco-uc-vpn-server-plinknet32 - alias nwn-cisco-uc-vpn-server-plinknet32.Princeton.EDU - address 192.168.9.134 - hostgroups VPN Tunnel Endpoints, Rover hosts - use Rover device -} - -############################################################################## -# -# naemon.cfg - Sample Main Config File for Naemon 1.0.3-g250db6c -# -# Read the documentation for more information on this configuration -# file. I've provided some comments here, but things may not be so -# clear without further explanation. -# -# -############################################################################## - - -# LOG FILE -# This is the main log file where service and host events are logged -# for historical purposes. This should be the first option specified -# in the config file!!! - -log_file=/usr/local/monitoring/log/naemon.log - - - -# OBJECT CONFIGURATION FILE(S) -# These are the object configuration files in which you define hosts, -# host groups, contacts, contact groups, services, etc. -# You can split your object definitions across several config files -# if you wish (as shown below), or keep them all in a single config file. - -# You can specify individual object config files as shown below: -#cfg_file=/usr/local/monitoring/naemon/etc/naemon/objects/commands.cfg -#cfg_file=/usr/local/monitoring/naemon/etc/naemon/objects/contacts.cfg -#cfg_file=/usr/local/monitoring/naemon/etc/naemon/objects/timeperiods.cfg -#cfg_file=/usr/local/monitoring/naemon/etc/naemon/objects/templates.cfg - - -# You can also tell naemon to process all config files (with a .cfg -# extension) in a particular directory by using the cfg_dir -# directive as shown below: -#cfg_dir=/usr/local/monitoring/naemon/etc/naemon/conf.d - - -# General configuration files - these are rarely changed -cfg_dir=/usr/local/monitoring/etc/naemon/conf.d/objects -cfg_dir=/usr/local/monitoring/etc/naemon/conf.d/templates - -# Hosts and services - changed all the time -cfg_dir=/usr/local/monitoring/etc/naemon/conf.d/hosts -cfg_dir=/usr/local/monitoring/etc/naemon/conf.d/dynamic-hosts -cfg_dir=/usr/local/monitoring/etc/naemon/conf.d/services -cfg_dir=/usr/local/monitoring/etc/naemon/conf.d/dynamic-services - -# Escalations and dependencies -cfg_dir=/usr/local/monitoring/etc/naemon/conf.d/escalations -cfg_dir=/usr/local/monitoring/etc/naemon/conf.d/dependencies - -cfg_file=/usr/local/monitoring/etc/naemon/conf.d/hostgroups.cfg -cfg_file=/usr/local/monitoring/etc/naemon/conf.d/hostgroups_dynamic.cfg -cfg_file=/usr/local/monitoring/etc/naemon/conf.d/rover-hostgroups.cfg -cfg_file=/usr/local/monitoring/etc/naemon/conf.d/service_groups.cfg - -cfg_dir=/usr/local/monitoring/naemon/dell/config - - - -# OBJECT CACHE FILE -# This option determines where object definitions are cached when -# naemon starts/restarts. The CGIs read object definitions from -# this cache file (rather than looking at the object config files -# directly) in order to prevent inconsistencies that can occur -# when the config files are modified after naemon starts. - -object_cache_file=/usr/local/monitoring/var/naemon/objects.cache - - - -# PRE-CACHED OBJECT FILE -# This options determines the location of the precached object file. -# If you run naemon with the -p command line option, it will preprocess -# your object configuration file(s) and write the cached config to this -# file. You can then start naemon with the -u option to have it read -# object definitions from this precached file, rather than the standard -# object configuration files (see the cfg_file and cfg_dir options above). -# Using a precached object file can speed up the time needed to (re)start -# the naemon process if you've got a large and/or complex configuration. -# Read the documentation section on optimizing naemon to find our more -# about how this feature works. - -precached_object_file=/usr/local/monitoring/var/naemon/objects.precache - - - -# RESOURCE FILE -# This is an optional resource file that contains $USERx$ macro -# definitions. Multiple resource files can be specified by using -# multiple resource_file definitions. The CGIs will not attempt to -# read the contents of resource files, so information that is -# considered to be sensitive (usernames, passwords, etc) can be -# defined as macros in this file and restrictive permissions (600) -# can be placed on this file. - -resource_file=/usr/local/monitoring/etc/naemon/resource.cfg - - - -# STATUS FILE -# This is where the current status of all monitored services and -# hosts is stored. Its contents are read and processed by the CGIs. -# The contents of the status file are deleted every time naemon -# restarts. - -status_file=/usr/local/monitoring/var/naemon/status.dat - - - -# STATUS FILE UPDATE INTERVAL -# This option determines the frequency (in seconds) that -# naemon will periodically dump program, host, and -# service status data. - -status_update_interval=10 - - - -# EXTERNAL COMMAND OPTION -# This option allows you to specify whether or not Naemon should check -# for external commands (in the command file defined below). By default -# Naemon will *not* check for external commands, just to be on the -# cautious side. If you want to be able to use the CGI command interface -# you will have to enable this. -# Values: 0 = disable commands, 1 = enable commands - -check_external_commands=1 - - - -# EXTERNAL COMMAND FILE -# This is the file that Naemon checks for external command requests. -# It is also where the command CGI will write commands that are submitted -# by users, so it must be writeable by the user that the web server -# is running as (usually 'nobody'). Permissions should be set at the -# directory level instead of on the file, as the file is deleted every -# time its contents are processed. - -command_file=/usr/local/monitoring/var/naemon/naemon.cmd - - - -# QUERY HANDLER INTERFACE -# This is the socket that is created for the Query Handler interface - -#query_socket=/usr/local/monitoring/naemon/var/naemon.qh - - - -# LOCK FILE -# This is the lockfile that Naemon will use to store its PID number -# in when it is running in daemon mode. - -lock_file=/usr/local/monitoring/var/naemon/naemon.pid - - - -# TEMP FILE -# This is a temporary file that is used as scratch space when Naemon -# updates the status log, cleans the comment file, etc. This file -# is created, used, and deleted throughout the time that Naemon is -# running. - -temp_file=/usr/local/monitoring/var/naemon/naemon.tmp - - - -# TEMP PATH -# This is path where Naemon can create temp files for service and -# host check results, etc. - -temp_path=/usr/local/monitoring/var/naemon - - - -# EVENT BROKER OPTIONS -# Controls what (if any) data gets sent to the event broker. -# Values: 0 = Broker nothing -# -1 = Broker everything -# = See documentation - -event_broker_options=-1 - - - -# EVENT BROKER MODULE(S) -# This directive is used to specify an event broker module that should -# by loaded by Naemon at startup. Use multiple directives if you want -# to load more than one module. Arguments that should be passed to -# the module at startup are seperated from the module path by a space. -# -# Example: -# -# broker_module= [moduleargs] - -broker_module=/usr/local/monitoring/livestatus/lib/naemon-livestatus/livestatus.so /usr/local/monitoring/var/naemon/live -#broker_module=/usr/local/monitoring/naemon/lib/naemon-livestatus/livestatus.so /usr/local/monitoring/naemon/var/cache/naemon/live - -broker_module=/usr/local/monitoring/mod_gearman/lib/mod_gearman/mod_gearman_naemon.o config=/usr/local/monitoring/mod_gearman/etc/mod_gearman_neb.conf -#broker_module=/somewhere/module1.o -#broker_module=/somewhere/module2.o arg1 arg2=3 debug=0 - - - -# LOG ARCHIVE PATH -# This is the directory where archived (rotated) log files are placed by the -# logrotate daemon. It is used by out of core add-ons to discover the logfiles. - -log_archive_path=/usr/local/monitoring/log/archives - - - -# LOGGING OPTIONS -# If you want messages logged to the syslog facility, as well as the -# Naemon log file set this option to 1. If not, set it to 0. - -use_syslog=1 - - - -# NOTIFICATION LOGGING OPTION -# If you don't want notifications to be logged, set this value to 0. -# If notifications should be logged, set the value to 1. - -log_notifications=1 - - - -# SERVICE RETRY LOGGING OPTION -# If you don't want service check retries to be logged, set this value -# to 0. If retries should be logged, set the value to 1. - -log_service_retries=1 - - - -# HOST RETRY LOGGING OPTION -# If you don't want host check retries to be logged, set this value to -# 0. If retries should be logged, set the value to 1. - -log_host_retries=1 - - - -# EVENT HANDLER LOGGING OPTION -# If you don't want host and service event handlers to be logged, set -# this value to 0. If event handlers should be logged, set the value -# to 1. - -log_event_handlers=1 - - - -# INITIAL STATES LOGGING OPTION -# If you want Naemon to log all initial host and service states to -# the main log file (the first time the service or host is checked) -# you can enable this option by setting this value to 1. If you -# are not using an external application that does long term state -# statistics reporting, you do not need to enable this option. In -# this case, set the value to 0. - -log_initial_states=0 - - - -# CURRENT STATES LOGGING OPTION -# If you don't want Naemon to log all current host and service states -# after log has been rotated to the main log file, you can disable this -# option by setting this value to 0. Default value is 1. - -log_current_states=1 - - - -# EXTERNAL COMMANDS LOGGING OPTION -# If you don't want Naemon to log external commands, set this value -# to 0. If external commands should be logged, set this value to 1. -# Note: This option does not include logging of passive service -# checks - see the option below for controlling whether or not -# passive checks are logged. - -log_external_commands=1 - - - -# PASSIVE CHECKS LOGGING OPTION -# If you don't want Naemon to log passive host and service checks, set -# this value to 0. If passive checks should be logged, set -# this value to 1. - -log_passive_checks=1 - - - -# GLOBAL HOST AND SERVICE EVENT HANDLERS -# These options allow you to specify a host and service event handler -# command that is to be run for every host or service state change. -# The global event handler is executed immediately prior to the event -# handler that you have optionally specified in each host or -# service definition. The command argument is the short name of a -# command definition that you define in your host configuration file. -# Read the HTML docs for more information. - -#global_host_event_handler=somecommand -#global_service_event_handler=somecommand - - - -# MAXIMUM CONCURRENT SERVICE CHECKS -# This option allows you to specify the maximum number of -# service checks that can be run in parallel at any given time. -# Specifying a value of 1 for this variable essentially prevents -# any service checks from being parallelized. A value of 0 -# will not restrict the number of concurrent checks that are -# being executed. - -max_concurrent_checks=0 - - - -# CACHED HOST CHECK HORIZON -# This option determines the maximum amount of time (in seconds) -# that the state of a previous host check is considered current. -# Cached host states (from host checks that were performed more -# recently that the timeframe specified by this value) can immensely -# improve performance in regards to the host check logic. -# Too high of a value for this option may result in inaccurate host -# states being used by Naemon, while a lower value may result in a -# performance hit for host checks. Use a value of 0 to disable host -# check caching. - -cached_host_check_horizon=15 - - - -# CACHED SERVICE CHECK HORIZON -# This option determines the maximum amount of time (in seconds) -# that the state of a previous service check is considered current. -# Cached service states (from service checks that were performed more -# recently that the timeframe specified by this value) can immensely -# improve performance in regards to predictive dependency checks. -# Use a value of 0 to disable service check caching. - -cached_service_check_horizon=15 - - - -# ENABLE PREDICTIVE HOST DEPENDENCY CHECKS -# This option determines whether or not Naemon will attempt to execute -# checks of hosts when it predicts that future dependency logic test -# may be needed. These predictive checks can help ensure that your -# host dependency logic works well. -# Values: -# 0 = Disable predictive checks -# 1 = Enable predictive checks (default) - -enable_predictive_host_dependency_checks=1 - - - -# ENABLE PREDICTIVE SERVICE DEPENDENCY CHECKS -# This option determines whether or not Naemon will attempt to execute -# checks of service when it predicts that future dependency logic test -# may be needed. These predictive checks can help ensure that your -# service dependency logic works well. -# Values: -# 0 = Disable predictive checks -# 1 = Enable predictive checks (default) - -enable_predictive_service_dependency_checks=1 - - - -# SOFT STATE DEPENDENCIES -# This option determines whether or not Naemon will use soft state -# information when checking host and service dependencies. Normally -# Naemon will only use the latest hard host or service state when -# checking dependencies. If you want it to use the latest state (regardless -# of whether its a soft or hard state type), enable this option. -# Values: -# 0 = Don't use soft state dependencies (default) -# 1 = Use soft state dependencies - -soft_state_dependencies=0 - - - -# TIME CHANGE ADJUSTMENT THRESHOLDS -# These options determine when Naemon will react to detected changes -# in system time (either forward or backwards). - -#time_change_threshold=900 - - - -# TIMEOUT VALUES -# These options control how much time Naemon will allow various -# types of commands to execute before killing them off. Options -# are available for controlling maximum time allotted for -# service checks, host checks, event handlers, notifications, the -# ocsp command, and performance data commands. All values are in -# seconds. - -service_check_timeout=60 -host_check_timeout=30 -event_handler_timeout=120 -notification_timeout=30 -ocsp_timeout=5 -perfdata_timeout=5 - - - -# RETAIN STATE INFORMATION -# This setting determines whether or not Naemon will save state -# information for services and hosts before it shuts down. Upon -# startup Naemon will reload all saved service and host state -# information before starting to monitor. This is useful for -# maintaining long-term data on state statistics, etc, but will -# slow Naemon down a bit when it (re)starts. Since its only -# a one-time penalty, I think its well worth the additional -# startup delay. - -retain_state_information=1 - - - -# STATE RETENTION FILE -# This is the file that Naemon should use to store host and -# service state information before it shuts down. The state -# information in this file is also read immediately prior to -# starting to monitor the network when Naemon is restarted. -# This file is used only if the retain_state_information -# variable is set to 1. - -state_retention_file=/usr/local/monitoring/var/naemon/retention.dat - - - -# RETENTION DATA UPDATE INTERVAL -# This setting determines how often (in minutes) that Naemon -# will automatically save retention data during normal operation. -# If you set this value to 0, Naemon will not save retention -# data at regular interval, but it will still save retention -# data before shutting down or restarting. If you have disabled -# state retention, this option has no effect. - -retention_update_interval=60 - - - -# USE RETAINED PROGRAM STATE -# This setting determines whether or not Naemon will set -# program status variables based on the values saved in the -# retention file. If you want to use retained program status -# information, set this value to 1. If not, set this value -# to 0. - -use_retained_program_state=1 - - - -# USE RETAINED SCHEDULING INFO -# This setting determines whether or not Naemon will retain -# the scheduling info (next check time) for hosts and services -# based on the values saved in the retention file. If you -# If you want to use retained scheduling info, set this -# value to 1. If not, set this value to 0. - -use_retained_scheduling_info=1 - - - -# RETAINED ATTRIBUTE MASKS (ADVANCED FEATURE) -# The following variables are used to specify specific host and -# service attributes that should *not* be retained by Naemon during -# program restarts. -# -# The values of the masks are bitwise ANDs of values specified -# by the "MODATTR_" definitions found in include/common.h. -# For example, if you do not want the current enabled/disabled state -# of flap detection and event handlers for hosts to be retained, you -# would use a value of 24 for the host attribute mask... -# MODATTR_EVENT_HANDLER_ENABLED (8) + MODATTR_FLAP_DETECTION_ENABLED (16) = 24 - -# This mask determines what host attributes are not retained -retained_host_attribute_mask=0 - -# This mask determines what service attributes are not retained -retained_service_attribute_mask=0 - -# These two masks determine what process attributes are not retained. -# There are two masks, because some process attributes have host and service -# options. For example, you can disable active host checks, but leave active -# service checks enabled. -retained_process_host_attribute_mask=0 -retained_process_service_attribute_mask=0 - -# These two masks determine what contact attributes are not retained. -# There are two masks, because some contact attributes have host and -# service options. For example, you can disable host notifications for -# a contact, but leave service notifications enabled for them. -retained_contact_host_attribute_mask=0 -retained_contact_service_attribute_mask=0 - - - -# INTERVAL LENGTH -# This is the seconds per unit interval as used in the -# host/contact/service configuration files. Setting this to 60 means -# that each interval is one minute long (60 seconds). Other settings -# have not been tested much, so your mileage is likely to vary... - -interval_length=60 - - - -# AGGRESSIVE HOST CHECKING OPTION -# If you don't want to turn on aggressive host checking features, set -# this value to 0 (the default). Otherwise set this value to 1 to -# enable the aggressive check option. Read the docs for more info -# on what aggressive host check is or check out the source code in -# base/checks.c - -use_aggressive_host_checking=0 - - - -# SERVICE CHECK EXECUTION OPTION -# This determines whether or not Naemon will actively execute -# service checks when it initially starts. If this option is -# disabled, checks are not actively made, but Naemon can still -# receive and process passive check results that come in. Unless -# you're implementing redundant hosts or have a special need for -# disabling the execution of service checks, leave this enabled! -# Values: 1 = enable checks, 0 = disable checks - -execute_service_checks=1 - - - -# PASSIVE SERVICE CHECK ACCEPTANCE OPTION -# This determines whether or not Naemon will accept passive -# service checks results when it initially (re)starts. -# Values: 1 = accept passive checks, 0 = reject passive checks - -accept_passive_service_checks=1 - - - -# HOST CHECK EXECUTION OPTION -# This determines whether or not Naemon will actively execute -# host checks when it initially starts. If this option is -# disabled, checks are not actively made, but Naemon can still -# receive and process passive check results that come in. Unless -# you're implementing redundant hosts or have a special need for -# disabling the execution of host checks, leave this enabled! -# Values: 1 = enable checks, 0 = disable checks - -execute_host_checks=1 - - - -# PASSIVE HOST CHECK ACCEPTANCE OPTION -# This determines whether or not Naemon will accept passive -# host checks results when it initially (re)starts. -# Values: 1 = accept passive checks, 0 = reject passive checks - -accept_passive_host_checks=1 - - - -# NOTIFICATIONS OPTION -# This determines whether or not Naemon will sent out any host or -# service notifications when it is initially (re)started. -# Values: 1 = enable notifications, 0 = disable notifications - -enable_notifications=1 - - - -# EVENT HANDLER USE OPTION -# This determines whether or not Naemon will run any host or -# service event handlers when it is initially (re)started. Unless -# you're implementing redundant hosts, leave this option enabled. -# Values: 1 = enable event handlers, 0 = disable event handlers - -enable_event_handlers=1 - - - -# PROCESS PERFORMANCE DATA OPTION -# This determines whether or not Naemon will process performance -# data returned from service and host checks. If this option is -# enabled, host performance data will be processed using the -# host_perfdata_command (defined below) and service performance -# data will be processed using the service_perfdata_command (also -# defined below). Read the HTML docs for more information on -# performance data. -# Values: 1 = process performance data, 0 = do not process performance data - -process_performance_data=1 - - - -# HOST AND SERVICE PERFORMANCE DATA PROCESSING COMMANDS -# These commands are run after every host and service check is -# performed. These commands are executed only if the -# enable_performance_data option (above) is set to 1. The command -# argument is the short name of a command definition that you -# define in your host configuration file. Read the HTML docs for -# more information on performance data. - -#host_perfdata_command=process-host-perfdata -#service_perfdata_command=process-service-perfdata - - - -# HOST AND SERVICE PERFORMANCE DATA FILES -# These files are used to store host and service performance data. -# Performance data is only written to these files if the -# enable_performance_data option (above) is set to 1. - -#host_perfdata_file=/usr/local/monitoring/naemon/var/host-perfdata -service_perfdata_file=/usr/local/monitoring/var/naemon/service-perfdata - - - -# HOST AND SERVICE PERFORMANCE DATA FILE TEMPLATES -# These options determine what data is written (and how) to the -# performance data files. The templates may contain macros, special -# characters (\t for tab, \r for carriage return, \n for newline) -# and plain text. A newline is automatically added after each write -# to the performance data file. Some examples of what you can do are -# shown below. - -#host_perfdata_file_template=[HOSTPERFDATA]\t$TIMET$\t$HOSTNAME$\t$HOSTEXECUTIONTIME$\t$HOSTOUTPUT$\t$HOSTPERFDATA$ -#service_perfdata_file_template=[SERVICEPERFDATA]\t$TIMET$\t$HOSTNAME$\t$SERVICEDESC$\t$SERVICEEXECUTIONTIME$\t$SERVICELATENCY$\t$SERVICEOUTPUT$\t$SERVICEPERFDATA$ -service_perfdata_file_template=$LASTSERVICECHECK$\t$HOSTNAME$\t$SERVICEDESC$\t$SERVICEOUTPUT$\t$SERVICEPERFDATA$ - - - -# HOST AND SERVICE PERFORMANCE DATA FILE MODES -# This option determines whether or not the host and service -# performance data files are opened in write ("w") or append ("a") -# mode. If you want to use named pipes, you should use the special -# pipe ("p") mode which avoid blocking at startup, otherwise you will -# likely want the defult append ("a") mode. - -#host_perfdata_file_mode=a -#service_perfdata_file_mode=a -service_perfdata_file_mode=p - - - -# HOST AND SERVICE PERFORMANCE DATA FILE PROCESSING INTERVAL -# These options determine how often (in seconds) the host and service -# performance data files are processed using the commands defined -# below. A value of 0 indicates the files should not be periodically -# processed. - -#host_perfdata_file_processing_interval=0 -service_perfdata_file_processing_interval=0 - - - -# HOST AND SERVICE PERFORMANCE DATA FILE PROCESSING COMMANDS -# These commands are used to periodically process the host and -# service performance data files. The interval at which the -# processing occurs is determined by the options above. - -#host_perfdata_file_processing_command=process-host-perfdata-file -#service_perfdata_file_processing_command=process-service-perfdata-file - - - -# HOST AND SERVICE PERFORMANCE DATA PROCESS EMPTY RESULTS -# These options determine wether the core will process empty perfdata -# results or not. This is needed for distributed monitoring, and intentionally -# turned on by default. -# If you don't require empty perfdata - saving some cpu cycles -# on unwanted macro calculation - you can turn that off. Be careful! -# Values: 1 = enable, 0 = disable - -#host_perfdata_process_empty_results=1 -#service_perfdata_process_empty_results=1 - - -# OBSESS OVER SERVICE CHECKS OPTION -# This determines whether or not Naemon will obsess over service -# checks and run the ocsp_command defined below. Unless you're -# planning on implementing distributed monitoring, do not enable -# this option. Read the HTML docs for more information on -# implementing distributed monitoring. -# Values: 1 = obsess over services, 0 = do not obsess (default) - -obsess_over_services=0 - - - -# OBSESSIVE COMPULSIVE SERVICE PROCESSOR COMMAND -# This is the command that is run for every service check that is -# processed by Naemon. This command is executed only if the -# obsess_over_services option (above) is set to 1. The command -# argument is the short name of a command definition that you -# define in your host configuration file. Read the HTML docs for -# more information on implementing distributed monitoring. - -#ocsp_command=somecommand - - - -# OBSESS OVER HOST CHECKS OPTION -# This determines whether or not Naemon will obsess over host -# checks and run the ochp_command defined below. Unless you're -# planning on implementing distributed monitoring, do not enable -# this option. Read the HTML docs for more information on -# implementing distributed monitoring. -# Values: 1 = obsess over hosts, 0 = do not obsess (default) - -obsess_over_hosts=0 - - - -# OBSESSIVE COMPULSIVE HOST PROCESSOR COMMAND -# This is the command that is run for every host check that is -# processed by Naemon. This command is executed only if the -# obsess_over_hosts option (above) is set to 1. The command -# argument is the short name of a command definition that you -# define in your host configuration file. Read the HTML docs for -# more information on implementing distributed monitoring. - -#ochp_command=somecommand - - - -# TRANSLATE PASSIVE HOST CHECKS OPTION -# This determines whether or not Naemon will translate -# DOWN/UNREACHABLE passive host check results into their proper -# state for this instance of Naemon. This option is useful -# if you have distributed or failover monitoring setup. In -# these cases your other Naemon servers probably have a different -# "view" of the network, with regards to the parent/child relationship -# of hosts. If a distributed monitoring server thinks a host -# is DOWN, it may actually be UNREACHABLE from the point of -# this Naemon instance. Enabling this option will tell Naemon -# to translate any DOWN or UNREACHABLE host states it receives -# passively into the correct state from the view of this server. -# Values: 1 = perform translation, 0 = do not translate (default) - -translate_passive_host_checks=0 - - - -# PASSIVE HOST CHECKS ARE SOFT OPTION -# This determines whether or not Naemon will treat passive host -# checks as being HARD or SOFT. By default, a passive host check -# result will put a host into a HARD state type. This can be changed -# by enabling this option. -# Values: 0 = passive checks are HARD, 1 = passive checks are SOFT - -passive_host_checks_are_soft=0 - - - -# ORPHANED HOST/SERVICE CHECK OPTIONS -# These options determine whether or not Naemon will periodically -# check for orphaned host service checks. Since service checks are -# not rescheduled until the results of their previous execution -# instance are processed, there exists a possibility that some -# checks may never get rescheduled. A similar situation exists for -# host checks, although the exact scheduling details differ a bit -# from service checks. Orphaned checks seem to be a rare -# problem and should not happen under normal circumstances. -# If you have problems with service checks never getting -# rescheduled, make sure you have orphaned service checks enabled. -# Values: 1 = enable checks, 0 = disable checks - -check_for_orphaned_services=1 -check_for_orphaned_hosts=1 - - - -# SERVICE FRESHNESS CHECK OPTION -# This option determines whether or not Naemon will periodically -# check the "freshness" of service results. Enabling this option -# is useful for ensuring passive checks are received in a timely -# manner. -# Values: 1 = enabled freshness checking, 0 = disable freshness checking - -check_service_freshness=1 - - - -# SERVICE FRESHNESS CHECK INTERVAL -# This setting determines how often (in seconds) Naemon will -# check the "freshness" of service check results. If you have -# disabled service freshness checking, this option has no effect. - -service_freshness_check_interval=60 - - - -# SERVICE CHECK TIMEOUT STATE -# This setting determines the state Naemon will report when a -# service check times out - that is does not respond within -# service_check_timeout seconds. This can be useful if a -# machine is running at too high a load and you do not want -# to consider a failed service check to be critical (the default). -# Valid settings are: -# c - Critical (default) -# u - Unknown -# w - Warning -# o - OK - -service_check_timeout_state=c - - - -# HOST FRESHNESS CHECK OPTION -# This option determines whether or not Naemon will periodically -# check the "freshness" of host results. Enabling this option -# is useful for ensuring passive checks are received in a timely -# manner. -# Values: 1 = enabled freshness checking, 0 = disable freshness checking - -check_host_freshness=0 - - - -# HOST FRESHNESS CHECK INTERVAL -# This setting determines how often (in seconds) Naemon will -# check the "freshness" of host check results. If you have -# disabled host freshness checking, this option has no effect. - -host_freshness_check_interval=60 - - - - -# ADDITIONAL FRESHNESS THRESHOLD LATENCY -# This setting determines the number of seconds that Naemon -# will add to any host and service freshness thresholds that -# it calculates (those not explicitly specified by the user). - -additional_freshness_latency=15 - - - - -# FLAP DETECTION OPTION -# This option determines whether or not Naemon will try -# and detect hosts and services that are "flapping". -# Flapping occurs when a host or service changes between -# states too frequently. When Naemon detects that a -# host or service is flapping, it will temporarily suppress -# notifications for that host/service until it stops -# flapping. Flap detection is very experimental, so read -# the HTML documentation before enabling this feature! -# Values: 1 = enable flap detection -# 0 = disable flap detection (default) - -enable_flap_detection=1 - - - -# FLAP DETECTION THRESHOLDS FOR HOSTS AND SERVICES -# Read the HTML documentation on flap detection for -# an explanation of what this option does. This option -# has no effect if flap detection is disabled. - -low_service_flap_threshold=5.0 -high_service_flap_threshold=20.0 -low_host_flap_threshold=5.0 -high_host_flap_threshold=20.0 - - - -# DATE FORMAT OPTION -# This option determines how short dates are displayed. Valid options -# include: -# us (MM-DD-YYYY HH:MM:SS) -# euro (DD-MM-YYYY HH:MM:SS) -# iso8601 (YYYY-MM-DD HH:MM:SS) -# strict-iso8601 (YYYY-MM-DDTHH:MM:SS) -# - -date_format=us - - - - -# TIMEZONE OFFSET -# This option is used to override the default timezone that this -# instance of Naemon runs in. If not specified, Naemon will use -# the system configured timezone. - -#use_timezone=US/Mountain -#use_timezone=Australia/Brisbane - - - -# ILLEGAL OBJECT NAME CHARACTERS -# This option allows you to specify illegal characters that cannot -# be used in host names, service descriptions, or names of other -# object types. - -illegal_object_name_chars=`~!$%^&*|'"<>?,()= - - - -# ILLEGAL MACRO OUTPUT CHARACTERS -# This option allows you to specify illegal characters that are -# stripped from macros before being used in notifications, event -# handlers, etc. This DOES NOT affect macros used in service or -# host check commands. -# The following macros are stripped of the characters you specify: -# $HOSTOUTPUT$ -# $HOSTPERFDATA$ -# $HOSTACKAUTHOR$ -# $HOSTACKCOMMENT$ -# $SERVICEOUTPUT$ -# $SERVICEPERFDATA$ -# $SERVICEACKAUTHOR$ -# $SERVICEACKCOMMENT$ - -#illegal_macro_output_chars=`~$&|'"<> -illegal_macro_output_chars=`~$&|" - - - -# REGULAR EXPRESSION MATCHING -# This option controls whether or not regular expression matching -# takes place in the object config files. Regular expression -# matching is used to match host, hostgroup, service, and service -# group names/descriptions in some fields of various object types. -# Values: 1 = enable regexp matching, 0 = disable regexp matching - -use_regexp_matching=1 - - - -# "TRUE" REGULAR EXPRESSION MATCHING -# This option controls whether or not "true" regular expression -# matching takes place in the object config files. This option -# only has an effect if regular expression matching is enabled -# (see above). If this option is DISABLED, regular expression -# matching only occurs if a string contains wildcard characters -# (* and ?). If the option is ENABLED, regexp matching occurs -# all the time (which can be annoying). -# Values: 1 = enable true matching, 0 = disable true matching - -use_true_regexp_matching=0 - - - -# ADMINISTRATOR EMAIL/PAGER ADDRESSES -# The email and pager address of a global administrator (likely you). -# Naemon never uses these values itself, but you can access them by -# using the $ADMINEMAIL$ and $ADMINPAGER$ macros in your notification -# commands. - -admin_email=nagios@localhost -admin_pager=pagenagios@localhost - - - -# CHILD PROCESS MEMORY OPTION -# This option determines whether or not Naemon will free memory in -# child processes (processed used to execute system commands and host/ -# service checks). If you specify a value here, it will override -# program defaults. -# Value: 1 - Free memory in child processes -# 0 - Do not free memory in child processes - -#free_child_process_memory=1 - - - -# CHILD PROCESS FORKING BEHAVIOR -# This option determines how Naemon will fork child processes -# (used to execute system commands and host/service checks). Normally -# child processes are fork()ed twice, which provides a very high level -# of isolation from problems. Fork()ing once is probably enough and will -# save a great deal on CPU usage (in large installs), so you might -# want to consider using this. If you specify a value here, it will -# program defaults. -# Value: 1 - Child processes fork() twice -# 0 - Child processes fork() just once - -#child_processes_fork_twice=1 - - - -# DEBUG LEVEL -# This option determines how much (if any) debugging information will -# be written to the debug file. OR values together to log multiple -# types of information. -# Values: -# -1 = Everything -# 0 = Nothing -# 1 = Functions -# 2 = Configuration -# 4 = Process information -# 8 = Scheduled events -# 16 = Host/service checks -# 32 = Notifications -# 64 = Event broker -# 128 = External commands -# 256 = Commands -# 512 = Scheduled downtime -# 1024 = Comments -# 2048 = Macros - -debug_level=256 - - - -# DEBUG VERBOSITY -# This option determines how verbose the debug log out will be. -# Values: 0 = Brief output -# 1 = More detailed -# 2 = Very detailed - -debug_verbosity=1 - - - -# DEBUG FILE -# This option determines where Naemon should write debugging information. - -debug_file=/usr/local/monitoring/log/naemon.debug - - - -# MAX DEBUG FILE SIZE -# This option determines the maximum size (in bytes) of the debug file. If -# the file grows larger than this size, it will be renamed with a .old -# extension. If a file already exists with a .old extension it will -# automatically be deleted. This helps ensure your disk space usage doesn't -# get out of control when debugging Naemon. - -max_debug_file_size=1000000 - - - -# Should we allow hostgroups to have no hosts, we default this to off since -# that was the old behavior - -allow_empty_hostgroup_assignment=1 - - - -# Normally worker count is dynamically allocated based on 1.5 * number of cpu's -# with a minimum of 4 workers. This value will override the defaults - -#check_workers=3 - - - -# EXPERIMENTAL load controlling options -# To get current defaults based on your system issue a command to -# the query handler. Please note that this is an experimental feature -# and not meant for production use. Used incorrectly it can induce -# enormous latency. -# #core loadctl -# jobs_max - The maximum amount of jobs to run at one time -# jobs_min - The minimum amount of jobs to run at one time -# jobs_limit - The maximum amount of jobs the current load lets us run -# backoff_limit - The minimum backoff_change -# backoff_change - # of jobs to remove from jobs_limit when backing off -# rampup_limit - Minimum rampup_change -# rampup_change - # of jobs to add to jobs_limit when ramping up -# NOTE: The backoff_limit and rampup_limit are NOT used by anything currently, -# so if your system is under load nothing will actively modify the jobs -# even if you have these options enabled, they are for external -# connector information only. However, if you change the jobs_max or -# jobs_min manually here or through the query handler interface that -# WILL affect your system -#loadctl_options=jobs_max=100;backoff_limit=10;rampup_change=5 - -define contact { - contact_name Andre D. Corbitt - use Princeton-Contact - alias Andre D. Corbitt (acorbitt) - email acorbitt@Princeton.EDU -} - - -define contact { - contact_name Brian A. Ariza - use Princeton-Contact - alias Brian A. Ariza (bariza) - email bariza@Princeton.EDU -} - - -define contact { - contact_name Bradley A. Wells - use Princeton-Contact - alias Bradley A. Wells (bwells) - email bwells@Princeton.EDU -} - - -define contact { - contact_name Donald Ade - use Princeton-Contact - alias Donald Ade (dade) - email dade@Princeton.EDU -} - - -define contact { - contact_name Dominique N. Davis - use Princeton-Contact - alias Dominique N. Davis (dd7) - email dd7@Princeton.EDU -} - - -define contact { - contact_name Eric J. Swingle - use Princeton-Contact - alias Eric J. Swingle (eswingle) - email eswingle@Princeton.EDU -} - - -define contact { - contact_name Jacob Swimmer - use Princeton-Contact - alias Jacob Swimmer (jswimmer) - email jswimmer@Princeton.EDU -} - - -define contact { - contact_name John J. Zerillo - use Princeton-Contact - alias John J. Zerillo (jzerillo) - email jzerillo@Princeton.EDU -} - - -define contact { - contact_name Raymund Roco - use Princeton-Contact - alias Raymund Roco (rroco) - email rroco@Princeton.EDU -} - - -define contact { - contact_name Thomas J. Byrne - use Princeton-Contact - alias Thomas J. Byrne (tbyrne) - email tbyrne@Princeton.EDU -} - - -define contact { - contact_name Terence Tung - use Princeton-Contact - alias Terence Tung (ttung) - email ttung@Princeton.EDU -} - - -define contact { - contact_name William V. Brown Jr. - use Princeton-Contact - alias William V. Brown Jr. (wb) - email wb@Princeton.EDU -} - - -define contact { - contact_name Zachary M. Barton - use Princeton-Contact - alias Zachary M. Barton (zbarton) - email zbarton@Princeton.EDU -} - - -define contact { - contact_name anykey - use Auth Contact - alias User anykey - email anykey@Princeton.EDU -} - - -define contact { - contact_name bhaines - use Auth Contact - alias User bhaines - email bhaines@Princeton.EDU -} - - -define contact { - contact_name bigmac - use Auth Contact - alias User bigmac - email bigmac@Princeton.EDU -} - - -define contact { - contact_name bts - use Auth Contact - alias User bts - email bts@Princeton.EDU -} - - -define contact { - contact_name chief53 - use Auth Contact - alias User chief53 - email chief53@Princeton.EDU -} - - -define contact { - contact_name coto - use Auth Contact - alias User coto - email coto@Princeton.EDU -} - - -define contact { - contact_name drevil - use Auth Contact - alias User drevil - email drevil@Princeton.EDU -} - - -define contact { - contact_name drinker - use Auth Contact - alias User drinker - email drinker@Princeton.EDU -} - - -define contact { - contact_name dw10 - use Auth Contact - alias User dw10 - email dw10@Princeton.EDU -} - - -define contact { - contact_name eburd - use Auth Contact - alias User eburd - email eburd@Princeton.EDU -} - - -define contact { - contact_name hajar - use Auth Contact - alias User hajar - email hajar@Princeton.EDU -} - - -define contact { - contact_name hajarn - use Auth Contact - alias User hajarn - email hajarn@Princeton.EDU -} - - -define contact { - contact_name irwin - use Auth Contact - alias User irwin - email irwin@Princeton.EDU -} - - -define contact { - contact_name ists - use Auth Contact - alias User ists - email ists@Princeton.EDU -} - - -define contact { - contact_name jfitz - use Auth Contact - alias User jfitz - email jfitz@Princeton.EDU -} - - -define contact { - contact_name jkaram - use Auth Contact - alias User jkaram - email jkaram@Princeton.EDU -} - - -define contact { - contact_name jsotoj - use Auth Contact - alias User jsotoj - email jsotoj@Princeton.EDU -} - - -define contact { - contact_name rgittens - use Auth Contact - alias User rgittens - email rgittens@Princeton.EDU -} - - -define contact { - contact_name shurig - use Auth Contact - alias User shurig - email shurig@Princeton.EDU -} - - -define contact { - contact_name bstango - use Auth Contact - alias User bstango - email bstango@Princeton.EDU -} - - -define contact { - contact_name chris - use Auth Contact - alias User chris - email chris@Princeton.EDU -} - - -define contact { - contact_name dchin - use Auth Contact - alias User dchin - email dchin@Princeton.EDU -} - - -define contact { - contact_name duvergem - use Auth Contact - alias User duvergem - email duvergem@Princeton.EDU -} - - -define contact { - contact_name igubenko - use Auth Contact - alias User igubenko - email igubenko@Princeton.EDU -} - - -define contact { - contact_name jf19 - use Auth Contact - alias User jf19 - email jf19@Princeton.EDU -} - - -define contact { - contact_name jlf - use Auth Contact - alias User jlf - email jlf@Princeton.EDU -} - - -define contact { - contact_name jmkcsg - use Auth Contact - alias User jmkcsg - email jmkcsg@Princeton.EDU -} - - -define contact { - contact_name kh6 - use Auth Contact - alias User kh6 - email kh6@Princeton.EDU -} - - -define contact { - contact_name llong - use Auth Contact - alias User llong - email llong@Princeton.EDU -} - - -define contact { - contact_name martin - use Auth Contact - alias User martin - email martin@Princeton.EDU -} - - -define contact { - contact_name monikam - use Auth Contact - alias User monikam - email monikam@Princeton.EDU -} - - -define contact { - contact_name moraski2 - use Auth Contact - alias User moraski2 - email moraski2@Princeton.EDU -} - - -define contact { - contact_name ndelo - use Auth Contact - alias User ndelo - email ndelo@Princeton.EDU -} - - -define contact { - contact_name riverhi21 - use Auth Contact - alias User riverhi21 - email riverhi21@Princeton.EDU -} - - -define contact { - contact_name ryangm - use Auth Contact - alias User ryangm - email ryangm@Princeton.EDU -} - - -define contact { - contact_name shorey - use Auth Contact - alias User shorey - email shorey@Princeton.EDU -} - - -define contact { - contact_name skampel - use Auth Contact - alias User skampel - email skampel@Princeton.EDU -} - - -define contact { - contact_name aouellet - use Auth Contact - alias User aouellet - email aouellet@Princeton.EDU -} - - -define contact { - contact_name augustin - use Auth Contact - alias User augustin - email augustin@Princeton.EDU -} - - -define contact { - contact_name ck - use Auth Contact - alias User ck - email ck@Princeton.EDU -} - - -define contact { - contact_name clk - use Auth Contact - alias User clk - email clk@Princeton.EDU -} - - -define contact { - contact_name clu - use Auth Contact - alias User clu - email clu@Princeton.EDU -} - - -define contact { - contact_name cs2 - use Auth Contact - alias User cs2 - email cs2@Princeton.EDU -} - - -define contact { - contact_name dbashore - use Auth Contact - alias User dbashore - email dbashore@Princeton.EDU -} - - -define contact { - contact_name groundwk - use Auth Contact - alias User groundwk - email groundwk@Princeton.EDU -} - - -define contact { - contact_name hdimap - use Auth Contact - alias User hdimap - email hdimap@Princeton.EDU -} - - -define contact { - contact_name jasonrap - use Auth Contact - alias User jasonrap - email jasonrap@Princeton.EDU -} - - -define contact { - contact_name jsophy - use Auth Contact - alias User jsophy - email jsophy@Princeton.EDU -} - - -define contact { - contact_name jwagner - use Auth Contact - alias User jwagner - email jwagner@Princeton.EDU -} - - -define contact { - contact_name kbmartin - use Auth Contact - alias User kbmartin - email kbmartin@Princeton.EDU -} - - -define contact { - contact_name kgift - use Auth Contact - alias User kgift - email kgift@Princeton.EDU -} - - -define contact { - contact_name mzhong - use Auth Contact - alias User mzhong - email mzhong@Princeton.EDU -} - - -define contact { - contact_name pb17 - use Auth Contact - alias User pb17 - email pb17@Princeton.EDU -} - - -define contact { - contact_name qnguyen - use Auth Contact - alias User qnguyen - email qnguyen@Princeton.EDU -} - - -define contact { - contact_name ranugula - use Auth Contact - alias User ranugula - email ranugula@Princeton.EDU -} - - -define contact { - contact_name ratliff - use Auth Contact - alias User ratliff - email ratliff@Princeton.EDU -} - - -define contact { - contact_name serge - use Auth Contact - alias User serge - email serge@Princeton.EDU -} - - -define contact { - contact_name sergeyg - use Auth Contact - alias User sergeyg - email sergeyg@Princeton.EDU -} - - -define contact { - contact_name simonlee - use Auth Contact - alias User simonlee - email simonlee@Princeton.EDU -} - - -define contact { - contact_name stevea - use Auth Contact - alias User stevea - email stevea@Princeton.EDU -} - - -define contact { - contact_name steven - use Auth Contact - alias User steven - email steven@Princeton.EDU -} - - -define contact { - contact_name tatro - use Auth Contact - alias User tatro - email tatro@Princeton.EDU -} - - -define contact { - contact_name tengi - use Auth Contact - alias User tengi - email tengi@Princeton.EDU -} - - -define contact { - contact_name ttung - use Auth Contact - alias User ttung - email ttung@Princeton.EDU -} - - -define contact { - contact_name whitaker - use Auth Contact - alias User whitaker - email whitaker@Princeton.EDU -} - - -define contact { - contact_name willman - use Auth Contact - alias User willman - email willman@Princeton.EDU -} - - -define contact { - contact_name ohd-vi002 - use Auth Contact - alias User ohd-vi002 - email ohd-vi002@Princeton.EDU -} - - -define contact { - contact_name ohd-vi003 - use Auth Contact - alias User ohd-vi003 - email ohd-vi003@Princeton.EDU -} - - -define contact { - contact_name ohd-vi004 - use Auth Contact - alias User ohd-vi004 - email ohd-vi004@Princeton.EDU -} - - -define contact { - contact_name ohd-vi005 - use Auth Contact - alias User ohd-vi005 - email ohd-vi005@Princeton.EDU -} - - -define contact { - contact_name ohd-vi006 - use Auth Contact - alias User ohd-vi006 - email ohd-vi006@Princeton.EDU -} - - -define contact { - contact_name ohd-vi007 - use Auth Contact - alias User ohd-vi007 - email ohd-vi007@Princeton.EDU -} - - -define contact { - contact_name ohd-vi008 - use Auth Contact - alias User ohd-vi008 - email ohd-vi008@Princeton.EDU -} - - -define contact { - contact_name ohd-vi009 - use Auth Contact - alias User ohd-vi009 - email ohd-vi009@Princeton.EDU -} - - -define contact { - contact_name ohd-vi010 - use Auth Contact - alias User ohd-vi010 - email ohd-vi010@Princeton.EDU -} - - -define contact { - contact_name ohd-vi011 - use Auth Contact - alias User ohd-vi011 - email ohd-vi011@Princeton.EDU -} - - -define contact { - contact_name ohd-vi012 - use Auth Contact - alias User ohd-vi012 - email ohd-vi012@Princeton.EDU -} - - -define contact { - contact_name ohd-vi013 - use Auth Contact - alias User ohd-vi013 - email ohd-vi013@Princeton.EDU -} - - -define contact { - contact_name ohd-vi014 - use Auth Contact - alias User ohd-vi014 - email ohd-vi014@Princeton.EDU -} - - -define contact { - contact_name ohd-vi015 - use Auth Contact - alias User ohd-vi015 - email ohd-vi015@Princeton.EDU -} - - -define contact { - contact_name ohd-vi016 - use Auth Contact - alias User ohd-vi016 - email ohd-vi016@Princeton.EDU -} - - -define contact { - contact_name ohd-vi017 - use Auth Contact - alias User ohd-vi017 - email ohd-vi017@Princeton.EDU -} - - -define contact { - contact_name ohd-vi018 - use Auth Contact - alias User ohd-vi018 - email ohd-vi018@Princeton.EDU -} - - -define contact { - contact_name ohd-vi019 - use Auth Contact - alias User ohd-vi019 - email ohd-vi019@Princeton.EDU -} - - -define command { - command_name check-dummy - command_line $USER1$/check_dummy $ARG1$ $ARG2$ -} - - -define command { - command_name check_alive - command_line $USER1$/check_icmp -H $HOSTADDRESS$ -w 3000.0,80% -c 5000.0,100% -} - -# 'check-host-alive' command definition -define command { - command_name check-host-alive - command_line $USER1$/check_icmp -H $HOSTADDRESS$ -t 10 -w 3000.0,80% -c 5000.0,100% -n 5 -} - - -define command { - command_name check-host-alive-long - command_line $USER1$/check_icmp -H $HOSTADDRESS$ -w 3000.0,80% -c 5000.0,100% -t 60s -n 20 -i 2s -} - -# check_host-alive command definition for eiwfw -define command { - command_name check-host-alive-fw-servernet-1 - command_line $USER1$/check_icmp -H 140.180.220.1 -t 10 -w 3000.0,80% -c 5000.0,100% -n 5 -} - -define command { - command_name check-host-alive-fw-servernet-2 - command_line $USER1$/check_icmp -H 10.6.48.1 -t 10 -w 3000.0,80% -c 5000.0,100% -n 5 -} - -define command { - command_name check-host-alive-fw-servernet-3 - command_line $USER1$/check_icmp -H 10.6.52.1 -t 10 -w 3000.0,80% -c 5000.0,100% -n 5 -} - -define command { - command_name check-host-alive-fw-servernet-4 - command_line $USER1$/check_icmp -H 10.6.63.65 -t 10 -w 3000.0,80% -c 5000.0,100% -n 5 -} - -define command { - command_name check-host-alive-fw-servernet-6 - command_line $USER1$/check_icmp -H 10.6.63.129 -t 10 -w 3000.0,80% -c 5000.0,100% -n 5 -} - -define command { - command_name check-host-alive-fw-servernet-7 - command_line $USER1$/check_icmp -H 140.180.219.1 -t 10 -w 3000.0,80% -c 5000.0,100% -n 5 -} - -define command { - command_name check-host-alive-fw-servernet-10 - command_line $USER1$/check_icmp -H 10.6.0.1 -t 10 -w 3000.0,80% -c 5000.0,100% -n 5 -} - -define command { - command_name check-host-alive-fw-servernet-11 - command_line $USER1$/check_icmp -H 10.6.32.1 -t 10 -w 3000.0,80% -c 5000.0,100% -n 5 -} - -define command { - command_name check-host-alive-eisfw-plinknet8 - command_line $USER1$/check_icmp -H 192.168.9.33 -t 10 -w 3000.0,80% -c 5000.0,100% -n 5 -} - -define command { - command_name check_alive_through_nsclient - command_line $USER1$/check_nrpe -p $USER10$ -H $HOSTADDRESS$ -c CheckWMIValue -a 'Query=SELECT StatusCode FROM Win32_PingStatus WHERE Address="$ARG1$"' MaxCrit=1 Check:Status:=StatusCode -} - -define command { - command_name check_alive_ssh - command_line $USER1$/check_generic -e '$USER1$/check_ssh -4 -t $USER3$ $HOSTADDRESS$' -n SSH -t 70 -w '!~/SSH OK/' -o '=~/SSH OK/' -f c -p time -} - -define command { - command_name check-jnextday - command_line $USER1$/check_dummy $ARG1$ $ARG2$ -} - -define command { - command_name check_multi - command_line $USER1$/check_multi -l /usr/local/monitoring/nagios/libexec $ARG1$ $ARG2$ $ARG3$ $ARG4$ -} - -define command { - command_name check-test-critical - command_line $USER1$/check_dummy 2 -} - - -define command { - command_name check_ESXi_CIM - command_line $USER1$/check_esxi_hardware.py -H https://$HOSTADDRESS$ -V auto -t $USER3$ -p -U '$USER17$' -P '$USER4$' -} - -define command { - command_name check_gearman - command_line $USER1$/check_gearman -H $ARG1$ -t $USER3$ $ARG2$ -} - -define command { - command_name check_generic - command_line $USER1$/check_generic -e '$ARG1$' -t $USER3$ $ARG2$ -} - -define command { - command_name check__lpglog - command_line $USER1$/check_log2.pl -l $ARG1$ -s $ARG2$ -p $ARG3$ -} - - -define command { - command_name check_apache - command_line $USER1$/check_apache.pl -H $HOSTADDRESS$ -} - - -define command { - command_name check_biztalk - command_line $USER1$/check_biztalk.pl -H $HOSTADDRESS$ -U groundwk -P $USER30$ -w 1 -c 5 -d 1 -D 5 -o 1 -O 5 -} - - -define command { - command_name check_by_ssh_apache - command_line $USER1$/check_by_ssh -H $HOSTADDRESS$ -t 60 -l "$USER17$" -C "$USER22$/check_apache.pl -H $HOSTADDRESS$" -} - - -define command { - command_name check_by_ssh_cpu - command_line $USER1$/check_by_ssh -H $HOSTADDRESS$ -t 45 -l "$USER17$" -C "$USER22$/check_cpu $ARG1$:$ARG2$" -} - - -define command { - command_name check_by_ssh_disk - command_line $USER1$/check_by_ssh -H $HOSTADDRESS$ -t 60 -l "$USER17$" -C "$USER22$/check_disk -w $ARG1$ -c $ARG2$ -p $ARG3$" -} - - -define command { - command_name check_by_ssh_load - command_line $USER1$/check_by_ssh -H $HOSTADDRESS$ -t 60 -l "$USER17$" -C "$USER22$/check_load -w $ARG1$ -c $ARG2$" -} - - -define command { - command_name check_by_ssh_mailq_sendmail - command_line $USER1$/check_by_ssh -H $HOSTADDRESS$ -t 60 -l "$USER17$" -C "sudo $USER22$/check_mailq -w $ARG1$ -c $ARG2$ -M sendmail" -} - - -define command { - command_name check_by_ssh_mem - command_line $USER1$/check_by_ssh -H $HOSTADDRESS$ -t 60 -l "$USER17$" -C "$USER22$/check_mem.pl -U -w $ARG1$ -c $ARG2$" -} - - -define command { - command_name check_by_ssh_mysql - command_line $USER1$/check_by_ssh -H $HOSTADDRESS$ -t 60 -l "$USER17$" -C "$USER22$/check_mysql -H $HOSTADDRESS$ -d $ARG1$ -u $ARG2$ -p $ARG3$" -} - - -define command { - command_name check_by_ssh_mysql_engine - command_line $USER1$/check_by_ssh -H $HOSTADDRESS$ -t 60 -l "$USER17$" -C "$USER22$/check_mysql -H $HOSTADDRESS$ -u $ARG1$ -p $ARG2$" -} - - -define command { - command_name check_by_ssh_process_args - command_line $USER1$/check_by_ssh -H $HOSTADDRESS$ -t 60 -l "$USER17$" -C "$USER22$/check_procs -w $ARG1$ -c $ARG2$ -a $ARG3$" -} - - -define command { - command_name check_by_ssh_process_cmd - command_line $USER1$/check_by_ssh -H $HOSTADDRESS$ -t 60 -l "$USER17$" -C "$USER22$/check_procs -w $ARG1$ -c $ARG2$ -C $ARG3$" -} - - -define command { - command_name check_by_ssh_process_count - command_line $USER1$/check_by_ssh -H $HOSTADDRESS$ -t 60 -l "$USER17$" -C "$USER22$/check_procs -w $ARG1$ -c $ARG2$" -} - - -define command { - command_name check_by_ssh_process_crond - command_line $USER1$/check_by_ssh -H $HOSTADDRESS$ -t 60 -l "$USER17$" -C "$USER22$/check_procs -c 1:1 -a crond" -} - - -define command { - command_name check_by_ssh_process_named - command_line $USER1$/check_by_ssh -H $HOSTADDRESS$ -t 60 -l "$USER17$" -C "$USER22$/check_procs -c 1:1 -C named -a /etc/named.conf" -} - - -define command { - command_name check_by_ssh_process_proftpd - command_line $USER1$/check_by_ssh -H $HOSTADDRESS$ -t 60 -l "$USER17$" -C "$USER22$/check_procs -c 1:1 -a proftpd:\ \(accepting" -} - - -define command { - command_name check_by_ssh_process_sendmail_accept - command_line $USER1$/check_by_ssh -H $HOSTADDRESS$ -t 60 -l "$USER17$" -C "$USER22$/check_procs -c 1:1 -a sendmail:\ accepting\ con" -} - - -define command { - command_name check_by_ssh_process_sendmail_qrunner - command_line $USER1$/check_by_ssh -H $HOSTADDRESS$ -t 60 -l "$USER17$" -C "$USER22$/check_procs -c 1:1 -a sendmail:\ Queue\ runner" -} - - -define command { - command_name check_by_ssh_process_slapd - command_line $USER1$/check_by_ssh -H $HOSTADDRESS$ -t 60 -l "$USER17$" -C "$USER22$/check_procs -w $ARG1$ -c $ARG2$ -C slapd" -} - - -define command { - command_name check_by_ssh_process_xinetd - command_line $USER1$/check_by_ssh -H $HOSTADDRESS$ -t 60 -l "$USER17$" -C "$USER22$/check_procs -c 1:1 -a xinetd" -} - - -define command { - command_name check_by_ssh_swap - command_line $USER1$/check_by_ssh -H $HOSTADDRESS$ -t 60 -l "$USER17$" -C "$USER22$/check_swap -w $ARG1$ -c $ARG2$" -} - - -define command { - command_name check_citrix - command_line $USER1$/check_ica_master_browser.pl -I $HOSTADDRESS$ -P $HOSTADDRESS$ -} - -# 'check_dns' command definition -define command { - command_name check_dns - command_line $USER1$/check_dns -t $USER3$ -a $HOSTADDRESS$ -H $HOSTALIAS$ -} - - -define command { - command_name check_dns_expect - command_line $USER1$/check_dns -t $USER3$ -s $HOSTADDRESS$ -H "$ARG1$" -a "$ARG2$" $ARG3$ -} - - -define command { - command_name check_dns_generic - command_line $USER1$/check_dns -t $USER3$ -H $ARG1$ -a $ARG2$ $ARG3$ -} - - -define command { - command_name check_dns_udns - command_line $USER1$/check_udns.pl --lookup $ARG1$ --result $ARG2$ --result $ARG3$ --server $ARG4$ --servername $ARG5$ --server $ARG6$ --servername $ARG7$ $ARG8$ -} - - -define command { - command_name check_dsml - command_line $USER1$/check_dsml.pl -H $HOSTADDRESS$ -b $ARG1$ -a "$ARG2$" -v "$ARG3$" -s "$ARG4$" -} - -# Not used now -define command { - command_name check email end2end SSL - command_line $USER1$/check_email_delivery --plugin "$USER1$/check_smtp_send -H $ARG2$ --ssl --mailfrom $ARG1$@Princeton.EDU --mailto $ARG1$@Princeton.EDU -U $ARG1$ -P $USER30$ --header 'Subject: $ARG2$_$TIMET$' --body Test -w 10 -c 15 -t 20" --plugin "$USER1$/check_imap_receive --ssl -H $ARG3$ -U $ARG1$ -P $USER30$ -s SUBJECT -s $ARG2$_$TIMET$ --imap-retries 10 -w 20 -c 40 -t 60" -} - -# This is used by checks for Gmail -define command { - command_name check email end2end SSL advanced - command_line $USER1$/check_email_delivery --plugin "$USER1$/check_smtp_send --ssl --mailfrom $ARG1$ -U $ARG2$ -H $ARG3$ --mailto $ARG4$ -P $USER30$ --header 'Subject: $ARG3$_$TIMET$' --body Test -w 10 -c 15 -t 20" --plugin "$USER1$/check_imap_receive --ssl -U $ARG5$ -H $ARG6$ -P $USER30$ -s SUBJECT -s $ARG3$_$TIMET$ --imap-retries 10 -w 20 -c 40 -t 60" -} - -# This is used by check for PU SMTP to PU office365 -define command { - command_name check email end2end TLS - command_line $USER1$/check_email_delivery --plugin "$USER1$/check_smtp_send -H $ARG2$ --tls --mailfrom $ARG1$@Princeton.EDU --mailto $ARG1$@Princeton.EDU -U $ARG1$ -P $USER30$ --header 'Subject: $ARG2$_$TIMET$' --body Test -w 10 -c 15 -t 20" --plugin "$USER1$/check_imap_receive --ssl -H $ARG3$ -U $ARG1$@Princeton.EDU -P $USER30$ -s SUBJECT -s $ARG2$_$TIMET$ --imap-retries 10 -w 20 -c 40 -t 60" -} - -# This is used by checks for office365 -define command { - command_name check email end2end TLS-SSL - command_line $USER1$/check_email_delivery --plugin '$USER1$/check_smtp_send --tls --mailfrom $ARG1$ -U $ARG2$ -P "$ARG3$" -H $ARG4$ --mailto $ARG5$ --header "Subject: $ARG4$_$TIMET$" --body Test -w 10 -c 15 -t 20' --plugin '$USER1$/check_imap_receive --ssl -U $ARG6$ -P "$ARG7$" -H $ARG8$ -s SUBJECT -s $ARG4$_$TIMET$ --imap-retries 10 -w 20 -c 40 -t 60' --wait 10 -# -w 30,10,10 -c 220,40,40 -t 230 -} - -# This is used by ppa* to office365 checks -define command { - command_name check email end2end ppa - command_line $USER1$/check_email_delivery --plugin "$USER1$/check_smtp_send -H $ARG2$ --mailfrom $ARG1$ --mailto $ARG1$ --header 'Subject: $ARG2$_$TIMET$' --body Test -w 10 -c 15 -t 20" --plugin "$USER1$/check_imap_receive --ssl -H $ARG3$ -U $ARG1$ -P $USER30$ -s SUBJECT -s $ARG2$_$TIMET$ --imap-retries 10 -w 20 -c 40 -t 60" --wait 10 -} - -# This is used by ppa* to Exchange checks -define command { - command_name check email end2end - command_line $USER1$/check_email_delivery --plugin "$USER1$/check_smtp_send -H $ARG2$ --mailfrom $ARG1$@Princeton.EDU --mailto $ARG1$@Princeton.EDU --header 'Subject: $ARG2$_$TIMET$' --body Test -w 15 -c 25 -t 29" --plugin "$USER1$/check_imap_receive --ssl -H $ARG3$ -U $ARG1$ -P $USER30$ -s SUBJECT -s $ARG2$_$TIMET$ --imap-retries 5 -w 15 -c 25 -t 29" -} - -# This is used by check for Duke to PU Exchange emailing -define command { - command_name check email end2end via nrpe - command_line $USER1$/check_nrpe -p $USER10$ -t $USER3$ -H princeton-emergencyweb-01.oit.duke.edu -c check_email_delivery -a $ARG1$ $USER30$ $ARG2$ -} - -define command { - command_name check_esx_gw_server_cpu - command_line $USER1$/check_esx_gw -H $HOSTADDRESS$ -C $USER7$ -l CPU -w $ARG1$ -c $ARG2$ -} - - -define command { - command_name check_esx_gw_server_mem - command_line $USER1$/check_esx_gw -H $HOSTADDRESS$ -C $USER7$ -l MEM -w $ARG1$ -c $ARG2$ -} - - -define command { - command_name check_esx_gw_server_net - command_line $USER1$/check_esx_gw -H $HOSTADDRESS$ -C $USER7$ -l NET -w $ARG1$ -c $ARG2$ -} - - -define command { - command_name check_esx_gw_server_netlist - command_line $USER1$/check_esx_gw -H $HOSTADDRESS$ -C $USER7$ -l NETLIST -w $ARG1$ -c $ARG2$ -} - - -define command { - command_name check_esx_gw_vm_instance_cpu - command_line $USER1$/check_esx_gw -H $HOSTADDRESS$ -C $USER7$ -l CPU -v $ARG1$ -w $ARG2$ -c $ARG3$ -} - - -define command { - command_name check_esx_gw_vm_instance_list - command_line $USER1$/check_esx_gw -H $HOSTADDRESS$ -C $USER7$ -l LIST -w $ARG1$ -c $ARG2$ -} - - -define command { - command_name check_esx_gw_vm_instance_mem - command_line $USER1$/check_esx_gw -H $HOSTADDRESS$ -C $USER7$ -l MEM -v $ARG1$ -w $ARG2$ -c $ARG3$ -} - - -define command { - command_name check_esx_gw_vm_instance_net - command_line $USER1$/check_esx_gw -H $HOSTADDRESS$ -C $USER7$ -l NET -v $ARG1$ -w $ARG2$ -c $ARG3$ -} - -# 'check_ftp' command definition -define command { - command_name check_ftp - command_line $USER1$/check_ftp -H $HOSTADDRESS$ -w "$ARG1$" -c "$ARG2$" -} - - -define command { - command_name check_host_cluster - command_line $USER1$/check_cluster_wrapper -h -l "$ARG1$" -d "$ARG2$" $ARG3$ $ARG4$ -} - -# 'check_hpjd' command definition -define command { - command_name check_hpjd - command_line $USER1$/check_hpjd -H $HOSTADDRESS$ -C public -} - -# 'check_http' command definition -define command { - command_name check_http - command_line $USER1$/check_http -H $HOSTALIAS$ -w "$ARG1$" -c "$ARG2$" -E -} - -define command { - command_name check_http_sim - command_line $USER1$/check_http_sim $ARG1$ $ARG2$ $ARG3$ $ARG4$ $ARG5$ $ARG6$ $ARG7$ -} - -define command { - command_name check_http_string - command_line $USER1$/check_http_generic $USER1$ '$ARG1$' '$ARG2$' '$ARG3$' '$ARG4$' $ARG5$ "$SERVICEDESC$" -} - -define command { - command_name check_http_auth - command_line $USER1$/check_http -H $HOSTADDRESS$ -a '$ARG1$:$ARG2$' -f "follow" -w "$ARG3$" -c "$ARG4$" -E -} - -define command { - command_name check_https_auth_ob - command_line $USER1$/check_http_auth -t $ARG1$ -U '$ARG2$' -u '$ARG3$' -p '$USER30$' -s $ARG4$ 2>&1 -} - -define command { - command_name check_http_kaltura - command_line $USER1$/check_http_kaltura 2>&1 -} - - -define command { - command_name check_http_port - command_line $USER1$/check_http -H $HOSTADDRESS$ -w "$ARG1$" -c "$ARG2$" -p "$ARG3$" -E $ARG4$ -} - - -define command { - command_name check_http_portnum - command_line $USER1$/check_http -H $ARG1$ -p "$ARG2$" -w "$ARG3$" -c "$ARG4$" -E $ARG5$ -} - - -define command { - command_name check_http_simple - command_line $USER1$/check_http -t $USER3$ -H $ARG1$ -f follow -w "$ARG2$" -c "$ARG3$" -E $ARG4$ -} - -define command { - command_name check_http_script - command_line $ARG1$ "$ARG2$" "$ARG3$" -} - -define command { - command_name check_http_url - command_line $USER1$/check_http -t $USER3$ -H $ARG1$ -u "$ARG2$" -f "follow" -w "$ARG3$" -c "$ARG4$" -E $ARG5$ -} - -define command { - command_name check_http_url_custom - command_line $USER1$/check_http -t $USER3$ -H $ARG1$ -u "$ARG2$" -E $ARG3$ -} - -define command { - command_name check_http_www_rms - command_line $USER1$/check_http_www_rms '$USER15$' '$USER16$' 2>&1 -} - - -define command { - command_name check_https - command_line $USER1$/check_http -t $USER3$ -H $HOSTADDRESS$ -w "$ARG1$" -c "$ARG2$" -S $ARG3$ -E -} - - -define command { - command_name check_https_AWS_DUO - command_line $USER1$/check_https_aws_duo $USER1$ $ARG1$ $ARG2$ $ARG3$ -} - - -define command { - command_name check_https_error_code_OK - command_line $USER1$/check_http -t 60 -H $HOSTADDRESS$ -e "$ARG1$" -w "$ARG2$" -c "$ARG3$" -S -f follow -E -} - - -define command { - command_name check_https_CAS_Parental_Access - command_line $USER1$/check_https_cas_pa 2>&1 -} - - -define command { - command_name check_https_DC - command_line $USER1$/check_https_Departmental_Charges tivdc Tiv0DC "DC ADMINISTRATION" 2>&1 -} - -define command { - command_name check_https_CAS - command_line $USER1$/check_https_CAS '$ARG1$' $ARG2$ '$ARG3$' 2>&1 -} - -define command { - command_name check_https_CAS_older_version - command_line $USER1$/check_https_CAS.older '$ARG1$' $ARG2$ '$ARG3$' 2>&1 -} - -define command { - command_name check_https_CAS_new - command_line $USER1$/check_https_CAS_new '$ARG1$' $ARG2$ '$ARG3$' 2>&1 -} - -define command { - command_name check_https_CAS_QA_new - command_line $USER1$/check_https_CAS_QA_new '$ARG1$' $ARG2$ '$ARG3$' 2>&1 -} - -define command { - command_name check_https_PUaccess - command_line $USER1$/check_https_PUaccess.py '$ARG1$' '$ARG2$' '$ARG3$' 2>&1 -} - -define command { - command_name check_https_Blackboard - command_line $USER1$/check_https_Blackboard '$ARG1$' '$ARG2$' '$ARG3$' 2>&1 || exit 2 -} - -define command { - command_name check_https_Blackboard_Browser - command_line $USER1$/check_https_Blackboard.py '$ARG1$' '$ARG2$' '$ARG3$' 2>&1 -} - -define command { - command_name check_https_ClearPass - command_line $USER1$/check_https_CP.py '$ARG1$' '$ARG2$' '$ARG3$' $ARG4$ 2>&1 -} - -define command { - command_name check_https_iw - command_line $USER1$/check_https_iw.py '$ARG1$' '$ARG2$' '$ARG3$' -} - -define command { - command_name check_https_oamhub - command_line $USER1$/check_https_oamhub.py '$ARG1$' '$ARG2$' '$ARG3$' -} - -define command { - command_name check_https_remote - command_line $USER1$/check_https_remote.py '$ARG1$' '$ARG2$' '$ARG3$' -} - -define command { - command_name check_https_Dump_All_AD_Users - command_line $USER1$/check_https_Dump_All_AD_Users 2>&1 -} - -define command { - command_name check_https_lists - command_line $USER1$/check_https_lists.py '$ARG1$' '$ARG2$' '$ARG3$' -} - -define command { - command_name check_https_sdprsa_sc - command_line $USER1$/check_https_sdprsa_sc.py $ARG1$ $ARG2$ $ARG3$ 2>&1 -} - -define command { - command_name check_https_sdprsa_ss - command_line $USER1$/check_https_sdprsa_ss.py $ARG1$ $ARG2$ $ARG3$ 2>&1 -} - -define command { - command_name check_https_Webspace - command_line $USER1$/check_https_webspace.py https://$HOSTALIAS$$ARG1$ '$ARG2$' 'Xythos701&)!' 2>&1 || exit 1 -} - -define command { - command_name check_https_Webspace_backend - command_line $USER1$/check_https_webspace_backend $ARG1$ 2>&1 || exit 1 -} - -define command { - command_name check_https_Webspaceqa_backend - command_line $USER1$/check_https_webspaceqa_backend $ARG1$ 2>&1 || exit 1 -} - -define command { - command_name check_https_auth_groundwk - command_line $USER1$/check_http -t 60 -H $HOSTALIAS$ -f "follow" -a 'groundwk:$USER30$' -w "$ARG1$" -c "$ARG2$" -S -E -u '$ARG3$' $ARG4$ $ARG5$ -} - -define command { - command_name check_https_auth - command_line $USER1$/check_http_auth -t $ARG1$ -U '$ARG2$' -u '$ARG3$' -p '$ARG4$' -s $ARG5$ 2>&1 -} - -define command { - command_name check_https_ba - command_line $USER1$/check_http -t 60 -H $HOSTADDRESS$ -u "$ARG1$" -p "$ARG2$" -s "$ARG3$" -f "follow" -w "$ARG4$" -c "$ARG5$" -E $ARG6$ -} - - -define command { - command_name check_https_port - command_line $USER1$/check_http -t $USER3$ -H $HOSTADDRESS$ -w "$ARG1$" -c "$ARG2$" -p "$ARG3$" -S -E -} - - -define command { - command_name check_https_portnum - command_line $USER1$/check_http -t $USER3$ -H $ARG1$ -p "$ARG2$" -w "$ARG3$" -c "$ARG4$" -S -E -} - - -define command { - command_name check_https_simple - command_line $USER1$/check_http -t $USER3$ -H $ARG1$ -f follow -w "$ARG2$" -c "$ARG3$" -S -E $ARG4$ -} - - -define command { - command_name check_https_um-audiocodes_auth - command_line $USER1$/check_http_auth.no_ntlm -t $ARG1$ $ARG2$ -U $ARG3$ -u $ARG4$ -w $ARG5$ -c $ARG6$ -p '$USER18$' 2>&1 -} - - -define command { - command_name check_https_url - #command_line $USER1$/check_http -t 60 -H $ARG1$ -u "$ARG2$" -p "$ARG3$" -s "$ARG4$" -f "follow" -w "$ARG5$" -c "$ARG6$" --ssl=1 -E - command_line $USER1$/check_http -t $USER3$ -H $ARG1$ -u "$ARG2$" -f "follow" -w "$ARG3$" -c "$ARG4$" -S -E $ARG5$ -} - - -define command { - command_name check_https_url-tlsv1 - command_line $USER1$/check_http -t 60 -H $ARG1$ -u "$ARG2$" -f "follow" -w "$ARG3$" -c "$ARG4$" --ssl=1 -E $ARG5$ -} - -define command { - command_name check_https_url_fedqa_135 - command_line $USER1$/check_http -t $USER3$ -H 3.220.168.135 -u "/cas/status" -f "follow" -w "$ARG1$" -c "$ARG2$" -S -E $ARG3$ -} - -define command { - command_name check_https_url_fedqa_44 - command_line $USER1$/check_http -t $USER3$ -H 3.220.168.44 -u "/cas/status" -f "follow" -w "$ARG1$" -c "$ARG2$" -S -E $ARG3$ -} - -define command { - command_name check_https_url_idpqa_125 - command_line $USER1$/check_http -t $USER3$ -H 100.24.220.125 -u "/idp/profile/status" -f "follow" -w "$ARG1$" -c "$ARG2$" -S -E $ARG3$ -} - -define command { - command_name check_https_url_idpqa_83 - command_line $USER1$/check_http -t $USER3$ -H 18.215.32.83 -u "/idp/profile/status" -f "follow" -w "$ARG1$" -c "$ARG2$" -S -E $ARG3$ -} - -define command { - command_name check_https_url_fed_24 - command_line $USER1$/check_http -t $USER3$ -H 3.220.234.24 -u "/cas/status" -f "follow" -w "$ARG1$" -c "$ARG2$" -S -E $ARG3$ -} - -define command { - command_name check_https_url_fed_100 - command_line $USER1$/check_http -t $USER3$ -H 3.211.185.100 -u "/cas/status" -f "follow" -w "$ARG1$" -c "$ARG2$" -S -E $ARG3$ -} - -define command { - command_name check_https_url_idp_95 - command_line $USER1$/check_http -t $USER3$ -H 18.235.250.95 -u "/idp/profile/status" -f "follow" -w "$ARG1$" -c "$ARG2$" -S -E $ARG3$ -} - -define command { - command_name check_https_url_idp_168 - command_line $USER1$/check_http -t $USER3$ -H 54.159.202.168 -u "/idp/profile/status" -f "follow" -w "$ARG1$" -c "$ARG2$" -S -E $ARG3$ -} - -define command { - command_name check_https_host - command_line $USER1$/check_http -H $HOSTADDRESS$ -4NS -f follow -t $USER3$ -E $ARG1$ -} - -define command { - command_name check_https_sp - command_line $USER1$/check_https_sp.py $ARG1$ $ARG2$ $USER30$ -} - -define command { - command_name check_https_sp_logos - command_line $USER1$/check_https_sp_logos.py $ARG1$ $ARG2$ $USER30$ -} - -define command { - command_name check_https_sp-2016 - command_line $USER1$/check_https_sp-2016.py $ARG1$ $ARG2$ $USER30$ -} - -define command { - command_name check_https_sp_logos-2016 - command_line $USER1$/check_https_sp_logos-2016.py $ARG1$ $ARG2$ $USER30$ -} - -define command { - command_name check_https_wase - command_line $USER1$/check_https_wase.py -} - -define command { - command_name check_ifoperstatus - command_line $USER1$/check_ifoperstatus -k "$ARG1$" -H $HOSTADDRESS$ -C "$USER7$" -} - - -define command { - command_name check_imap - command_line $USER1$/check_imap -t 60 -H $HOSTADDRESS$ -w "$ARG1$" -c "$ARG2$" -p 143 -} - - -define command { - command_name check_imap_receive - command_line $USER1$/check_imap_receive -H $ARG1$ --username grndwk2 --password $USER30$ --download --search-warning-max 1 --imap-retries 5 --ssl --template -s SENTSINCE -s '{rfc2822dateHeader("now",$ARG2$)}' -s $ARG3$ -s $ARG4$ -s $ARG5$ -} - - -define command { - command_name check_imaps - command_line $USER1$/check_imap -t 60 -H $HOSTADDRESS$ -w "$ARG1$" -c "$ARG2$" -p 993 -S -} - - -define command { - command_name check_imapssl - command_line $USER1$/check_imap_pu "$HOSTADDRESS$" "$ARG1$" '$USER32$' "30" -} - - -define command { - command_name check_keyserver - command_line $USER1$/check_keyserver.sh "$ARG1$" "$ARG2$" -} - - -define command { - command_name check_keyserver_mme_service - command_line $USER1$/check_keyserver_mme_service.sh "$ARG1$" "$ARG2$" "$ARG3$" -} - - -define command { - command_name check_keyserver_service - command_line $USER1$/check_keyserver_service.sh "$ARG1$" "$ARG2$" -} - -define command { - command_name check_ldap - command_line $USER1$/check_ldap -3 -4 -t $USER3$ -H $HOSTALIAS$ -b $ARG1$ -w $ARG2$ -c $ARG3$ $ARG4$ -} - - -define command { - command_name check_ldap_host_pu - command_line $USER1$/check_ldap_pu -H $ARG1$ -b $ARG2$ -w $ARG3$ -c $ARG4$ -} - - -define command { - command_name check_ldap_new - command_line $USER1$/check_ldap -t $USER3$ -H $HOSTADDRESS$ -w "$ARG1$" -c "$ARG2$" -b "$ARG3$" -a "$ARG4$" -} - - -define command { - command_name check_ldap_pu - command_line $USER1$/check_ldap_pu -H $HOSTNAME$.Princeton.EDU -b $ARG1$ -w $ARG2$ -c $ARG3$ -} - - -define command { - command_name check_ldap_ssl_host_pu - command_line $USER1$/check_ldap_pu -H $ARG1$ -b $ARG2$ -S -w $ARG3$ -c $ARG4$ -} - -define command { - command_name check_ldap_ssl - command_line $USER1$/check_ldap -3 -4 -S -t $USER3$ -H $HOSTALIAS$ -b $ARG1$ -w $ARG2$ -c $ARG3$ $ARG4$ -} - -define command { - command_name check_ldap_ssl_novalcert - command_line LDAPTLS_REQCERT=never LDAPTLS_CIPHER_SUITE='DEFAULT:!DH' $USER1$/check_ldap -3 -4 -S -t $USER3$ -H $HOSTALIAS$ -b $ARG1$ -w $ARG2$ -c $ARG3$ $ARG4$ -} - -define command { - command_name check_ldap_bind_HOSTALIAS_DN_PASS_BASE - command_line LDAPTLS_CIPHER_SUITE='DEFAULT:!DH' $USER1$/check_ldap -3 -4 -S -H $HOSTALIAS$ -D $ARG1$ -P $ARG2$ -b $ARG3$ -w $ARG4$ -c $ARG5$ -} - -# 'check_local_disk' command definition -define command { - command_name check_local_disk - command_line $USER1$/check_disk -w "$ARG1$" -c "$ARG2$" -p "$ARG3$" -} - - -define command { - command_name check_local_disk_pu - command_line $USER1$/check_disk_pu.pl -f /usr/local/monitoring/princeton/check_disk_pu.cfg -C $ARG1$ -} - -# 'check_local_load' command definition -define command { - command_name check_local_load - command_line $USER1$/check_load -w "$ARG1$" -c "$ARG2$" -} - - -define command { - command_name check_local_mem - command_line $USER1$/check_mem.pl -U -w "$ARG1$" -c "$ARG2$" -} - - -define command { - command_name check_local_proc_cpu - command_line $USER1$/check_procl.sh --cpu -w "$ARG1$" -c "$ARG2$" -p "$ARG3$" -} - - -define command { - command_name check_local_proc_mem - command_line $USER1$/check_procl.sh --mem -w "$ARG1$" -c "$ARG2$" -p "$ARG3$" -} - -# 'check_local_procs' command definition -define command { - command_name check_local_procs - command_line $USER1$/check_procs -w $ARG1$ -c $ARG2$ -s $ARG3$ -} - - -define command { - command_name check_local_procs_arg - command_line $USER1$/check_procs -w "$ARG1$" -c "$ARG2$" -a "$ARG3$" -} - - -define command { - command_name check_local_procs_string - command_line $USER1$/check_procs -w "$ARG1$" -c "$ARG2$" -a "$ARG3$" -} - - -define command { - command_name check_local_swap - command_line $USER1$/check_swap -w "$ARG1$" -c "$ARG2$" -} - -# 'check_local_users' command definition -define command { - command_name check_local_users - command_line $USER1$/check_users -w $ARG1$ -c $ARG2$ -} - - -define command { - command_name check_msg - command_line $USER1$/check_msg.pl $ARG1$ $ARG2$ -} - - -define command { - command_name check_msg_negate - command_line $USER1$/negate "$USER1$/check_msg.pl $ARG1$ $ARG2$" -} - - -define command { - command_name check_mysql - command_line $USER1$/check_mysql -d "$ARG1$" -u "$ARG2$" -p "$ARG3$" $ARG4$ -} - - -define command { - command_name check_mysql_engine - command_line $USER1$/check_mysql -H $HOSTADDRESS$ -u "$ARG1$" -p "$ARG2$" -} - - -define command { - command_name check_mysql_engine_nopw - command_line $USER1$/check_mysql -H $HOSTADDRESS$ -u "$ARG1$" -} - - -define command { - command_name check_mysql_nopw - command_line $USER1$/check_mysql -H $HOSTADDRESS$ -d "$ARG1$" -u "$ARG2$" -} - - -define command { - command_name check_nagios - command_line $USER1$/check_nagios -F /usr/local/monitoring/naemon/var/status.dat -e 5 -C /usr/local/monitoring/naemon/etc/naemon/naemon.cfg -} - - -define command { - command_name check_nagios_latency - command_line $USER1$/check_nagios_latency.pl -} - -define command { - command_name check_nrpe_nagios_latency - command_line $USER1$/check_nrpe -p $USER10$ -t $USER3$ -H $HOSTADDRESS$ -c check_nagios_latency -} - -define command { - command_name check_netapp_cf_interconnect_status - command_line $USER1$/check_netapp -H $HOSTADDRESS$ -C '$USER7$' -P1 -v CFINTERCONNECTSTATUS -} - - -define command { - command_name check_netapp_cf_partner_status - command_line $USER1$/check_netapp -H $HOSTADDRESS$ -C '$USER7$' -P1 -v CFPARTNERSTATUS -} - - -define command { - command_name check_netapp_cf_settings - command_line $USER1$/check_netapp -H $HOSTADDRESS$ -C '$USER7$' -P1 -v CFSETTINGS -} - - -define command { - command_name check_netapp_cf_state - command_line $USER1$/check_netapp -H $HOSTADDRESS$ -C '$USER7$' -P1 -v CFSTATE -} - - -define command { - command_name check_netapp_cpuload - command_line $USER1$/check_netapp -H $HOSTADDRESS$ -C '$USER7$' -P1 -v CPULOAD -w $ARG1$ -c $ARG2$ -} - - -define command { - command_name check_netapp_disk_space - command_line $USER1$/check_netapp_disk.pl -H $HOSTADDRESS$ -C '$USER7$' -f /usr/local/monitoring/princeton/$HOSTNAME$_$ARG1$ -} - - -define command { - command_name check_netapp_disks - command_line $USER1$/check_netapp_disk.pl -H $HOSTADDRESS$ -C '$USER7$' -f /usr/local/monitoring/princeton/$HOSTNAME$.cfg -} - - -define command { - command_name check_netapp_failed_disks - command_line $USER1$/check_netapp -H $HOSTADDRESS$ -C '$USER7$' -P1 -c 1 -v FAILEDDISK -} - - -define command { - command_name check_netapp_failed_fans - command_line $USER1$/check_netapp -H $HOSTADDRESS$ -C '$USER7$' -P1 -c 1 -v FAN -} - - -define command { - command_name check_netapp_failed_psu - command_line $USER1$/check_netapp -H $HOSTADDRESS$ -C '$USER7$' -P1 -v PS -c 1 -} - - -define command { - command_name check_netapp_miscGlobalStatus - command_line $USER1$/check_snmp -H $HOSTADDRESS$ -o 1.3.6.1.4.1.789.1.2.2.4.0 -C '$USER7$' -P1 -c $ARG1$:$ARG2$ -} - - -define command { - command_name check_netapp_nvram - command_line $USER1$/check_netapp -H $HOSTADDRESS$ -C '$USER7$' -P1 -c 1 -v NVRAM -} - - -define command { - command_name check_netapp_over_temp - command_line $USER1$/check_netapp -H $HOSTADDRESS$ -C '$USER7$' -P1 -v TEMP -} - - -define command { - command_name check_netid_avail - command_line $USER1$/check_netid_ws_pu.pl -H $HOSTADDRESS$ -i $ARG1$ -t $ARG2$ -} - -# 'check_nntp' command definition -define command { - command_name check_nntp - command_line $USER1$/check_nntp -H $HOSTADDRESS$ -w "$ARG1$" -c "$ARG2$" -} - - -define command { - command_name check_nntps - command_line $USER1$/check_nntp -H $HOSTADDRESS$ -w "$ARG1$" -c "$ARG2$" -p 563 -S -} - -define command { - command_name check_nrpe - command_line $USER1$/check_nrpe -p $USER10$ -t $USER3$ -H $HOSTADDRESS$ -} - -define command { - command_name check_nrpe_v3 - command_line $USER1$/check_nrpe_v3 -p $USER10$ -H $HOSTADDRESS$ -E -d 0 -t $USER3$:UNKNOWN -A /usr/local/monitoring/etc/net-ca-chain.pem -L HIGH:MEDIUM -S TLSv1.2+ $ARG1$ $ARG2$ $ARG3$ $ARG4$ -} - -define command { - command_name check_nrpe_agent - command_line $USER1$/check_nrpe_agent $HOSTADDRESS$ -} - -define command { - command_name check_nrpe_generic - command_line $USER1$/check_nrpe -p $USER10$ -t $USER3$ -H $HOSTADDRESS$ -c $ARG1$ $ARG2$ $ARG3$ $ARG4$ $ARG5$ $ARG6$ -} - -define command { - command_name check_nrpe_very_generic - command_line $USER1$/check_nrpe $ARG1$ $ARG2$ $ARG3$ $ARG4$ $ARG5$ $ARG6$ $ARG7$ -} - -define command { - command_name check_nrpe_http - command_line $USER1$/check_nrpe -p $USER10$ -t $USER3$ -H $HOSTADDRESS$ -c check_http -a '$ARG1$' '$ARG2$' '$ARG3$' '$ARG4$' -} - -define command { - command_name check_nrpe_load - command_line $USER1$/check_nrpe -p $USER10$ -t $USER3$ -H $HOSTADDRESS$ -c check_load -a $ARG1$ $ARG2$ $ARG3$ -} - -define command { - command_name check_nrpe_nagios - command_line $USER1$/check_nrpe -p $USER10$ -t $USER3$ -H $HOSTADDRESS$ -c check_nagios -} - -define command { - command_name check_nrpe_DC_KerberosAuthentications - command_line $USER1$/check_nrpe -t 60 -u -H $HOSTADDRESS$ -p $USER10$ -c get_counter_counter -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" "$ARG3$" "$ARG4$" "$ARG5$" -} - - -define command { - command_name check_nrpe_DC_LDAPBindTime - command_line $USER1$/check_nrpe -t 60 -u -H $HOSTADDRESS$ -p $USER10$ -c get_counter_rawcount -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" "$ARG3$" "$ARG4$" "$ARG5$" -} - - -define command { - command_name check_nrpe_DC_LDAPClientSessions - command_line $USER1$/check_nrpe -t 60 -u -H $HOSTADDRESS$ -p $USER10$ -c get_counter_rawcount -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" "$ARG3$" "$ARG4$" "$ARG5$" -} - - -define command { - command_name check_nrpe_DC_NTLMAuthentications - command_line $USER1$/check_nrpe -t 60 -u -H $HOSTADDRESS$ -p $user10$ -c get_counter_counter -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" "$ARG3$" "$ARG4$" "$ARG5$" -} - - -define command { - command_name check_nrpe_DC_PercentProcessorTime_lsass - command_line $USER1$/check_nrpe -t 60 -u -H $HOSTADDRESS$ -p $USER10$ -c get_100nsec_timer -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" "$ARG3$" "$ARG4$" "$ARG5$" -} - - -define command { - command_name check_nrpe_DC_PercentProcessorTime_ntfrs - command_line $USER1$/check_nrpe -t 60 -u -H $HOSTADDRESS$ -p $USER10$ -c get_100nsec_timer -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" "$ARG3$" "$ARG4$" "$ARG5$" -} - - -define command { - command_name check_nrpe_active_mem - command_line $USER1$/check_nrpe -H $HOSTADDRESS$ -p $USER10$ -t 60 -c check_active_mem -a $ARG1$ $ARG2$ -} - - -define command { - command_name check_nrpe_asm_disk - command_line $USER1$/check_nrpe -p $USER10$ -t $USER3$ -H $HOSTADDRESS$ -c check_asm_disk -a $ARG1$ $ARG2$ -} - - -define command { - command_name check_nrpe_cpu - command_line $USER1$/check_nrpe -p $USER10$ -t 60 -H $HOSTADDRESS$ -c check_cpu -a "$ARG1$" "$ARG2$" "$ARG3$" "$ARG4$" -} - -define command { - command_name check_nrpe_cpu_system - command_line $USER1$/check_nrpe -p $USER10$ -t 60 -H $HOSTADDRESS$ -c check_cpu_system -a "$ARG1$" "$ARG2$" "$ARG3$" "$ARG4$" -} - -define command { - command_name check_nrpe_cpu_user - command_line $USER1$/check_nrpe -p $USER10$ -t 60 -H $HOSTADDRESS$ -c check_cpu_user -a "$ARG1$" "$ARG2$" "$ARG3$" "$ARG4$" -} - - -define command { - command_name check_nrpe_daemon - command_line $USER1$/check_nrpe -p $USER10$ -t 60 -H $HOSTADDRESS$ -c check_daemon -a "$ARG1$:" "$ARG2$" -} - - -define command { - command_name check_nrpe_dazel_fax_errors - command_line $USER1$/check_nrpe -t 60 -u -H $HOSTADDRESS$ -p $USER10$ -c check_dazel_fax_errors -} - - -define command { - command_name check_nrpe_dazel_lpg_log - command_line $USER1$/check_nrpe -t 60 -u -H $HOSTADDRESS$ -p $USER10$ -c check_nrpe_lpg_log -a $ARG1$ $ARG2$ $ARG3$ -} - - -define command { - command_name check_nrpe_dazel_status - command_line $USER1$/check_nrpe -t 60 -u -H $HOSTADDRESS$ -p $USER10$ -c check_dazel_status -} - - -define command { - command_name check_nrpe_disk - command_line $USER1$/check_nrpe -t $USER3$ -u -H $HOSTADDRESS$ -p $USER10$ -c check_disk -a $ARG1$ $ARG2$ '$ARG3$' -} - - -define command { - command_name check_nrpe_disk_all -# command_line $USER1$/check_nrpe -p $USER10$ -t $USER3$ -H $HOSTADDRESS$ -c check_all_disk -a $ARG1$ '$ARG2$ -A -I ^/$ -I ^/var$ -I ^/usr$ -I ^/boot$ -I ^/tmp$ -X tmpfs -X devtmpfs -l -L' - command_line $USER1$/check_nrpe -p $USER10$ -t $USER3$ -H $HOSTADDRESS$ -c check_all_disk -a $ARG1$ '$ARG2$ -A -I ^/$ -I ^/var$ -I ^/usr$ -I ^/boot$ -I ^/tmp$ -I '/run/docker/' -I '/var/lib/docker/' -X tmpfs -X devtmpfs -l -L' -} - - -define command { - command_name check_nrpe_disk_by_class - ##command_line $USER1$/check_output_convert check_snmp_storage '-2 -H $HOSTADDRESS$ -C $USER7$ -t 120 --cache=30 -m $ARG1$ -q FixedDisk -w $ARG2$ -c $ARG3$ $ARG4$' $USER1$/check_snmp_disk_output_convert - command_line $USER1$/check_output_convert check_nrpe '-t 60 -H $HOSTADDRESS$ -p $USER10$ -c check_disk_class -a "$ARG1$"' $USER1$/check_snmp_disk_output_convert - ##command_line $USER1$/check_nrpe -t 60 -u -H $HOSTADDRESS$ -p $USER10$ -c check_disk_class -a "$ARG1$" -} - - -define command { - command_name check_nrpe_disk_by_class2 - command_line $USER1$/check_nrpe -t 60 -u -H $HOSTADDRESS$ -p $USER10$ -c check_disk_class -a "$ARG1$" "$ARG2$" "$ARG3$" -} - - -define command { - command_name check_nrpe_disk_by_class_all - command_line $USER1$/check_nrpe -t 60 -u -H $HOSTADDRESS$ -p $USER10$ -c check_disk_class_all -a "$ARG1$" "$ARG2$" "$ARG3$" -} - - -define command { - command_name check_nrpe_dummy - command_line $USER1$/check_nrpe -p $USER10$-t 60 -H $HOSTADDRESS$ -c check_dummy -a $ARG1$ -} - - -define command { - command_name check_nrpe_exchange_mailbox_receiveq - command_line $USER1$/check_nrpe -t 60 -u -H $HOSTADDRESS$ -p $USER10$ -c get_exchange_mbox_recvq -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" -} - - -define command { - command_name check_nrpe_exchange_mailbox_sendq - command_line $USER1$/check_nrpe -t 60 -u -H $HOSTADDRESS$ -p $USER10$ -c get_exchange_mbox_sendq -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" -} - - -define command { - command_name check_nrpe_exchange_mta_workq - command_line $USER1$/check_nrpe -t 60 -u -H $HOSTADDRESS$ -p $USER10$ -c get_exchange_mta_workq -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" -} - - -define command { - command_name check_nrpe_exchange_public_receiveq - command_line $USER1$/check_nrpe -t 60 -u -H $HOSTADDRESS$ -p $USER10$ -c get_exchange_pub_recvq -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" -} - - -define command { - command_name check_nrpe_exchange_public_sendq - command_line $USER1$/check_nrpe -t 60 -u -H $HOSTADDRESS$ -p $USER10$ -c get_exchange_pub_sendq -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" -} - - -define command { - command_name check_nrpe_faxq - command_line $USER1$/check_nrpe -p $USER10$ -t 60 -H $HOSTADDRESS$ -c check_faxq -a "$ARG1$" "$ARG2$" -} - - -define command { - command_name check_nrpe_iis_bytes_received - command_line $USER1$/check_nrpe -t 60 -u -H $HOSTADDRESS$ -p $USER10$ -c get_iis_bytes_received -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" "$ARG3$" -} - - -define command { - command_name check_nrpe_iis_bytes_sent - command_line $USER1$/check_nrpe -t 60 -u -H $HOSTADDRESS$ -p $USER10$ -c get_iis_bytes_sent -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" "$ARG3$" -} - - -define command { - command_name check_nrpe_iis_bytes_total - command_line $USER1$/check_nrpe -t 60 -u -H $HOSTADDRESS$ -p $USER10$ -c get_iis_bytes_total -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" "$ARG3$" -} - - -define command { - command_name check_nrpe_iis_current_connections - command_line $USER1$/check_nrpe -t 60 -u -H $HOSTADDRESS$ -p $USER10$ -c get_iis_currentconnections -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" "$ARG3$" -} - - -define command { - command_name check_nrpe_iis_current_nonanonymous_users - command_line $USER1$/check_nrpe -t 60 -u -H $HOSTADDRESS$ -p $USER10$ -c get_iis_curnonanonusers -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" "$ARG3$" -} - - -define command { - command_name check_nrpe_iis_get_requests - command_line $USER1$/check_nrpe -t 60 -u -H $HOSTADDRESS$ -p $USER10$ -c get_iis_get_requests -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" "$ARG3$" -} - - -define command { - command_name check_nrpe_iis_maximum_connections - command_line $USER1$/check_nrpe -t 60 -u -H $HOSTADDRESS$ -p $USER10$ -c get_iis_maximumconnections -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" "$ARG3$" -} - - -define command { - command_name check_nrpe_iis_post_requests - command_line $USER1$/check_nrpe -t 60 -u -H $HOSTADDRESS$ -p $USER10$ -c get_iis_post_requests -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" "$ARG3$" -} - - -define command { - command_name check_nrpe_iis_private_bytes - command_line $USER1$/check_nrpe -t 60 -u -H $HOSTADDRESS$ -p $USER10$ -c get_iis_privatebytes -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" -} - - -define command { - command_name check_nrpe_iis_total_not_found_errors - command_line $USER1$/check_nrpe -t 60 -u -H $HOSTADDRESS$ -p $USER10$ -c get_iis_totalnotfounderrors -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" "$ARG3$" -} - - -define command { - command_name check_nrpe_ipmi_sun_chassis - command_line $USER1$/check_nrpe -t 60 -u -H $HOSTADDRESS$ -p $USER10$ -c check_ipmi_sun_chassis -} - - -define command { - command_name check_nrpe_local_cpu - command_line $USER1$/check_nrpe -t 60 -u -H $HOSTADDRESS$ -c get_cpu -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" -} - - -define command { - command_name check_nrpe_local_disk - command_line $USER1$/check_nrpe -t 60 -u -H $HOSTADDRESS$ -c get_disk -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" -} - - -define command { - command_name check_nrpe_local_memory - command_line $USER1$/check_nrpe -t 60 -u -H $HOSTADDRESS$ -c get_mem -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" -} - - -define command { - command_name check_nrpe_local_pagefile - command_line $USER1$/check_nrpe -t 60 -u -H $HOSTADDRESS$ -c check_pagefile_counter -a "$ARG1$" "$ARG2$" -} - -define command { - command_name check_nrpe_jvm - command_line $USER1$/check_nrpe -t $USER3$ -H $HOSTADDRESS$ -p $USER10$ -c check_dspace_jvm -a $ARG1$ $ARG2$ $ARG3$ -} - -define command { - command_name check_nrpe_maestro_carryfwd - command_line $USER1$/check_nrpe -t 60 -u -H $HOSTADDRESS$ -p $USER10$ -c check_tws_carryfwd -} - - -define command { - command_name check_nrpe_maestro_msgfilesz - command_line $USER1$/check_nrpe -t 60 -u -H $HOSTADDRESS$ -p $USER10$ -c check_tws_msgfilesz -} - - -define command { - command_name check_nrpe_maestro_procs - command_line $USER1$/check_nrpe -t 60 -u -H $HOSTADDRESS$ -p $USER10$ -c check_tws_procs -} - - -define command { - command_name check_nrpe_maestro_stdlistsz - command_line $USER1$/check_nrpe -t 60 -u -H $HOSTADDRESS$ -p $USER10$ -c check_tws_stdlistsz -} - - -define command { - command_name check_nrpe_maestro_unlink - command_line $USER1$/check_nrpe -t 60 -u -H $HOSTADDRESS$ -p $USER10$ -c check_tws_unlink -} - - -define command { - command_name check_nrpe_mem - command_line $USER1$/check_nrpe -p $USER10$ -t 60 -H $HOSTADDRESS$ -c check_mem -a "$ARG1$" "$ARG2$" -} - - -define command { - command_name check_nrpe_mounts - command_line $USER1$/check_nrpe -p $USER10$ -t 60 -H $HOSTADDRESS$ -c check_mounts -} - - -define command { - command_name check_nrpe_mssql_buffer_cache_hits - command_line $USER1$/check_nrpe -t 60 -u -H $HOSTADDRESS$ -p $USER10$ -c get_mssql_buf_cache_hit -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" -} - - -define command { - command_name check_nrpe_mssql_deadlocks - command_line $USER1$/check_nrpe -t 60 -u -H $HOSTADDRESS$ -p $USER10$ -c get_mssql_deadlocks -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" "$ARG3$" -} - - -define command { - command_name check_nrpe_mssql_full_scans - command_line $USER1$/check_nrpe -t 60 -u -H $HOSTADDRESS$ -p $USER10$ -c get_mssql_fullscans -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" -} - - -define command { - command_name check_nrpe_mssql_lock_wait_time - command_line $USER1$/check_nrpe -t 60 -u -H $HOSTADDRESS$ -p $USER10$ -c get_mssql_lock_wait_time -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" "$ARG3$" -} - - -define command { - command_name check_nrpe_mssql_lock_waits - command_line $USER1$/check_nrpe -t 60 -u -H $HOSTADDRESS$ -p $USER10$ -c get_mssql_lock_waits -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" "$ARG3$" -} - - -define command { - command_name check_nrpe_mssql_log_growths - command_line $USER1$/check_nrpe -t 60 -u -H $HOSTADDRESS$ -p $USER10$ -c get_mssql_log_growth -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" "$ARG3$" -} - - -define command { - command_name check_nrpe_mssql_log_used - command_line $USER1$/check_nrpe -t 60 -u -H $HOSTADDRESS$ -p $USER10$ -c get_mssql_log_used -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" "$ARG3$" -} - - -define command { - command_name check_nrpe_mssql_memory_grants_pending - command_line $USER1$/check_nrpe -t 60 -u -H $HOSTADDRESS$ -p $USER10$ -c get_mssql_memgrantspending -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" -} - - -define command { - command_name check_nrpe_mssql_transactions - command_line $USER1$/check_nrpe -t 60 -u -H $HOSTADDRESS$ -p $USER10$ -c get_mssql_transactions -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" "$ARG3$" -} - - -define command { - command_name check_nrpe_mssql_users - command_line $USER1$/check_nrpe -t 60 -u -H $HOSTADDRESS$ -p $USER10$ -c get_mssql_users -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" -} - -define command { - command_name check_nrpe_multipath - command_line $USER1$/check_nrpe -t 60 -u -H $HOSTADDRESS$ -p $USER10$ -c check_multipath -a $ARG1$ $ARG2$ -} - -define command { - command_name check_nrpe_om - command_line $USER1$/check_nrpe -p $USER10$ -t 60 -H $HOSTADDRESS$ -c check_om -} - - -define command { - command_name check_nrpe_print_queue - command_line $USER1$/check_nrpe -t 60 -u -H $HOSTADDRESS$ -c get_printqueue -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" "$ARG3$" -} - - -define command { - command_name check_nrpe_proc_by_size - command_line $USER1$/check_nrpe -p $USER10$ -t 60 -H $HOSTADDRESS$ -c check_proc_by_size -a "$ARG1$" "$ARG2$" "$ARG3$" -} - - -define command { - command_name check_nrpe_proc_count - command_line $USER1$/check_nrpe -p $USER10$ -t 60 -H $HOSTADDRESS$ -c check_procs -a "$ARG1$" "$ARG2$" "RSZTDO" -} - - -define command { - command_name check_nrpe_proclist - command_line $USER1$/check_nrpe -p $USER10$ -t 60 -H $HOSTADDRESS$ -c check_proclist -a "$ARG1$" -} - -define command { - command_name check_nrpe_process - command_line $USER1$/check_nrpe -p $USER10$ -t $USER3$ -H $HOSTADDRESS$ -c check_proc -a "$ARG1$" "$ARG2$" "$ARG3$" -} - -define command { - command_name check_nrpe_prtdiag - command_line $USER1$/check_nrpe_prtdiag_wrapper $HOSTADDRESS$ -} - - -define command { - command_name check_nrpe_rds_license_usage - command_line $USER1$/check_nrpe -t 60 -u -H $HOSTADDRESS$ -p $USER10$ -c check_rds_license_usage -a "$ARG1$" "$ARG2$" -} - - -define command { - command_name check_nrpe_swap - command_line $USER1$/check_nrpe -p $USER10$ -t 60 -H $HOSTADDRESS$ -c check_swap -a "$ARG1$"% "$ARG2$"% -} - - -define command { - command_name check_nrpe_tcp - command_line $USER1$/check_nrpe -p $USER10$ -t $USER3$ -H $HOSTADDRESS$ -c check_tcp -a '$ARG1$' '$ARG2$' '$ARG3$' '$ARG4$' -} - - -define command { - command_name check_nrpe_unix_lxfiles - command_line $USER1$/check_nrpe -p $USER10$ -t 60 -H $HOSTADDRESS$ -c check_files -a "$ARG1$" "$ARG2$" -} - - -define command { - command_name check_nrpe_vvm - command_line $USER1$/check_nrpe_unix_vvm_wrapper $HOSTADDRESS$ -} - - -define command { - command_name check_nrpe_zfs - command_line $USER1$/check_nrpe -p $USER10$ -t 60 -H $HOSTADDRESS$ -c check_zfs -a $ARG1$ $ARG2$ -} - - -define command { - command_name through_nrpe - command_line $USER1$/check_nrpe -p $USER10$ -t $USER3$ -H $ARG1$ -c $ARG2$ -a $ARG3$ $ARG4$ -} - - -define command { - command_name check_nt - command_line $USER1$/check_nt -p $USER19$ -s $USER4$ -H $HOSTADDRESS$ -v CLIENTVERSION -} - - -define command { - command_name check_nt_counter_disktransfers - command_line $USER1$/check_nt -H $HOSTADDRESS$ -p $USER19$ -s $USER4$ -v COUNTER -l "\\PhysicalDisk(_Total)\\Disk Transfers/sec","PhysicalDisk(_Total) Disk Transfers/sec is %.f " -w "$ARG1$" -c "$ARG2$" -} - - -define command { - command_name check_nt_counter_exchange_mailrq - command_line $USER1$/check_nt -H $HOSTADDRESS$ -p $USER19$ -s $USER4$ -v COUNTER -l "\\MSExchangeIS Mailbox(_Total)\\Receive Queue Size","Receive Queue Size is %.f " -w "$ARG1$" -c "$ARG2$" -} - - -define command { - command_name check_nt_counter_exchange_mailsq - command_line $USER1$/check_nt -H $HOSTADDRESS$ -p $USER19$ -s $USER4$ -v COUNTER -l "\\MSExchangeIS Mailbox(_Total)\\Send Queue Size","Send Queue Size is %.f " -w "$ARG1$" -c "$ARG2$" -} - - -define command { - command_name check_nt_counter_exchange_mtawq - command_line $USER1$/check_nt -H $HOSTADDRESS$ -p $USER19$ -s $USER4$ -v COUNTER -l "\\MSExchangeMTA\\Work Queue Length","Work Queue Length is %.f " -w "$ARG1$" -c "$ARG2$" -} - - -define command { - command_name check_nt_counter_exchange_publicrq - command_line $USER1$/check_nt -H $HOSTADDRESS$ -p $USER19$ -s $USER4$ -v COUNTER -l "\\MSExchangeIS Public(_Total)\\Receive Queue Size","Receive Queue Size is %.f " -w "$ARG1$" -c "$ARG2$" -} - - -define command { - command_name check_nt_counter_exchange_publicsq - command_line $USER1$/check_nt -H $HOSTADDRESS$ -p $USER19$ -s $USER4$ -v COUNTER -l "\\MSExchangeIS Public(_Total)\\Send Queue Size","Send Queue Size is %.f " -w "$ARG1$" -c "$ARG2$" -} - - -define command { - command_name check_nt_counter_memory_pages - command_line $USER1$/check_nt -H $HOSTADDRESS$ -p $USER19$ -s $USER4$ -v COUNTER -l "\\Memory\\Pages/sec","Pages per Sec is %.f" -w "$ARG1$" -c "$ARG2$" -} - - -define command { - command_name check_nt_counter_mssql_bufcache_hits - command_line $USER1$/check_nt -H $HOSTADDRESS$ -p $USER19$ -s $USER4$ -v COUNTER -l "\\SQLServer:Buffer Manager\\Buffer cache hit ratio","SQLServer:Buffer Manager Buffer cache hit ratio is %.f " -w "$ARG1$" -c "$ARG2$" -} - - -define command { - command_name check_nt_counter_mssql_deadlocks - command_line $USER1$/check_nt -H $HOSTADDRESS$ -p $USER19$ -s $USER4$ -v COUNTER -l "\\SQLServer:Locks(_Total)\\Number of Deadlocks/sec","SQLServer:Locks(_Total) Number of Deadlocks/sec is %.f " -w "$ARG1$" -c "$ARG2$" -} - - -define command { - command_name check_nt_counter_mssql_latch_waits - command_line $USER1$/check_nt -H $HOSTADDRESS$ -p $USER19$ -s $USER4$ -v COUNTER -l "\\SQLServer:Latches\\Latch Waits/sec","SQLServer:Latches Latch Waits/sec is %.f " -w "$ARG1$" -c "$ARG2$" -} - - -define command { - command_name check_nt_counter_mssql_lock_wait_time - command_line $USER1$/check_nt -H $HOSTADDRESS$ -p $USER19$ -s $USER4$ -v COUNTER -l "\\SQLServer:Locks(_Total)\\Lock Wait Time (ms)","SQLServer:Locks(_Total) Lock Wait Time (ms) is %.f " -w "$ARG1$" -c "$ARG2$" -} - - -define command { - command_name check_nt_counter_mssql_lock_waits - command_line $USER1$/check_nt -H $HOSTADDRESS$ -p $USER19$ -s $USER4$ -v COUNTER -l "\\SQLServer:Locks(_Total)\\Lock Waits/sec","SQLServer:Locks(_Total) Lock Waits/sec is %.f " -w "$ARG1$" -c "$ARG2$" -} - - -define command { - command_name check_nt_counter_mssql_log_growths - command_line $USER1$/check_nt -H $HOSTADDRESS$ -p $USER19$ -s $USER4$ -v COUNTER -l "\\SQLServer:Databases(_Total)\\Log Growths","SQLServer:Databases(_Total) Log Growths is %.f " -w "$ARG1$" -c "$ARG2$" -} - - -define command { - command_name check_nt_counter_mssql_log_used - command_line $USER1$/check_nt -H $HOSTADDRESS$ -p $USER19$ -s $USER4$ -v COUNTER -l "\\SQLServer:Databases(_Total)\\Percent Log Used","SQLServer:Databases(_Total) Percent Log Used is %.f " -w "$ARG1$" -c "$ARG2$" -} - - -define command { - command_name check_nt_counter_mssql_memory_grants_pending - command_line $USER1$/check_nt -H $HOSTADDRESS$ -p $USER19$ -s $USER4$ -v COUNTER -l "\\SQLServer:Memory Manager\\Memory Grants Pending","SQLServer:Memory Manager Memory Grants Pending is %.f " -w "$ARG1$" -c "$ARG2$" -} - - -define command { - command_name check_nt_counter_mssql_transactions - command_line $USER1$/check_nt -H $HOSTADDRESS$ -p $USER19$ -s $USER4$ -v COUNTER -l "\\SQLServer:Databases(_Total)\\Transactions/sec","SQLServer:Databases(_Total) Transactions/sec is %.f " -w "$ARG1$" -c "$ARG2$" -} - - -define command { - command_name check_nt_counter_network_interface - command_line $USER1$/check_nt -H $HOSTADDRESS$ -p $USER19$ -s $USER4$ -v COUNTER -l "\\Network Interface(MS TCP Loopback interface)\\Bytes Total/sec","Network Interface(MS TCP Loopback interface) Bytes Total/sec is %.f " -w "$ARG1$" -c "$ARG2$" -} - - -define command { - command_name check_nt_cpuload - command_line $USER1$/check_nt -H $HOSTADDRESS$ -p $USER19$ -s $USER4$ -v CPULOAD -l "$ARG1$" -} - - -define command { - command_name check_nt_memuse - command_line $USER1$/check_nt -H $HOSTADDRESS$ -p $USER19$ -s $USER4$ -v MEMUSE -w "$ARG1$" -c "$ARG2$" -} - - -define command { - command_name check_nt_useddiskspace - command_line $USER1$/check_nt -H $HOSTADDRESS$ -p $USER19$ -s $USER4$ -v USEDDISKSPACE -l $ARG1$ -w $ARG2$ -c $ARG3$ -} - - -define command { - command_name check_ntp - command_line $USER1$/check_ntp -H $HOSTADDRESS$ -w $ARG1$ -c $ARG2$ $ARG3$ -} - - -define command { - command_name check_ntp_peer - command_line $USER1$/check_ntp_peer -H $HOSTADDRESS$ -w $ARG1$ -c $ARG2$ $ARG3$ -} - - -define command { - command_name check_ntp_time - command_line $USER1$/check_ntp_time -H $HOSTADDRESS$ -w $ARG1$ -c $ARG2$ $ARG3$ -} - - -define command { - command_name check_oracle_active_processes - command_line $USER1$/check_oracle_instance_gw.pl -u $USER15$ -p $USER16$ -c $ARG1$ -i -} - - -define command { - command_name check_oracle_active_sessions - command_line $USER1$/check_oracle_instance_gw.pl -u $USER15$ -p $USER16$ -c $ARG1$ -a $ARG2$ -} - - -define command { - command_name check_oracle_allocate-extents - command_line $USER1$/check_oracle_instance_gw.pl -u $USER15$ -p $USER16$ -c $ARG1$ -x -} - - -define command { - command_name check_oracle_blocking_locks - command_line $USER1$/check_oracle_instance_gw.pl -u $USER15$ -p $USER16$ -c $ARG1$ -l -} - - -define command { - command_name check_oracle_cache - command_line $USER1$/check_oracle --cache $ARG1$ $USER15$ $USER16$ $ARG2$ $ARG3$ -} - - -define command { - command_name check_oracle_extents_used - command_line $USER1$/check_oracle_instance_gw.pl -u $USER15$ -p $USER16$ -c $ARG1$ -n $ARG2$ -} - - -define command { - command_name check_oracle_free_extents - command_line $USER1$/check_oracle_instance_gw.pl -u $USER15$ -p $USER16$ -c $ARG1$ -f $ARG2$ -} - - -define command { - command_name check_oracle_login - command_line $USER1$/check_oracle --login $ARG1$ -} - - -define command { - command_name check_oracle_sessions - command_line $USER1$/check_oracle_instance_gw.pl -u $USER15$ -p $USER16$ -c $ARG1$ -s $ARG2$ -} - - -define command { - command_name check_oracle_tablespaces - command_line $USER1$/check_oracle_instance_gw.pl -u $USER15$ -p $USER16$ -c $ARG1$ -t $ARG2$ -} - - -define command { - command_name check_owa - command_line $USER1$/check_owa '$ARG1$' '$ARG2$' '$USER32$' -} - -# 'check_ping' command definition -define command { - command_name check_ping - command_line $USER1$/check_ping -H $HOSTADDRESS$ -w $ARG1$ -c $ARG2$ -p 5 -} - -# 'check_pop' command definition -define command { - command_name check_pop3 - command_line $USER1$/check_pop -H $HOSTADDRESS$ -} - - -define command { - command_name check_pop3s - command_line $USER1$/check_pop -t 60 -H $HOSTADDRESS$ -w "$ARG1$" -c "$ARG2$" -S -} - -# 'check_procs' command definition -define command { - command_name check_proc - command_line $USER1$/check_procs -c $ARG1$ -C $ARG2$ -} - - -define command { - command_name check_tcp_port - command_line $USER1$/check_tcp -H "$ARG1$" -p "$ARG2$" -} - - -define command { - command_name check_sendmail - command_line $USER1$/check_smtp -H $HOSTADDRESS$ -w "$ARG1$" -c "$ARG2$" -C "ehlo groundworkopensource.com" -R "ENHANCEDSTATUSCODES" -f nagios@$HOSTADDRESS$ -} - -define command { - command_name check_service_cluster - command_line $USER1$/check_cluster_wrapper -s -l "$ARG1$" -d "$ARG2$" $ARG3$ $ARG4$ -} - -# 'check_smtp' command definition -define command { - command_name check_smtp - command_line $USER1$/check_smtp -H $HOSTADDRESS$ -t $USER3$ -w "$ARG1$" -c "$ARG2$" $ARG3$ -} - - -define command { - command_name check_smtp_tls - command_line $USER1$/check_smtp -H $HOSTADDRESS$ -p 587 -S -A LOGIN -U $USER31$ -P '$USER32$' -w "$ARG1$" -c "$ARG2$" -} - -define command { - command_name check_smtps - command_line $USER1$/check_ssmtp -H $HOSTADDRESS$ -p 465 -S -w "$ARG1$" -c "$ARG2$" -} - -define command { - command_name check_smb_share - command_line $USER1$/check_smb_share -H $HOSTADDRESS$ $ARG1$ $ARG2$ $ARG3$ -} - -define command { - command_name check_snmp - command_line $USER1$/check_snmp -H $HOSTADDRESS$ -o "$ARG1$" -r "$ARG2$" -l "$ARG3$" -C '$USER7$' -} - -define command { - command_name check_snmp_val - command_line $USER1$/check_snmp -H $HOSTADDRESS$ -C '$USER7$' -P 2c -t $USER3$ -e 5 -l "$ARG1$" -o "$ARG2$" -c "$ARG3$" -} - -define command { - command_name check_snmp_alive - command_line $USER1$/check_snmp -H $HOSTADDRESS$ -m SNMPv2-MIB -o system.sysDescr.0 -P2c -C '$USER7$' -t 35 -e 3 -} - -define command { - command_name check_snmp_alive-new - command_line $USER1$/check_snmp -H $HOSTADDRESS$ -m SNMPv2-MIB -o system.sysDescr.0 -P2c -C $ARG1$ -t 35 -e 3 -} - -define command { - command_name check_snmp_bandwidth - command_line $USER1$/check_snmp -H $HOSTADDRESS$ -C '$USER7$' -o "IF-MIB::ifInOctets.$ARG1$,IF-MIB::ifOutOctets.$ARG1$,IF-MIB::ifSpeed.$ARG1$" -} - - -define command { - command_name check_snmp_crac_humidity - command_line $USER1$/check_snmp -H $HOSTADDRESS$ -t 30 -P 1 -C $USER29$ -o 1.3.6.1.4.1.476.1.42.3.4.2.2.3.1.3.1 -l 'CURRENT HUMIDITY:' -} - - -define command { - command_name check_snmp_crac_humidity_set_point - command_line $USER1$/check_snmp -H $HOSTADDRESS$ -t 30 -P 1 -C $USER29$ -o 1.3.6.1.4.1.476.1.42.3.4.2.2.1.0 -l 'HUMIDITY SET POINT:' -} - - -define command { - command_name check_snmp_crac_temp - command_line $USER1$/check_snmp -H $HOSTADDRESS$ -t 30 -P 1 -C $USER29$ -o 1.3.6.1.4.1.476.1.42.3.4.1.2.3.1.3.1 -l 'CURRENT TEMP:' -} - - -define command { - command_name check_snmp_crac_temp_set_point - command_line $USER1$/check_snmp -H $HOSTADDRESS$ -t 30 -P 1 -C $USER29$ -o 1.3.6.1.4.1.476.1.42.3.4.1.2.1.0 -l 'TEMP SET POINT:' -} - - -define command { - command_name check_snmp_disk - ##command_line $USER1$/check_output_convert check_snmp_storage '-2 -H $HOSTADDRESS$ -C $USER7$ -t 120 --cache=30 -m $ARG1$ -q FixedDisk -w $ARG2$ -c $ARG3$ $ARG4$' $USER1$/check_snmp_disk_output_convert - command_line $USER1$/check_snmp_storage -2 -H $HOSTADDRESS$ -C $USER7$ -t 120 --cache=30 -m '$ARG1$' -q "FixedDisk" -w $ARG2$ -c $ARG3$ $ARG4$ -} - - -define command { - command_name check_snmp_disk-new - command_line $USER1$/check_snmp_storage -2 -H $HOSTADDRESS$ -C $ARG1$ -t 120 --cache=30 -m '$ARG2$' -q "FixedDisk" -w $ARG3$ -c $ARG4$ $ARG5$ -} - -define command { - command_name check_snmp_any_fs - ##command_line $USER1$/check_output_convert check_snmp_storage '-2 -H $HOSTADDRESS$ -C $USER7$ -t 120 --cache=30 -m $ARG1$ -q FixedDisk -w $ARG2$ -c $ARG3$ $ARG4$' $USER1$/check_snmp_disk_output_convert - command_line $USER1$/check_snmp_storage -2 -H $HOSTADDRESS$ -C $USER7$ -t 120 --cache=30 -m '$ARG1$' -w $ARG2$ -c $ARG3$ $ARG4$ -} - -define command { - command_name check_snmp_disk_except - ##command_line $USER1$/check_output_convert check_snmp_storage '-2 -H $HOSTADDRESS$ -C $USER7$ -t 120 --cache=30 -m $ARG1$ -q FixedDisk -w $ARG2$ -c $ARG3$ -e $ARG4$' $USER1$/check_snmp_disk_output_convert - command_line $USER1$/check_snmp_storage -2 -H $HOSTADDRESS$ -C $USER7$ -t 120 --cache=30 -m '$ARG1$' -q "FixedDisk" -w $ARG2$ -c $ARG3$ -e $ARG4$ -} - - -define command { - command_name check_snmp_emfw - command_line $USER1$/check_snmp -H $HOSTADDRESS$ -o "$ARG1$" -c "$ARG2$" -} - - -define command { - command_name check_snmp_esx3_available_mem - command_line $USER1$/check_snmp -H $HOSTADDRESS$ -o ".1.3.6.1.4.1.6876.3.2.3.0" -l "Available Mem" -C '$USER7$' -} - - -define command { - command_name check_snmp_esx3_mem_console_used - command_line $USER1$/check_snmp -H $HOSTADDRESS$ -o ".1.3.6.1.4.1.6876.3.2.2.0" -l "Console Used Mem" -C '$USER7$' -} - - -define command { - command_name check_snmp_esx3_num_system_processes - command_line $USER1$/check_snmp -H $HOSTADDRESS$ -o ".1.3.6.1.2.1.25.1.6.0" -l "number_processes" -C '$USER7$' -} - - -define command { - command_name check_snmp_esx3_num_users - command_line $USER1$/check_snmp -H $HOSTADDRESS$ -o ".1.3.6.1.2.1.25.1.5.0" -l "Number of Users" -C '$USER7$' -} - - -define command { - command_name check_snmp_esx3_total_mem - command_line $USER1$/check_snmp -H $HOSTADDRESS$ -o ".1.3.6.1.4.1.6876.3.2.1.0" -l "Total_server_memory" -C '$USER7$' -} - - -define command { - command_name check_snmp_esx3_uptime - command_line $USER1$/check_snmp -H $HOSTADDRESS$ -o ".1.3.6.1.2.1.25.1.1.0" -r "Timeticks" -C '$USER7$' -} - - -define command { - command_name check_snmp_fixed_storage - command_line $USER1$/check_snmp_storage -H $HOSTADDRESS$ -C $USER7$ -t $USER3$ --cache=30 -m $ARG1$ -q FixedDisk -G -w $ARG2$ -c $ARG3$ -} - - -define command { - command_name check_snmp_foundry_active_cxn - command_line $USER1$/check_snmp -H $HOSTADDRESS$ -w $ARG1$ -c $ARG2$ -t 30 -P 1 -C TLimsIs -o 1.3.6.1.4.1.1991.1.1.4.29.2.1.4.1 -l 'ACTIVE CONNECTIONS:' -} - -define command { - command_name check_snmp_f5_active_cxn - command_line $USER1$/check_snmp -H $HOSTADDRESS$ -w $ARG1$ -c $ARG3$ -t 30 -P 2c -C $USER7$ -o 1.3.6.1.4.1.3375.2.1.1.2.1.8.0 -l 'Active Connections:' -} - - -define command { - command_name check_snmp_if - command_line $USER1$/check_snmp -H $HOSTADDRESS$ -C '$USER7$' -o "IF-MIB::ifInOctets.$ARG1$,IF-MIB::ifOutOctets.$ARG1$ ,IF-MIB::ifInDiscards.$ARG1$,IF-MIB::ifOutDiscards.$ARG1$,IF-MIB::ifInErrors.$ARG1$,IF-MIB::ifOutErrors.$ARG1$" -} - - -define command { - command_name check_snmp_linux_memory - command_line $USER1$/check_snmp_storage -H $HOSTADDRESS$ -C $USER7$ -t 100 --cache=30 -m "(Physical [Mm]emory|Swap [Ss]pace)" -q "Ram|VirtualMemory" -f -w $ARG1$ -c $ARG2$ -s -} - - -define command { - command_name check_snmp_mge_ups_battery_recharge_level - command_line $USER1$/check_snmp -H $HOSTADDRESS$ -P 1 -C $USER28$ -o 1.3.6.1.4.1.705.1.5.4.0 -l 'UPS Battery Recharge Level:' -} - - -define command { - command_name check_snmp_mge_ups_battery_time - command_line $USER1$/check_snmp -H $HOSTADDRESS$ -P 1 -C $USER28$ -o 1.3.6.1.4.1.705.1.5.1.0 -c 500: -l 'UPS Battery Time (sec.):' -} - - -define command { - command_name check_snmp_mge_ups_input_current - command_line $USER1$//check_snmp -H $HOSTADDRESS$ -P 1 -C $USER28$ -o 1.3.6.1.4.1.705.1.6.2.1.6.1,1.3.6.1.4.1.705.1.6.2.1.6.2,1.3.6.1.4.1.705.1.6.2.1.6.3 -l 'UPS Input Current(Amps x10):' -} - - -define command { - command_name check_snmp_mge_ups_input_voltage - command_line $USER1$//check_snmp -H $HOSTADDRESS$ -P 1 -C $USER28$ -o 1.3.6.1.4.1.705.1.6.2.1.2.1,1.3.6.1.4.1.705.1.6.2.1.2.2,1.3.6.1.4.1.705.1.6.2.1.2.3 -l 'UPS Input Voltage (Volts x10):' -c 4300:5300,4300:5300,4300:5300 -} - - -define command { - command_name check_snmp_mge_ups_output_current - command_line $USER1$//check_snmp -H $HOSTADDRESS$ -P 1 -C $USER28$ -o 1.3.6.1.4.1.705.1.7.2.1.5.1,1.3.6.1.4.1.705.1.7.2.1.5.2,1.3.6.1.4.1.705.1.7.2.1.5.3 -l 'UPS Output Current (Amps x10):' -} - - -define command { - command_name check_snmp_mge_ups_output_load_per_phase - command_line $USER1$//check_snmp -H $HOSTADDRESS$ -P 1 -C $USER28$ -o 1.3.6.1.4.1.705.1.7.2.1.4.1,1.3.6.1.4.1.705.1.7.2.1.4.2,1.3.6.1.4.1.705.1.7.2.1.4.3 -l 'UPS Output Load Percent per Phase:' -} - - -define command { - command_name check_snmp_mge_ups_output_voltage - command_line $USER1$//check_snmp -H $HOSTADDRESS$ -P 1 -C $USER28$ -o 1.3.6.1.4.1.705.1.7.2.1.2.1,1.3.6.1.4.1.705.1.7.2.1.2.2,1.3.6.1.4.1.705.1.7.2.1.2.3 -l 'UPS Output Voltage (Volts x10):' -c 4300:5300,4300:5300,4300:5300 -} - - -define command { - command_name check_snmp_mge_ups_status - command_line $USER1$/check_snmp -H $HOSTADDRESS$ -P 1 -C $USER28$ -o 1.3.6.1.4.1.705.1.7.3.0 -c 2 -l 'UPS STATUS (2 = OK - 1 = on battery):' -} - - -define command { - command_name check_snmp_nix_memory - command_line $USER1$/check_snmp_mem.pl -2 -t $USER3$ -C $USER7$ -H $HOSTADDRESS$ -w $ARG1$ -c $ARG2$ -f 2>&1 -} - - -define command { - command_name check_snmp_nix_memory-new - command_line $USER1$/check_snmp_mem.pl -2 -t $USER3$ -C $ARG1$ -H $HOSTADDRESS$ -w $ARG2$ -c $ARG3$ -f 2>&1 -} - - -define command { - command_name check_snmp_oldfoundry_active_cxn - command_line $USER1$/check_old_foundry_active $HOSTADDRESS$ $ARG1$ $ARG2$ -} - - -define command { - command_name check_hpasm - command_line $USER1$/check_hpasm --community $USER7$ --hostname $HOSTADDRESS$ --timeout $USER3$ -} - - -define command { - command_name check_snmp_openmanage - command_line $USER1$/check_dell_openmanage.1.3_pu.pl -t 30 -H $HOSTADDRESS$ -C $USER7$ -T $ARG1$ -} - - -define command { - command_name check_snmp_openmanage_new - command_line $USER1$/check_openmanage -t $USER3$ -H $HOSTADDRESS$ -C $USER7$ -i -s -p -b bat_charge=all/ctrl_fw=all/ctrl_driver=all/ctrl_stdr=all/intr=all $ARG1$ 2>&1 -} - - -define command { - command_name check_snmp_process - command_line $USER1$/check_snmp_process -H $HOSTADDRESS$ -2 -fA -C $USER7$ -t 120 -n '$ARG1$' -w $ARG2$ -c $ARG3$ $ARG4$ -} - - -define command { - command_name check_snmp_process-new - command_line $USER1$/check_snmp_process.pl -H $HOSTADDRESS$ -2 -fA -C $USER7$ -t 60 -n '$ARG1$' $ARG2$ -} - - -define command { - command_name check_snmp_process-not-matching - command_line $USER1$/check_snmp_process.pl -H $HOSTADDRESS$ -2 -fA -C $USER7$ -t 60 -n '$ARG1$' $ARG2$ | /bin/sed 's/matching [^,]\+,/with /' && (exit ${PIPESTATUS[0]}) -} - -define command { - command_name check_snmp_process_cpu - command_line $USER1$/check_snmp_process -H $HOSTADDRESS$ -2 -fA -C $USER7$ -t 120 -n '$ARG1$' -u $ARG2$ $ARG3$ -} - -define command { - command_name check_snmp_sol_memory - command_line $USER1$/check_snmp_storage -H $HOSTADDRESS$ -C $USER7$ -t 100 --cache=30 -m '(Physical|Swap)' -q "Ram|VirtualMemory" -f -w $ARG1$ -c $ARG2$ -s -} - - -define command { - command_name check_snmp_process_mem - command_line $USER1$/check_snmp_process -H $HOSTADDRESS$ -C $USER7$ -t $USER3$ -n $ARG1$ -m $ARG2$ -} - -define command { - command_name check_snmp_load - command_line $USER1$/check_snmp_load.pl -H $HOSTADDRESS$ -C $USER7$ -2 -w $ARG1$ -c $ARG2$ -f -t $USER3$ $ARG3$ -} - -define command { - command_name check_snmp_load-new - command_line $USER1$/check_snmp_load.pl -H $HOSTADDRESS$ -C $ARG1$ -2 -w $ARG2$ -c $ARG3$ -f -t $USER3$ $ARG4$ -} - -define command { - command_name check_snmp_int - command_line $USER1$/check_snmp_int -H $HOSTADDRESS$ -C $ARG1$ -2 -t $USER3$ -n $ARG2$ -f -e -u -w $ARG3$ -c $ARG4$ $ARG5$ -#Usage: check_snmp_int [-v -V] -H -C [-2] | (-l login -x passwd [-X pass -L ,) [-p ] [-t ] -n [-i -a -r -D] [-f[eSyY]] [-k[qBMGu] -g -w -c -d] [-s --label] -K= -} - -define command { - command_name check_snmptraps - command_line $USER1$/check_snmptraps.pl $HOSTADDRESS$ $ARG1$ $ARG2$ $ARG3$ -} - - -define command { - command_name check_ssh - command_line $USER1$/check_ssh -H $HOSTADDRESS$ -t 60 -} - - -define command { - command_name check_ssh_response - command_line $USER1$/check_ssh_response $HOSTNAME$ $ARG1$ -} - - -define command { - command_name check_ssh_using_key - command_line $USER1$/check_by_ssh_ng $ARG1$ $ARG2$ $HOSTADDRESS$ '$ARG3$' '$ARG4$' -} - - -define command { - command_name check_by_ssh_using_preloaded_key - command_line $USER1$/check_by_ssh_key_wrapper -H $HOSTADDRESS$ $ARG1$ -C '$ARG2$' -} - - -define command { - command_name check_rtmp - command_line $USER1$/check_rtmp $ARG1$ $ARG2$ -} - - -define command { - command_name check_syslog - command_line $USER1$/check_syslog_gw.pl -l /usr/local/nagios/var/log/syslog-ng/$HOSTNAME$.log -s /var/tmp/$HOSTNAME$.tmp -x /usr/local/nagios/regexp/regex.1 -a $HOSTADDRESS$ -} - -# 'check_tcp' command definition -define command { - command_name check_tcp - command_line $USER1$/check_tcp -H $HOSTADDRESS$ -p $ARG1$ -} - - -define command { - command_name check_tcp_ftp - command_line $USER1$/check_tcp -H $HOSTADDRESS$ -p 21 -} - - -define command { - command_name check_tcp_https - command_line $USER1$/check_tcp -H $HOSTADDRESS$ -p 443 -} - - -define command { - command_name check_tcp_imap - command_line $USER1$/check_tcp -H $HOSTADDRESS$ -p 143 -w $ARG1$ -c $ARG2$ -} - - -define command { - command_name check_tcp_imaps - command_line $USER1$/check_tcp -H $HOSTADDRESS$ -p 993 -w $ARG1$ -c $ARG2$ -} - - -define command { - command_name check_tcp_ldap - command_line $USER1$/check_tcp -t 60 -H $HOSTADDRESS$ -w 2 -c 4 -p 389 -} - - -define command { - command_name check_tcp_multiport - command_line $USER1$/check_tcp_multi -H $HOSTADDRESS$ -p $ARG1$ $ARG2$ -} - - -define command { - command_name check_tcp_nntps - command_line $USER1$/check_tcp -H $HOSTADDRESS$ -p 563 -} - - -define command { - command_name check_tcp_nrpe - command_line $USER1$/check_tcp -H $HOSTADDRESS$ -p 5666 -} - - -define command { - command_name check_tcp_nsca - command_line $USER1$/check_tcp -H $HOSTADDRESS$ -p $USER11$ -} - - -define command { - command_name check_tcp_oracle - command_line $USER1$/check_tcp -H $HOSTADDRESS$ -p 1521 -} - - -define command { - command_name check_tcp_pop3 - command_line $USER1$/check_tcp -H $HOSTADDRESS$ -p 110 -w $ARG1$ -c $ARG2$ -} - - -define command { - command_name check_tcp_pop3s - command_line $USER1$/check_tcp -H $HOSTADDRESS$ -p 995 -w $ARG1$ -c $ARG2$-S -} - - -define command { - command_name check_tcp_smtp - command_line $USER1$/check_tcp -H $HOSTADDRESS$ -p 25 -t 60 -} - - -define command { - command_name check_tcp_ssh - command_line $USER1$/check_tcp -H $HOSTADDRESS$ -p 22 -} - -# 'check_telnet' command definition -define command { - command_name check_telnet - command_line $USER1$/check_tcp -H $HOSTADDRESS$ -p 23 -} - - -define command { - command_name check_trap_OK - command_line /bin/echo "OK: No new traps" -} - - -define command { - command_name check_OK - command_line /bin/echo "OK: No current results" -} - - -define command { - command_name check_tsm_sessions - command_line $USER1$/check_tsm_sessions $ARG1$ -} - -# 'check_udp' command definition -define command { - command_name check_udp - command_line $USER1$/check_udp -H $HOSTADDRESS$ -p $ARG1$ -} - - -define command { - command_name check_udp_dns - command_line $USER1$/check_udp -H $HOSTADDRESS$ -p 53 -s "4500 003d 668f 4000 4011 4ce9 c0a8 02f0" -} - - -define command { - command_name check_udp_nsclient - command_line $USER1$/check_udp -H $HOSTADDRESS$ -p $USER19$ -} - - -define command { - command_name check_wmi_100nsec_timer - command_line $USER1$/check_nrpe -t 60 -u -H $USER21$ -c get_100nsec_timer -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" "$ARG3$" "$ARG4$" "$ARG5$" -} - - -define command { - command_name check_wmi_counter_counter - command_line $USER1$/check_nrpe -t 60 -u -H $USER21$ -c get_counter_counter -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" "$ARG3$" "$ARG4$" "$ARG5$" -} - - -define command { - command_name check_wmi_counter_rawcount - command_line $USER1$/check_nrpe -t 60 -u -H $USER21$ -c get_counter_rawcount -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" "$ARG3$" "$ARG4$" "$ARG5$" -} - - -define command { - command_name check_wmi_cpu - command_line $USER1$/check_nrpe -t 60 -u -H "$USER21$" -c get_cpu -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" -} - - -define command { - command_name check_wmi_disk - command_line $USER1$/check_nrpe -t 60 -u -H $USER21$ -c get_disk -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" -} - - -define command { - command_name check_wmi_disk_transfers - command_line $USER1$/check_nrpe -t 60 -u -H $USER21$ -c get_disktransfers -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" "$ARG3$" -} - - -define command { - command_name check_wmi_exchange_mailbox_receiveq - command_line $USER1$/check_nrpe -t 60 -u -H $USER21$ -c get_exchange_mbox_recvq -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" -} - - -define command { - command_name check_wmi_exchange_mailbox_sendq - command_line $USER1$/check_nrpe -t 60 -u -H $USER21$ -c get_exchange_mbox_sendq -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" -} - - -define command { - command_name check_wmi_exchange_mta_workq - command_line $USER1$/check_nrpe -t 60 -u -H $USER21$ -c get_exchange_mta_workq -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" -} - - -define command { - command_name check_wmi_exchange_public_receiveq - command_line $USER1$/check_nrpe -t 60 -u -H $USER21$ -c get_exchange_pub_recvq -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" -} - - -define command { - command_name check_wmi_exchange_public_sendq - command_line $USER1$/check_nrpe -t 60 -u -H $USER21$ -c get_exchange_pub_sendq -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" -} - - -define command { - command_name check_wmi_iis_bytes_received - command_line $USER1$/check_nrpe -t 60 -u -H $USER21$ -c get_iis_bytes_received -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" "$ARG3$" -} - - -define command { - command_name check_wmi_iis_bytes_sent - command_line $USER1$/check_nrpe -t 60 -u -H $USER21$ -c get_iis_bytes_sent -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" "$ARG3$" -} - - -define command { - command_name check_wmi_iis_bytes_total - command_line $USER1$/check_nrpe -t 60 -u -H $USER21$ -c get_iis_bytes_total -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" "$ARG3$" -} - - -define command { - command_name check_wmi_iis_current_connections - command_line $USER1$/check_nrpe -t 60 -u -H $USER21$ -c get_iis_currentconnections -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" "$ARG3$" -} - - -define command { - command_name check_wmi_iis_current_nonanonymous_users - command_line $USER1$/check_nrpe -t 60 -u -H $USER21$ -c get_iis_curnonanonusers -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" "$ARG3$" -} - - -define command { - command_name check_wmi_iis_get_requests - command_line $USER1$/check_nrpe -t 60 -u -H $USER21$ -c get_iis_get_requests -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" "$ARG3$" -} - - -define command { - command_name check_wmi_iis_maximum_connections - command_line $USER1$/check_nrpe -t 60 -u -H $USER21$ -c get_iis_maximumconnections -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" "$ARG3$" -} - - -define command { - command_name check_wmi_iis_post_requests - command_line $USER1$/check_nrpe -t 60 -u -H $USER21$ -c get_iis_post_requests -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" "$ARG3$" -} - - -define command { - command_name check_wmi_iis_private_bytes - command_line $USER1$/check_nrpe -t 60 -u -H $USER21$ -c get_iis_privatebytes -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" -} - - -define command { - command_name check_wmi_iis_total_not_found_errors - command_line $USER1$/check_nrpe -t 60 -u -H $USER21$ -c get_iis_totalnotfounderrors -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" "$ARG3$" -} - - -define command { - command_name check_wmi_mem - command_line $USER1$/check_nrpe -t 5 -H $USER23$ -c get_mem -a $HOSTADDRESS$ "$ARG1$" "$ARG2$" -} - - -define command { - command_name check_wmi_memory_pages - command_line $USER1$/check_nrpe -t 60 -u -H $USER21$ -c get_swapping -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" -} - - -define command { - command_name check_wmi_mssql_buffer_cache_hits - command_line $USER1$/check_nrpe -t 60 -u -H $USER21$ -c get_mssql_buf_cache_hit -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" -} - - -define command { - command_name check_wmi_mssql_deadlocks - command_line $USER1$/check_nrpe -t 60 -u -H $USER21$ -c get_mssql_deadlocks -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" "$ARG3$" -} - - -define command { - command_name check_wmi_mssql_full_scans - command_line $USER1$/check_nrpe -t 60 -u -H $USER21$ -c get_mssql_fullscans -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" -} - - -define command { - command_name check_wmi_mssql_lock_wait_time - command_line $USER1$/check_nrpe -t 60 -u -H $USER21$ -c get_mssql_lock_wait_time -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" "$ARG3$" -} - - -define command { - command_name check_wmi_mssql_lock_waits - command_line $USER1$/check_nrpe -t 60 -u -H $USER21$ -c get_mssql_lock_waits -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" "$ARG3$" -} - - -define command { - command_name check_wmi_mssql_log_growths - command_line $USER1$/check_nrpe -t 60 -u -H $USER21$ -c get_mssql_log_growth -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" "$ARG3$" -} - - -define command { - command_name check_wmi_mssql_log_used - command_line $USER1$/check_nrpe -t 60 -u -H $USER21$ -c get_mssql_log_used -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" "$ARG3$" -} - - -define command { - command_name check_wmi_mssql_memory_grants_pending - command_line $USER1$/check_nrpe -t 60 -u -H $USER21$ -c get_mssql_memgrantspending -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" -} - - -define command { - command_name check_wmi_mssql_transactions - command_line $USER1$/check_nrpe -t 60 -u -H $USER21$ -c get_mssql_transactions -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" "$ARG3$" -} - - -define command { - command_name check_wmi_mssql_users - command_line $USER1$/check_nrpe -t 60 -u -H $USER21$ -c get_mssql_users -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" -} - - -define command { - command_name check_wmi_service - command_line $USER1$/check_nrpe -H $USER21$ -t 60 -c get_service -a "$HOSTADDRESS$" "$ARG1$" -} - - -define command { - command_name nrpe_exchange_mailbox_receiveq - command_line $USER1$/check_nrpe -t 60 -u -H $HOSTADDRESS$ -p $USER10$ -c get_exchange_mbox_recvq -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" -} - -define command { - command_name check_https_ShoppingCart - #command_line $USER1$/check_nrpe -t 60 -u -H ims205 -p $USER10$ -c check_https_ShoppingCart -a $HOSTNAME$ - command_line $USER1$/check_https_ShoppingCart $HOSTNAME$ 2>&1 -} - -define command { - command_name check_https_thesis_central - command_line $USER1$/check_https_thesis_central.py 'https://$ARG1$' '$ARG2$' '$ARG3$' -} - -define command { - command_name nrpe_passive - command_line $USER1$/check_nrpe_passive $HOSTADDRESS$ $ARG1$ $ARG2$ $ARG3$ $ARG4$ -} - - -define command { - command_name process-host-nsca - command_line /bin/echo -e "$HOSTNAME$"\t$HOSTSTATEID$\t$HOSTOUTPUT$\t$HOSTPERFDATA$" | /usr/local/nagios/bin/send_nsca -H ims204 -p 9667 -c /usr/local/nagios/etc/send_nsca.cfg -} - -# 'process-host-perfdata' command definition -define command { - command_name process-host-perfdata - command_line /usr/bin/printf "%b" "$LASTHOSTCHECK$\t$HOSTNAME$\t$HOSTSTATE$\t$HOSTATTEMPT$\t$HOSTSTATETYPE$\t$HOSTEXECUTIONTIME$\t$HOSTOUTPUT$\t$HOSTPERFDATA$\n" >> /usr/local/nagios/var/host-perfdata.out -} - - -define command { - command_name process-service-nsca - command_line /bin/echo -e "$HOSTNAME$\t$SERVICEDESC$\t$SERVICESTATEID$\t$SERVICEOUTPUT$|$SERVICEPERFDATA$" | /usr/local/nagios/bin/send_nsca -H ims204 -p 9667 -c /usr/local/nagios/etc/send_nsca.cfg -} - -# 'process-service-perfdata' command definition -define command { - command_name process-service-perfdata - command_line /usr/bin/printf "%b" "$LASTSERVICECHECK$\t$HOSTNAME$\t$SERVICEDESC$\t$SERVICESTATE$\t$SERVICEATTEMPT$\t$SERVICESTATETYPE$\t$SERVICEEXECUTIONTIME$\t$SERVICELATENCY$\t$SERVICEOUTPUT$\t$SERVICEPERFDATA$\n" >> /usr/local/nagios/var/service-perfdata.out -} - - -define command { - command_name test_env_vars - command_line $USER1$/test_env_vars -} - -#### Eventhandlers - -### This most important command takes care of restarting failed workers, starting failover workers, and stopping failover workers when recovered -define command { - command_name gearman_failover - command_line $USER2$/gearman_recovery "$SERVICEDESC$" $SERVICESTATE$ $SERVICESTATETYPE$ $SERVICEATTEMPT$ -} - -### This is executed when a Gearman worker host comes back online -define command { - command_name gearman_host_recovery - command_line $USER2$/gearman_host_recovery "$HOSTNAME$" $HOSTSTATE$ $HOSTSTATETYPE$ -} - -### This is executed after a monitoring hub (mon302l, mon204l) comes back online, and we need to bounce services on the failover -### to kick the clients back to primary -define command { - command_name slave_connection_reset - command_line $USER2$/slave_conn_reset "$HOSTNAME$" $SERVICESTATE$ $ARG1$ $SERVICEATTEMPT$ -} - -### This will need to be updated to use the monX servers as gearman servers as opposed to the local box -define command { - command_name gearman_server_fail - command_line $USER2$/gearman_server_fail $SERVICESTATE$ $SERVICESTATETYPE$ $SERVICEATTEMPT$ -} - -### Same as gearman_failover by for Dev/QA -define command { - command_name gearman_devqa_failover - command_line $USER2$/gearman_devqa_recovery "$SERVICEDESC$" $SERVICESTATE$ $SERVICESTATETYPE$ $SERVICEATTEMPT$ -} - -### This might not be needed... probably duplicated by gearman_server_fail -define command { - command_name gearman_devqa_server_fail - command_line $USER2$/gearman_dev_qa_server_fail $SERVICESTATE$ $SERVICESTATETYPE$ $SERVICEATTEMPT$ -} - -define command { - command_name cas_iis_reset - command_line $USER2$/cas_iis_reset $HOSTALIAS$ $SERVICESTATE$ $SERVICEATTEMPT$ "$SERVICEOUTPUT$" -} - -define command { - command_name sdpalc200w_restart - command_line $USER2$/auto_restart sdpalc200w "$SERVICENAME$" $SERVICESTATE$ $SERVICESTATETYPE$ $SERVICEATTEMPT$ "$SERVICEOUTPUT$" -} - -define command P - command_name clearpass_restart - command_line $USER2$/cp_restart $HOSTNAME$ "$SERVICENAME$" $SERVICESTATE$ $SERVICESTATETYPE$ $SERVICEATTEMPT$ "$SERVICEOUTPUT$" -} - -# -# $Header: /usr/local/monitoring/nagios/etc/objects/RCS/contact_groups.cfg,v 1.14 2014/11/03 15:47:31 nagios Exp nagios $ -# -# Contact groups definitions -# - -define contactgroup { - contactgroup_name DBA Page - alias DBA Page and email - members Audrey Wright, Sergey Guberman, Chris Stewart, Ron Gittleman, Todd Whitaker, Debby Becker, Krish Anugula, Paul Beaulieu -} - -define contactgroup { - contactgroup_name DBA Page CRITICAL - alias DBA Page on CRITICAL - members Audrey Wright CRITICAL, Sergey Guberman CRITICAL, Chris Stewart CRITICAL, Ron Gittleman CRITICAL, Todd Whitaker CRITICAL, Debby Becker CRITICAL, DBA Important List, Krish Anugula CRITICAL, Paul Beaulieu CRITICAL -} - -define contactgroup { - contactgroup_name dummy - alias Dummy contact group -- does nothing - members dummy -} - -define contactgroup { - contactgroup_name nobody - alias Noone - does nothing - members nobody -} - -define contactgroup { - contactgroup_name CISDR - alias CISDR (former CSG) members - members clk, dbashore, jsophy, jwagner, ratliff, stevea, monikam -} - -define contactgroup { - contactgroup_name CISDR on call - alias CISDR members on call - members clk, dbashore, jsophy, jwagner, ratliff, stevea -} - -define contactgroup { - contactgroup_name ESS_8x5 - alias ESS page 8x5, and email rest of the time - members ESS_outside_8x5, ESS_8x5 -} - -define contactgroup { - contactgroup_name GUI Admins - alias Nagios GUI Administrators Authorization - members anykey, bhaines, bts, bigmac, chief53, coto, drevil, drinker, dw10, eburd, hajar, hajarn, irwin, ists, jfitz, jkaram, jmkcsg, jsotoj -} - -define contactgroup { - contactgroup_name GUI Operators - alias Naemon GUI Operators Authorization - members bstango, chris, ck, clk, clu, cs2, dbashore, dchin, duvergem, igubenko, jasonrap, jf19, jlf, jsophy, jwagner, kgift, kh6, llong, martin, monikam, moraski2, ndelo, ranugula, riverhi21, ryangm, sergeyg, shorey, simonlee, skampel, steven, willman -} - -define contactgroup { - contactgroup_name GUI Help Desk - alias Auth users for Help Desk VI/SOC - members ohd-vi002, ohd-vi003, ohd-vi004, ohd-vi005, ohd-vi006, ohd-vi007, ohd-vi008, ohd-vi009, ohd-vi010, ohd-vi011, ohd-vi012, ohd-vi013, ohd-vi015, ohd-vi016, ohd-vi017, ohd-vi019 -} - -define contactgroup { - contactgroup_name IAM - alias Identity Management - members jasonrap, kbmartin, simonlee, willman -} - -define contactgroup { - contactgroup_name Maximo - alias Maximo Support - members Michael Zhong, Quoc B. Nguyen -} - -define contactgroup { - contactgroup_name Maximo Pagers - alias Maximo Support via SMS - members Michael Zhong Cell, Quoc B. Nguyen Cell -} - -define contactgroup { - contactgroup_name Monitoring Admins - alias Nagios Administrators - members Erick W. Burd, Igor Yahoo, Igor V. Gubenko, Joseph M. Karam -} - -define contactgroup { - contactgroup_name Monitoring Admins Pager - alias Nagios Administrators - members Igor Pager, Igor Pager External, Joseph Karam Pager, Joseph Karam Pager External -} - -define contactgroup { - contactgroup_name Networking Pager - alias Text all members of the Network n Monitoring group - members David Rinker Pager, Hajar Pager, Igor Pager, Irwin Pager, Joseph Karam Pager -} - -define contactgroup { - contactgroup_name nagiosadmin - alias Linux Administrators - members nagiosadmin -} - -define contactgroup { - contactgroup_name OAS - alias OAS folks - members Brian Long, Natasha Metelitsa, RN Admin, Salvatore Urso -} - -define contactgroup { - contactgroup_name OnBase - alias OnBase people - members Devaki Ginde, Elizabeth Parham, Robert Tengowski, Terrence M. Lam, Vito Badalamenti, OnBase Admin, OnBase UA Support -} - -define contactgroup { - contactgroup_name pu_default - alias pu_default - members pu_default -} - -define contactgroup { - contactgroup_name OIT-Support-Services - alias OIT Support Services (SS Machines) - members Phillip M. Immordino, Thomas J. Francais, Jesse Barron -} - -define contactgroup { - contactgroup_name SOC - alias SOC - members Andre D. Corbitt, Brian A. Ariza, Brian T. Burgher, Bradley A. Wells, Donald Ade, Dominique N. Davis, Eric J. Swingle, Jeffrey Kontio, Jacob Swimmer, John J. Zerillo, Raymund Roco, Thomas J. Byrne, Terence Tung, William V. Brown Jr., Zachary M. Barton -# members acorbitt, bariza, bburgher, bwells, dade, dd7, dplante, eswingle, jkontio, jswimmer, jzerillo, mariannm, rroco, tbyrne, ttung, wb, zbarton -} - -define contactgroup { - contactgroup_name TSM - alias TSM (Martin, Maureen) - members Martin_Harriss, Maureen E. OConnor -} - -define contactgroup { - contactgroup_name TSM Page - alias TSM Page (Martin, Maureen) - members Dan Chin Pager, Martin Pager, Maureen E. OConnor Pager -} - -define contactgroup { - contactgroup_name UHS - alias UHS server team - members UHS Server Team, Kevin E. Leighton Pager -} - -define contactgroup { - contactgroup_name WWS - alias Woodrow Wilson School (Catherine Cuff, Keith Moulton) - members Catherine Cuff, Catherine Cuff Pager, Keith Moulton, Keith Moulton Pager, WWS Help List -} - - - - -define contact { - contact_name AIS CSS List - use Princeton-Contact - alias AIS CSS List - email ais-css@lists.Princeton.EDU -} - -define contact { - contact_name AIS CS Tech List - use Princeton-Contact - alias AIS CS Tech List - email ais-cs-tech@lists.Princeton.EDU -} - -define contact { - contact_name AIS ERP List - use Princeton-Contact - alias AIS ERP List - email ais-erp@lists.Princeton.EDU -} - -define contact { - contact_name AIS Mon CustomApps - use Princeton-Contact - alias AIS Mon CustomApps List - email ais-mon-customapps@Princeton.EDU -} - -define contact { - contact_name Ashutosh Hadap - use Princeton-Contact - alias Senior Manager, AIS Collaborative Solutions, Administrative Information Services, Office of Information Technology. - _telephoneNumber 609-258-1162 - email ahadap@Princeton.EDU -} - -define contact { - contact_name Andrew Yoder - use Princeton-Contact - alias Senior Onbase Administrator, Software and Application Services, Administrative Information Services, Office of Information Technology - _telephoneNumber 609-258-5852 - email ayoder@princeton.edu -} - -define contact { - contact_name Andrew D. Ferguson - use Princeton-Contact - _telephoneNumber 609-258-4883 - email owsla@princeton.edu -} - -define contact { - contact_name Audrey Wright - use Princeton-Contact - alias Audrey Wright (DBA) - email 6096515640@vtext.com -} - -define contact { - contact_name Audrey Wright CRITICAL - use Princeton-Contact-Critical - alias Audrey Wright (DBA) - email 6096515640@vtext.com -} - -define contact { - contact_name Bob Stango - use Princeton-Contact - alias Bob Stango - email bstango@Princeton.EDU -} - -define contact { - contact_name Blogs List - use Princeton-Contact - alias Blogs List - email blogs@Princeton.EDU -} - -define contact { - contact_name Catherine Cuff - use Princeton-Contact - alias Catherine Cuff (WWS) - email ccuff@Princeton.EDU -} - -define contact { - contact_name Catherine Cuff Pager - use Princeton-Contact - alias Catherine Cuff Pager (WWS) - email 6099338474@vtext.com -} - -define contact { - contact_name Chaoslab - use Princeton-Contact - alias Chaoslab - email chaoslab@Princeton.EDU -} - -define contact { - contact_name Charlayne Beavers - use Princeton-Contact - alias Charlayne H. Beavers (OIT Desktop Support - SS) - email cbeavers@Princeton.EDU -} - -define contact { - contact_name Charles Kruger - use Princeton-Contact - alias Charles H. Kruger (ESS) - email ck@Princeton.EDU -} - -define contact { - contact_name Charles T. Tennyson - use Princeton-Contact - alias Charles T. Tennyson (Transportation and Parking) - email ct15@Princeton.EDU -} - -define contact { - contact_name Chris Stewart - use Princeton-Contact - alias Chris Stewart (DBA) - email 6092730707@vtext.com -} - -define contact { - contact_name Chris Stewart CRITICAL - use Princeton-Contact-Critical - alias Chris Stewart (DBA) - email 6092730707@vtext.com -} - -define contact { - contact_name Chris Tengi Pager - use Princeton-Contact - alias Chris Tengi Pager - email 6096474584@txt.att.net tengi@Princeton.EDU -} - -define contact { - contact_name CISDR - use Princeton-Contact - alias CISDR (CSG-IAM) - email cisdr@Princeton.EDU -} - -define contact { - contact_name CISDR OnCall - use Princeton-Contact - alias CISDR OnCall (CSG-IAM) - email cisdroncall@Princeton.EDU -} - -define contact { - contact_name Classics Web - use Princeton-Contact - alias Classics Web Monitoring - email clasweb@Princeton.EDU -} - -define contact { - contact_name Cpanel Admins - use Princeton-Contact - alias Cpanel Administrators - email cpanel-admins@Princeton.EDU -} - -define contact { - contact_name CRL List - use Princeton-Contact - alias CRL List (AIS - David Herrington) - email crl-discussion@Princeton.EDU -} - -define contact { - contact_name CSCS List - use Princeton-Contact - alias CSCS List - email cscs@Princeton.EDU -} - -define contact { - contact_name CSES List - use Princeton-Contact - alias CSES List - email csesi@Princeton.EDU -} - -define contact { - contact_name CSG List - use Princeton-Contact - alias CSG List (csg@Princeton.EDU) - email csg@Princeton.EDU -} - -define contact { - contact_name CSG OnCall - use Princeton-Contact - alias CSG OnCall List (csgoncall@Princeton.EDU) - email csgoncall@Princeton.EDU -} - -define contact { - contact_name CSG OnCall 9-4am - use Princeton-Contact - alias CSG OnCall List (csgoncall@Princeton.EDU) - service_notification_period 9am-4am daily - email csgoncall@Princeton.EDU -} - -define contact { - contact_name CSG List 4-3am - use Princeton-Contact - alias CSG List (csg@Princeton.EDU) - service_notification_period 4am-3am daily - email csg@Princeton.EDU -} - -define contact { - contact_name CSG List 9-4am - use Princeton-Contact - alias CSG List (csg@Princeton.EDU) - service_notification_period 9am-4am daily - email csg@Princeton.EDU -} - -define contact { - contact_name CSG List 9am-3am - use Princeton-Contact - alias CSG List (csg@Princeton.EDU) - service_notification_period 9am-3am daily - email csg@Princeton.EDU -} - -define contact { - contact_name CSG Page - use Princeton-Contact - alias CSG Page (csg.quiet@page.oit.princeton.edu) - email csg.quiet@page.oit.princeton.edu -} - -define contact { - contact_name CSG Reports - use Princeton-Contact - alias CSG Reports (csgrpts@Princeton.EDU) - email csgrpts@Princeton.EDU -} - -define contact { - contact_name DAS List - use Princeton-Contact - alias DAS List (DAS) - email oit-das@Princeton.EDU -} - -define contact { - contact_name Dan Chin Pager - use Princeton-Contact - alias Dan Chin Pager (ESS) - email 6097318610@vtext.com -} - -define contact { - contact_name Dave Herrington - use Princeton-Contact - alias David Herrington - email daveh@Princeton.EDU -} - -define contact { - contact_name David Rinker Pager - use Princeton-Contact - alias David Rinker Pager - email 6096131260@vtext.com drinker@Princeton.EDU -} - -#define contact { -# contact_name DBA Important -# use Princeton-Contact -# alias DBA's important -# email dbas@Princeton.EDU -# service_notification_commands service-notify-by-email-pu-high-importance -#} - - -define contact { - contact_name DBA Important List - use Princeton-Contact - alias DBA's important list - email dbas@Princeton.EDU - service_notification_commands service-notify-by-email-pu-high-importance -} - - -define contact { - contact_name Dean Plante - use Princeton-Contact - alias Dean Plante (SOC) - email dplante@Princeton.EDU -} - - -define contact { - contact_name Debby Becker - use Princeton-Contact - alias Debby Becker (DBA) - email 6099474352@vtext.com -} - -define contact { - contact_name Debby Becker CRITICAL - use Princeton-Contact-Critical - alias Debby Becker (DBA) - email 6099474352@vtext.com -} - -define contact { - contact_name Devaki Ginde - use Princeton-Contact - alias Devaki Ginde (devakig@Princeton.EDU) - email devakig@Princeton.EDU -} - -define contact { - contact_name Devaki Ginde Cell - use Princeton-Contact - alias Devaki Ginde Cell (devakig@Princeton.EDU) - email 2153501556@txt.att.net -} - -define contact { - contact_name Dev DTS - use Princeton-Contact - alias Dev DTS Monitor (Nicholas DiPietro) - email devdts@Princeton.EDU -} - -define contact { - contact_name Dev Web Monitor - use Princeton-Contact - alias Dev Web Monitor (Jacqueline Golden - devwebmonitor@Princeton.EDU) - email devwebmonitor@Princeton.EDU -} - -define contact { - contact_name Diana I. Tamir - dit2 - use Princeton-Contact - alias Assistant Professor of Psychology. - _telephoneNumber 609-258-7845 - email dit2@princeton.edu -} - - -define contact { - contact_name D Support - use Princeton-Contact - alias D Support (Jacqueline Golden - Office Of Development) - email dsupport@Princeton.EDU -} - -define contact { - contact_name DS Admins - use Princeton-Contact - alias DS Admins (AISIW) - email dsadmins@Princeton.EDU -} - -define contact { - contact_name DSP Admins - use Princeton-Contact - alias DSP Admins - email dspadmin@Princeton.EDU -} - -define contact { - contact_name Dwight Bashore Pager - use Princeton-Contact - alias Dwight Bashore Pager (CSG) - email dbashore.quiet@page.cit.princeton.edu -} - -define contact { - contact_name EBT - use Princeton-Contact - alias Emergency Broadcast Towers - email EBT-Email_Contact@Princeton.EDU -} - -define contact { - contact_name ECM Admin Notify - use Princeton-Contact - alias OnBase guys - email ecm-admin-notify@Princeton.EDU -} - -define contact { - contact_name Elizabeth Parham - use Princeton-Contact - alias Elizabeth Parham (eparham@Princeton.EDU) - email eparham@Princeton.EDU -} - -define contact { - contact_name Eric Burd - use Princeton-Contact - alias Eric Burd (eburd@Princeton.EDU) - email eburd@Princeton.EDU -} - -define contact { - contact_name ESS Storage - use Princeton-Contact - alias ESS Storage (ess-storage@Princeton.EDU) - email ess-storage@Princeton.EDU -} - -define contact { - contact_name ESS UNIX List - use Princeton-Contact - alias ESS UNIX List (unix@Princeton.EDU) - email unix@Princeton.EDU -} - -define contact { - contact_name ESS Windows List - use Princeton-Contact - alias ESS Windows List (winmail@Princeton.EDU) - email winmail@Princeton.EDU -} - -define contact { - contact_name ESS Ops - use Princeton-Contact - alias ESS Ops (sv-list@Princeton.EDU) - email sv-list@Princeton.EDU -} - -define contact { - contact_name ESS Page - use Princeton-Contact - alias ESS Page (winpage@Princeton.EDU) - email winpage@Princeton.EDU -} - - -define contact { - contact_name ESS_8x5 - use Princeton-Contact - alias ESS alert weekdays 8x5 - email winpage@princeton.edu - service_notification_period 8x5 - host_notification_period 8x5 -} - - -define contact { - contact_name ESS_outside_8x5 - use Princeton-Contact - alias ESS alert weekdays outside 8x5 - email winmail@princeton.edu - service_notification_period Outside 8x5 - host_notification_period Outside 8x5 -} - - -define contact { - contact_name Fac List - use Princeton-Contact - alias Facilities - email facntadm@Princeton.EDU -} - -define contact { - contact_name George Kopf - use Princeton-Contact - alias - email gkopf@Princeton.EDU -} - -define contact { - contact_name Gregory S. Paczkowski - use Princeton-Contact - alias Gregory S. Paczkowski (Associate Director of Athletics, Facilities, Athletics.) - email gpaczkow@Princeton.EDU -} - -define contact { - contact_name Jason Rappaport - use Princeton-Contact - alias Jason Rappaport - email jasonrap@Princeton.EDU -} - -define contact { - contact_name Jill E. Moraca - use Princeton-Contact - alias Jill E. Moraca - email jmoraca@Princeton.EDU -} - -define contact { - contact_name John Wagner off hours 4-9am - use Princeton-Contact - alias Programming Specialist, Enterprise Infrastructure Services, Office of Information Technology. - _telephoneNumber 609-258-6043 - service_notification_period 4am-9am daily - email john.wagner@princeton.edu -} - -define contact { - contact_name John Wagner off hours 3-4am - use Princeton-Contact - alias Programming Specialist, Enterprise Infrastructure Services, Office of Information Technology. - _telephoneNumber 609-258-6043 - service_notification_period 3am-4am daily - email john.wagner@princeton.edu -} - -define contact { - contact_name Hajar Pager - use Princeton-Contact - alias Hajar's pager - email 6097313043@vtext.com hajar@Princeton.EDU -} - -define contact { - contact_name HD Print List - use Princeton-Contact - alias Help Desk Print List (hd-print-notify@Princeton.EDU) - email hd-print-notify@Princeton.EDU -} - -define contact { - contact_name Henry Umansky - use Princeton-Contact - alias Henry Umansky (humansky@Princeton.EDU) - email humansky@Princeton.EDU -} - -define contact { - contact_name Helen Shpits - use Princeton-Contact - alias Helen Shpits (hshpits@Princeton.EDU) - email hshpits@Princeton.EDU -} - -define contact { - contact_name IAM OnCall - use Princeton-Contact - alias IAM OnCall (iamoncall@Princeton.EDU) - email iamoncall@Princeton.EDU -} - -define contact { - contact_name Igor V. Gubenko - use generic-contact - alias Igor - email igubenko@Princeton.EDU -} - -define contact { - contact_name Igor Gmail - use contact-via-external-backup - alias Igor's Gmail email via external lines - email igorvg@gmail.com -} - -define contact { - contact_name Igor Yahoo - use contact-via-external-backup - alias Igor Yahoo email via external lines - email igubenko@yahoo.com -} - -define contact { - contact_name Igor Pager - use Princeton-Contact - alias Igor Gubenko SMS - email 3474950942@txt.att.net -} - -define contact { - contact_name Igor Pager External - use contact-via-external-backup - alias Igor SMS via external lines - email 3474950942@txt.att.net -} - -define contact { - contact_name Irwin Pager - use Princeton-Contact - alias Irwin Pager - email 6099478057@vtext.com irwin@Princeton.EDU -} - -define contact { - contact_name Jeffrey G. Fitzwater - use Princeton-Contact - alias Jeffrey G. Fitzwater (Networking) - email jfitz@Princeton.EDU -} - -define contact { - contact_name Jeffrey Kontio - use Princeton-Contact - alias Technical Support Manager. - _telephoneNumber 609-258-2154 - email jeffrey.kontio@princeton.edu -} - -define contact { - contact_name Joseph Karam Pager - use Princeton-Contact - alias Joseph Karam Pager - email jmkaram@vtext.com -} - -define contact { - contact_name Joseph Karam Pager External - use contact-via-external-backup - alias Joseph Karam SMS via external lines - email jmkaram@vtext.com -} - -define contact { - contact_name Jesse Barron - use Princeton-Contact - alias Jesse Barron - email barron@Princeton.EDU -} - -define contact { - contact_name Kathy Haney Pager - use Princeton-Contact - alias Kathy Haney Pager - email 6096511529@vtext.com -} - -define contact { - contact_name Keith Moulton - use Princeton-Contact - alias Keith Moulton (WWS) - email kmoulton@Princeton.EDU -} - -define contact { - contact_name Keith Moulton Pager - use Princeton-Contact - alias Keith Moulton Pager (WWS) - email 6092717393@vtext.com -} - -define contact { - contact_name Kenneth Silber - use Princeton-Contact - alias Kenneth Silber (pppl.gov) - email ksilber@pppl.gov -} - -define contact { - contact_name Kevin E. Leighton Pager - use Princeton-Contact - alias Kevin E. Leighton Pager (UHS) - email 6106393273@txt.att.net -} - -define contact { - contact_name Krish Anugula - use Princeton-Contact - alias Krish Anugula - email 9083920164@vtext.com -} - -define contact { - contact_name Krish Anugula CRITICAL - use Princeton-Contact-Critical - alias Krish Anugula - email 9083920164@vtext.com -} - -define contact { - contact_name Lisa Leisinger - use Princeton-Contact - alias Lisa A. Leisinger (Purchasing) - email lisari@Princeton.EDU -} - -define contact { - contact_name Martin_Harriss - use Princeton-Contact - alias Martin_Harriss - email martin@Princeton.EDU -} - -define contact { - contact_name Martin Pager - use Princeton-Contact - alias Martin Harriss (IMS) - email 6097313074@vtext.com -} - -define contact { - contact_name Matt Immordino - use Princeton-Contact - alias Mathew Immordino - email mimmordi@Princeton.EDU -} - -define contact { - contact_name Mark Ratliff - use Princeton-Contact - alias Mark Ratliff - email ratliff@Princeton.EDU -} - -define contact { - contact_name Mark R. Williams - use Princeton-Contact - alias Mark R. Williams (Site Protection) - email mrwilliams@Princeton.EDU -} - -define contact { - contact_name Mary L. Chang - use Princeton-Contact - alias Mary L. Chang (AIS) - email mchang@Princeton.EDU -} - -define contact { - contact_name Maureen E. OConnor Pager - use Princeton-Contact - alias Maureen E. OConnor (IMS) - email 2674437407@vtext.com -} - -define contact { - contact_name Michael Zhong Cell - use Princeton-Contact - alias Michael Zhong Cell (Facilities) - email 6096510983@vtext.com -} - -define contact { - contact_name careerdcs - use Princeton-Contact - alias careerdcs@princeton.edu - email careerdcs@princeton.edu -} - - -define contact { - contact_name casperadmindev - use Princeton-Contact - alias casperadmindev@princeton.edu - email casperadmindev@princeton.edu -} - -define contact { - contact_name esiddiqi - use Princeton-Contact - alias esiddiqi@princeton.edu - email esiddiqi@princeton.edu -} - - -define contact { - contact_name eugenek - use Princeton-Contact - alias eugenek@princeton.edu - email eugenek@princeton.edu -} - - -define contact { - contact_name kkaushik - use Princeton-Contact - alias kkaushik@princeton.edu - email kkaushik@princeton.edu -} - - -define contact { - contact_name markrw - use Princeton-Contact - alias markrw@princeton.edu - email markrw@princeton.edu -} - - -define contact { - contact_name monocle - use Princeton-Contact - alias Monocle (AISIW/Brian Long) - email monocle@Princeton.EDU -} - -define contact { - contact_name NAS Admin - use Princeton-Contact - alias NAS Administrators - email nasadmin@Princeton.EDU -} - -define contact { - contact_name NetOps - use Princeton-Contact - alias Network Operations group - email netops@Princeton.EDU -} - -define contact { - contact_name Networking - use Princeton-Contact - alias Network group - email networking@Princeton.EDU -} - -define contact { - contact_name OnBase Admin - use Princeton-Contact - alias OnBase Admins - email onbase-admin@Princeton.EDU -} - -define contact { - contact_name OnBase UA Support - use Princeton-Contact - alias OnBase UA Support - email onbase-UA-Support@Princeton.EDU -} - -define contact { - contact_name Pamela M. Slater - use Princeton-Contact - alias Pamela M. Slater (Transportation and Parking) - email pslater@Princeton.EDU -} - -define contact { - contact_name Philip Fugate - use Princeton-Contact - alias Philip J. Fugate - email pfugate@Princeton.EDU -} - -define contact { - contact_name Philip J. Fugate - use Princeton-Contact - alias Philip J. Fugate - email pfugate@Princeton.EDU -} - -define contact { - contact_name Quoc B. Nguyen Cell - use Princeton-Contact - alias Quoc B. Nguyen Cell (Facilities) - email 6094565024@tmomail.net -} - -define contact { - contact_name Ron Gittleman - use Princeton-Contact - alias Ron Gittleman (DBA) - email 6099474354@vtext.com -} - -define contact { - contact_name Ron Gittleman CRITICAL - use Princeton-Contact-Critical - alias Ron Gittleman (DBA) - email 6099474354@vtext.com -} - - -define contact { - contact_name Sergey Guberman - use Princeton-Contact - alias Sergey Guberman (DBA) - email 6097310934@vtext.com -} - -define contact { - contact_name Sergey Guberman CRITICAL - use Princeton-Contact-Critical - alias Sergey Guberman (DBA) - email 6097310934@vtext.com -} - - -define contact { - contact_name Todd Whitaker - use Princeton-Contact - alias Todd Whitaker (DBA) - email 6099157248@vtext.com -} - -define contact { - contact_name Todd Whitaker CRITICAL - use Princeton-Contact-Critical - alias Todd Whitaker (DBA) - email 6099157248@vtext.com -} - - -define contact { - contact_name abye - use Princeton-Contact - alias abye@princeton.edu - email abye@princeton.edu -} - - -define contact { - contact_name appleton - use Princeton-Contact - alias appleton@princeton.edu - email appleton@princeton.edu -} - - -define contact { - contact_name bfitzwater - use Princeton-Contact - alias bfitzwater@princeton.edu - email bfitzwater@princeton.edu -} - - -define contact { - contact_name casperadmin - use Princeton-Contact - alias casperadmin@princeton.edu - email casperadmin@princeton.edu -} - - -define contact { - contact_name cla_scag - use Princeton-Contact - alias cla_scag@princeton.edu - email cla_scag@princeton.edu -} - - -define contact { - contact_name coswald - use Princeton-Contact - alias coswald@princeton.edu - email coswald@princeton.edu -} - - -define contact { - contact_name css-alert - use Princeton-Contact - alias css-alert@princeton.edu - email css-alert@princeton.edu -} - - -define contact { - contact_name czimowsk - use Princeton-Contact - alias czimowsk@princeton.edu - email czimowsk@princeton.edu -} - - -define contact { - contact_name drosso - use Princeton-Contact - alias drosso@princeton.edu - email drosso@princeton.edu -} - - -define contact { - contact_name dummy - use Princeton-contact-punotify - alias Does not notify - we need this for delayed escalations - email groundwk@Princeton.EDU - host_notification_commands host-notify-dummy - service_notification_commands service-notify-dummy -} - -define contact { - contact_name eeb-fm-sa - use Princeton-Contact - alias eeb-fm-sa@princeton.edu - email eeb-fm-sa@princeton.edu -} - - -define contact { - contact_name eeweb - use Princeton-Contact - alias eeweb@princeton.edu - email eeweb@princeton.edu -} - - -define contact { - contact_name epm-list - use Princeton-Contact - alias epm-list@princeton.edu - email epm-list@princeton.edu -} - - -define contact { - contact_name gshelp - use Princeton-Contact - alias gshelp@princeton.edu - email gshelp@princeton.edu -} - - -define contact { - contact_name iam - use Princeton-Contact - alias iam@princeton.edu - email iam@princeton.edu -} - - -define contact { - contact_name infosec - use Princeton-Contact - alias infosec@princeton.edu - email infosec@princeton.edu -} - - -define contact { - contact_name jf19-ignore-this - use Princeton-Contact - alias jf19-ignore-this@princeton.edu - email jf19-ignore-this@princeton.edu -} - - -define contact { - contact_name jmm14 - use Princeton-Contact - alias jmm14@princeton.edu - email jmm14@princeton.edu -} - - -define contact { - contact_name jmull - use Princeton-Contact - alias jmull@princeton.edu - email jmull@princeton.edu -} - - -define contact { - contact_name kimhuang - use Princeton-Contact - alias kimhuang@princeton.edu - email kimhuang@princeton.edu -} - - -define contact { - contact_name langley - use Princeton-Contact - alias langley@princeton.edu - email langley@princeton.edu -} - - -define contact { - contact_name markpe - use Princeton-Contact - alias markpe@princeton.edu - email markpe@princeton.edu -} - - -define contact { - contact_name maximo - use Princeton-Contact - alias Maximo Monitoring Group - email maximo-monitoring@Princeton.EDU -} - -define contact { - contact_name Natasha Metelitsa - use Princeton-Contact - alias Natasha Metelitsa (OAS) - email nmetelit@Princeton.EDU -} - - -define contact { - contact_name Nicholas Delo - use Princeton-Contact - alias Nicholas Delo (ESS) - email ndelo@Princeton.EDU -} - -define contact { - contact_name mhood - use Princeton-Contact - alias mhood@princeton.edu - email mhood@princeton.edu -} - - -define contact { - contact_name milbrey - use Princeton-Contact - alias milbrey@princeton.edu - email milbrey@princeton.edu -} - - -define contact { - contact_name mjo3 - use Princeton-Contact - alias mjo3@princeton.edu - email mjo3@princeton.edu -} - - -define contact { - contact_name mmarnett - use Princeton-Contact - alias mmarnett@princeton.edu - email mmarnett@princeton.edu -} - - -define contact { - contact_name nagiosadmin - use generic-contact - alias Nagios Admin - email igubenko@Princeton.EDU - #pager pagenagios-admin@localhost -} - -# When notifications are disabled for a contact, escalation will NEVER occur, as there's no first notification!!! -define contact { - contact_name nobody - use Princeton-Contact - alias Noone - no email - #host_notifications_enabled 0 - #service_notifications_enabled 0 - email blackhole -} - -define contact { - contact_name Office of the Dean - use Princeton-Contact - alias Office of the Dean - email docadmjg@Princeton.EDU -} - -define contact { - contact_name OIT DAS - use Princeton-Contact - alias OIT DAS (DAS) - email oitdas@Princeton.EDU -} - -define contact { - contact_name PICSS - use Princeton-Contact - alias PICSS (SS) - email picss@princeton.edu -} - -define contact { - contact_name PRSON PROJ - use Princeton-Contact - alias PRSON PROJ (Psychology) - email prson_proj@princeton.edu -} - -define contact { - contact_name none - use Princeton-Contact - alias none@princeton.edu - email none@princeton.edu -} - - -define contact { - contact_name ohd-sec - use Princeton-Contact - alias ohd-sec@princeton.edu - email ohd-sec@princeton.edu -} - - -define contact { - contact_name oit.security - use Princeton-Contact - alias oit.security@princeton.edu - email oit.security@princeton.edu -} - - -define contact { - contact_name oitdcf - use Princeton-Contact - alias oitdcf@princeton.edu - email oitdcf@princeton.edu -} - - -define contact { - contact_name pacreq - use Princeton-Contact - alias pacreq@princeton.edu - email pacreq@princeton.edu -} - - -define contact { - contact_name pac_app_integration - use Princeton-Contact - alias pac_app_integration_list@princeton.edu - email pac_app_integration_list@princeton.edu -} - - -define contact { - contact_name pac_usapps - use Princeton-Contact - alias pac_usapps_list@princeton.edu - email pac_usapps_list@princeton.edu -} - - -define contact { - contact_name pcotech - use Princeton-Contact - alias pcotech@princeton.edu - email pcotech@princeton.edu -} - - -define contact { - contact_name pilaro - use Princeton-Contact - alias pilaro@princeton.edu - email pilaro@princeton.edu -} - - -define contact { - contact_name przcomp - use Princeton-Contact - alias przcomp@princeton.edu - email przcomp@princeton.edu -} - - -define contact { - contact_name PS PRIME Support - use Princeton-Contact - alias PS PRIME Support - email ps_prime_support@princeton.edu -} - - -define contact { - contact_name pu_default - use generic-contact - alias pu_default - email groundwk@Princeton.EDU - host_notification_commands host-notify-pu-default - service_notification_commands service-notify-pu-default -} - -define contact { - contact_name Quoc B. Nguyen - use Princeton-Contact - alias Quoc B. Nguyen (Facilities) - email quoc@Princeton.EDU -} - -define contact { - contact_name RN Admin - use Princeton-Contact - alias RN Admin (OAS) - email rnadmin@Princeton.EDU -} - -define contact { - contact_name Robert J. Kuhn - use Princeton-Contact - alias Robert J. Kuhn (rk2@Princeton.EDU) - email rk2@Princeton.EDU -} - -define contact { - contact_name Robert Tengowski - use Princeton-Contact - alias Robert Tengowski (rtengows@Princeton.EDU) - email rtengows@Princeton.EDU -} - -define contact { - contact_name Salvatore Urso - use Princeton-Contact - alias Salvatore Urso (OAS) - email surso@Princeton.EDU -} - -define contact { - contact_name Sushma Mendu - use Princeton-Contact - alias Sushma Mendu (AIS) - email smendu@Princeton.EDU -} - -define contact { - contact_name SDP List - use Princeton-Contact - alias SDP List (sdp@Princeton.EDU) - email sdp@Princeton.EDU -} - -define contact { - contact_name SDP Page - use Princeton-Contact - alias SDP Page (sdppage@Princeton.EDU) - email sdppage@Princeton.EDU -} - -define contact { - contact_name Sharepoint Admin - use Princeton-Contact - alias SharePoint Admin (sharepointadmin@princeton.edu) - email sharepointadmin@princeton.edu -} - -define contact { - contact_name Software Infrastructure Services - use Princeton-Contact - alias Software Infrastructure Services (sisters@Princeton.EDU) - email sisters@Princeton.EDU -} - -define contact { - contact_name Steven Niedzwiecki - use Princeton-Contact - alias Steven E. Niedzwiecki (steven@Princeton.EDU) - email steven@Princeton.EDU -} - -define contact { - contact_name Steven Semenuk - use Princeton-Contact - alias Steven H. Semenuk (semenuk@Princeton.EDU) - email semenuk@Princeton.EDU -} - -define contact { - contact_name Susan Fou - use Princeton-Contact - alias Susan C. Fou (Office of Development) - email susanfou@Princeton.EDU -} - -define contact { - contact_name Thesis Central - use Princeton-Contact - alias Thesis Central (Monika Mevenkamp) - email thesiscentralsu@Princeton.EDU -} - -define contact { - contact_name Timeline - use Princeton-Contact - alias Timeline machines (Kevin Perry - ATS) - email TimelineAdmin@Princeton.EDU -} - -define contact { - contact_name Timeline Operations - use Princeton-Contact - alias Timeline Operations (Kevin Perry - ATS) - email tlops@Princeton.EDU -} - -define contact { - contact_name Joshua Thomas - use Princeton-Contact - alias Joshua Thomas (Associate Director IT - University Services) - email jt7@Princeton.EDU -} - -define contact { - contact_name Paul Beaulieu - use Princeton-Contact - alias Paul W. Beaulieu (Page) - email 6096131849@vtext.com -} - -define contact { - contact_name Paul Beaulieu CRITICAL - use Princeton-Contact-Critical - alias Paul W. Beaulieu (Page) - email 6096131849@vtext.com -} - -define contact { - contact_name Ruth D. Gittens - use Princeton-Contact - alias Ruth D. Gittens - email rgittens@Princeton.EDU -} - -define contact { - contact_name UHS Server Team - use Princeton-Contact - alias UHS Server Team (UHS) - email UHS-ServerTeam@Princeton.EDU -} - -define contact { - contact_name USS IT - use Princeton-Contact - alias USS IT (USS) - email uss-it@Princeton.EDU -} - -define contact { - contact_name WDS List - use Princeton-Contact - alias Web Development Services (WDS) - email wds-staff@Princeton.EDU -} - -define contact { - contact_name Vito Badalamenti - use Princeton-Contact - alias Senior Developer/Analyst I, Administrative Information Services, Office of Information Technology. - email vitob@princeton.edu -} - -define contact { - contact_name WDS Reports List - use Princeton-Contact - alias Web Development Services Reports (WDS) - email wds-reports@Princeton.EDU -} - -define contact { - contact_name WWS Help List - use Princeton-Contact - alias Woodrow Wilson School Help List (WWS) - email wwshelp@Princeton.EDU -} - -define contact { - contact_name Yuri Smolyansky - use Princeton-Contact - alias Yuri Smolyansky (AIS) - email yuris@Princeton.EDU -} - -define contact { - contact_name eenet - use Princeton-Contact - alias eenet@princeton.edu - email eenet@princeton.edu -} - - -define contact { - contact_name rd11 - use Princeton-Contact - alias rd11@princeton.edu - email rd11@princeton.edu -} - - -define contact { - contact_name rsegers - use Princeton-Contact - alias rsegers@princeton.edu - email rsegers@princeton.edu -} - - -define contact { - contact_name scsops - use Princeton-Contact - alias scsops@princeton.edu - email scsops@princeton.edu -} - - -define contact { - contact_name sisters - use Princeton-Contact - alias sisters@princeton.edu @princeton.edu - email sisters@princeton.edu @princeton.edu -} - - -define contact { - contact_name slmgeo - use Princeton-Contact - alias slmgeo@princeton.edu - email slmgeo@princeton.edu -} - - -define contact { - contact_name smo-sysadmin - use Princeton-Contact - alias smo-sysadmin@princeton.edu - email smo-sysadmin@princeton.edu -} - - -define contact { - contact_name smo-sysadmins - use Princeton-Contact - alias smo-sysadmins@princeton.edu - email smo-sysadmins@princeton.edu -} - - -define contact { - contact_name switch - use Princeton-Contact - alias switch@princeton.edu - email switch@princeton.edu -} - - -define contact { - contact_name swssecur - use Princeton-Contact - alias swssecur@princeton.edu - email swssecur@princeton.edu -} - - -define contact { - contact_name topsup - use Princeton-Contact - alias topsup@princeton.edu - email topsup@princeton.edu -} - - -define contact { - contact_name tuccillo - use Princeton-Contact - alias tuccillo@princeton.edu - email tuccillo@princeton.edu -} - - -define contact { - contact_name uats - use Princeton-Contact - alias uats@princeton.edu - email uats@princeton.edu -} - - -define contact { - contact_name ussntadm - use Princeton-Contact - alias ussntadm@princeton.edu - email ussntadm@princeton.edu -} - - -define contact { - contact_name wds-ops - use Princeton-Contact - alias wds-ops@princeton.edu - email wds-ops@princeton.edu -} - - -define contact { - contact_name wwscs - use Princeton-Contact - alias wwscs@princeton.edu - email wwscs@princeton.edu -} - - -define contact { - contact_name Terrence M. Lam - use Princeton-Contact - alias Senior Security Administrator, Administrative Information Services, Office of Information Technology. - _telephoneNumber 609-258-3007 - email tlam@Princeton.EDU igubenko@Princeton.EDU -} - - -define contact { - contact_name Janet M. Strohl-Morgan - use Princeton-Contact - alias Associate Director for Information & Technology, Art Museum. - _telephoneNumber 609-258-7839 - email jstrohl@Princeton.EDU igubenko@Princeton.EDU -} - - -define contact { - contact_name USSNTADM - use Princeton-Contact - email ussntadm@princeton.edu igubenko@Princeton.EDU -} - - -define contact { - contact_name OIT CSG Reports - use Princeton-Contact - email csgrpts@Princeton.EDU igubenko@Princeton.EDU -} - - -define contact { - contact_name Collaborative Services Group - use Princeton-Contact - email csg@Princeton.EDU igubenko@Princeton.EDU -} - - -define contact { - contact_name John Shorey - use Princeton-Contact - alias Systems Infrastructure Analyst I, Enterprise Infrastructure Services, Office of Information Technology. - _telephoneNumber 609-258-4587 - email shorey@Princeton.EDU igubenko@Princeton.EDU -} - - -define contact { - contact_name Facilities NT Administrator - use Princeton-Contact - email facntadm@Princeton.EDU igubenko@Princeton.EDU -} - - -define contact { - contact_name Steven E. Niedzwiecki - use Princeton-Contact - alias Senior Security Architect, Information Security Office. - _telephoneNumber 609-258-1618 - email steven@Princeton.EDU igubenko@Princeton.EDU -} - - -define contact { - contact_name James E. Plastine - use Princeton-Contact - alias Department Computing Support Specialist, Psychology. - _telephoneNumber 609-258-1577 - email plastine@Princeton.EDU igubenko@Princeton.EDU -} - - -define contact { - contact_name Christopher Dietrich - use Princeton-Contact - alias Systems Infrastructure Manager, Enterprise Infrastructure Services, Office of Information Technology. - _telephoneNumber 609-258-6072 - email chris@Princeton.EDU igubenko@Princeton.EDU -} - - -define contact { - contact_name Christopher C. Dietrich - use Princeton-Contact - alias Systems Infrastructure Manager, Enterprise Infrastructure Services, Office of Information Technology. - _telephoneNumber 609-258-6072 - email chris@Princeton.EDU igubenko@Princeton.EDU -} - - -define contact { - contact_name Henry M. Umansky - use Princeton-Contact - alias Associate Director of Service Management. - _telephoneNumber 609-258-1674 - email humansky@princeton.edu igubenko@Princeton.EDU -} - - -define contact { - contact_name Anthony C. Wilk - use Princeton-Contact - alias Information Support Specialist, Development Technology Services, Office of Development. - _telephoneNumber 609-258-2447 - email acwilk@Princeton.EDU igubenko@Princeton.EDU -} - - -define contact { - contact_name Jennifer L. Curatola - use Princeton-Contact - email jlf@Princeton.EDU igubenko@Princeton.EDU -} - - -define contact { - contact_name Christophe Lamarque-Lacoste - use Princeton-Contact - email lamarque@Princeton.EDU igubenko@Princeton.EDU -} - - -define contact { - contact_name James Chu Pager - use Princeton-Contact - email 6099333568@tmomail.net jkchu@Princeton.EDU -} - - -define contact { - contact_name ATS System Administration - use Princeton-Contact - alias Academic Technology Services, Office of Information Technology - email etcsys@Princeton.EDU -} - - -define contact { - contact_name Adam A. Ouellette - use Princeton-Contact - alias ITSM Process Specialist, Service Management Office, Office of In (Service Management Office, Office of Information Technology) - _telephoneNumber 609-258-4737 - email adam.ouellette@princeton.edu -} - - -define contact { - contact_name Adam C. Boltz - use Princeton-Contact - alias Controls Engineer, Engineering and Campus Energy - Control. (Engineering and Campus Energy - Control) - _telephoneNumber 609-258-2120 - email aboltz@Princeton.EDU -} - - -define contact { - contact_name Alan M. Stahl - use Princeton-Contact - alias Curator of Numismatics. Lecturer in Art and Archaeology. (Library-Rare Books & Special Collections) - _telephoneNumber 609-258-9127 - email astahl@Princeton.EDU -} - - -define contact { - contact_name Alex J. Trosko - use Princeton-Contact - alias Systems Administrator, Site Protection-Administration. (Site Protection-Administration) - _telephoneNumber 609-258-8129 - email ajtrosko@Princeton.EDU -} - - -define contact { - contact_name Allison B. Petito - use Princeton-Contact - alias Senior Training Coordinator, Organization Effectiveness&Communic (Organization Effectiveness&Communication, VP for Finance and Tre) - _telephoneNumber 609-258-8892 - email apetito@Princeton.EDU -} - - -define contact { - contact_name Alvin A. Daniel - use Princeton-Contact - alias Technical Support Specialist, Office of the Dean for Research. (Office of the Dean for Research) - _telephoneNumber 609-258-0362 - email alvind@Princeton.EDU -} - - -define contact { - contact_name Andre Rivera - use Princeton-Contact - alias Big Data and Storage Analyst, Research Computing, Office of Info (Research Computing, Office of Information Technology) - _telephoneNumber 609-258-1548 - _mobile 609-955-6789 - email andreriv@princeton.edu -} - - -define contact { - contact_name Anthony J. Jones - use Princeton-Contact - alias Network Operations Infrastructure Senior Administrator, Support (Support Services, Office of Information Technology) - _telephoneNumber 609-258-2554 - email ajjones@Princeton.EDU -} - - -define contact { - contact_name Architecture Computer - use Princeton-Contact - alias Architecture - email archcomp@Princeton.EDU -} - - -define contact { - contact_name Arthur T. Murphy - use Princeton-Contact - alias Energy Project Engineer, Engineering and Campus Energy. (Engineering and Campus Energy) - _telephoneNumber 609-258-9298 - email amurphy@Princeton.EDU -} - - -define contact { - contact_name Asim Shahab - use Princeton-Contact - alias Manager ERP Financials, Software and Application Services, Offic (Software and Application Services, Office of Information Technol) - _telephoneNumber 609-258-3282 - email ashahab@princeton.edu -} - - -define contact { - contact_name Audrey L. Wright - use Princeton-Contact - alias Senior PeopleSoft Database Administrator II, Software and Applic (Software and Application Services, Office of Information Technol) - _telephoneNumber 609-258-5840 - email awright@Princeton.EDU -} - - -define contact { - contact_name Austin Bye - use Princeton-Contact - alias Lead Developer/ Analyst II, Software and Application Services, O (Software and Application Services, Office of Information Technol) - _telephoneNumber 609-258-8527 - email austin.bye@princeton.edu -} - - -define contact { - contact_name Ben Johnston - use Princeton-Contact - alias Senior Educational Technology Specialist, McGraw Center for Teac (McGraw Center for Teaching and Learning) - _telephoneNumber 609-258-9835 - email benj@Princeton.EDU -} - - -define contact { - contact_name Brandon Kennedy - use Princeton-Contact - alias Technical Support Specialist, Support Services, Office of Inform (Support Services, Office of Information Technology) - _telephoneNumber 609-258-4053 - email bk@Princeton.EDU -} - - -define contact { - contact_name Brian J. Powell - use Princeton-Contact - alias Application Delivery Analyst, University Health Services. (University Health Services) - _telephoneNumber 609-258-8711 - email brianp@princeton.edu -} - - -define contact { - contact_name Brian K. Osborne - use Princeton-Contact - alias Senior Web Developer, Software and Application Services, Office (Software and Application Services, Office of Information Technol) - _telephoneNumber 609-258-2051 - email bosborne@princeton.edu -} - - -define contact { - contact_name Brian Long - use Princeton-Contact - alias Lead Developer/Analyst Il, Software and Application Services, Of (Software and Application Services, Office of Information Technol) - _telephoneNumber 609-258-0829 - email blong@Princeton.EDU -} - - -define contact { - contact_name Brian T. Burgher - use Princeton-Contact - alias Desktop Support Specialist, Office of the Dean of the College. (Office of the Dean of the College) - _telephoneNumber 609-258-9499 - email brian.burgher@princeton.edu -} - - -define contact { - contact_name Bryan S. Fitzwater - use Princeton-Contact - alias Manager, Technical Support, Athletics. (Athletics) - _telephoneNumber 609-258-9066 - email bfitzwater@princeton.edu -} - - -define contact { - contact_name CISDR Group of EIS - use Princeton-Contact - alias Enterprise Infrastructure Services, Office of Information Techno - email cisdr@princeton.edu -} - - -define contact { - contact_name CSES Internal - System Generated - use Princeton-Contact - alias Research Computing, Office of Information Technology - email csesi@princeton.edu -} - - -define contact { - contact_name Carla M. Zimowsk - use Princeton-Contact - alias Technical Support Analyst/Manager, History. (History) - _telephoneNumber 609-258-5256 - email czimowsk@Princeton.EDU -} - - -define contact { - contact_name Cathryn Goodwin - use Princeton-Contact - alias Manager, Collections Information, Art Museum. (Art Museum) - _telephoneNumber 609-258-9374 - email cathryng@Princeton.EDU -} - - -define contact { - contact_name Charlayne H. Beavers - use Princeton-Contact - alias Senior Manager, Strategic Projects & Services, Support Services, (Support Services, Office of Information Technology) - _telephoneNumber 609-258-6034 - _mobile 609-937-4620 - email charlayne.beavers@princeton.edu -} - - -define contact { - contact_name Charlotte C. Hussey - use Princeton-Contact - alias Unspecified Department - _telephoneNumber 609-258-6533 - email hussey@princeton.edu -} - - -define contact { - contact_name Chi M. Lu - use Princeton-Contact - alias Senior Systems Administrator, Enterprise Infrastructure Services (Enterprise Infrastructure Services, Office of Information Techno) - _telephoneNumber 609-258-1061 - email clu@Princeton.EDU -} - - -define contact { - contact_name Christiane D. Fellbaum - use Princeton-Contact - alias Lecturer with the rank of Professor in the Council of the Humani (The Council of the Humanities) - _telephoneNumber 609-258-2824 - email fellbaum@Princeton.EDU -} - - -define contact { - contact_name Christopher J. Tengi - use Princeton-Contact - alias Senior Architect, Advanced Networking, Research Computing, Offic (Research Computing, Office of Information Technology) - _telephoneNumber 609-258-6799 - _mobile 609-647-4584 - email tengi@Princeton.EDU -} - - -define contact { - contact_name Christopher L. Kranz - use Princeton-Contact - alias Collaboration Infrastructure Lead, Enterprise Infrastructure Ser (Enterprise Infrastructure Services, Office of Information Techno) - _telephoneNumber 609-258-6871 - email clk@princeton.edu -} - - -define contact { - contact_name Christopher M. Stewart - use Princeton-Contact - alias Senior PeopleSoft Database Administrator II, Software and Applic (Software and Application Services, Office of Information Technol) - _telephoneNumber 609-258-3387 - email cs2@Princeton.EDU -} - - -define contact { - contact_name Christopher S. Oswald - use Princeton-Contact - alias Assistant Director, IT Audit, Audit and Compliance. (Audit and Compliance) - _telephoneNumber 609-258-6032 - email coswald@princeton.edu -} - - -define contact { - contact_name Computational Science and Engineering Support - use Princeton-Contact - alias Research Computing, Office of Information Technology - email csesa@princeton.edu -} - - -define contact { - contact_name Conrad L. Silvestre - use Princeton-Contact - alias Electrical Engineering - email conrad@exchange.Princeton.EDU -} - - -define contact { - contact_name D T. Moraski II - use Princeton-Contact - alias Systems Infrastructure Analyst I, Enterprise Infrastructure Serv (Enterprise Infrastructure Services, Office of Information Techno) - _telephoneNumber 609-258-5022 - email moraski2@Princeton.EDU -} - - -define contact { - contact_name Daniel Chin - use Princeton-Contact - alias Associate Director, Storage and Automation, Enterprise Infrastru (Enterprise Infrastructure Services, Office of Information Techno) - _telephoneNumber 609-258-6021 - _mobile 609-731-8610 - email dchin@Princeton.EDU -} - - -define contact { - contact_name Daniel E. Veith - use Princeton-Contact - alias Web Developer/Systems Admin, Electrical Engineering. (Electrical Engineering) - _telephoneNumber 609-258-3384 - email dveith@princeton.edu -} - - -define contact { - contact_name Daniel McNesby - use Princeton-Contact - alias Senior Technical Support, Princeton Institute for the Science an (Princeton Institute for the Science and Technology of Materials) - _telephoneNumber 609-258-7052 - email dmcnesb@Princeton.EDU -} - - -define contact { - contact_name Daniel T. Brennan - use Princeton-Contact - alias Museum Application Developer, Art Museum. (Art Museum) - _telephoneNumber 609-258-2819 - email dbrennan@princeton.edu -} - - -define contact { - contact_name Daniel T. Pease - use Princeton-Contact - alias Student Computing Support Spec, Support Services, Office of Info (Support Services, Office of Information Technology) - _telephoneNumber 609-258-2082 - email dpease@Princeton.EDU -} - - -define contact { - contact_name David A. Beohmer - use Princeton-Contact - alias Unspecified Department - _mobile 609-820-0598 - email dbeohmer@Princeton.EDU -} - - -define contact { - contact_name David J. Parks - use Princeton-Contact - alias Financial Systems Analyst, Finance Technology, Office of the VP (Finance Technology, Office of the VP for Finance & Treasurer) - _telephoneNumber 609-258-7123 - email dparks@Princeton.EDU -} - - -define contact { - contact_name David L. Herrington - use Princeton-Contact - alias Senior Manager, Custom Solutions and Integration, Software and A (Software and Application Services, Office of Information Technol) - _telephoneNumber 609-258-2952 - _mobile 908-447-7156 - email dave.herrington@princeton.edu -} - - -define contact { - contact_name David M. Hopkins - use Princeton-Contact - alias Senior Manager, Video Production Support, Support Services, Offi (Support Services, Office of Information Technology) - _telephoneNumber 609-258-3322 - email dhopkins@Princeton.EDU -} - - -define contact { - contact_name David O. Goetz - use Princeton-Contact - alias Assistant Director, Campus Dining Financial Services, Campus Din (Campus Dining, University Services) - _telephoneNumber 609-258-3470 - email dgoetz@Princeton.EDU -} - - -define contact { - contact_name David P. Tierney - use Princeton-Contact - alias Lead Developer/Analyst Il, Software and Application Services, Of (Software and Application Services, Office of Information Technol) - _telephoneNumber 609-258-6782 - email dtierney@Princeton.EDU -} - - -define contact { - contact_name David Rinker - use Princeton-Contact - alias Senior Network Engineer I, Enterprise Infrastructure Services, O (Enterprise Infrastructure Services, Office of Information Techno) - _telephoneNumber 609-258-4555 - email drinker@princeton.edu -} - - -define contact { - contact_name Dawn F. McCall - use Princeton-Contact - alias GIS & Land Analyst, Facilities Finance and Administrative Servic (Facilities Finance and Administrative Services) - _telephoneNumber 609-258-8205 - email dmccall@Princeton.EDU -} - - -define contact { - contact_name Dean A. Plante - use Princeton-Contact - alias Sr Info Security Engineer, Information Security Office. (Information Security Office) - _telephoneNumber 609-258-3312 - email dplante@princeton.edu -} - - -define contact { - contact_name Diana I. Tamir - use Princeton-Contact - alias Assistant Professor of Psychology. (Psychology) - _telephoneNumber 609-258-7845 - email dtamir@princeton.edu -} - - -define contact { - contact_name Dianne M. Wolochowicz - use Princeton-Contact - alias Client Systems Specialist, Support Services, Office of Informati (Support Services, Office of Information Technology) - _telephoneNumber 609-258-7113 - email dianne@Princeton.EDU -} - - -define contact { - contact_name Doreen Sullivan - use Princeton-Contact - alias IT Team Manager, Geosciences. (Geosciences) - _telephoneNumber 609-258-5184 - _mobile 732-684-0130 - email doreens@Princeton.EDU -} - - -define contact { - contact_name Douglas Rosso - use Princeton-Contact - alias Senior IT Manager, Chemistry. (Chemistry) - _telephoneNumber 609-258-3912 - email drosso@Princeton.EDU -} - - -define contact { - contact_name Dwight D. Bashore - use Princeton-Contact - alias Collaboration Infrastructure Analyst, Enterprise Infrastructure (Enterprise Infrastructure Services, Office of Information Techno) - _telephoneNumber 609-258-1733 - email dbashore@Princeton.EDU -} - - -define contact { - contact_name EE Webmaster - use Princeton-Contact - alias Electrical Engineering - email eeweb@Princeton.EDU -} - - -define contact { - contact_name EEB FileMaker Server Admin - use Princeton-Contact - alias Ecology and Evolutionary Biology - email eeb-fm-sa@princeton.edu -} - - -define contact { - contact_name Edith M. Rzomp - use Princeton-Contact - alias Systems Administrator, Site Protection-Administration. (Site Protection-Administration) - _telephoneNumber 609-258-7815 - email erzomp@princeton.edu -} - - -define contact { - contact_name Elke U. Weber - use Princeton-Contact - alias Gerhard R. Andlinger Professor in Energy and the Environment, Pr (Woodrow Wilson School) - _telephoneNumber 609-258-7640 - email eweber@princeton.edu -} - - -define contact { - contact_name Eric C. Altman - use Princeton-Contact - alias Department Computing Support Specialist, Sociology. (Sociology) - _telephoneNumber 609-258-2851 - email ealtman@princeton.edu -} - - -define contact { - contact_name Erick W. Burd - use Princeton-Contact - alias Network & Monitoring Infrastructure Analyst, Enterprise Infrastr (Enterprise Infrastructure Services, Office of Information Techno) - _telephoneNumber 609-258-0186 - email eburd@princeton.edu -} - - -define contact { - contact_name Erik D. Johnston - use Princeton-Contact - alias Sr. Desktop Support Specialist, Finance Technology, Office of th (Finance Technology, Office of the VP for Finance & Treasurer) - email erik@Princeton.EDU -} - - -define contact { - contact_name FACJZADM - use Princeton-Contact - alias Facilities Finance and Administrative Services - email facjzadm@princeton.edu -} - - -define contact { - contact_name Forrest M. Meggers - use Princeton-Contact - alias Assistant Professor of Architecture and the Andlinger Center for (Architecture) - _telephoneNumber 609-258-7831 - email fmeggers@princeton.edu -} - - -define contact { - contact_name Frank J. Indyk Jr. - use Princeton-Contact - alias Manager, Network Operations, Support Services, Office of Informa (Support Services, Office of Information Technology) - _telephoneNumber 609-258-6780 - email franki@Princeton.EDU -} - - -define contact { - contact_name Gary Brancato - use Princeton-Contact - alias Controls Engineer, Engineering and Campus Energy - Control. (Engineering and Campus Energy - Control) - _telephoneNumber 609-258-2872 - email garyb@Princeton.EDU -} - - -define contact { - contact_name Gary D. Eshbaugh - use Princeton-Contact - alias Student Computing Specialist, Support Services, Office of Inform (Support Services, Office of Information Technology) - _telephoneNumber 609-258-4769 - email eshbaugh@Princeton.EDU -} - - -define contact { - contact_name George R. Fleming Jr. - use Princeton-Contact - alias Lead Developer/Analyst II, Software and Application Services, Of (Software and Application Services, Office of Information Technol) - _telephoneNumber 609-258-5065 - email fleming@Princeton.EDU -} - - -define contact { - contact_name George R. Kopf - use Princeton-Contact - alias Director, Software Infrastructure Services, Software and Applica (Software and Application Services, Office of Information Technol) - _telephoneNumber 609-258-4930 - email gkopf@princeton.edu -} - - -define contact { - contact_name Ghani Zahid - use Princeton-Contact - alias - email gzahid@princeton.edu -} - - -define contact { - contact_name Glenn R. Wemple - use Princeton-Contact - alias Director of Investment Technology, Princeton University Investme (Princeton University Investment Company) - _telephoneNumber 609-258-5439 - email gwemple@Princeton.EDU -} - - -define contact { - contact_name Grant A. Weed - use Princeton-Contact - alias Senior Manager, Unified Communications Services, Support Service (Support Services, Office of Information Technology) - _telephoneNumber 609-258-7130 - email gweed@Princeton.EDU -} - - -define contact { - contact_name Gregory S. Blaha - use Princeton-Contact - alias Technical Support Analyst/IT Manager, Office of the Dean of Unde (Office of the Dean of Undergraduate Students) - _telephoneNumber 609-258-9643 - email gblaha@Princeton.EDU -} - - -define contact { - contact_name Hajar Niroomand - use Princeton-Contact - alias Networking and Monitoring Infrastructure Lead, Enterprise Infras (Enterprise Infrastructure Services, Office of Information Techno) - _telephoneNumber 609-258-0929 - email hajar@Princeton.EDU -} - - -define contact { - contact_name Health Services Help - use Princeton-Contact - alias University Health Services - email uhshelp@Princeton.EDU -} - - -define contact { - contact_name Heather Campbell - use Princeton-Contact - alias Director, Analytics & Data Management, University Advancement. (Analytics & Data Management, University Advancement) - _telephoneNumber 609-258-7951 - email hcampbel@Princeton.EDU -} - - -define contact { - contact_name Hyojoon Kim - use Princeton-Contact - alias Cyber Infrastructure Engineer, Princeton Institute for Computati (Princeton Institute for Computational Science and Engineering) - _telephoneNumber 609-258-2949 - email joonk@princeton.edu -} - - -define contact { - contact_name Ian R. Finch - use Princeton-Contact - alias Lead Developer/Analyst Il, Software and Application Services, Of (Software and Application Services, Office of Information Technol) - _telephoneNumber 609-258-7261 - email ian.finch@princeton.edu -} - - -define contact { - contact_name Identity and Access Management - use Princeton-Contact - alias Unspecified Department - email iam@princeton.edu -} - - -define contact { - contact_name Igor Zivkovic - use Princeton-Contact - alias Information Technology Manager, Public Safety. (Public Safety) - _telephoneNumber 609-258-5773 - email izivkovi@Princeton.EDU -} - - -define contact { - contact_name Information Security - use Princeton-Contact - alias Operations and Planning, Office of Information Technology - email protect@Princeton.EDU -} - - -define contact { - contact_name Information Security Office - use Princeton-Contact - alias Information Security Office - email infosec@princeton.edu -} - - -define contact { - contact_name Irwin S. Tillman - use Princeton-Contact - alias Networking and Monitoring Infrastructure Lead, Enterprise Infras (Enterprise Infrastructure Services, Office of Information Techno) - _telephoneNumber 609-258-6062 - email irwin@Princeton.EDU -} - - -define contact { - contact_name Jacqueline Golden - use Princeton-Contact - alias Associate Director, Application Development, Analytics & Data Ma (Analytics & Data Management, University Advancement) - _telephoneNumber 609-258-0995 - email jfgolden@Princeton.EDU -} - - -define contact { - contact_name James D. Kane - use Princeton-Contact - alias Engineering and Campus Energy - email jkane@Princeton.EDU -} - - -define contact { - contact_name James K. Chu - use Princeton-Contact - alias Lead Developer/Analyst II, Software and Application Services, Of (Software and Application Services, Office of Information Technol) - _telephoneNumber 609-258-4714 - email jkchu@Princeton.EDU -} - - -define contact { - contact_name James Kim - use Princeton-Contact - alias Senior Application Developer, University Services. (University Services) - _telephoneNumber 609-258-1288 - email jk20@princeton.edu -} - - -define contact { - contact_name James P. McClure - use Princeton-Contact - alias Senior Research Historian, History. General Editor, Papers of Th (History) - _telephoneNumber 609-258-5687 - email mcclur@Princeton.EDU -} - - -define contact { - contact_name Jason B. Rappaport - use Princeton-Contact - alias Identity & Access Management Analyst, Enterprise Infrastructure (Enterprise Infrastructure Services, Office of Information Techno) - _telephoneNumber 609-258-8464 - email jasonrap@princeton.edu -} - - -define contact { - contact_name Jaysen J. LeSage - use Princeton-Contact - alias Senior IT Manager, Office of the Dean of the College. (Office of the Dean of the College) - _telephoneNumber 609-258-2882 - email jlesage@Princeton.EDU -} - - -define contact { - contact_name Jeff S Heller - use Princeton-Contact - alias Data and Project Coordinator, East Asian Studies. (East Asian Studies) - _telephoneNumber 609-258-4775 - email jsheller@princeton.edu -} - - -define contact { - contact_name Jeffrey J. Mull - use Princeton-Contact - alias Media Technician, Support Services, Office of Information Techno (Support Services, Office of Information Technology) - _telephoneNumber 609-258-4113 - email jmull@Princeton.EDU -} - - -define contact { - contact_name Jeffrey L. Firestone - use Princeton-Contact - alias Systems Infrastructure Analyst II, Enterprise Infrastructure Ser (Enterprise Infrastructure Services, Office of Information Techno) - _telephoneNumber 609-258-1791 - email jeff.firestone@princeton.edu -} - - -define contact { - contact_name Jeffrey M. Zodda - use Princeton-Contact - alias Manager, Technical Support Services, Facilities Finance and Admi (Facilities Finance and Administrative Services) - _telephoneNumber 609-258-2552 - email jzodda@Princeton.EDU -} - - -define contact { - contact_name Jennifer R. Broome Chung - use Princeton-Contact - alias Manager, Account Management & Delivery Planning & Construction M (Facilities Finance and Administrative Services) - _telephoneNumber 609-258-4936 - email jbroome@princeton.edu -} - - -define contact { - contact_name Jeremiah D. LaMontagne - use Princeton-Contact - alias Technical Support Specialist, Program in Gender and Sexuality St (Program in Gender and Sexuality Studies) - _telephoneNumber 609-258-9738 - email jl21@princeton.edu -} - - -define contact { - contact_name Jesse Saunders - use Princeton-Contact - alias Technical Support Specialist, Ecology and Evolutionary Biology. (Ecology and Evolutionary Biology) - _telephoneNumber 609-258-3574 - email jbs@Princeton.EDU -} - - -define contact { - contact_name Joanne M. Smart - use Princeton-Contact - alias Manager, ERP Campus Solutions, Software and Application Services (Software and Application Services, Office of Information Technol) - _telephoneNumber 609-258-1904 - email jsmart@Princeton.EDU -} - - -define contact { - contact_name John J. McDaniel - use Princeton-Contact - alias Control Systems Operator, Engineering and Campus Energy - Contro (Engineering and Campus Energy - Control) - _telephoneNumber 609-258-5890 - email mcdaniel@Princeton.EDU -} - - -define contact { - contact_name John P. Sophy - use Princeton-Contact - alias Collaboration Infrastructure Analyst, Enterprise Infrastructure (Enterprise Infrastructure Services, Office of Information Techno) - _telephoneNumber 609-258-2951 - email jsophy@Princeton.EDU -} - - -define contact { - contact_name John S. Green III - use Princeton-Contact - alias Desktop Support, Office of the Dean of the College. (Office of the Dean of the College) - _telephoneNumber 609-258-8999 - email jgreen@Princeton.EDU -} - - -define contact { - contact_name John W. Jameson - use Princeton-Contact - alias Web Strategist and Developer, Communications. (Communications) - _telephoneNumber 609-258-9534 - email jjameson@Princeton.EDU -} - - -define contact { - contact_name John Wagner - use Princeton-Contact - alias Collaboration Infrastructure Analyst, Enterprise Infrastructure (Enterprise Infrastructure Services, Office of Information Techno) - _telephoneNumber 609-258-6043 - _mobile 609-240-4679 - email john.wagner@princeton.edu -} - - -define contact { - contact_name Jonathan R. Bickel - use Princeton-Contact - alias Assistant Manager, IT, Admission. (Admission) - _telephoneNumber 609-258-1590 - email jbickel@Princeton.EDU -} - - -define contact { - contact_name Joseph M. Karam - use Princeton-Contact - alias Associate Director, Networking and Monitoring Services, Enterpri (Enterprise Infrastructure Services, Office of Information Techno) - _telephoneNumber 609-258-2774 - email jkaram@Princeton.EDU -} - - -define contact { - contact_name Joseph P. Keane - use Princeton-Contact - alias Application Delivery Specialist, Research and Project Administra (Research and Project Administration) - _telephoneNumber 609-258-4964 - email jkeane@Princeton.EDU -} - - -define contact { - contact_name Joshua E. Linkov - use Princeton-Contact - alias Assistant University Architect, Office of the University Archite (Office of the University Architect) - _telephoneNumber 609-258-9818 - email jlinkov@Princeton.EDU -} - - -define contact { - contact_name Joshua P. Thomas - use Princeton-Contact - alias Director of Information Technology, University Services. (University Services) - _telephoneNumber 609-258-5405 - email jt7@princeton.edu -} - - -define contact { - contact_name Judith E. Oakley - use Princeton-Contact - alias Information Technology Manager, University Health Services. (University Health Services) - _telephoneNumber 609-258-2680 - email joakley@Princeton.EDU -} - - -define contact { - contact_name Julie A. Angarone - use Princeton-Contact - alias Departmental Computing Support Specialist, Art and Archaeology a (Art and Archaeology) - _telephoneNumber 609-258-5864 - email angarone@Princeton.EDU -} - - -define contact { - contact_name Justin T. Kazlauskas - use Princeton-Contact - alias Senior Technical Support Specialist, Department of Spanish and P (Department of Spanish and Portuguese) - _telephoneNumber 609-258-7690 - email jk14@princeton.edu -} - - -define contact { - contact_name Kai C. Laidlaw - use Princeton-Contact - alias Technical Support Specialist, Classics. (Classics) - _telephoneNumber 609-258-7952 - email klaidlaw@princeton.edu -} - - -define contact { - contact_name Kathleen D. Haney - use Princeton-Contact - alias Associate Director, Technical Services, Advancement Technology S (Advancement Technology Services, University Advancement) - _telephoneNumber 609-258-1379 - email kathyh@Princeton.EDU -} - - -define contact { - contact_name Keith B. Martin - use Princeton-Contact - alias Associate Director, Identity & Access Management, Enterprise Inf (Enterprise Infrastructure Services, Office of Information Techno) - _telephoneNumber 609-258-5769 - email keith.martin@princeton.edu -} - - -define contact { - contact_name Keith Tuccillo - use Princeton-Contact - alias Manager, Security & Access Control, Site Protection-Administrati (Site Protection-Administration) - _telephoneNumber 609-258-8983 - email tuccillo@Princeton.EDU -} - - -define contact { - contact_name Kevin D. Hoffman - use Princeton-Contact - alias Senior Systems Administrator, Enterprise Infrastructure Services (Enterprise Infrastructure Services, Office of Information Techno) - _telephoneNumber 609-258-2545 - email kh6@princeton.edu -} - - -define contact { - contact_name Kevin J. Czarnecki - use Princeton-Contact - alias IT Security Analyst. (Information Technology, Princeton Plasma Physics Laboratory) - _telephoneNumber 609-243-2123 - email kczarnec@Princeton.EDU -} - - -define contact { - contact_name Kevin R. Guilbault - use Princeton-Contact - alias Tech Support/ITSM Proj Analyst, University Services. (University Services) - _telephoneNumber 609-258-7172 - email kg3@princeton.edu -} - - -define contact { - contact_name Kevin R. Perry - use Princeton-Contact - alias Senior Architect, Software Development, Software and Application (Software and Application Services, Office of Information Technol) - _telephoneNumber 609-258-4697 - email perry@Princeton.EDU -} - - -define contact { - contact_name Kevin W. Mensch - use Princeton-Contact - alias Technical Support Analyst/Manager. (English) - _telephoneNumber 609-258-8458 - email kmensch@Princeton.EDU -} - - -define contact { - contact_name Kim Y. Huang - use Princeton-Contact - alias Senior Application Developer, Software and Application Services, (Software and Application Services, Office of Information Technol) - _telephoneNumber 609-258-8532 - email kimhuang@princeton.edu -} - - -define contact { - contact_name Kristian A. Kauker - use Princeton-Contact - alias Assistant Manager, Learning Space Support, Support Services, Off (Support Services, Office of Information Technology) - _telephoneNumber 609-258-4226 - email kkauker@Princeton.EDU -} - - -define contact { - contact_name Lakshmi Annamalai - use Princeton-Contact - alias Senior Developer/Analyst II, Software and Application Services, (Software and Application Services, Office of Information Technol) - _telephoneNumber 609-258-0344 - email lannamal@Princeton.EDU -} - - -define contact { - contact_name Life Safety Group - use Princeton-Contact - alias Site Protection-Administration - email lssuser@Princeton.EDU -} - - -define contact { - contact_name Mariann S. Miller - use Princeton-Contact - alias Senior Process Manager, Service Management Office, Office of Inf (Service Management Office, Office of Information Technology) - _telephoneNumber 609-258-0756 - email mariann.miller@princeton.edu -} - - -define contact { - contact_name Mark A. Ratliff - use Princeton-Contact - alias Senior Architect, Cloud Infrastructure Services and Digital Repo (Enterprise Infrastructure Services, Office of Information Techno) - _telephoneNumber 609-258-0228 - email ratliff@Princeton.EDU -} - - -define contact { - contact_name Mark Duverge - use Princeton-Contact - alias Systems Infrastructure Associate, Enterprise Infrastructure Serv (Enterprise Infrastructure Services, Office of Information Techno) - _telephoneNumber 609-258-9728 - email duvergem@Princeton.EDU -} - - -define contact { - contact_name Mark J. Pellecchia - use Princeton-Contact - alias Client Systems Specialist, Support Services, Office of Informati (Support Services, Office of Information Technology) - _telephoneNumber 609-258-7982 - email markpe@Princeton.EDU -} - - -define contact { - contact_name Mark Lewis - use Princeton-Contact - alias System Analyst, Facilities Finance and Administrative Services. (Facilities Finance and Administrative Services) - _telephoneNumber 609-258-6794 - email cl3@Princeton.EDU -} - - -define contact { - contact_name Martin Harriss - use Princeton-Contact - alias Storage Infrastructure Lead, Enterprise Infrastructure Services, (Enterprise Infrastructure Services, Office of Information Techno) - _telephoneNumber 609-258-4819 - email martin@Princeton.EDU -} - - -define contact { - contact_name Marvin E. Waterman - use Princeton-Contact - alias Technology Support Manager, Office of the Dean of the Graduate S (Office of the Dean of the Graduate School) - _telephoneNumber 609-258-1393 - _mobile 609-216-5597 - email mwaterma@Princeton.EDU -} - - -define contact { - contact_name Matt OConnell - use Princeton-Contact - alias Lead Developer/System Administrator, Service Management Office, (Service Management Office, Office of Information Technology) - _telephoneNumber 609-258-3822 - email mjo3@princeton.edu -} - - -define contact { - contact_name Matt S. Marnett - use Princeton-Contact - alias Manager of Technology and Information Systems, Art Museum. (Art Museum) - _telephoneNumber 609-258-9185 - _mobile 609-216-9832 - email mmarnett@princeton.edu -} - - -define contact { - contact_name Matthew G. Hood - use Princeton-Contact - alias Senior Developer/Analyst I, Software and Application Services, O (Software and Application Services, Office of Information Technol) - _telephoneNumber 609-258-7878 - email mhood@Princeton.EDU -} - - -define contact { - contact_name Matthew H. Cahn - use Princeton-Contact - alias Systems Administrator for Biology, Research Computing, Office of (Research Computing, Office of Information Technology) - _telephoneNumber 609-258-5404 - email mcahn@Princeton.EDU -} - - -define contact { - contact_name Matthew L. Woodmansee - use Princeton-Contact - alias Application Delivery Specialist, Planning and Construction Manag (Facilities Finance and Administrative Services) - _telephoneNumber 609-258-0597 - email mwoodmansee@princeton.edu -} - - -define contact { - contact_name Maureen E. OConnor - use Princeton-Contact - alias Storage Infrastructure Analyst, Enterprise Infrastructure Servic (Enterprise Infrastructure Services, Office of Information Techno) - _telephoneNumber 609-258-0203 - email maureeno@Princeton.EDU -} - - -define contact { - contact_name Mibs Southerland - use Princeton-Contact - alias Senior Associate Director for Classes and Reunions, Office of Al (Office of Alumni Affairs, University Advancement) - _telephoneNumber 609-258-5836 - email milbrey@Princeton.EDU -} - - -define contact { - contact_name Michael D. Langley - use Princeton-Contact - alias Technical Support Manager, Music. (Music) - _telephoneNumber 609-258-0233 - email langley@princeton.edu -} - - -define contact { - contact_name Michael D. Muzzie - use Princeton-Contact - alias Manager, Web Development, Software and Application Services, Off (Software and Application Services, Office of Information Technol) - _telephoneNumber 609-258-7911 - _mobile 609-865-0734 - email mdmuzzie@Princeton.EDU -} - - -define contact { - contact_name Michael J. Zarillo - use Princeton-Contact - alias Senior Manager, Custom Solutions and Integration, Software and A (Software and Application Services, Office of Information Technol) - _telephoneNumber 609-258-0464 - email mzarillo@Princeton.EDU -} - - -define contact { - contact_name Michael Zhong - use Princeton-Contact - alias Application Programmer Analyst, Facilities Finance and Administr (Facilities Finance and Administrative Services) - _telephoneNumber 609-258-7027 - email mzhong@Princeton.EDU -} - - -define contact { - contact_name Monika C. Mevenkamp - use Princeton-Contact - alias Digital Repository Infrastructure Developer, Enterprise Infrastr (Enterprise Infrastructure Services, Office of Information Techno) - _telephoneNumber 609-258-4161 - email monikam@princeton.edu -} - - -define contact { - contact_name Nicholas A. Delo - use Princeton-Contact - alias Associate Director, Systems & Virtualization, Enterprise Infrast (Enterprise Infrastructure Services, Office of Information Techno) - _telephoneNumber 609-258-9322 - email ndelo@Princeton.EDU -} - - -define contact { - contact_name Nicholas DiPietro - use Princeton-Contact - alias Server and Support Analyst, Advancement Technology Services, Uni (Advancement Technology Services, University Advancement) - _telephoneNumber 609-258-6213 - email dipietro@Princeton.EDU -} - - -define contact { - contact_name ODOC Linux Admin-JG - use Princeton-Contact - alias Office of the Dean of the College - email docadmjg@princeton.edu -} - - -define contact { - contact_name OIT HWS Netman - use Princeton-Contact - alias Support Services, Office of Information Technology - email netman@princeton.edu -} - - -define contact { - contact_name Open Access Repository - use Princeton-Contact - alias Academic Technology Services, Office of Information Technology - email oar@princeton.edu -} - - -define contact { - contact_name PAC OPM Request - use Princeton-Contact - alias Software and Application Services, Office of Information Technol - email pacreq@Princeton.EDU -} - - -define contact { - contact_name PRISM Computer - use Princeton-Contact - alias Princeton Institute for the Science and Technology of Materials - email przcomp@Princeton.EDU -} - - -define contact { - contact_name Pace Center DCS - use Princeton-Contact - alias Pace Center - email pacedcs@princeton.edu -} - - -define contact { - contact_name Paul W. Beaulieu - use Princeton-Contact - alias Senior PeopleSoft Database Administrator II, Software and Applic (Software and Application Services, Office of Information Technol) - _telephoneNumber 609-258-0261 - email pb17@princeton.edu -} - - -define contact { - contact_name Paula L. Brett - use Princeton-Contact - alias - email plbrett@Princeton.EDU -} - - -define contact { - contact_name Peter T Nowak - use Princeton-Contact - alias Computing Support Lead, Support Services, Office of Information (Support Services, Office of Information Technology) - email pnowak@princeton.edu -} - - -define contact { - contact_name Phillip M. Immordino - use Princeton-Contact - alias Manager,Client Systems Support, Support Services, Office of Info (Support Services, Office of Information Technology) - _telephoneNumber 609-258-1697 - _mobile 609-647-0052 - email pimmo@Princeton.EDU -} - - -define contact { - contact_name Politics Department - use Princeton-Contact - alias Politics - email polhelp@Princeton.EDU -} - - -define contact { - contact_name R. Carl Segers - use Princeton-Contact - alias Senior Developer/Analyst II, Software and Application Services, (Software and Application Services, Office of Information Technol) - _telephoneNumber 609-258-4866 - email carl.segers@princeton.edu -} - - -define contact { - contact_name Rajeshri D. Chokshi - use Princeton-Contact - alias Dept Computing Supp Specialist, Princeton Environmental Institut (Princeton Environmental Institute) - _telephoneNumber 609-258-7446 - email rchokshi@Princeton.EDU -} - - -define contact { - contact_name Randee I. Tengi - use Princeton-Contact - alias Computer Systems Manager/Programmer, Princeton Neuroscience Inst (Princeton Neuroscience Institute) - _telephoneNumber 609-258-5019 - email rit@princeton.edu -} - - -define contact { - contact_name Richard M. Curtis - use Princeton-Contact - alias Director, Outdoor Action Program, Office of the Dean of Undergra (Office of the Dean of Undergraduate Students) - _telephoneNumber 609-258-5621 - email rcurtis@Princeton.EDU -} - - -define contact { - contact_name Rick Pilaro - use Princeton-Contact - alias Technical Support Analyst, Lewis Center for the Arts. (Lewis Center for the Arts) - _telephoneNumber 609-258-5443 - email pilaro@Princeton.EDU -} - - -define contact { - contact_name Ruth D Gittens - use Princeton-Contact - alias Monitoring and Security Systems Analyst, Enterprise Infrastructu (Enterprise Infrastructure Services, Office of Information Techno) - _telephoneNumber 609-258-1985 - email rgittens@princeton.edu -} - - -define contact { - contact_name SCS Operations - use Princeton-Contact - alias Support Services, Office of Information Technology - email scsops@Princeton.EDU -} - - -define contact { - contact_name SOC Sec - use Princeton-Contact - alias Support Services, Office of Information Technology - email ohd-sec@princeton.edu -} - - -define contact { - contact_name Salvatore Urso Jr. - use Princeton-Contact - alias Lead Developer/Analyst I, Software and Application Services, Off (Software and Application Services, Office of Information Technol) - _telephoneNumber 609-258-0838 - email surso@Princeton.EDU -} - - -define contact { - contact_name Samuel S. Wang - use Princeton-Contact - alias Professor of Molecular Biology and the Princeton Neuroscience In (Molecular Biology) - _telephoneNumber 609-258-0388 - email sswang@Princeton.EDU -} - - -define contact { - contact_name Sarah Kampel - use Princeton-Contact - alias Systems Infrastructure Analyst I, Enterprise Infrastructure Serv (Enterprise Infrastructure Services, Office of Information Techno) - _telephoneNumber 609-258-8626 - email skampel@Princeton.EDU -} - - -define contact { - contact_name Sarah Salati Bavuso - use Princeton-Contact - alias Sustainability Manager, Campus Dining, University Services. (Campus Dining, University Services) - _telephoneNumber 609-258-0188 - email salati@Princeton.EDU -} - - -define contact { - contact_name Seas Computer Support - use Princeton-Contact - alias Chemical and Biological Engineering - email seascomp@Princeton.EDU -} - - -define contact { - contact_name Security and Data Protection - use Princeton-Contact - alias Enterprise Infrastructure Services, Office of Information Techno - email sdp@princeton.edu -} - - -define contact { - contact_name Serge J. Goldstein - use Princeton-Contact - alias Associate CIO, IT Architecture, IT Architecture, Office of Infor (IT Architecture, Office of Information Technology) - _telephoneNumber 609-258-6059 - email serge@Princeton.EDU -} - - -define contact { - contact_name Simon C. Lee - use Princeton-Contact - alias Identity Infrastructure Analyst, Enterprise Infrastructure Servi (Enterprise Infrastructure Services, Office of Information Techno) - _telephoneNumber 609-258-0075 - email simonlee@Princeton.EDU -} - - -define contact { - contact_name Sorat Tungkasiri - use Princeton-Contact - alias Associate Director for Educational and Classroom Technology, McG (McGraw Center for Teaching and Learning) - _telephoneNumber 609-258-8778 - email stungkas@princeton.edu -} - - -define contact { - contact_name Stephen J Kim - use Princeton-Contact - alias Associate Director for Information & Technology, Art Museum. (Art Museum) - _telephoneNumber 609-258-7839 - email stephen.kim@princeton.edu -} - - -define contact { - contact_name Stephen M. Elwood - use Princeton-Contact - alias Associate Director for Laboratory Safety, Environmental Health a (Environmental Health and Safety) - _telephoneNumber 609-258-6271 - email selwood@Princeton.EDU -} - - -define contact { - contact_name Steve Albin - use Princeton-Contact - alias Cloud Infrastructure Services Analyst, Enterprise Infrastructure (Enterprise Infrastructure Services, Office of Information Techno) - _telephoneNumber 609-258-6002 - email stevea@Princeton.EDU -} - - -define contact { - contact_name Steve Niedzwiecki - use Princeton-Contact - alias Associate CISO, Information Security Office. (Information Security Office) - _telephoneNumber 609-258-1618 - _mobile 609-731-2941 - email steven@princeton.edu -} - - -define contact { - contact_name Storage and Automation HostMaster Admin account - use Princeton-Contact - alias Enterprise Infrastructure Services, Office of Information Techno - email sahmadm@princeton.edu -} - - -define contact { - contact_name Tao Ning - use Princeton-Contact - alias Lead Developer/Analyst II, Software and Application Services, Of (Software and Application Services, Office of Information Technol) - _telephoneNumber 609-258-2657 - email tning@Princeton.EDU -} - - -define contact { - contact_name Thomas E. Dommermuth - use Princeton-Contact - alias Manager, ERP Human Resources, Payroll & Benefits, Software and A (Software and Application Services, Office of Information Technol) - _telephoneNumber 609-258-1882 - email tdommer@Princeton.EDU -} - - -define contact { - contact_name Thomas J. Francais - use Princeton-Contact - alias Senior Client Systems Specialist, Support Services, Office of In (Support Services, Office of Information Technology) - _telephoneNumber 609-258-1922 - email tjf@Princeton.EDU -} - - -define contact { - contact_name Timothy J. Hogan - use Princeton-Contact - alias Senior Manager Custom Solutions and Integration, Software and Ap (Software and Application Services, Office of Information Technol) - _telephoneNumber 609-258-5982 - email tim.hogan@princeton.edu -} - - -define contact { - contact_name Todd S. Whitaker - use Princeton-Contact - alias Lead Database Administrator I, Software and Application Services (Software and Application Services, Office of Information Technol) - _telephoneNumber 609-258-0802 - email whitaker@Princeton.EDU -} - - -define contact { - contact_name University Services IT Support - use Princeton-Contact - alias Office of the Vice President for University Services - email uss-it@princeton.edu -} - - -define contact { - contact_name Vinod K. Gupta - use Princeton-Contact - alias Director, Computing Services, Physics. (Physics) - _telephoneNumber 609-258-6302 - _mobile 609-216-0766 - email vinod@princeton.edu -} - - -define contact { - contact_name Viviane Bassily - use Princeton-Contact - alias CAD Archivist, Facilities Finance and Administrative Services. (Facilities Finance and Administrative Services) - _telephoneNumber 609-258-4926 - email vbassily@princeton.edu -} - - -define contact { - contact_name WWS Computing Services - use Princeton-Contact - alias Woodrow Wilson School - email wwscs@Princeton.EDU -} - - -define contact { - contact_name Wanda H. Holovacs - use Princeton-Contact - alias Program Coordinator, McGraw Center for Teaching and Learning. (McGraw Center for Teaching and Learning) - _telephoneNumber 609-258-3013 - email wandas@Princeton.EDU -} - - -define contact { - contact_name Wayne W. Appleton - use Princeton-Contact - alias Technical Support Analyst, Population Research. (Population Research) - _telephoneNumber 609-258-4944 - email appleton@Princeton.EDU -} - - -define contact { - contact_name Web Development Service - use Princeton-Contact - alias Academic Technology Services, Office of Information Technology - email wdsoit@princeton.edu -} - - -define contact { - contact_name Web Development Services - use Princeton-Contact - alias Academic Technology Services, Office of Information Technology - _telephoneNumber 609-258-6907 - email webservices@Princeton.EDU -} - - -define contact { - contact_name William G. Guthe - use Princeton-Contact - alias Senior Geographical Information Systems Visualization Analyst, R (Research Computing, Office of Information Technology) - _telephoneNumber 609-258-4609 - email wguthe@Princeton.EDU -} - - -define contact { - contact_name facmcadm - use Princeton-Contact - alias Facilities Finance and Administrative Services - email facmcadm@princeton.edu -} - - -define contact { - contact_name Bradley Parkot - use Princeton-Contact - alias Bradley Parkot (css-inc) - email b.parkot@css-inc.net -} - -define contact { - contact_name Ed Biedricki - use Princeton-Contact - alias Ed Biedricki (css-inc) - email e.biedricki@css-inc.net -} - -define contact { - contact_name Keith Tuccillo css-inc - use Princeton-Contact - alias Keith Tuccillo (css-inc) - email m.manna@css-inc.net -} - - -# 'host-notify-by-email' command definition -define command { - command_name host-notify-by-email - command_line /usr/bin/printf "%b" "***** Nagios *****\n\nNotification Type: $NOTIFICATIONTYPE$\nHost: $HOSTNAME$\nState: $HOSTSTATE$\nAddress: $HOSTADDRESS$\nInfo: $HOSTOUTPUT$\n\nDate/Time: $LONGDATETIME$\n" | /bin/mail -s "Host $HOSTSTATE$ alert for $HOSTNAME$!" $CONTACTEMAIL$ 2>>/usr/local/monitoring/log/mail.err$USER9$ /bin/echo -e "Node=$HOSTNAME$\nType=UP/DOWN\nResource=N/A\nMetric=N/A\nSeverity=$HOSTSTATE$\nDescription=$HOSTOUTPUT$" | /usr/local/monitoring/princeton/puevent ais-sn300w:1024 public 2>>/usr/local/monitoring/log/puevent.log -} - - -# route -T 1 uses the Comcast routing table -define command { - command_name host-notify-by-email-via-Comcast_Gmail - command_line $USER1$/ssh_key_include_wrapper backupvpn.Princeton.EDU 'route -T 1 exec /usr/local/monitoring/libexec/sendEmail -f "Nagios Monitoring" -t $CONTACTEMAIL$ -s smtp.gmail.com:587 -o tls=yes -xu groundwk@Princeton.EDU -xp $USER30$ -u "Host $HOSTSTATE$ alert for $HOSTNAME$!" -m "***** Nagios *****\n\nNotification Type: $NOTIFICATIONTYPE$\nHost: $HOSTNAME$\nState: $HOSTSTATE$\nAddress: $HOSTADDRESS$\nInfo: $HOSTOUTPUT$\n\nDate/Time: $LONGDATETIME$\n"' -} - - -# route -T 2 uses the Verizon routing table -define command { - command_name host-notify-by-email-via-Verizon_Gmail - command_line $USER1$/ssh_key_include_wrapper backupvpn.Princeton.EDU 'route -T 2 exec /usr/local/monitoring/libexec/sendEmail -f "Nagios Monitoring" -t $CONTACTEMAIL$ -s smtp.gmail.com:587 -o tls=yes -xu groundwk@Princeton.EDU -xp $USER30$ -u "Host $HOSTSTATE$ alert for $HOSTNAME$!" -m "***** Nagios *****\n\nNotification Type: $NOTIFICATIONTYPE$\nHost: $HOSTNAME$\nState: $HOSTSTATE$\nAddress: $HOSTADDRESS$\nInfo: $HOSTOUTPUT$\n\nDate/Time: $LONGDATETIME$\n"' -} - - -define command { - command_name host-notify-by-email-pu - command_line /usr/bin/printf "%b" "$HOSTNAME$ $HOSTSTATE$ at $SHORTDATETIME$\n$HOSTOUTPUT$\n" | $USER1$/custommailsend -H "Subject:$HOSTNAME$ is $HOSTSTATE$" $CONTACTEMAIL$ $CONTACTPAGER$ 2>>/usr/local/monitoring/log/mail.err$USER9$ /bin/echo -e "Node=$HOSTNAME$\nType=UP/DOWN\nResource=N/A\nMetric=N/A\nSeverity=$HOSTSTATE$\nDescription=$HOSTOUTPUT$" | /usr/local/monitoring/princeton/puevent ais-sn300w:1024 public 2>>/usr/local/monitoring/log/puevent.log -} - -# 'host-notify-by-epager' command definition -define command { - command_name host-notify-by-epager - command_line /usr/bin/printf "%b" "Host '$HOSTALIAS$' is $HOSTSTATE$\nInfo: $HOSTOUTPUT$\nTime: $LONGDATETIME$" | /bin/mail -s "$NOTIFICATIONTYPE$ alert - Host $HOSTNAME$ is $HOSTSTATE$" $CONTACTPAGER$ -} - - -define command { - command_name host-notify-by-punotify - command_line /usr/bin/printf "%b" "notify_host '$LASTHOSTCHECK$'\t'$HOSTNAME$'\t'$HOSTGROUPNAMES$'\t'$HOSTSTATE$'\t'$HOSTSTATETYPE$'\t'$HOSTDURATIONSEC$'\t'$HOSTOUTPUT$'\t'$HOSTPERFDATA$'\n" >> /usr/local/monitoring/log/punotify.txt -} - - -define command { - command_name host-notify-by-sendEmail - command_line /usr/bin/printf "%b" "+++++ HOST $NOTIFICATIONTYPE$ : $HOSTSTATE$ +++++
$LONGDATETIME$

Host: $HOSTALIAS$ ($HOSTADDRESS$)
Message: $HOSTOUTPUT$" | $USER1$/sendEmail -q -f $ADMINEMAIL$ -t $CONTACTEMAIL$ -u "[GW] ++ $HOSTNAME$ : $HOSTSTATE$ ++" 2>>/usr/local/monitoring/log/mail.err$USER9$ /bin/echo -e "Node=$HOSTNAME$\nType=UP/DOWN\nResource=N/A\nMetric=N/A\nSeverity=$HOSTSTATE$\nDescription=$HOSTOUTPUT$" | /usr/local/monitoring/princeton/puevent ais-sn300w:1024 public 2>>/usr/local/monitoring/log/puevent.log -} - - -define command { - command_name host-notify-dummy - command_line /bin/true -} - - -define command { - command_name host-notify-pu-default - command_line $USER1$/pu_host_notify_default.sh '$LASTHOSTCHECK$' '$HOSTNAME$' '$HOSTGROUPNAMES$' '$HOSTSTATE$' '$HOSTSTATETYPE$' '$HOSTDURATIONSEC$' '$HOSTOUTPUT$' '$HOSTPERFDATA$' 2>>/usr/local/monitoring/log/mail.err$USER9$ /bin/echo -e "Node=$HOSTNAME$\nType=UP/DOWN\nResource=N/A\nMetric=N/A\nSeverity=$HOSTSTATE$\nDescription=$HOSTOUTPUT$" | /usr/local/monitoring/princeton/puevent ais-sn300w:1024 public 2>>/usr/local/monitoring/log/puevent.log -} - - -define command { - command_name launch_perfdata_process - command_line $USER2$/launch_perf_data_processing -} - -# 'notify-by-email' command definition -define command { - command_name notify-by-email - command_line /usr/bin/printf "%b" "***** Nagios *****\n\nNotification Type: $NOTIFICATIONTYPE$\n\nService: $SERVICEDESC$\nHost: $HOSTALIAS$\nAddress: $HOSTADDRESS$\nState: $SERVICESTATE$\n\nDate/Time: $LONGDATETIME$\n\nAdditional Info:\n\n$SERVICEOUTPUT$\n$LONGSERVICEOUTPUT$" | /bin/mail -s "** $NOTIFICATIONTYPE$ alert - $HOSTNAME$/$SERVICEDESC$ is $SERVICESTATE$ **" $CONTACTEMAIL$ 2>>/usr/local/monitoring/log/mail.err$USER9$ /bin/echo -e "Node=$HOSTNAME$\nType=$SERVICEDESC$\nResource=N/A\nMetric=N/A\nSeverity=$SERVICESTATE$\nDescription=$SERVICEOUTPUT$ $LONGSERVICEOUTPUT$" | /usr/local/monitoring/princeton/puevent ais-sn300w:1024 public 2>>/usr/local/monitoring/log/puevent.log -} - -# 'notify-by-epager' command definition -define command { - command_name notify-by-epager - command_line /usr/bin/printf "%b" "Service: $SERVICEDESC$\nHost: $HOSTNAME$\nAddress: $HOSTADDRESS$\nState: $SERVICESTATE$\nInfo: $SERVICEOUTPUT$\nDate: $LONGDATETIME$" | /bin/mail -s "$NOTIFICATIONTYPE$: $HOSTALIAS$/$SERVICEDESC$ is $SERVICESTATE$" $CONTACTPAGER$ -} - - -define command { - command_name process_service_perfdata_db - command_line $USER2$/process_service_perf_db.pl "$LASTSERVICECHECK$" "$HOSTNAME$" "$SERVICEDESC$" "$SERVICEOUTPUT$" "$SERVICEPERFDATA$" -} - - -define command { - command_name process_service_perfdata_db_strings - command_line $USER2$/process_service_perf_db_strings.pl "$LASTSERVICECHECK$" "$HOSTNAME$" "$SERVICEDESC$" "$SERVICEOUTPUT$" "$SERVICEPERFDATA$" -} - - -define command { - command_name process_service_perfdata_file - command_line $USER2$/process_service_perf_db_file.pl -} - - -define command { - command_name service-notify-by-email-pu - command_line /usr/bin/printf "%b" "$HOSTNAME$ $SERVICEDESC$ $SERVICESTATE$ at $SHORTDATETIME$\n\n$SERVICEOUTPUT$\n$LONGSERVICEOUTPUT$\n" | $USER1$/custommailsend -H "Subject:$HOSTNAME$/$SERVICEDESC$ is $SERVICESTATE$" $CONTACTEMAIL$ $CONTACTPAGER$ 2>>/usr/local/monitoring/log/mail.err$USER9$ /bin/echo -e "Node=$HOSTNAME$\nType=$SERVICEDESC$\nResource=N/A\nMetric=N/A\nSeverity=$SERVICESTATE$\nDescription=$SERVICEOUTPUT$ $LONGSERVICEOUTPUT$" | /usr/local/monitoring/princeton/puevent ais-sn300w:1024 public 2>>/usr/local/monitoring/log/puevent.log -} - - -# route -T 1 uses the Comcast routing table -define command { - command_name service-notify-by-email-via-Comcast_Gmail - #command_line /bin/echo /usr/bin/ssh backupvpn.Princeton.EDU "route -T 1 exec /usr/local/monitoring/libexec/sendEmail -f \"Nagios Monitoring\" -t $CONTACTEMAIL$ -s smtp.gmail.com:587 -o tls=yes -xu groundwk@Princeton.EDU -xp $USER30$ -u \"** $NOTIFICATIONTYPE$ alert - $HOSTNAME$/$SERVICEDESC$ is $SERVICESTATE$ **\" -m \"***** Nagios *****\n\nNotification Type: $NOTIFICATIONTYPE$\n\nService: $SERVICEDESC$\nHost: $HOSTALIAS$\nAddress: $HOSTADDRESS$\nState: $SERVICESTATE$\n\nDate/Time: $LONGDATETIME$\n\nAdditional Info:\n\n$SERVICEOUTPUT$\"" - command_line $USER1$/ssh_key_include_wrapper backupvpn.Princeton.EDU "route -T 1 exec /usr/local/monitoring/libexec/sendEmail -f \"Nagios Monitoring\" -t $CONTACTEMAIL$ -s smtp.gmail.com:587 -o tls=yes -xu groundwk@Princeton.EDU -xp $USER30$ -u \"** $NOTIFICATIONTYPE$ alert - $HOSTNAME$/$SERVICEDESC$ is $SERVICESTATE$ **\" -m \"***** Nagios *****\n\nNotification Type: $NOTIFICATIONTYPE$\n\nService: $SERVICEDESC$\nHost: $HOSTALIAS$\nAddress: $HOSTADDRESS$\nState: $SERVICESTATE$\n\nDate/Time: $LONGDATETIME$\n\nAdditional Info:\n\n$SERVICEOUTPUT$\n$LONGSERVICEOUTPUT\n\"" -} - - -# route -T 2 uses the Verizon routing table -define command { - command_name service-notify-by-email-via-Verizon_Gmail - #command_line /bin/echo /usr/bin/ssh backupvpn.Princeton.EDU "route -T 2 exec /usr/local/monitoring/libexec/sendEmail -f \"Nagios Monitoring\" -t $CONTACTEMAIL$ -s smtp.gmail.com:587 -o tls=yes -xu groundwk@Princeton.EDU -xp $USER30$ -u \"** $NOTIFICATIONTYPE$ alert - $HOSTNAME$/$SERVICEDESC$ is $SERVICESTATE$ **\" -m \"***** Nagios *****\n\nNotification Type: $NOTIFICATIONTYPE$\n\nService: $SERVICEDESC$\nHost: $HOSTALIAS$\nAddress: $HOSTADDRESS$\nState: $SERVICESTATE$\n\nDate/Time: $LONGDATETIME$\n\nAdditional Info:\n\n$SERVICEOUTPUT$\"" - command_line $USER1$/ssh_key_include_wrapper backupvpn.Princeton.EDU "route -T 2 exec /usr/local/monitoring/libexec/sendEmail -f \"Nagios Monitoring\" -t $CONTACTEMAIL$ -s smtp.gmail.com:587 -o tls=yes -xu groundwk@Princeton.EDU -xp $USER30$ -u \"** $NOTIFICATIONTYPE$ alert - $HOSTNAME$/$SERVICEDESC$ is $SERVICESTATE$ **\" -m \"***** Nagios *****\n\nNotification Type: $NOTIFICATIONTYPE$\n\nService: $SERVICEDESC$\nHost: $HOSTALIAS$\nAddress: $HOSTADDRESS$\nState: $SERVICESTATE$\n\nDate/Time: $LONGDATETIME$\n\nAdditional Info:\n\n$SERVICEOUTPUT$\n$LONGSERVICEOUTPUT$\n\"" -} - - -define command { - command_name service-notify-by-email-pu-high-importance - command_line /usr/bin/printf "%b" "$HOSTNAME$ $SERVICEDESC$ $SERVICESTATE$ at $SHORTDATETIME$\n\n$SERVICEOUTPUT$\n$LONGSERVICEOUTPUT$\n" | $USER1$/custommailsend -H "X-Message-Flag:Follow up" -H "Importance:high" -H "Subject:$HOSTNAME$/$SERVICEDESC$ is $SERVICESTATE$" $CONTACTEMAIL$ 2>>/usr/local/monitoring/log/mail.err$USER9$ /bin/echo -e "Node=$HOSTNAME$\nType=$SERVICEDESC$\nResource=N/A\nMetric=N/A\nSeverity=$SERVICESTATE$\nDescription=$SERVICEOUTPUT$ $LONGSERVICEOUTPUT$" | /usr/local/monitoring/princeton/puevent ais-sn300w:1024 public 2>>/usr/local/monitoring/log/puevent.log -} - - -define command { - command_name service-notify-by-punotify - command_line /usr/bin/printf "%b" "notify_service '$LASTHOSTCHECK$'\t'$HOSTNAME$'\t'$SERVICEDESC$'\t'$HOSTGROUPNAMES$'\t'$SERVICEGROUPNAME$'\t'$SERVICESTATE$'\t'$SERVICESTATETYPE$'\t'$SERVICEDURATIONSEC$'\t'$HOSTDURATIONSEC$'\t'$SERVICEOUTPUT$\n$LONGSERVICEOUTPUT$'\t'$SERVICEPERFDATA$'\n" >> /usr/local/monitoring/log/punotify.txt -} - - -define command { - command_name service-notify-by-sendEmail - command_line /usr/bin/printf "%b" "+++++ SERVICE $NOTIFICATIONTYPE$ : $SERVICESTATE$ +++++
$LONGDATETIME$

Host: $HOSTALIAS$ ($HOSTADDRESS$)
Message: $SERVICEOUTPUT$\n$LONGSERVICEOUTPUT$" | $USER1$/sendEmail -q -f $ADMINEMAIL$ -t $CONTACTEMAIL$ -u "[GW] ++ $HOSTNAME$ : $SERVICEDESC$ : $SERVICESTATE$ ++" 2>>/usr/local/monitoring/log/mail.err$USER9$ /bin/echo -e "Node=$HOSTNAME$\nType=$SERVICEDESC$\nResource=N/A\nMetric=N/A\nSeverity=$SERVICESTATE$\nDescription=$SERVICEOUTPUT$ $LONGSERVICEOUTPUT$" | /usr/local/monitoring/princeton/puevent ais-sn300w:1024 public 2>>/usr/local/monitoring/log/puevent.log -} - - -define command { - command_name service-notify-dummy - command_line /bin/true -} - - -define command { - command_name service-notify-pu-default - command_line $USER1$/pu_service_notify_default.sh '$LASTHOSTCHECK$' '$HOSTNAME$' '$SERVICEDESC$' '$HOSTGROUPNAMES$' '$SERVICEGROUPNAME$' '$SERVICESTATE$' '$SERVICESTATETYPE$' '$SERVICEDURATIONSEC$' '$HOSTDURATIONSEC$' "$SERVICEOUTPUT$\n$LONGSERVICEOUTPUT$" "$SERVICEPERFDATA$" 2>>/usr/local/monitoring/log/mail.err$USER9$ /bin/echo -e "Node=$HOSTNAME$\nType=$SERVICEDESC$\nResource=N/A\nMetric=N/A\nSeverity=$SERVICESTATE$\nDescription=$SERVICEOUTPUT$ $LONGSERVICEOUTPUT$" | /usr/local/monitoring/princeton/puevent ais-sn300w:1024 public 2>>/usr/local/monitoring/log/puevent.log -} - - -define command { - command_name service-notify-pu-igor - command_line /bin/echo '$LASTHOSTCHECK$' '$HOSTNAME$' '$SERVICEDESC$' '$HOSTGROUPNAME$' '$SERVICEGROUPNAME$' '$SERVICESTATE$' '$SERVICESTATETYPE$' '$SERVICEDURATIONSEC$' '$HOSTDURATIONSEC$' '$SERVICEOUTPUT$\n$LONGSERVICEOUTPUT$' '$SERVICEPERFDATA$' | $USER1$/pu_service_notify_default.sh.igor 2>>/usr/local/monitoring/log/mail.err -} - - -define command { - command_name service-notify-system - command_line /usr/bin/printf "%b" "***** Nagios *****\n\nNotification Type: $NOTIFICATIONTYPE$\n\nService: $SERVICEDESC$\nHost: $HOSTALIAS$\nAddress: $HOSTADDRESS$\nState: $SERVICESTATE$\n\nDate/Time: $LONGDATETIME$\n\nAdditional Info:\n\n$SERVICEOUTPUT$\n$LONGSERVICEOUTPUT$" | /bin/mail -s "** $NOTIFICATIONTYPE$ alert - $HOSTALIAS$/$SERVICEDESC$ is $SERVICESTATE$ **" $CONTACTEMAIL$ 2>>/usr/local/monitoring/log/mail.err -} -# -# $Header: /usr/local/monitoring/nagios/etc/objects/RCS/time_periods.cfg,v 1.7 2014/09/12 21:00:54 nagios Exp nagios $ -# -# Time period definitions -# - -# All day, every day. -define timeperiod { - timeperiod_name 24x7 - alias 24 Hours A Day, 7 Days A Week - sunday 00:00-24:00 - friday 00:00-24:00 - saturday 00:00-24:00 - wednesday 00:00-24:00 - thursday 00:00-24:00 - monday 00:00-24:00 - tuesday 00:00-24:00 -} - -define timeperiod { - timeperiod_name 7x4 - alias 7am to 4pm weekdays (Normal ESS work time) - friday 07:00-16:00 - wednesday 07:00-16:00 - thursday 07:00-16:00 - monday 07:00-16:00 - tuesday 07:00-16:00 -} - -# 'workhours' timeperiod definition -define timeperiod { - timeperiod_name 8x5 - alias "Normal" Working Hours - friday 08:00-17:00 - wednesday 08:00-17:00 - thursday 08:00-17:00 - monday 08:00-17:00 - tuesday 08:00-17:00 -} - -# 9-5 working hours -define timeperiod { - timeperiod_name 9x5 - alias Other Working Hours - friday 09:00-17:00 - wednesday 09:00-17:00 - thursday 09:00-17:00 - monday 09:00-17:00 - tuesday 09:00-17:00 -} - -# Princeton Development Dispatcher service on dev-webprod is off during the summer -define timeperiod { - timeperiod_name Dev Dispatcher - alias Dev Dispatcher on dev-webprod off during the summer - september 1 - june 30 / 1 00:00-24:00 -} - -# egn-dome-wwwinterface down from April 21st -> November 31st -define timeperiod { - timeperiod_name EGN Dome WWWInterface - alias egn-dome-wwwinterface off during the summer/fall - december 1 - april 20 / 1 00:00-24:00 -} - -# Listserv is doing housekeeping around midnight daily. This timeperiod is to avoid checking listserv during this period -- https://opm.princeton.edu/displayproblem.plx?id=1706194 -define timeperiod { - timeperiod_name Listserv_hours - alias Hours when Listserv is operational - sunday 00:35-23:45 - friday 00:35-23:45 - saturday 00:35-23:45 - wednesday 00:35-23:45 - thursday 00:35-23:45 - monday 00:35-23:45 - tuesday 00:35-23:45 -} - -# Offhours 8x5 -define timeperiod { - timeperiod_name Outside 8x5 - alias Offhours 8x5 - sunday 00:00-24:00 - friday 17:00-24:00,00:00-08:00 - saturday 00:00-24:00 - wednesday 17:00-24:00,00:00-08:00 - thursday 17:00-24:00,00:00-08:00 - monday 17:00-24:00,00:00-08:00 - tuesday 17:00-24:00,00:00-08:00 -} - -# deptaedit-qa is undergoing synchronization daily 12:00-3am during which it's not accessible -- https://opm.princeton.edu/displayproblem.plx?id=1707246 -# finhypapp's and finhypdb's are undergoing restart at this time -define timeperiod { - timeperiod_name Except 23:55-6:05 - alias Hours except 23:55 to 6:05 - sunday 06:05-23:55 - friday 06:05-23:55 - saturday 06:05-23:55 - wednesday 06:05-23:55 - thursday 06:05-23:55 - monday 06:05-23:55 - tuesday 06:05-23:55 -} - -define timeperiod { - timeperiod_name Except 23:55-3:05 - alias Hours except 23:55 to 3:05 - sunday 03:05-23:55 - friday 03:05-23:55 - saturday 03:05-23:55 - wednesday 03:05-23:55 - thursday 03:05-23:55 - monday 03:05-23:55 - tuesday 03:05-23:55 -} - -# 'none' timeperiod definition -define timeperiod { - timeperiod_name none - alias No Time Is A Good Time -} - -# 'nonworkhours' timeperiod definition -define timeperiod { - timeperiod_name nonworkhours - alias Non-Work Hours - sunday 00:00-24:00 - friday 00:00-09:00,17:00-24:00 - saturday 00:00-24:00 - wednesday 00:00-09:00,17:00-24:00 - thursday 00:00-09:00,17:00-24:00 - monday 00:00-09:00,17:00-24:00 - tuesday 00:00-09:00,17:00-24:00 -} - -# time_periods roxen-devedit -define timeperiod { - timeperiod_name roxen-devedit - alias Daytime hours for Roxen devedit response check - sunday 06:00-21:00 - friday 06:00-21:00 - saturday 06:00-21:00 - wednesday 06:00-21:00 - thursday 06:00-21:00 - monday 06:00-21:00 - tuesday 06:00-21:00 -} - -# time_periods score_hours -define timeperiod { - timeperiod_name score_hours - alias Score: available from 7:30am until 2:00am the following morning - sunday 00:00-02:00,07:30-24:00 - friday 00:00-02:00,07:30-24:00 - saturday 00:00-02:00,07:30-24:00 - wednesday 00:00-02:00,07:30-24:00 - thursday 00:00-02:00,07:30-24:00 - monday 00:00-02:00,07:30-24:00 - tuesday 00:00-02:00,07:30-24:00 -} - -# time_periods win_tdpexecc -define timeperiod { - timeperiod_name win_tdpexecc - alias Check for TSM Exchange backup process - friday 10:15-12:00,13:00-17:00 - saturday 10:15-12:00,13:00-17:00 - wednesday 10:15-12:00,13:00-17:00 - thursday 10:15-12:00,13:00-17:00 - monday 10:15-12:00,13:00-17:00 - tuesday 10:15-12:00,13:00-17:00 -} - -# no 11:55pm->12:10am (fac-rds-200w) -define timeperiod { - timeperiod_name Except 11:55-12:10 - alias Except 11:55pm to 12:10am - friday 00:10-23:55 - saturday 00:10-23:55 - sunday 00:10-23:55 - monday 00:10-23:55 - tuesday 00:10-23:55 - wednesday 00:10-23:55 - thursday 00:10-23:55 -} - -# no 11:45pm->12:05am (Facsmax) -define timeperiod { - timeperiod_name Except 11:45-12:05 - alias Except 11:45pm to 12:05am - friday 00:05-23:45 - saturday 00:05-23:45 - sunday 00:05-23:45 - monday 00:05-23:45 - tuesday 00:05-23:45 - wednesday 00:05-23:45 - thursday 00:05-23:45 -} - -# Except 1-3am every day -define timeperiod { - timeperiod_name Except 1-3am - alias Except 1:00am to 3:00am - friday 00:00-01:00,03:00-24:00 - saturday 00:00-01:00,03:00-24:00 - sunday 00:00-01:00,03:00-24:00 - monday 00:00-01:00,03:00-24:00 - tuesday 00:00-01:00,03:00-24:00 - wednesday 00:00-01:00,03:00-24:00 - thursday 00:00-01:00,03:00-24:00 -} - -define timeperiod { - timeperiod_name Gearman server - alias Gearman server restart - sunday 00:00-00:15 -} - -define timeperiod { - timeperiod_name Gearman server online - alias Except Gearman server restart - day 1 - -1 00:00-24:00 - exclude Gearman server -} - -define timeperiod { - timeperiod_name 23:15-23:45 Tue and Fri - alias 11:15pm to 11:45pm Tuesday and Friday - tuesday 23:15-23:45 - friday 23:15-23:45 -} - -define timeperiod { - timeperiod_name Except 23:15-23:45 Tue and Fri - alias All times except 11:15pm to 11:45pm on Tuesday and Friday - day 1 - -1 00:00-24:00 - exclude 23:15-23:45 Tue and Fri -} - -# John Wagner - -define timeperiod { - timeperiod_name 4am-9am daily - alias 4am to 9am every day - day 1 - -1 04:00-09:00 -} - -define timeperiod { - timeperiod_name 9am-4am daily - alias 9am to 4am every day (all times except 4am-9am) - day 1 - -1 00:00-24:00 - exclude 4am-9am daily -} - -define timeperiod { - timeperiod_name 3am-4am daily - alias 3am to 4am every day - day 1 - -1 03:00-04:00 -} - -define timeperiod { - timeperiod_name 4am-3am daily - alias 4am to 3am every day (all times except 3am-4am) - day 1 - -1 00:00-24:00 - exclude 3am-4am daily -} - -define timeperiod { - timeperiod_name 9am-3am daily - alias 9am to 3am every day (all times except 3am-9am) - day 1 - -1 00:00-24:00 - exclude 3am-4am daily, 4am-9am daily -} - -define timeperiod { - timeperiod_name Exchange MBX busy - alias Exchange Mailbox servers are busy - friday 17:00-24:00 - saturday 00:00-24:00 - sunday 00:00-24:00 - monday 00:00-15:00 -} - -define timeperiod { - timeperiod_name Exchange MBX OK - alias Exchange Mailbox servers are not busy - friday 00:00-17:00 - monday 15:00-24:00 - tuesday 00:00-24:00 - wednesday 00:00-24:00 - thursday 00:00-24:00 -} - -define timeperiod { - timeperiod_name Exclude Cognos App Server Restart - alias Exclude daily restart time of Cognos App Server - day 1 - -1 05:05-24:00,00:00-04:40 -} - - -define command { - command_name check_nrpe_win_app_shibboleth - command_line $USER1$/check_nrpe -p $USER10$ -t 60 -H $HOSTADDRESS$ -c check_shibboleth -} - -define command { - command_name check_nrpe_win_counters - command_line $USER1$/check_nrpe -u -t $USER3$ -p $USER10$ -H $HOSTADDRESS$ -c check_win_counters -a $ARG1$ "$ARG2$" "$ARG3$" '$ARG4$' '$ARG5$' '$ARG6$' -} - -define command { - command_name check_nrpe_win_counters_test - command_line $USER1$/check_nrpe -t $USER3$ -p $USER10$ -H $HOSTADDRESS$ -c check_win_counters -a "$ARG1$" "$ARG2$" "$ARG3$" '$ARG4$' '$ARG5$' '$ARG6$' -} - -define command { - command_name check_nrpe_win_cpu_old - command_line $USER1$/check_nrpe_win_cpu_wrapper $HOSTADDRESS$ "$NAGIOS_SERVICEDURATION$" "$ARG1$" "$ARG2$" "$ARG3$" -} - -define command { - command_name check_nrpe_win_cpu - command_line $USER1$/check_nrpe -t $USER3$ -p $USER10$ -H $HOSTADDRESS$ -c checkCPU -a warn=$ARG1$ crit=$ARG2$ $ARG3$ ShowAll=long -} - -define command { - command_name check_nrpe_win_cpu_v3 - command_line $USER1$/check_nrpe_v3 -p $USER10$ -H $HOSTADDRESS$ -E -d 0 -t $USER3$:UNKNOWN -A /usr/local/monitoring/etc/net-ca-chain.pem -L HIGH:MEDIUM -S TLSv1.2+ -c checkCPU -a warn=$ARG1$ crit=$ARG2$ $ARG3$ ShowAll=long -} - -define command { - command_name check_nrpe_win_disk_old - command_line $USER1$/check_nrpe -t $USER3$ -H $HOSTADDRESS$ -p $USER10$ -c get_disk -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" -} - -define command { - command_name check_nrpe_win_disk - command_line $USER1$/check_nrpe -t $USER3$ -H $HOSTADDRESS$ -p $USER10$ -c CheckDriveSize -a ShowAll=long MaxWarn=$ARG1$ MaxCrit=$ARG2$ $ARG3$ -} - -define command { - command_name check_nrpe_win_disk_v3 - command_line $USER1$/check_nrpe_v3 -p $USER10$ -H $HOSTADDRESS$ -E -d 0 -t $USER3$:UNKNOWN -A /usr/local/monitoring/etc/net-ca-chain.pem -L HIGH:MEDIUM -S TLSv1.2+ -c CheckDriveSize -a ShowAll=long MaxWarn=$ARG1$ MaxCrit=$ARG2$ $ARG3$ -} - -define command { - command_name check_nrpe_win_all_disks - command_line $USER1$/check_nrpe_wrapper_output_convert $HOSTADDRESS$ CheckDriveSize '-a ShowAll=long CheckAllOthers FilterType=FIXED FilterType=REMOTE Drive=C: MaxWarn=$ARG1$ MaxCrit=$ARG2$' "sed "'s/,/
\n\n/g' -} - -define command { - command_name check_nrpe_win_all_disks_except - command_line $USER1$/check_nrpe_wrapper_output_convert $HOSTADDRESS$ CheckDriveSize '-a ShowAll=long CheckAllOthers FilterType=FIXED FilterType=REMOTE MaxWarn=$ARG1$ MaxCrit=$ARG2$ $ARG3$' "sed "'s/,/
\n\n/g' - ##command_line $USER1$/check_nrpe -t $USER3$ -H $HOSTADDRESS$ -p $USER10$ -c CheckDriveSize -a ShowAll=long CheckAllOthers FilterType=FIXED FilterType=REMOTE MaxWarn=$ARG1$ MaxCrit=$ARG2$ $ARG3$ -} - -define command { - command_name check_nrpe_win_disk_transfers - command_line $USER1$/check_nrpe -t $USER3$ -H $HOSTADDRESS$ -p $USER10$ -c get_disktransfers -a "$HOSTADDRESS$" "Name=$ARG1$" "$ARG2$" "$ARG3$" -} - -define command { - command_name check_nrpe_win_maestro_stdlistsz - command_line $USER1$/check_nrpe -t 60 -H $HOSTADDRESS$ -p $USER10$ -c check_tws_stdlistsz -} - -define command { - command_name check_nrpe_win_mem_old - command_line $USER1$/check_nrpe_win_mem_wrapper $HOSTADDRESS$ "$NAGIOS_SERVICEDURATION$""$ARG1$" "$ARG2$" -} - -define command { - command_name check_nrpe_win_memory_pages - command_line $USER1$/check_nrpe -t $USER3$ -H $HOSTADDRESS$ -p $USER10$ -c get_swapping -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" -} - -define command { - command_name check_nrpe_win_mem - command_line $USER1$/check_nrpe -t $USER3$ -H $HOSTADDRESS$ -p $USER10$ -c checkMem -a type=$ARG1$ MaxWarn=$ARG2$ MaxCrit=$ARG3$ ShowAll=long -} - -define command { - command_name check_nrpe_win_mem_v3 - command_line $USER1$/check_nrpe_v3 -p $USER10$ -H $HOSTADDRESS$ -E -d 0 -t $USER3$:UNKNOWN -A /usr/local/monitoring/etc/net-ca-chain.pem -L HIGH:MEDIUM -S TLSv1.2+ -c checkMem -a type=$ARG1$ MaxWarn=$ARG2$ MaxCrit=$ARG3$ ShowAll=long -} - -define command { - command_name check_nrpe_win_proc - command_line $USER1$/check_nrpe -H $HOSTADDRESS$ -t $USER3$ -p $USER10$ -c get_process -a "$HOSTADDRESS$" "$ARG1$" "$ARG2$" "$ARG3$" -} - -define command { - command_name check_nrpe_win_service_old - command_line $USER1$/check_nrpe -H $HOSTADDRESS$ -t $USER3$ -p $USER10$ -c get_service -a "$HOSTADDRESS$" "$ARG1$" -} - -define command { - command_name check_nrpe_win_service - command_line $USER1$/check_nrpe -H $HOSTADDRESS$ -t $USER3$ -p $USER10$ -c CheckServiceState -a ShowAll $ARG1$ -} - -define command { - command_name check_nrpe_win_service_v3 - command_line $USER1$/check_nrpe_v3 -p $USER10$ -H $HOSTADDRESS$ -E -d 0 -t $USER3$:UNKNOWN -A /usr/local/monitoring/etc/net-ca-chain.pem -L HIGH:MEDIUM -S TLSv1.2+ -c CheckServiceState -a ShowAll $ARG1$ -} - -define command { - command_name check_nrpe_win_service_not_running - command_line $USER1$/check_win_service_norun.pl $HOSTADDRESS$ "$ARG1$" -} - -define command { - command_name check_nrpe_win_tdpexcc - command_line $USER1$/check_win_tdpexcc_pu.pl $HOSTADDRESS$ -} - -define command { - command_name check_nrpe_win_tsm_backup_status - command_line $USER1$/check_nrpe -t $USER3$ -p $USER10$ -H $HOSTADDRESS$ -c check_tsm_backup_status -a '$ARG1$' '$ARG2$' -} - -define command { - command_name check_nrpe_win_vss - command_line $USER1$/check_nrpe -t $USER3$ -p $USER10$ -H $HOSTADDRESS$ -c check_vss_writers -} - -define command { - command_name check_nrpe_winsmtp_local_q - command_line $USER1$/check_nrpe -t 60 -H $HOSTADDRESS$ -p $USER10$ -c get_counter_rawcount -a "$HOSTADDRESS$" Win32_PerfRawData_SMTPSVC_SMTPServer 'Name=_Total' LocalQueueLength "$ARG1$" "$ARG2$" -} - -define command { - command_name check_nrpe_winsmtp_local_retry_q - command_line $USER1$/check_nrpe -t 60 -H $HOSTADDRESS$ -p $USER10$ -c get_counter_rawcount -a "$HOSTADDRESS$" Win32_PerfRawData_SMTPSVC_SMTPServer 'Name=_Total' LocalRetryQueueLength "$ARG1$" "$ARG2$" -} - -define command { - command_name check_nrpe_winsmtp_remote_q - command_line $USER1$/check_nrpe -t 60 -H $HOSTADDRESS$ -p $USER10$ -c get_counter_rawcount -a "$HOSTADDRESS$" Win32_PerfRawData_SMTPSVC_SMTPServer 'Name=_Total' RemoteQueueLength "$ARG1$" "$ARG2$" -} - -define command { - command_name check_nrpe_winsmtp_remote_retry_q - command_line $USER1$/check_nrpe -t 60 -H $HOSTADDRESS$ -p $USER10$ -c get_counter_rawcount -a "$HOSTADDRESS$" Win32_PerfRawData_SMTPSVC_SMTPServer 'Name=_Total' RemoteRetryQueueLength "$ARG1$" "$ARG2$" -} - -define command { - command_name check_snmp_win_load - command_line $USER1$/check_snmp_load.pl -2 -T stand -f -H $HOSTADDRESS$ -C $USER7$ -t 35 -w $ARG1$ -c $ARG2$ -} - -define command { - command_name check_snmp_win_memory - command_line $USER1$/check_snmp_storage -H $HOSTADDRESS$ -C $USER7$ -t 120 --cache=30 -m Memory -q "Ram|VirtualMemory" -f -w $ARG1$ -c $ARG2$ -s -} - -define command { - command_name check_snmp_win_service - command_line $USER1$/check_snmp_win.pl -H $HOSTADDRESS$ -2 -C $USER7$ -t 35 -n $ARG1$ 2>&1 -} - - -define hostgroup { - hostgroup_name test-border-router - alias OIT routers in test -} - - -define hostgroup { - hostgroup_name OIT Core Routers-Switches - alias OIT Core Routers and Switches -} - - -define hostgroup { - hostgroup_name OIT VOIP routers - alias OIT VOIP routers -} - - -define hostgroup { - hostgroup_name OIT Non-core routers - alias OIT Non-core routers -} - - -define hostgroup { - hostgroup_name ISP routers - alias ISP routers -} - - -define hostgroup { - hostgroup_name OIT CWDM - alias OIT CWDM (Coarse Wave Division Multiplexing) Equipment -} - - -define hostgroup { - hostgroup_name VPN Tunnel Endpoints - alias VPN Tunnel Endpoints -} - - -define hostgroup { - hostgroup_name OIT Ethernet switches-repeaters - alias OIT Ethernet switches and repeaters -} - - -define hostgroup { - hostgroup_name OIT Aruba WAP - alias OIT Aruba Wireless Access Points -} - - -define hostgroup { - hostgroup_name OIT Cisco WAP - alias OIT Cisco Wireless Access Points -} - - -define hostgroup { - hostgroup_name OIT UPS - alias OIT Campus Infrastructure UPS -} - - -define hostgroup { - hostgroup_name OIT APC Switched Rack PDU - alias OIT APC Switched Rack PDU units -} - - -define hostgroup { - hostgroup_name OIT APC Redundant Power Auto Transfer Switch - alias OIT APC Redundant Power Auto Transfer Switch units -} - - -define hostgroup { - hostgroup_name Lantronix Serial-to-IP Terminal Server Gateways - alias Lantronix Serial-to-IP Terminal Server Gateways -} - - -define hostgroup { - hostgroup_name A10 NATs - alias A10 NAT devices -} - - -define hostgroup { - hostgroup_name NAT McCarter - alias McCarter NAT devices -} - - -define hostgroup { - hostgroup_name Aruba wireless controllers - alias Aruba wireless controllers -} - - -define hostgroup { - hostgroup_name Aruba Remote Access Controllers - alias Aruba Remote Access Controllers -} - - -define hostgroup { - hostgroup_name Aruba Remote Access Points - alias Aruba Remote Access Points -} - - -define hostgroup { - hostgroup_name Cable Modems - alias Cable Modems at Remote Sites -} - - -define hostgroup { - hostgroup_name OIT PoE Injectors - alias OIT Power over Ethernet Midspan Power Injectors -} - - -define hostgroup { - hostgroup_name OIT hosts - alias OIT managed hosts -} - - -define hostgroup { - hostgroup_name OIT Telephone-VoIP Servers and Appliances - alias OIT Telephone Servers, VoIP Servers, Appliances -} - - -define hostgroup { - hostgroup_name Non-OIT - alias Non-OIT devices -} - - -define hostgroup { - hostgroup_name Facilities - alias Facilities Devices -} - - -define hostgroup { - hostgroup_name Dining Services - alias Dining Services -} - - -define hostgroup { - hostgroup_name Misc devices - alias Misc devices -} - - -define servicegroup { - servicegroup_name SharePoint Dev/QA - alias SharePoint Dev/QA services - members csgspfe100w,nrpe_wintest_service_SharePoint2K10, csgspfe101w,nrpe_wintest_service_SharePoint2K10, csgspapp102w,nrpe_wintest_service_SharePoint2K10, csgspapp103w,nrpe_wintest_service_SharePoint2K10 -} - - -define servicegroup { - servicegroup_name Maestro_DEV - alias Dev Maestro Services and Disk - members ais302l, nrpe_maestro_stdlistsz, ais302l, nrpe_unixtest_disk_app_maestro, ais302l, nrpe_maestro_procs, landrdev, nrpe_maestro_stdlistsz, ais101l, nrpe_maestro_stdlistsz, ais101l, nrpe_maestro_procs, ais101l, nrpe_unixtest_disk_app_maestro -} - - -define servicegroup { - servicegroup_name Maestro_Prod - alias Maestro Production Services - members ais204l, nrpe_maestro_stdlistsz, ais204l, nrpe_unix_disk_app_maestro, ais204l, nrpe_maestro_procs -} - - -define servicegroup { - servicegroup_name Maestro_app_services - alias Maestro/TWS application checks - members landr,nrpe_maestro_stdlistsz, landrdev,nrpe_maestro_stdlistsz -} - - -define servicegroup { - servicegroup_name Monitor - alias All important checks for the monitoring infrastructure - servicegroup_members Monitor Production, Monitor Dev/QA -} - - -define servicegroup { - servicegroup_name Monitor Production - alias Important checks for the production monitoring infrastructure - members mon204l,Gearman, mon204l,Selenium, mon205l,Gearman, mon205l,Selenium, monitor,Gearman Hub, monitor,Selenium Cluster, monitor,Selenium Hub -} - - -define servicegroup { - servicegroup_name Monitor Dev/QA - alias Important checks for the devqa monitoring infrastructure - members mon302l,Gearman DevQA, mon302l,Selenium DevQA, mon303l,Gearman DevQA, mon303l,Selenium DevQA, monitor-dev,Gearman DevQA Hub, monitor-dev,Selenium DevQA Cluster, monitor-dev,Selenium DevQA Hub -} - - -define servicegroup { - servicegroup_name OnBase Development - alias Checks for OnBase Development - members aisob301w,nrpe_wintest_service_W3SVC, aisob302w,nrpe_wintest_service_W3SVC, aisob310w,nrpe_wintest_service_W3SVC, aisob311w,nrpe_wintest_service_W3SVC, aisob315w,nrpe_wintest_service_W3SVC, aisob316w,nrpe_wintest_service_W3SVC, aisob316w,http_OnBase_Hyland, aisob318w,nrpe_wintest_service_W3SVC, aisob302w,nrpe_wintest_service_OnBase_DDS, aisob319w,nrpe_wintest_service_OnBase_DDS, aisob313w,nrpe_wintest_service_SMTP, aisob313w,nrpe_wintest_service_Hyland, aisob318w,nrpe_wintest_service_Hyland_FTS, aisob314w,nrpe_wintest_service_Hyland_Unity, aisob316w,nrpe_wintest_service_BizTalk -} - - -define servicegroup { - servicegroup_name OnBase QA - alias Checks for OnBase QA - members aisob301tstw,nrpe_wintest_service_W3SVC, aisob302tstw,nrpe_wintest_service_W3SVC, aisob310tstw,nrpe_wintest_service_W3SVC, aisob311tstw,nrpe_wintest_service_W3SVC, aisob315tstw,nrpe_wintest_service_W3SVC, aisob318tstw,nrpe_wintest_service_W3SVC, aisob302tstw,nrpe_wintest_service_OnBase_DDS, aisob319tstw,nrpe_wintest_service_OnBase_DDS, aisob313tstw,nrpe_wintest_service_SMTP, aisob313tstw,nrpe_wintest_service_Hyland, aisob314tstw,nrpe_wintest_service_Hyland_Unity, aisob101w,nrpe_wintest_service_W3SVC, aisob102w,nrpe_wintest_service_W3SVC, aisob110w,nrpe_wintest_service_W3SVC, aisob111w,nrpe_wintest_service_W3SVC, aisob115w,nrpe_wintest_service_W3SVC, aisob118w,nrpe_wintest_service_W3SVC, aisob102w,nrpe_wintest_service_OnBase_DDS, aisob119w,nrpe_wintest_service_OnBase_DDS, aisob113w,nrpe_wintest_service_SMTP, aisob113w,nrpe_wintest_service_Hyland, aisob118w,nrpe_wintest_service_Hyland_FTS, aisob114w,nrpe_wintest_service_Hyland_Unity -} - - -define servicegroup { - servicegroup_name OnBase Dev/QA - alias Checks for OnBase Dev/QA - servicegroup_members OnBase Development, OnBase QA -} - - -define servicegroup { - servicegroup_name OnBase Production - alias Checks for OnBase Production - members aisob201w,nrpe_win_service_W3SVC, aisob202w,nrpe_win_service_W3SVC, aisob210w,nrpe_win_service_W3SVC, aisob211w,nrpe_win_service_W3SVC, aisob215w,nrpe_win_service_W3SVC, aisob216w,nrpe_win_service_W3SVC, aisob216w,http_OnBase_Hyland, aisob218w,nrpe_win_service_W3SVC, aisob202w,nrpe_win_service_OnBase_DDS, aisob219w,nrpe_win_service_OnBase_DDS, aisob213w,nrpe_win_service_SMTP, aisob213w,nrpe_win_service_Hyland, aisob218w,nrpe_win_service_Hyland_FTS, aisob214w,nrpe_win_service_Hyland_Unity, aisob216w,nrpe_win_service_BizTalk -} - - -define servicegroup { - servicegroup_name csg_services - alias imap, smtp, pop3 - members lists,SMTP, smtp,SMTP, smtp,SMTPS -} - -define servicegroup { - servicegroup_name disk_app_lsscvms_services - alias Drives D - K - Life Safety and Security - members lsscvms207w,nrpe_win_disk_app -} - -define servicegroup { - servicegroup_name Webchecks - alias Webchecks to be run locally - members iamcas200w,https_CAS, iamcas201w,https_CAS, iamxythos200l,https_Webspace, iamxythos201l,https_Webspace, sdprsa200l,https_rsa_sc, sdprsa200l,https_rsa_ss, sdprsa201l,https_rsa_sc -} - -define servicegroup { - servicegroup_name Local - alias Checks to be run locally - members backupvpn,Comcast, backupvpn,Google through Comcast, backupvpn,Verizon, backupvpn,Yahoo through Verizon, ims204,Naemon Latency, ims205,Naemon Latency, mon204l,Gearman, mon205l,Gearman, mon204l,Selenium, mon205l,Selenium, mon302l,Gearman DevQA, mon303l,Gearman DevQA, mon302l,Selenium DevQA, mon303l,Selenium DevQA, monitor-dev,Gearman DevQA Hub, monitor-dev,Selenium DevQA Hub, x110client01,snmp_unixtest_proc_memory_usage, x110client02,snmp_unixtest_proc_memory_usage, x210client01,snmp_unix_proc_memory_usage, x210client02,snmp_unix_proc_memory_usage - -} - -define servicegroup { - servicegroup_name Loghost - alias Log checks on eis222l - members .*,nrpe_unix_log_nfs_failure, .*,nrpe_unixtest_log_nfs_failure -} - -#define servicegroup { -# servicegroup_name BizTalk -# alias BizTalk checks -# members onbase312,biztalk, onbase314,biztalk -#} - -#define servicegroup { -# servicegroup_name Solaris DNS -# alias Solaris DNS services -# members alfrente,DNS, capserver,DNS, four11,DNS, oznot,DNS -#} - -define servicegroup { - servicegroup_name Network NTP - alias Network and Monitoring NTP services - members alfrente,NTP, alfrente,NTPq, capserver,NTP, capserver,NTPq, cuckoo,NTP, cuckoo,NTPq, four11,NTP, four11,NTPq, iblox1-vrrp,NTP, iblox1-vrrp,NTPq, iblox2-vrrp,NTP, iblox2-vrrp,NTPq, ibddipv6-vrrp,NTP, ibddipv6-vrrp,NTPq, netvclock200l,NTP, netvclock200l,NTPq, oznot,NTP, oznot,NTPq -} - -define servicegroup { - servicegroup_name Network Web - alias Network and Monitoring Web checks - members Webcheck_host,https_mrtg_net, Webcheck_host,https_www_net -} - -define servicegroup { - servicegroup_name External DNS - alias Backup external DNS servers - members monitor,DNS_a1-158_akam_net, monitor,DNS_a20-65_akam_net, monitor,DNS_a24-66_akam_net, monitor,DNS_a3-67_akam_net, monitor,DNS_a6-64_akam_net, monitor,DNS_a7-65_akam_net, monitor,DNS_auth1_dns_cogentco, monitor,DNS_auth2_dns_cogentco -} - -define servicegroup { - servicegroup_name Network and Monitoring - alias Checks for Network and Monitoring group -# servicegroup_members External DNS, Network NTP, Network Web, Solaris DNS - servicegroup_members External DNS, Network NTP, Network Web -} - - -define service { - service_description nrpe_unix_cpu_system - use UNIX Production service - host_name ais218l - max_check_attempts 6 - normal_check_interval 10 - retry_check_interval 10 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_cpu_system!70:80!50:70 - contacts ESS UNIX List, George R. Kopf -} - - -define service { - service_description nrpe_unix_cpu_user - use UNIX Production service - host_name ais218l - max_check_attempts 6 - normal_check_interval 10 - retry_check_interval 10 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_cpu_user!85:90 - contacts ESS UNIX List, George R. Kopf -} - - -define service { - service_description nrpe_unix_load - use UNIX Production service - host_name ais218l - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_load!2,2.3,2.7!4,4.5,5!" -r " - contacts ESS UNIX List, George R. Kopf -} - - -define service { - service_description nrpe_unix_active_mem - use UNIX Production service - host_name ais218l - process_perf_data 1 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_active_mem!90!95 - contacts ESS UNIX List, George R. Kopf -} - - -define service { - service_description nrpe_unix_swap - use UNIX Production service - host_name ais218l - notification_options c,r - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_swap!20!10 - contacts ESS UNIX List, George R. Kopf -} - - -define service { - service_description nrpe_unix_disk_system - use UNIX Production service - host_name ais218l - check_command check_nrpe_disk_by_class!system - contacts ESS UNIX List, George R. Kopf -} - - -define service { - service_description nrpe_unix_proc_httpd - use UNIX Production service - host_name ais218l - check_command check_nrpe_process!30!1:! -C httpd -t 30 - notification_interval 15 - contacts Software Infrastructure Services -} - - -define service { - service_description nrpe_unix_proc_jenkins - use UNIX Production service - host_name sas204l - check_command check_nrpe_process!1!1:! -a jenkins.war -t 30 - notification_interval 15 - contacts Software Infrastructure Services -} - - -define service { - service_description nrpe_unix_proc_nexus-bootstrap - use UNIX Production service - host_name sas206l - check_command check_nrpe_process!1!1:! -a nexus-bootstrap -t 30 - notification_interval 15 - contacts Software Infrastructure Services -} - - -define service { - service_description nrpe_unix_proc_sonar-application - use UNIX Production service - host_name sas205l - check_command check_nrpe_process!1!1:! -a sonar-application -t 30 - notification_interval 15 - contacts Software Infrastructure Services -} - - - -#define service { -# service_description snmp_win_service_NComm_NCommWA -# use Windows Production service -# host_name uhs205w -# check_command check_snmp_win_service!"Medicat Interface Service \\(NComm\\),Medicat Interface Service \\(NCommWA\\)" -# contact_groups null -# contacts Health Services Help -#} - - -define service { - service_description nrpe_win_service_Mirth_Connect_Service - use Windows Production service - host_name uhs212w - check_command check_nrpe_win_service!"Mirth Connect Service" - contacts Health Services Help -} - -define service { - service_description snmp_win_service_Lync_Monitoring - use Windows Production service - host_name csglyncm218w - check_command check_snmp_win_service!"SQL Server \\(RTCLOCAL\\)" - contacts CSG OnCall, CISDR -} - -define service { - service_description snmp_win_service_Lync - use Windows Production service - host_name csglync221w, csglync222w - check_command check_snmp_win_service!"Lync Server Audio Test Service,Lync Server Call Park,Lync Server Centralized Logging Service Agent,Lync Server Front-End,Lync Server IM Conferencing,Lync Server Mediation,Lync Server Replica Replicator Agent,Lync Server XMPP Translating Gateway,SQL Server \\(LYNCLOCAL\\),SQL Server \\(RTC\\),SQL Server \\(RTCLOCAL\\)" - contacts CSG OnCall, CISDR -} - -define service { - service_description snmp_win_service_Lync - use Windows Production service - host_name csglync229w - check_command check_snmp_win_service!"Lync Server Audio Test Service,Lync Server Call Park,Lync Server Centralized Logging Service Agent,Lync Server Front-End,Lync Server IM Conferencing,Lync Server Mediation,Lync Server Replica Replicator Agent,Lync Server XMPP Translating Gateway,SQL Server \\(LYNCLOCAL\\),SQL Server \\(RTCLOCAL\\)" - contacts CSG OnCall, CISDR -} - -define service { - service_description snmp_win_service_Lync - use Windows Production service - host_name csglynce223w, csglynce224w - check_command check_snmp_win_service!"Lync Server Access Edge,Lync Server Audio/Video Authentication,Lync Server Audio/Video Edge,Lync Server Centralized Logging Service Agent,Lync Server Replica Replicator Agent,Lync Server Web Conferencing Edge,SQL Server \\(RTCLOCAL\\)" - contacts CSG OnCall, CISDR -} - -define service { - service_description snmp_win_service_Lync - use Windows Production service - host_name csglyncdb225w, csglyncdb226w - check_command check_snmp_win_service!"SQL Server \\(MSSQLSERVER\\),SQL Server Agent \\(MSSQLSERVER\\),SQL Server Integration Services 11.0,SQL Server Reporting Services \\(MSSQLSERVER\\)" - contacts CSG OnCall, CISDR -} - -# DocAve services -define service { - service_description snmp_win_service_DocAve - use Windows Production service - host_name csgdocave200w - check_command check_snmp_win_service!"DocAve 6 Report Service,DocAve 6 Media,DocAve 6 Timer Service" - contacts Sharepoint Admin -} - -define service { - service_description nrpe_win_service_SNMP - use Windows Production service - host_name csgsp200w, csgsp201w, csgsp202w, csgsp203w, csgsp204w - check_command check_nrpe_win_service!SNMP - contacts Sharepoint Admin -} - -# SharePoint 2010 -# Prod -define service { - service_description snmp_win_service_SharePoint2K10 - use Windows Production service - host_name csgsp200w, csgsp201w, csgsp202w, csgsp203w, csgsp204w - check_command check_snmp_win_service!"DocAve 6 Agent service,DocAve Communication" - contacts Sharepoint Admin -} - -define service { - service_description nrpe_win_service_SharePoint2K10 - use Windows Production service - host_name csgsp201w, csgsp202w, csgsp203w, csgsp204w - check_command check_nrpe_win_service!SPAdminV4 SPTimerV4 SPTraceV4 SPWriterV4 - contacts Sharepoint Admin -} - -define service { - service_description nrpe_win_service_SharePoint2K10 - use Windows Production service - host_name csgsp200w - check_command check_nrpe_win_service!FIMService FIMSynchronizationService OSearch14 SPAdminV4 SPTimerV4 SPTraceV4 - contacts Sharepoint Admin -} - -## SharePoint 2016 - -define service { - service_description nrpe_win_service_SharePoint2016 - use Windows Production service - host_name wasspapp201w, wasspfe202w, wasspfe203w, wasspfe204w, wasspdc205w - check_command check_nrpe_win_service!SPTimerV4 SPTraceV4 - contacts Sharepoint Admin -} - -define service { - service_description nrpe_win_service_SharePoint2016 - use Windows Production service - host_name wasspapp200w - check_command check_nrpe_win_service!SPTimerV4 SPTraceV4 ProfSvc - contacts Sharepoint Admin -} - -define service { - service_description nrpe_win_service_SharePoint2016 - use Windows Production service - host_name wasspss206w - check_command check_nrpe_win_service!SPTimerV4 SPTraceV4 SPSearchHostController OSearch16 - contacts Sharepoint Admin -} - -define service { - service_description nrpe_win_service_SMTP - use Windows Production service - host_name wasspapp200w, wasspapp201w, wasspfe202w, wasspfe203w, wasspfe204w, wasspdc205w, wasspss206w - check_command check_nrpe_win_service!"Simple Mail Transfer Protocol (SMTP)" - contacts Sharepoint Admin -} - -define service { - service_description nrpe_wintest_service_SharePoint2K10 - use Windows Dev/QA service - host_name csgspfe100w - check_command check_nrpe_win_service!"DocAve 6 Agent service" "DocAve Communication" OSearch14 SPAdminV4 SPTimerV4 SPTraceV4 SPUserCodeV4 SPWriterV4 - contacts Sharepoint Admin -} - -define service { - service_description nrpe_wintest_service_SharePoint2K10 - use Windows Dev/QA service - host_name csgspfe101w - check_command check_nrpe_win_service!"DocAve 6 Agent service" SPAdminV4 SPTimerV4 SPTraceV4 SPUserCodeV4 SPWriterV4 - contacts Sharepoint Admin -} - -define service { - service_description nrpe_wintest_service_SharePoint2K10 - use Windows Dev/QA service - host_name csgspapp102w - check_command check_nrpe_win_service!"DocAve 6 Agent service" FIMService FIMSynchronizationService OSearch14 SPAdminV4 SPTimerV4 SPTraceV4 - contacts Sharepoint Admin -} - -define service { - service_description nrpe_wintest_service_SharePoint2K10 - use Windows Dev/QA service - host_name csgspapp103w - check_command check_nrpe_win_service!"DocAve 6 Agent service" SPAdminV4 SPTimerV4 SPTraceV4 - contacts Sharepoint Admin -} - -define service { - service_description nrpe_win_service_SMTP - use Windows Production service - host_name fac-willo3-200w - check_command check_nrpe_win_service!"Simple Mail Transfer Protocol (SMTP)" - contact_groups Maximo -} - -define service { - service_description SMTP - use Windows Production service - host_name fac-willo3-200w - check_command check_smtp!5!10!-p 25 - contact_groups Maximo -} - -# Exchange Production - -define service { - service_description nrpe_win_Exchange_HUB_Transport_Dumpster_Item_Count - use Windows Production service - host_name csghub208w, csghub209w - normal_check_interval 5 - process_perf_data 1 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_counters!new!MSExchangeTransport Dumpster!Dumpster Item Count!-!\+3000!\+3500 - contacts CISDR -} - -define service { - service_description nrpe_win_Exchange_HUB_Transport_Queues_Delivery_Q_Length - use Windows Production service - host_name csghub208w, csghub209w - normal_check_interval 5 - process_perf_data 1 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_counters!new!MSExchangeTransport Queues!Active Mailbox Delivery Queue Length!_total!\+250!\+300 - contacts CISDR -} - -define service { - service_description nrpe_win_Exchange_HUB_Transport_Queues_Poison_Queue_Length - use Windows Production service - host_name csghub208w, csghub209w - normal_check_interval 5 - process_perf_data 1 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_counters!new!MSExchangeTransport Queues!Poison Queue Length!*!\+100!\+200 - contacts CISDR -} - -define service { - service_description nrpe_win_Exchange_HUB_Transport_Queues_Remote_Delivery_Length - use Windows Production service - host_name csghub208w, csghub209w - normal_check_interval 5 - process_perf_data 1 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_counters!new!MSExchangeTransport Queues!Active Remote Delivery Queue Length!*!\+400!\+600 - contacts CISDR -} - -define service { - service_description nrpe_win_Exchange_HUB_Transport_Queues_Delivery_Length - use Windows Production service - host_name csghub208w, csghub209w - normal_check_interval 5 - process_perf_data 1 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_counters!new!MSExchangeTransport Queues!Aggregate Delivery Queue Length (All Queues)!_total!\+400!\+600 - contacts CISDR -} - -define service { - service_description nrpe_win_Exchange_MBX_IS_Messages_Queued_Submission - use Windows Production service - hostgroup_name Exchange Mailbox - max_check_attempts 5 - normal_check_interval 5 - process_perf_data 1 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_counters!new!MSExchangeIS Mailbox!Messages Queued for Submission!_total!\+100!\+200 - contacts CISDR -} - -define service { - service_description nrpe_win_Exchange_MBX_IS_RPC_Requests - use Windows Production service - hostgroup_name Exchange Mailbox - max_check_attempts 5 - normal_check_interval 5 - process_perf_data 1 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_counters!new!MSExchangeIS!RPC Requests!-!\+100!\+200 - contacts CISDR -} - -define service { - service_description nrpe_win_Exchange_MBX_DB_IO_Reads_Avg_Latency - use Windows Production service - hostgroup_name Exchange Mailbox - max_check_attempts 5 - normal_check_interval 5 - process_perf_data 1 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_counters!new!MSExchange Database!I/O Database Reads (Attached) Average Latency!*!\+2000!\+2100 - contacts John P. Sophy -} - -define service { - service_description nrpe_win_Exchange_MBX_DB_IO_Writes_Avg_Latency - use Windows Production service - hostgroup_name Exchange Mailbox - max_check_attempts 5 - normal_check_interval 5 - process_perf_data 1 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_counters!new!MSExchange Database!I/O Database Writes (Attached) Average Latency!*!\+2000!\+2100 - contacts John P. Sophy -} - -define service { - service_description nrpe_win_Exchange_MBX_DB_IO_Writes_Rec_Avg_Latency - use Windows Production service - hostgroup_name Exchange Mailbox - max_check_attempts 5 - normal_check_interval 5 - process_perf_data 1 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_counters!new!MSExchange Database!I/O Database Writes (Recovery) Average Latency!*!\+2000!\+2100 - contacts John P. Sophy -} - -define service { - service_description nrpe_win_Exchange_MBX_DB_IO_Reads_Rec_Avg_Latency - use Windows Production service - hostgroup_name Exchange Mailbox - max_check_attempts 5 - normal_check_interval 5 - process_perf_data 1 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_counters!new!MSExchange Database!I/O Database Reads (Recovery) Average Latency!*!\+2000!\+2100 - contacts John P. Sophy -} - -define service { - service_description nrpe_win_Exchange_CAS_ActiveSync_Current_Requests - use Windows Production service - host_name csgcas204w, csgcas205w, csgcas206w, csgcas207w - normal_check_interval 5 - process_perf_data 1 - event_handler cas_iis_reset - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_counters!new!MSExchange ActiveSync!Current Requests!-!\-100!\+2400 - contacts CISDR -} - - -define service { - service_description nrpe_win_Exchange_CAS_IMAP4_Active_SSL_Connections - use Windows Production service - host_name csgcas204w, csgcas205w, csgcas206w, csgcas207w - normal_check_interval 5 - process_perf_data 1 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_counters!new!MSExchangeImap4!Active SSL Connections!*!\-10!\+1300 - contacts CISDR -} - - -define service { - service_description nrpe_win_Exchange_CAS_RPC_HTTP_Proxy_Connections - use Windows Production service - host_name csgcas204w, csgcas205w, csgcas206w, csgcas207w - normal_check_interval 5 - process_perf_data 1 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_counters!new!RPC/HTTP Proxy!Current Number of Incoming RPC over HTTP Connections!-!\-20!\+3000 - contacts CISDR -} - -define service { - service_description nrpe_win_Exchange_CAS_ActiveSync_Ping_Pending - use Windows Production service - host_name csgcas204w, csgcas205w, csgcas206w, csgcas207w - normal_check_interval 5 - process_perf_data 1 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_counters!new!MSExchange ActiveSync!Ping Commands Pending!-!\+2200!\+2400 - contacts CISDR -} - -define service { - service_description nrpe_win_Exchange_CAS_OWA_Current_Users - use Windows Production service - host_name csgcas204w, csgcas205w, csgcas206w, csgcas207w - normal_check_interval 5 - process_perf_data 1 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_counters!new!MSExchange OWA!Current Users!-!\-10!\+500 - contacts CISDR -} - - -define service { - service_description nrpe_win_Exchange_CAS_OWA_Average_Response_Time - use Windows Production service - host_name csgcas204w, csgcas205w, csgcas206w, csgcas207w - normal_check_interval 5 - process_perf_data 1 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_counters!new!MSExchange OWA!Average Response Time!-!\+5000!\+10000 - contacts CISDR -} - -define service { - service_description nrpe_win_service_exchange_mbx - use Windows Production service - hostgroup_name Exchange Mailbox - check_command check_nrpe_win_service!MSExchangeADTopology MSExchangeIS MSExchangeMailSubmission MSExchangeMailboxAssistants MSExchangeRepl MSExchangeRPC MSExchangeSearch MSExchangeServiceHost MSExchangeSA MSExchangeThrottling MSExchangeTransportLogSearch - contacts CISDR -} - -# Exchange Dev/QA - -define service { - service_description nrpe_wintest_service_MSExADTopology - use Windows Dev/QA service - host_name csgcas104w, csgcas105w, csgcas301w, csghub102w, csghub103w, csghub302w, csgmbx100w, csgmbx300w, csgmbx303w - check_command check_nrpe_win_service!MSExchangeADTopology - contacts CISDR -} - -define service { - service_description nrpe_wintest_service_MSExchangeCAS - use Windows Dev/QA service - host_name csgcas104w, csgcas105w, csgcas301w - check_command check_nrpe_win_service!MSExchangeRPC MSExchangeImap4 MSExchangeFBA - contacts CISDR -} - -define service { - service_description nrpe_wintest_service_MSExchangeTransport - use Windows Dev/QA service - host_name csghub102w, csghub103w, csghub302w - check_command check_nrpe_win_service!MSExchangeTransport - contacts CISDR -} - -define service { - service_description nrpe_wintest_service_MSExchangeMBX - use Windows Dev/QA service - host_name csgmbx100w, csgmbx300w, csgmbx303w - check_command check_nrpe_win_service!MSExchangeIS MSExchangeSA - contacts CISDR -} - -# AD FS 2.0 Windows Dev/QA Service - adfssrv --- Ticket #2181621 -define service { - service_description nrpe_wintest_service_adfssrv - use Windows Dev/QA service - host_name iamadfs100w, iamadfs101w - check_command check_nrpe_win_service!adfssrv - contacts Identity and Access Management, IAM OnCall -} - -# AD FS 2.0 Windows Production Service - adfssrv --- Ticket #1854296 -define service { - service_description nrpe_win_service_adfssrv - use Windows Production service - host_name iamadfs200w, iamadfs201w - check_command check_nrpe_win_service!adfssrv - contacts Identity and Access Management, IAM OnCall -} - -# New McAfee services for Exchange -define service { - service_description nrpe_wintest_service_McAfee_Exchange - use Windows Dev/QA service - host_name csgmbx100w - check_command check_nrpe_win_service!MSME - contacts CISDR -} - - -define service { - service_description nrpe_win_service_Microsoft_Azure_AD_Sync - use Windows Production service - host_name iamdirsync200w - check_command check_nrpe_win_service!"Microsoft Azure AD Sync" - contacts Identity and Access Management -} - -define service { - service_description nrpe_wintest_service_Microsoft_Azure_AD_Sync - use Windows Dev/QA service - host_name iamdirsync100w - check_command check_nrpe_win_service!"Microsoft Azure AD Sync" - contacts Identity and Access Management -} - -# SDP Ports -define service { - service_description tcp_5575_14100_14300 - use generic-service-active - host_name sdpoam100l, sdpoam101l, sdpoam200l, sdpoam201l - process_perf_data 1 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_tcp_multiport!5575,14100,14300 - contacts Ashutosh Hadap, DBA Important List, Identity and Access Management - contact_groups null -} - -define service { - service_description tcp_4443 - use generic-service-active - host_name sdpohs100l, sdpohs101l, sdpohs200l, sdpohs201l - process_perf_data 1 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_tcp!4443 - contacts Ashutosh Hadap, DBA Important List, Identity and Access Management - contact_groups null -} - - -define service { - service_description nrpe_win_app_shibboleth - use Windows Production service - host_name sdpidp202w, sdpidp203w - check_command check_nrpe_win_app_shibboleth - contacts Identity and Access Management - contact_groups null -} - -# bertha - -define service { - service_description snmp_win_service_Princeton_Development_Dispatcher - use Windows Production service - host_name dev-webprod - check_command check_snmp_win_service!"Princeton Development Dispatcher" - check_period Dev Dispatcher - notification_period Dev Dispatcher - contact_groups null - contacts Dev Web Monitor -} - -define service { - service_description Selenium - use generic-service - host_name mon200w, mon201w, mon202w, mon203w, mon205l - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_tcp!4444 - contact_groups null - contacts Networking -} - -define service { - service_description Selenium - use generic-service - host_name mon204l - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_tcp!4444 - contact_groups null - contacts Networking -} - -define service { - service_description Selenium DevQA - use generic-service - host_name mon302l - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - #event_handler monitoring_hub_recovery - check_command check_tcp!4444 - contact_groups null - contacts Igor V. Gubenko -} - -define service { - service_description Selenium DevQA - use generic-service - host_name mon300w, mon301w, mon303l - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_tcp!4444 - contact_groups null - contacts Igor V. Gubenko -} - -define service { - service_description Selenium Hub - use generic-service - host_name monitor - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_tcp_port!monitor.Princeton.EDU!4444 - contact_groups Monitoring Admins Pager - contacts Networking -} - -define service { - service_description Selenium DevQA Hub - use generic-service - host_name monitor-dev - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_tcp_port!monitor-dev.Princeton.EDU!4444 - contact_groups null - contacts Igor V. Gubenko -} - -define service { - service_description Selenium Cluster - use generic-service - host_name monitor - check_command check_service_cluster!$SERVICEDESC$!$SERVICESTATEID:mon200w:Selenium$,$SERVICESTATEID:mon201w:Selenium$,$SERVICESTATEID:mon202w:Selenium$,$SERVICESTATEID:mon203w:Selenium$!-w @3:!-c @4: - contact_groups Monitoring Admins Pager - contacts Networking -} - -define service { - service_description Selenium DevQA Cluster - use generic-service - host_name monitor-dev - check_command check_service_cluster!$SERVICEDESC$!$SERVICESTATEID:mon300w:Selenium DevQA$,$SERVICESTATEID:mon301w:Selenium DevQA$!-w @1:!-c @2: - contact_groups null - contacts Igor V. Gubenko -} - -define service { - service_description nrpe_win_service_WinGateEngine - use Windows Production service - host_name isoproxy200w - check_command check_nrpe_win_service!"WinGateEngine" - contacts infosec -} - -define service { - service_description nrpe_wintest_service_W3SVC - use Windows Dev/QA service - host_name aisob101w, aisob102w, aisob110w, aisob111w, aisob115w, aisob116w, aisob118w, aisob301w, aisob301tstw, aisob302w, aisob302tstw, aisob310w, aisob310tstw, aisob311w, aisob311tstw, aisob315w, aisob315tstw, aisob316w, aisob318w, aisob318tstw - notification_period 8x5 - check_command check_nrpe_win_service!W3SVC - contacts ECM Admin Notify -} - -define service { - service_description nrpe_wintest_service_OnBase_DDS - use Windows Dev/QA service - host_name aisob102w, aisob119w, aisob302w, aisob302tstw, aisob319w, aisob319tstw - notification_period 8x5 - check_command check_nrpe_win_service!"OnBase DDS Service" - contacts ECM Admin Notify -} - -define service { - service_description nrpe_wintest_service_SMTP - use Windows Dev/QA service - host_name aisob113w, aisob313w, aisob313tstw - notification_period 8x5 - check_command check_nrpe_win_service!"Simple Mail Transfer Protocol (SMTP)" - contacts ECM Admin Notify -} - -define service { - service_description nrpe_wintest_service_Hyland - use Windows Dev/QA service - host_name aisob113w, aisob313w, aisob313tstw - notification_period 8x5 - check_command check_nrpe_win_service!"Hyland Distribution Service" "Hyland OnBase Scheduler" - contacts ECM Admin Notify -} - - -define service { - service_description nrpe_wintest_service_Hyland_Unity - use Windows Dev/QA service - host_name aisob114w, aisob314w, aisob314tstw - notification_period 8x5 - check_command check_nrpe_win_service!"Hyland Unity Scheduler - DOF" "Hyland Unity Scheduler - DEV" "Hyland Unity Scheduler - HR" "Hyland Unity Scheduler - FAC" "Hyland Unity Scheduler - UFA" "Hyland Unity Scheduler - OFT" "Hyland Unity Scheduler" - contacts ECM Admin Notify -} - -define service { - service_description nrpe_wintest_service_Hyland_FTS - use Windows Dev/QA service - host_name aisob318w - notification_period 8x5 - check_command check_nrpe_win_service!"Hyland Full Text Server" - contacts ECM Admin Notify -} - -define service { - service_description nrpe_wintest_service_Hyland_FTS - use Windows Dev/QA service - host_name aisob118w - notification_period 8x5 - check_command check_nrpe_win_service!"Hyland Full-Text Server" - contacts ECM Admin Notify -} - -define service { - service_description nrpe_wintest_service_BizTalk - use Windows Dev/QA service - host_name aisob116w, aisob316w - notification_period 8x5 - check_command check_nrpe_win_service!"BizTalk Service BizTalk Group : APInvoice_ProcessingHost" "BizTalk Service BizTalk Group : APInvoice_ReceiveHost" "BizTalk Service BizTalk Group : APInvoice_SendHost" "BizTalk Service BizTalk Group : APInvoice_TrackingHost" "BizTalk Service BizTalk Group : BizTalkServerApplication" "Enterprise Single Sign-On Service" "Rule Engine Update Service" - contacts ECM Admin Notify -} - - -define service { - service_description nrpe_win_service_W3SVC - use Windows Production service - host_name aisob201w, aisob202w, aisob210w, aisob211w, aisob215w, aisob216w, aisob218w - check_command check_nrpe_win_service!W3SVC - contacts ECM Admin Notify -} - -define service { - service_description nrpe_win_service_OnBase_DDS - use Windows Production service - host_name aisob202w, aisob219w - check_command check_nrpe_win_service!"OnBase DDS Service" - contacts ECM Admin Notify -} - -define service { - service_description nrpe_win_service_SMTP - use Windows Production service - host_name aisob213w - check_command check_nrpe_win_service!"Simple Mail Transfer Protocol (SMTP)" - contacts ECM Admin Notify -} - -define service { - service_description nrpe_win_service_Hyland - use Windows Production service - host_name aisob213w - check_command check_nrpe_win_service!"Hyland Distribution Service" "Hyland OnBase Scheduler" - contacts ECM Admin Notify -} - -define service { - service_description nrpe_win_service_Hyland_FTS - use Windows Production service - host_name aisob218w - check_command check_nrpe_win_service!"Hyland Full Text Server" - contacts ECM Admin Notify -} - -define service { - service_description nrpe_win_service_Hyland_Unity - use Windows Production service - host_name aisob214w - check_command check_nrpe_win_service!"Hyland Unity Scheduler - DOF" "Hyland Unity Scheduler - DEV" "Hyland Unity Scheduler - HR" "Hyland Unity Scheduler - FAC" "Hyland Unity Scheduler - UFA" "Hyland Unity Scheduler - OFT" "Hyland Unity Scheduler" - contacts ECM Admin Notify -} - -define service { - service_description nrpe_win_service_BizTalk - use Windows Production service - host_name aisob216w - check_command check_nrpe_win_service!"BizTalk Service BizTalk Group : APInvoice_ProcessingHost" "BizTalk Service BizTalk Group : APInvoice_ReceiveHost" "BizTalk Service BizTalk Group : APInvoice_SendHost" "BizTalk Service BizTalk Group : APInvoice_TrackingHost" "BizTalk Service BizTalk Group : BizTalkServerApplication" "Enterprise Single Sign-On Service" "Rule Engine Update Service" - contacts ECM Admin Notify -} - -define service { - service_description snmp_win_service_OIM_Remote_Manager - use Windows Production service - host_name eis206w - check_command check_snmp_win_service!"FireDaemon Service: OIM Remote Manager for Exchange" - contact_groups null - contacts Identity and Access Management -} - -define service { - service_description tcp_5500_5550_5580 - use UNIX Production service - host_name sdprsa200l, sdprsa201l - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_tcp_multiport!5500,5550,5580 - contact_groups null - contacts Identity and Access Management -} - -define service { - service_description nrpe_wintest_service_Topaz - use Windows Dev/QA service - host_name aistopaz100w - check_command check_nrpe_win_service!"Topaz GetEventStore" "Topaz Message Dispatcher" "Topaz Mongo DB" - contacts pac_app_integration -} - -define service { - service_description nrpe_win_service_Topaz - use Windows Dev/QA service - host_name aistopaz200w - check_command check_nrpe_win_service!"Topaz GetEventStore" "Topaz Message Dispatcher" "Topaz Mongo DB" "Topaz Reporter Scheduler" - contacts pac_app_integration -} - -define service { - service_description ssh_incoming_queue - use generic-service - host_name siem-ace - #check_command check_ssh_using_key!/home/nagios/.ssh/siem-ace.id!root!ls -l /usr/local/ace/incoming | wc -l - check_command check_ssh_using_key!/home/nagios/.ssh/siem-ace.id!root!q=`ls -l /usr/local/ace/incoming %%%%pipe%%%% wc -l` && echo "ACE queue: $q | queue=$q"!queue:[[:space:]][[:digit:]]{1,2}[[:space:]]+ - notification_interval 180 - contacts Dean Plante, Donald Ade, Eric Burd, Ruth D. Gittens -} - -#define service { -# service_description nrpe_wintest_service_WWW_Publishing -# use Windows Dev/QA service -# host_name dev98p1, dev98p2, dev98p3 -# check_command check_nrpe_win_service!"World Wide Web Publishing Service" -# contacts Dev DTS -#} - -define service { - service_description nrpe_unixtest_proc_OpenLDAP OID - use UNIX Dev/QA service - host_name eisoid101l, eisoid102l - check_command check_nrpe_process!2!1:! -C slapd -t 30 - contacts DBA Important List -} - -define service { - service_description nrpe_unix_proc_OpenLDAP OID - use UNIX Production service - host_name eisoid201l, eisoid202l, eisoid203l - check_command check_nrpe_process!2!1:! -C slapd -t 30 - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_dspace_jvm_classes - use UNIX Dev/QA service - host_name updatespace - process_perf_data 1 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_jvm!" -p classes"!" -w 16000"!" -c 20000" - contacts DSP Admins -} - -define service { - service_description nrpe_unixtest_dspace_jvm_heap - use UNIX Dev/QA service - host_name updatespace - process_perf_data 1 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_jvm!" -p heap"!" -w 750000000"!" -c 900000000" - contacts DSP Admins -} - -define service { - service_description nrpe_unixtest_dspace_jvm_non-heap - use UNIX Dev/QA service - host_name updatespace - process_perf_data 1 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_jvm!" -p non-heap"!" -w 170000000"!" -c 200000000" - contacts DSP Admins -} - -define service { - service_description nrpe_unixtest_dspace_jvm_threads - use UNIX Dev/QA service - host_name updatespace - process_perf_data 1 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_jvm!" -p threads"!" -w 75"!" -c 100" - contacts DSP Admins -} - -define service { - service_description nrpe_unix_proc_nginx - use UNIX Production service - host_name timeline201l, timeline202l, timeline203l, timeline204l, timeline205l - check_command check_nrpe_process!20!1:! -C nginx -t 30 - contacts Timeline -} - -define service { - service_description nrpe_unix_proc_php-fpm - use UNIX Production service - host_name timeline201l, timeline202l - check_command check_nrpe_process!100!1:! -C php-fpm -t 30 - contacts Timeline -} - -define service { - service_description nrpe_unix_proc_mongo - use UNIX Production service - host_name timeline203l, timeline204l, timeline205l - check_command check_nrpe_process!2!1:! -C mongod -t 30 - contacts Timeline -} - -define service { - service_description nrpe_unix_proc_jira - use UNIX Production service - host_name sas200l - check_command check_nrpe_process!2!1:! -a jira -t 30 - contacts Software Infrastructure Services -} - -define service { - service_description nrpe_unix_proc_wso2_api - use UNIX Production service - host_name ais223l, ais224l - check_command check_nrpe_process!2!1:! -a wso2am/repo -t 30 - contacts Software Infrastructure Services -} - -define service { - service_description nrpe_unix_proc_wso2_esb - use UNIX Production service - host_name sas201l, sas202l - check_command check_nrpe_process!2!1:! -a wso2ei/repo -t 30 - contacts Software Infrastructure Services -} - -define service { - service_description nrpe_unix_proc_wso2_analytics - use UNIX Production service - host_name ais225l - check_command check_nrpe_process!2!1:! -a wso2_analytics/wso2/worker -t 30 - contacts Software Infrastructure Services -} - -define service { - service_description nrpe_unix_proc_neo4j - use UNIX Production service - host_name timeline203l, timeline204l, timeline205l - check_command check_nrpe_process!2!1:! -a neo4j -t 30 - contacts Timeline -} - -define service { - service_description Papercut - use Windows Production service - host_name ss219w - check_command check_multi!-f /usr/local/monitoring/princeton/etc/multi_papercut.cmd -n "$SERVICEDESC$" -l /usr/local/monitoring/princeton -t 80 -T 160 -s HOSTADDRESS=$HOSTADDRESS$ -s indent=4 -r 1+2+4+8+128 - contacts Adam A. Ouellette - contact_groups null -} - -define service { - service_description PeopleSoft Application Logs - IBPHCMPROD - use Windows Production service - host_name sis200l, sis201l - max_check_attempts 1 - normal_check_interval 10 - is_volatile 1 - notification_options w,c - check_command check_nrpe_generic!check_log3! -a /psapp/pt/ps_home8.56.13/appserv/ibphcmprod/LOGS/!'Java.+exception'!' ' ' ' ' -m APPSRV_*.LOG -p ProcessError -s /tmp/nagios_ibphcm_check_state -i -c 1 --missing=CRITICAL --show-filename' - #check_command check_multi!-f /usr/local/monitoring/princeton/etc/multi_pslogs_app_prod.cmd -n "$SERVICEDESC$" -t 40 -T 160 -r 1+2+4+64 -s timeout=$USER3$ -s port=$USER10$ -s host=$HOSTNAME$ -s environment=ibphcmprod -v - contacts DBA Important List -} - -define service { - service_description PeopleSoft Application Logs - IBPCSPROD - use Windows Production service - host_name sis202l, sis203l - max_check_attempts 1 - normal_check_interval 10 - is_volatile 1 - notification_options w,c - check_command check_nrpe_generic!check_log3! -a /psapp/pt/ps_home8.56.13/appserv/ibpcsprod/LOGS/!'Java.+exception'!' ' ' ' ' -m APPSRV_*.LOG -p ProcessError -s /tmp/nagios_ibpcs_check_state -i -c 1 --missing=CRITICAL --show-filename' - #check_command check_multi!-f /usr/local/monitoring/princeton/etc/multi_pslogs_app_prod.cmd -n "$SERVICEDESC$" -t 40 -T 160 -r 1+2+4+64 -s timeout=$USER3$ -s port=$USER10$ -s host=$HOSTNAME$ -s environment=ibpcsprod -v - contacts DBA Important List -} - -define service { - service_description PeopleSoft Application Logs - IBPHUBPROD - use Windows Production service - host_name sis204l, sis205l - max_check_attempts 1 - normal_check_interval 10 - is_volatile 1 - notification_options w,c - check_command check_nrpe_generic!check_log3! -a /psapp/pt/ps_home8.56.13/appserv/ibphubprod/LOGS/!'Java.+exception'!' ' ' ' ' -m APPSRV_*.LOG -p ProcessError -s /tmp/nagios_ibphub_check_state -i -c 1 --missing=CRITICAL --show-filename' - #check_command check_multi!-f /usr/local/monitoring/princeton/etc/multi_pslogs_app_prod.cmd -n "$SERVICEDESC$" -t 40 -T 160 -r 1+2+4+64 -s timeout=$USER3$ -s port=$USER10$ -s host=$HOSTNAME$ -s environment=ibphubprod -v - contacts DBA Important List -} - -define service { - service_description PeopleSoft Web Logs - PHCMPROD - use Windows Production service - host_name sis206l, sis207l - max_check_attempts 1 - normal_check_interval 10 - is_volatile 1 - notification_options w,c - check_command check_multi!-f /usr/local/monitoring/princeton/etc/multi_pslogs_web_prod.cmd -n "$SERVICEDESC$" -t 40 -T 160 -r 1+2+4+64 -s timeout=$USER3$ -s port=$USER10$ -s host=$HOSTNAME$ -s environment=phcmprod -v - contacts DBA Important List -} - -define service { - service_description PeopleSoft Web Logs - PCSPROD - use Windows Production service - host_name sis208l, sis209l - max_check_attempts 1 - normal_check_interval 10 - is_volatile 1 - notification_options w,c - check_command check_multi!-f /usr/local/monitoring/princeton/etc/multi_pslogs_web_prod.cmd -n "$SERVICEDESC$" -t 40 -T 160 -r 1+2+4+64 -s timeout=$USER3$ -s port=$USER10$ -s host=$HOSTNAME$ -s environment=pcsprod -v - contacts DBA Important List -} - -define service { - service_description PeopleSoft Web Logs - PHUBPROD - use Windows Production service - host_name sis210l, sis211l - max_check_attempts 1 - normal_check_interval 10 - is_volatile 1 - notification_options w,c - check_command check_multi!-f /usr/local/monitoring/princeton/etc/multi_pslogs_web_prod.cmd -n "$SERVICEDESC$" -t 40 -T 160 -r 1+2+4+64 -s timeout=$USER3$ -s port=$USER10$ -s host=$HOSTNAME$ -s environment=phubprod -v - contacts DBA Important List -} - -define service { - service_description PeopleSoft Web Logs - PIBPROD - use Windows Production service - host_name sis212l, sis213l - max_check_attempts 1 - normal_check_interval 10 - is_volatile 1 - notification_options w,c - check_command check_multi!-f /usr/local/monitoring/princeton/etc/multi_pslogs_web_prod.cmd -n "$SERVICEDESC$" -t 40 -T 160 -r 1+2+4+64 -s timeout=$USER3$ -s port=$USER10$ -s host=$HOSTNAME$ -s environment=pibprod -v - contacts DBA Important List -} - -define service { - service_description nrpe_win_service_SMTP - use Windows Production service - host_name uhs209w, uhs210w - check_command check_nrpe_win_service!"Simple Mail Transfer Protocol (SMTP)" - contacts DBA Important List -} - -define service { - service_description nrpe_win_service_T2FlexSchedulerServicex64 - use Windows Production service - host_name aisparking200w - check_command check_nrpe_win_service!"T2FlexSchedulerServicex64" - contacts Charles T. Tennyson, pac_usapps, Pamela M. Slater -} - -#define service { -# service_description nrpe_win_service_IBM_HTTP_Server -# use Windows Production service -# host_name maximo1 -# check_command check_nrpe_win_service!"IBM HTTP Server 7.0" -# contact_groups Maximo -#} - -define service { - service_description SMB - use UNIX Production service - host_name prov01 - check_command check_smb_share - contacts Identity and Access Management -} - -define service { - service_description Samba - use UNIX Production service - host_name aissmb225l - check_command check_smb_share! -s grndwk2! -u PRINCETON\\grndwk2! -p th4de/DC - contacts ESS Storage, ESS UNIX List -} - -define service { - service_description Samba - use UNIX Dev/QA service - host_name aissmb325l - check_command check_smb_share! -s grndwk2! -u PRINCETON\\grndwk2! -p th4de/DC - contacts ESS Storage, ESS UNIX List -} - -define service { - service_description nrpe_unixtest_mountpoint_listserv - use UNIX Dev/QA service - host_name csglists300l - check_command check_nrpe_generic!check_mountpoint! -a /var/local/listserv!tmp - contacts CISDR -} - -define service { - service_description nrpe_unixtest_mountpoint_listserv - use UNIX Dev/QA service - host_name csglists301l - check_command check_nrpe_generic!check_mountpoint! -a /var/local/listserv.replica!tmp - contacts CISDR -} - -define service { - service_description nrpe_unix_mountpoint_listserv - use UNIX Production service - host_name csglists200l - check_command check_nrpe_generic!check_mountpoint! -a /var/local/listserv!tmp - contacts CISDR -} - - -define service { - service_description Automation - use UNIX Dev/QA service - host_name autom100l, autom101l - check_command check_multi!-f /usr/local/monitoring/princeton/etc/multi_apid.cmd -n "$SERVICEDESC$" -r 1+2+4 -s timeout=$USER3$ -s port=$USER10$ -s host=$HOSTNAME$ -v - contacts Networking -} - - -define service { - service_description Automation - use UNIX Production service - host_name autom200l, autom201l - check_command check_multi!-f /usr/local/monitoring/princeton/etc/multi_apid.cmd -n "$SERVICEDESC$" -r 1+2+4 -s timeout=$USER3$ -s port=$USER10$ -s host=$HOSTNAME$ -v - contacts Networking - contact_groups Networking Pager -} - - -define service { - service_description HTTP - use UNIX Dev/QA service - host_name autumn-dev - check_command check_http - contacts Networking -} - - -define service { - service_description HTTPS - use UNIX Dev/QA service - host_name autumn-dev - check_command check_https - contacts Networking -} - - -define service { - service_description HTTP - use UNIX Production service - host_name autumn - check_command check_http - contacts Networking - contact_groups Networking Pager -} - - -define service { - service_description HTTPS - use UNIX Production service - host_name autumn - check_command check_https - contacts Networking - contact_groups Networking Pager -} - - -# -# $Header: /usr/local/monitoring/nagios/etc/services/RCS/cpanel_devqa_services.cfg,v 1.3 2014/09/11 17:33:52 nagios Exp nagios $ -# -# Cpanel Dev/QA services -# - -define service { - service_description nrpe_unixtest_agent_status - use UNIX Dev/QA service - hostgroup_name CPanel Dev/QA - max_check_attempts 5 - check_freshness 1 - freshness_threshold 1220 - check_command check_nrpe_agent - contacts Cpanel Admins -} - -define service { - service_description nrpe_unixtest_active_mem - use UNIX Dev/QA service - hostgroup_name CPanel Dev/QA - process_perf_data 1 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_active_mem!90!95 - contacts Cpanel Admins -} - -define service { - service_description nrpe_unixtest_cpu - use UNIX Dev/QA service - hostgroup_name CPanel Dev/QA - max_check_attempts 6 - normal_check_interval 10 - retry_check_interval 10 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_cpu!50!70!2!1 - contacts Cpanel Admins -} - -define service { - service_description nrpe_unixtest_disk_system - use UNIX Dev/QA service - hostgroup_name CPanel Dev/QA -#action_url /graphs/cgi-bin/label_graph.cgi?host=$HOSTNAME$&service=nrpe_unixtest_disk_system - check_command check_nrpe_disk_by_class!system - contacts Cpanel Admins -} - -define service { - service_description nrpe_unixtest_swap - use UNIX Dev/QA service - hostgroup_name CPanel Dev/QA - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_swap!20!10 - contacts Cpanel Admins -} - -define service { - service_description nrpe_unixtest_lxfiles - use UNIX Dev/QA service - hostgroup_name CPanel Dev/QA - check_command check_nrpe_unix_lxfiles!-c!/etc/fstab,/etc/group,/etc/hosts,/etc/hosts.allow,/etc/passwd,/etc/syslog.conf - contacts Cpanel Admins -} - -define service { - service_description nrpe_unixtest_proclist_linux - use UNIX Dev/QA service - hostgroup_name CPanel Dev/QA - check_command check_nrpe_proclist!crond,snmpd,sshd,xinetd - contacts Cpanel Admins -} - -define service { - service_description nrpe_unixtest_mounts - use UNIX Dev/QA service - host_name dascpan100l - check_command check_nrpe_mounts - contact_groups null - contacts Cpanel Admins -} - -# -# $Header: /usr/local/monitoring/nagios/etc/services/RCS/cpanel_prod_services.cfg,v 1.2 2014/09/11 17:48:48 nagios Exp nagios $ -# -# Cpanel Production services -# - -define service { - service_description nrpe_unix_agent_status - use UNIX Production service - hostgroup_name CPanel Prod - max_check_attempts 4 - check_command check_nrpe_agent - contacts Cpanel Admins -} - -define service { - service_description nrpe_unix_cpu - use UNIX Production service - hostgroup_name CPanel Prod - max_check_attempts 6 - normal_check_interval 10 - retry_check_interval 10 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_cpu!50!70!2!1 - contacts Cpanel Admins -} - -define service { - service_description nrpe_unix_active_mem - use UNIX Production service - hostgroup_name CPanel Prod - process_perf_data 1 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_active_mem!90!95 - contacts Cpanel Admins -} - -define service { - service_description nrpe_unix_swap - use UNIX Production service - hostgroup_name CPanel Prod - notification_options c,r - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_swap!20!10 - contacts Cpanel Admins -} - -define service { - service_description nrpe_unix_disk_system - use UNIX Production service - hostgroup_name CPanel Prod -#action_url /graphs/cgi-bin/label_graph.cgi?host=$HOSTNAME$&service=nrpe_unix_disk_system - check_command check_nrpe_disk_by_class!system - contacts Cpanel Admins -} - -define service { - service_description nrpe_unix_lxfiles - use UNIX Production service - hostgroup_name CPanel Prod - check_command check_nrpe_unix_lxfiles!-c!/etc/fstab,/etc/group,/etc/hosts,/etc/hosts.allow,/etc/passwd,/etc/syslog.conf - contacts Cpanel Admins -} - -define service { - service_description nrpe_unix_proclist_linux - use UNIX Production service - hostgroup_name CPanel Prod - check_command check_nrpe_proclist!crond,snmpd,sshd,xinetd - contacts Cpanel Admins -} - -define service { - service_description nrpe_unix_disk_app_das - use UNIX Production service - hostgroup_name CPanel Prod - check_command check_nrpe_disk_by_class!das - notification_options w,c,r - contacts Cpanel Admins -} - - -define service { - service_description imap_ssl_login_ex2010cas - use generic-service-active - host_name exchangeimap - max_check_attempts 2 - normal_check_interval 10 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_imapssl!csgtst06 - contacts CISDR -} - -define service { - service_description webcheck_https_SharePoint - use generic-service - host_name sp, sp2010prod - check_command check_https_sp!https://$HOSTNAME$.Princeton.EDU/oit/csg/sharepoint/default.aspx!groundwk - contacts Sharepoint Admin -} - -define service { - service_description webcheck_https_SharePoint - use generic-service - host_name sp2016 - check_command check_https_sp-2016!https://$HOSTNAME$.Princeton.EDU/SiteAssets!groundwk - contacts Sharepoint Admin -} - -define service { - service_description webcheck_https_mysite2010prod - use generic-service - host_name sp2010prod - check_command check_https_sp_logos!https://mysite2010prod.Princeton.EDU!groundwk!$USER30$ - contacts Sharepoint Admin -} - -define service { - service_description webcheck_https_mysite2016 - use generic-service - host_name sp2016 - check_command check_https_sp_logos-2016!https://mysite2016.Princeton.EDU!groundwk!$USER30$ - contacts Sharepoint Admin -} - -define service { - service_description webcheck_https_WSS_SP4_Content - use generic-service - host_name sp2010prod - check_command check_https_sp!https://sp2010prod.princeton.edu/wsssp4test/SitePages/Home.aspx!groundwk!$USER30$ - contacts Sharepoint Admin -} - -define service { - service_description SMTP - use generic-service-active - host_name csghubprod, csghub208w, csghub209w, lists, oldsmtp, smtp - max_check_attempts 5 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_smtp!5!10 - contacts CISDR, CSG OnCall -} - -define service { - service_description SMTP - use generic-service - host_name csgsmtp202l, csgsmtp203l - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_smtp!5!10!-p 25 -S - contacts CISDR -} - -define service { - service_description SMTP - use generic-service - host_name oaamx101l, oaamx201l, oaamx202l - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_smtp!5!10!-p 25 -S - contacts CISDR -} - -define service { - service_description SMTP Submission - use generic-service - host_name csgsmtp202l, csgsmtp203l - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_smtp!5!10!-p 587 -S - contacts CISDR -} - -define service { - service_description SMTP Submission - use generic-service - host_name oaamx101l, oaamx201l, oaamx202l - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_smtp!5!10!-p 587 -S - contacts CISDR -} - -define service { - service_description SMTPS - use generic-service - host_name csgsmtp202l, csgsmtp203l - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_smtps!5!10 - contacts CISDR -} - -define service { - service_description SMTPS - use generic-service - host_name oaamx101l, oaamx201l, oaamx202l - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_smtps!5!10 - contacts CISDR -} - -define service { - service_description SMTPS - use generic-service-active - host_name smtp - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_smtp_tls!5!7 - contacts CISDR, CSG OnCall -} - -define service { - service_description SMTP - use generic-service-active - host_name ppa01, ppa02, ppa03, ppa04 - max_check_attempts 5 - normal_check_interval 10 - retry_check_interval 5 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_smtp!5!10 - contacts CISDR -} - -define service { - service_description https_login_deptedit - use generic-service - host_name deptbedit, www-dept-edit - max_check_attempts 5 - notification_period roxen-devedit - check_command check_https_ba!/csgtest/index.xml?__toolbar=1&!443!Home!6!8!-a groundwk:th4de/DC -S - contacts CISDR -} - -define service { - service_description webcheck_https_login_aisedit - use generic-service - host_name aisedit - max_check_attempts 5 - notification_period roxen-devedit - check_command check_https_ba!/csgtest/index.xml?__toolbar=1&!443!Home!6!8!-a groundwk:th4de/DC -S - contacts CISDR -} - -define service { - service_description email ppa01 to office365 - use email-end2end - host_name email-end2end - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check email end2end ppa!grndwk2@princeton.edu!ppa01.Princeton.EDU!outlook.office365.com - contacts CISDR -} - -define service { - service_description email ppa02 to office365 - use email-end2end - host_name email-end2end - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check email end2end ppa!grndwk2@princeton.edu!ppa02.Princeton.EDU!outlook.office365.com - contacts CISDR -} - -define service { - service_description email ppa03 to office365 - use email-end2end - host_name email-end2end - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check email end2end ppa!grndwk2@princeton.edu!ppa03.Princeton.EDU!outlook.office365.com - contacts CISDR -} - -define service { - service_description email ppa04 to office365 - use email-end2end - host_name email-end2end - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check email end2end ppa!grndwk2@princeton.edu!ppa04.Princeton.EDU!outlook.office365.com - contacts CISDR -} - -define service { - service_description email smtp to office365 - use email-end2end - host_name email-end2end - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check email end2end TLS!grndwk2!smtp.Princeton.EDU!outlook.office365.com - contacts CISDR -} - -define service { - service_description email gmail to office365 - use email-end2end - host_name email-end2end - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check email end2end SSL advanced!groundwk@Princeton.EDU!groundwk@Princeton.EDU!smtp.gmail.com!grndwk2@Princeton.EDU!grndwk2@Princeton.EDU!outlook.office365.com - contacts CISDR -} - -define service { - service_description email exchange to gmail - use email-end2end - host_name email-end2end - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check email end2end SSL advanced!grndwk2@Princeton.EDU!grndwk2!smtp.Princeton.EDU!groundwk@g.Princeton.EDU!groundwk@Princeton.EDU!imap.gmail.com - contacts CISDR -} - -define service { - service_description email office365 to exchange - use email-end2end - host_name email-end2end - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check email end2end TLS-SSL!csgtst07@Princeton.EDU!csgtst07@Princeton.EDU!$USER12$!smtp.office365.com!csgtst04@Princeton.EDU!csgtst04@Princeton.EDU!$USER12$!exchangeimap.Princeton.EDU - contacts CISDR -} - -define service { - service_description email exchange to office365 - use email-end2end - host_name email-end2end - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check email end2end TLS-SSL!grndwk2@Princeton.EDU!grndwk2!$USER30$!smtp.Princeton.EDU!csgtst07@Princeton.EDU!csgtst07@Princeton.EDU!$USER12$!outlook.office365.com - contacts CISDR -} - -define service { - service_description email local to listserv - use email-end2end - host_name email-end2end - check_period Listserv_hours - #max_check_attempts 4 - #normal_check_interval 15 - #retry_check_interval 5 - notification_period Listserv_hours - #check_command check_imap_receive!exchangeimap.Princeton.EDU!"-20 minutes"!HEADER!Subject!"Lists tests" - check_command check email end2end TLS-SSL!grndwk2@Princeton.EDU!grndwk2!$USER30$!smtp.Princeton.EDU!grndwk2@Princeton.EDU!grndwk2@Princeton.EDU!$USER30$!outlook.office365.com - contacts CISDR -} - -define service { - service_description wowza csgwowza201w - use generic-service-active - host_name puwowzalive - check_command check_rtmp!rtmp://csgwowza201w.princeton.edu/nagios/mp4:sample.mp4 - contacts CSG OnCall, Dwight D. Bashore -} - -define service { - service_description wowza csgwowza202w - use generic-service-active - host_name puwowzalive - check_command check_rtmp!rtmp://csgwowza202w.princeton.edu/nagios/mp4:sample.mp4 - contacts CSG OnCall, Dwight D. Bashore -} - -define service { - service_description wowza puwowza - use generic-service-active - host_name puwowzalive - check_command check_rtmp!rtmp://puwowza.princeton.edu/nagios/mp4:sample.mp4 - contacts CSG OnCall, Dwight D. Bashore -} - -define service { - service_description wowza IAMencoder204w ARABIC - use generic-service-active - host_name puwowzalive - check_command check_rtmp!rtmp://puwowzalive.princeton.edu:1935/tigertv-live/ARABIC - contacts CSG OnCall, Dwight D. Bashore -} - -define service { - service_description wowza IAMencoder204w CNBC - use generic-service-active - host_name puwowzalive - check_command check_rtmp!rtmp://puwowzalive.princeton.edu:1935/tigertv-live/CNBC - contacts CSG OnCall, Dwight D. Bashore -} - -define service { - service_description wowza IAMencoder204w CNN - use generic-service-active - host_name puwowzalive - check_command check_rtmp!rtmp://puwowzalive.princeton.edu:1935/tigertv-live/CNN - contacts CSG OnCall, Dwight D. Bashore -} - -define service { - service_description wowza IAMencoder204w CSPAN - use generic-service-active - host_name puwowzalive - check_command check_rtmp!rtmp://puwowzalive.princeton.edu:1935/tigertv-live/CSPAN - contacts CSG OnCall, Dwight D. Bashore -} - -define service { - service_description wowza IAMencoder204w FOX - use generic-service-active - host_name puwowzalive - check_command check_rtmp!rtmp://puwowzalive.princeton.edu:1935/tigertv-live/FOX - contacts CSG OnCall, Dwight D. Bashore -} - -define service { - service_description wowza IAMencoder204w MSNBC - use generic-service-active - host_name puwowzalive - check_command check_rtmp!rtmp://puwowzalive.princeton.edu:1935/tigertv-live/MSNBC - contacts CSG OnCall, Dwight D. Bashore -} - -define service { - service_description wowza IAMencoder205w ABC_NY - use generic-service-active - host_name puwowzalive - check_command check_rtmp!rtmp://puwowzalive.princeton.edu:1935/tigertv-live/ABC_NY - contacts CSG OnCall, Dwight D. Bashore -} - -define service { - service_description wowza IAMencoder205W BLOOMBERG - use generic-service-active - host_name puwowzalive - check_command check_rtmp!rtmp://puwowzalive.princeton.edu:1935/tigertv-live/BLOOMBERG - contacts CSG OnCall, Dwight D. Bashore -} - -define service { - service_description wowza IAMencoder205w CBS_NY - use generic-service-active - host_name puwowzalive - check_command check_rtmp!rtmp://puwowzalive.princeton.edu:1935/tigertv-live/CBS_NY - contacts CSG OnCall, Dwight D. Bashore -} - -define service { - service_description wowza IAMencoder205w FOX_NY - use generic-service-active - host_name puwowzalive - check_command check_rtmp!rtmp://puwowzalive.princeton.edu:1935/tigertv-live/FOX_NY - contacts CSG OnCall, Dwight D. Bashore -} - -define service { - service_description wowza IAMencoder205w NBC_NY - use generic-service-active - host_name puwowzalive - check_command check_rtmp!rtmp://puwowzalive.princeton.edu:1935/tigertv-live/NBC_NY - contacts CSG OnCall, Dwight D. Bashore -} - -define service { - service_description wowza IAMencoder205w PBS_WNET - use generic-service-active - host_name puwowzalive - check_command check_rtmp!rtmp://puwowzalive.princeton.edu:1935/tigertv-live/PBS_WNET - contacts CSG OnCall, Dwight D. Bashore -} - -define service { - service_description wowza IAMencoder204w WEATHER - use generic-service-active - host_name puwowzalive - check_command check_rtmp!rtmp://puwowzalive.princeton.edu:1935/tigertv-live/WEATHER - contacts CSG OnCall, Dwight D. Bashore -} - -define service { - service_description wowza IAMencoder206w CHINESE - use generic-service-active - host_name puwowzalive - check_command check_rtmp!rtmp://puwowzalive.princeton.edu:1935/tigertv-live/CHINESE - contacts CSG OnCall, Dwight D. Bashore -} - -define service { - service_description wowza IAMencoder206w FRENCH - use generic-service-active - host_name puwowzalive - check_command check_rtmp!rtmp://puwowzalive.princeton.edu:1935/tigertv-live/FRENCH - contacts CSG OnCall, Dwight D. Bashore -} - -define service { - service_description wowza IAMencoder206w GERMAN - use generic-service-active - host_name puwowzalive - check_command check_rtmp!rtmp://puwowzalive.princeton.edu:1935/tigertv-live/GERMAN - contacts CSG OnCall, Dwight D. Bashore -} - -define service { - service_description wowza IAMencoder206w HEBREW - use generic-service-active - host_name puwowzalive - check_command check_rtmp!rtmp://puwowzalive.princeton.edu:1935/tigertv-live/HEBREW - contacts CSG OnCall, Dwight D. Bashore -} - -define service { - service_description wowza IAMencoder206w ITALIAN - use generic-service-active - host_name puwowzalive - check_command check_rtmp!rtmp://puwowzalive.princeton.edu:1935/tigertv-live/ITALIAN - contacts CSG OnCall, Dwight D. Bashore -} - -define service { - service_description wowza IAMencoder206w JAPANESE - use generic-service-active - host_name puwowzalive - check_command check_rtmp!rtmp://puwowzalive.princeton.edu:1935/tigertv-live/JAPANESE - contacts CSG OnCall, Dwight D. Bashore -} - -define service { - service_description wowza IAMencoder206w POLISH - use generic-service-active - host_name puwowzalive - check_command check_rtmp!rtmp://puwowzalive.princeton.edu:1935/tigertv-live/POLISH - contacts CSG OnCall, Dwight D. Bashore -} - -define service { - service_description wowza IAMencoder206w SPANISH - use generic-service-active - host_name puwowzalive - check_command check_rtmp!rtmp://puwowzalive.princeton.edu:1935/tigertv-live/SPANISH - contacts CSG OnCall, Dwight D. Bashore -} - -define service { - service_description CH7 KalturaLive - use generic-service - host_name Kaltura Live - check_command check_service_cluster!$SERVICEDESC$!$SERVICESTATEID:Kaltura Live:CH7 KalturaLive PRIMARY$,$SERVICESTATEID:Kaltura Live:CH7 KalturaLive BACKUP$!!-c @2: - contacts CISDR, CISDR OnCall -} - -define service { - service_description CH8 KalturaLive - use generic-service - host_name Kaltura Live - check_command check_service_cluster!$SERVICEDESC$!$SERVICESTATEID:Kaltura Live:CH8 KalturaLive PRIMARY$,$SERVICESTATEID:Kaltura Live:CH8 KalturaLive BACKUP$!!-c @2: - contacts CISDR, CISDR OnCall -} - -define service { - service_description CH7 KalturaLive PRIMARY - use generic-service-active - host_name Kaltura Live - check_command check_rtmp!rtmp://1_i3gqmr0f.p.kpublish.kaltura.com:1935/kLive/1_i3gqmr0f_1!t=1c1c5054 - contacts Dwight D. Bashore -} - -define service { - service_description CH7 KalturaLive BACKUP - use generic-service-active - host_name Kaltura Live - check_command check_rtmp!rtmp://1_i3gqmr0f.b.kpublish.kaltura.com:1935/kLive/1_i3gqmr0f_1!t=1c1c5054 - contacts Dwight D. Bashore -} - -define service { - service_description CH8 KalturaLive PRIMARY - use generic-service-active - host_name Kaltura Live - check_command check_rtmp!rtmp://1_qtkl6j3o.p.kpublish.kaltura.com:1935/kLive/1_qtkl6j3o_1!t=ed4caab7 - contacts Dwight D. Bashore -} - -define service { - service_description CH8 KalturaLive BACKUP - use generic-service-active - host_name Kaltura Live - check_command check_rtmp!rtmp://1_qtkl6j3o.b.kpublish.kaltura.com:1935/kLive/1_qtkl6j3o_1!t=ed4caab7 - contacts Dwight D. Bashore -} - - - -define service { - service_description nrpe_unixtest_agent_status - use UNIX Dev/QA service - hostgroup_name Oracle Exadata Dev/QA - max_check_attempts 3 - retry_check_interval 3 - check_freshness 1 - freshness_threshold 1220 - check_command check_nrpe_agent - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_active_mem - use UNIX Dev/QA service - hostgroup_name Oracle Exadata Dev/QA - process_perf_data 1 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_active_mem!90!95 - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_cpu_system - use UNIX Dev/QA service - hostgroup_name Oracle Exadata Dev/QA - max_check_attempts 6 - normal_check_interval 10 - retry_check_interval 10 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_cpu_system!70:80!50:70 - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_cpu_user - use UNIX Dev/QA service - hostgroup_name Oracle Exadata Dev/QA - max_check_attempts 6 - normal_check_interval 10 - retry_check_interval 10 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_cpu_user!85:90 - notification_options w,c,r - contacts DBA Important List - contact_groups null -} - -define service { - service_description nrpe_unixtest_load - use UNIX Dev/QA service - hostgroup_name Oracle Exadata Dev/QA - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_load!32,33,34!50,51,52!" -r " - notification_options w,c,r - contacts DBA Important List - contact_groups null -} - -define service { - service_description nrpe_unixtest_disk_system - use UNIX Dev/QA service - hostgroup_name Oracle Exadata Dev/QA - check_command check_nrpe_disk_by_class!system - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description snmp_unixtest_disk_app - use UNIX Dev/QA service - hostgroup_name Oracle Exadata Dev/QA - check_command check_snmp_disk!^/(appware|u01)$!85!90 - notification_options w,c,r - contacts DBA Important List - contact_groups DBA Page CRITICAL -} - -define service { - service_description nrpe_unixtest_swap - use UNIX Dev/QA service - hostgroup_name Oracle Exadata Dev/QA - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_swap!80!40 - notification_options w,c,r - contacts DBA Important List -} - - -define service { - service_description snmp_unixtest_proc_memory_usage - use UNIX Dev/QA service - hostgroup_name Oracle Exadata Dev/QA - check_command check_snmp_process-not-matching!^(?\!.*tivoli).*$! -m5000,6000 -o10000 - notification_options w,c,r - contacts DBA Important List -} - - -define service { - service_description nrpe_wintest_disk_app_dba - use Windows Dev/QA service - hostgroup_name DBA Windows Dev/QA - host_name !csgspdb100w, !csgspdb101w - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks!90%!97% - contact_groups null - contacts DBA Important List -} - -define service { - service_description snmp_wintest_disk - use Windows Dev/QA service - host_name csgspdb100w, csgspdb101w - notification_period 8x5 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_snmp_disk!^[D-Z]:\\ !90!97 - contact_groups null - contacts DBA Important List -} - -define service { - service_description nrpe_wintest_service_sql2k5 - use Windows Dev/QA service - hostgroup_name DBA SQLServer Dev/QA, MSSQL Dev Clusters - check_command check_nrpe_win_service!MSSQLSERVER SQLSERVERAGENT - contact_groups null - contacts DBA Important List -} - -define service { - service_description nrpe_wintest_service_sql2k5 - use Windows Dev/QA service - host_name eissql102w - check_command check_nrpe_win_service!"SQL Server (MSSQLSERVER_B)" "SQL Server Agent (MSSQLSERVER_B)" - contact_groups null - contacts DBA Important List -} - -define service { - service_description nrpe_wintest_service_TSM_Scheduler_Quorum - use Windows Dev/QA service - host_name csgspdb1a-c - check_command check_nrpe_win_service!"TSM Central Scheduler Service: Quorum" - contacts DBA Important List -} - - -define service { - service_description nrpe_wintest_service_TSM_Scheduler_SQL - use Windows Dev/QA service - host_name csgspdb1a - check_command check_nrpe_win_service!"TSM Central Scheduler Service: SQL" - contact_groups null - contacts DBA Important List -} - - -define service { - service_description snmp_wintest_service_Cluster - use Windows Production service - host_name csgspdb100w - max_check_attempts 6 - normal_check_interval 10 - retry_check_interval 6 - check_command check_snmp_win_service!"Cluster Service" - contacts DBA Important List -} - -define service { - service_description snmp_wintest_service_SQL_Server_Reporting - use Windows Dev/QA service - host_name eisssrs301w - check_command check_snmp_win_service!"SQL Server Reporting" - contacts DBA Important List -} - - -define service { - service_description nrpe_unix_agent_status - use UNIX Production service - hostgroup_name Oracle Exadata - max_check_attempts 3 - retry_check_interval 1 - check_command check_nrpe_agent - contacts DBA Important List -} - -define service { - service_description snmp_unix_alive - use UNIX Production service - hostgroup_name Oracle Exadata - max_check_attempts 3 - retry_check_interval 2 - check_command check_snmp_alive - contacts Igor V. Gubenko -} - -define service { - service_description nrpe_unix_active_mem - use UNIX Production service - hostgroup_name Oracle Exadata - process_perf_data 1 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_active_mem!90!95 - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unix_cpu_system - use UNIX Production service - hostgroup_name Oracle Exadata - max_check_attempts 6 - normal_check_interval 10 - retry_check_interval 10 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_cpu_system!70:80!50:70 - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unix_cpu_user - use UNIX Production service - hostgroup_name Oracle Exadata - max_check_attempts 6 - normal_check_interval 10 - retry_check_interval 10 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_cpu_user!85:90 - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unix_load - use UNIX Production service - hostgroup_name Oracle Exadata - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_load!32,33,34!50,51,52!" -r " - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unix_lxfiles6 - use UNIX Production service - hostgroup_name Oracle Exadata - check_command check_nrpe_unix_lxfiles!-c!/etc/fstab,/etc/group,/etc/hosts,/etc/hosts.allow,/etc/passwd,/etc/rsyslog.conf - contacts DBA Important List -} - -define service { - service_description nrpe_unix_swap - use UNIX Production service - hostgroup_name Oracle Exadata - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_swap!80!50 - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description snmp_unix_disk_system - use UNIX Production service - hostgroup_name Oracle Exadata - check_command check_snmp_disk!^/(|boot|tmp|usr(|/local)|var(|/local)|home)$!85!90 - contacts nagiosadmin - contact_groups null -} - -define service { - service_description snmp_unix_disk_app - use UNIX Production service - hostgroup_name Oracle Exadata - check_command check_snmp_disk!^/(appware|u01)$!85!90 - notification_options w,c,r - contacts DBA Important List - contact_groups DBA Page CRITICAL -} - -define service { - service_description snmp_unix_proc_memory_usage - use UNIX Production service - hostgroup_name Oracle Exadata - check_command check_snmp_process-not-matching!^(?\!.*tivoli).*$! -m5000,6000 -o10000 - notification_options w,c,r - contacts DBA Important List -} - - - -define service { - service_description nrpe_win_disk_app_dba - use Windows Production service - hostgroup_name DBA Windows Prod - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks!90%!97% - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_win_service_sql2k5 - use Windows Production service - hostgroup_name DBA SQLServer Prod - check_command check_nrpe_win_service!MSSQLSERVER SQLSERVERAGENT - contact_groups null - contacts DBA Important List -} - - -define service { - service_description nrpe_win_service_TSM_Scheduler_SQL - use Windows Production service - host_name csgspdb2a - check_command check_nrpe_win_service!"TSM Central Scheduler Service: SQL" - contact_groups null - contacts DBA Important List -} - - -define service { - service_description nrpe_win_service_sql2k5 - use Windows Production service - hostgroup_name MSSQL Prod Clusters - host_name !csgspdb2a-c - check_command check_nrpe_win_service!MSSQLSERVER SQLSERVERAGENT - contact_groups DBA Page -} - -define service { - service_description snmp_win_service_SQL_Server_Reporting - use Windows Production service - host_name eisssrs201w - check_command check_snmp_win_service!"SQL Server Reporting" - contact_groups DBA Page -} - - -define service { - service_description Gearman - use generic-service - host_name mon204l - normal_check_interval 2 - retry_check_interval 2 - max_check_attempts 3 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_gearman!$HOSTNAME$!-q host -W 1000 -C 2000 -w 1000 - event_handler slave_connection_reset!$SERVICESTATE:mon205l:Gearman$ - notification_interval 60 - contacts Igor V. Gubenko - #contact_groups Monitoring Admins Pager - contact_groups null -} - -define service { - service_description Gearman - use generic-service - host_name mon205l - normal_check_interval 2 - retry_check_interval 2 - max_check_attempts 2 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_gearman!$HOSTNAME$!-W 1000 -C 2000 -w 1000 -c 2000 - event_handler slave_connection_reset!$SERVICESTATE:mon204l:Gearman$ - notification_interval 60 - contacts Igor V. Gubenko - #contact_groups Monitoring Admins Pager - contact_groups null -} - -define service { - service_description Gearman Hub - use generic-service - host_name monitor - normal_check_interval 2 - retry_check_interval 2 - max_check_attempts 2 - #event_handler gearman_server_fail - check_command check_gearman!$HOSTNAME$!-q host -W 300 -C 450 -w 100 - notification_interval 60 - contacts Igor V. Gubenko, Igor Yahoo, Igor Pager, Igor Pager External - #contact_groups Monitoring Admins Pager - contact_groups null -} - -define service { - service_description Gearman DevQA - use generic-service - host_name mon302l - normal_check_interval 2 - retry_check_interval 2 - max_check_attempts 2 - flap_detection_enabled 0 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_gearman!$HOSTNAME$!-q host -W 1000 -C 2000 -w 1000 -c 2000 - event_handler slave_connection_reset!$SERVICESTATE:mon303l:Gearman DevQA$ - notification_interval 360 - notification_period 8x5 - contacts Igor V. Gubenko - contact_groups null -} - -define service { - service_description Gearman DevQA - use generic-service - host_name mon303l - normal_check_interval 2 - retry_check_interval 2 - max_check_attempts 2 - flap_detection_enabled 0 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_gearman!$HOSTNAME$!-W 1000 -C 2000 -w 1000 -c 2000 - event_handler slave_connection_reset!$SERVICESTATE:mon302l:Gearman DevQA$ - notification_interval 360 - notification_period 8x5 - contacts Igor V. Gubenko - contact_groups null -} - -define service { - service_description Gearman DevQA Hub - use generic-service - host_name monitor-dev - normal_check_interval 2 - retry_check_interval 2 - max_check_attempts 2 - flap_detection_enabled 0 - #event_handler gearman_server_fail - check_command check_gearman!$HOSTNAME$!-q host -W 500 -C 650 -w 200 - notification_interval 360 - notification_period 8x5 - contacts nobody - contact_groups null -} - -define service { - service_description Gearman worker 151 Untrust - use Gearman Worker Cluster - host_name monitor - check_command check_service_cluster!$SERVICEDESC$!$SERVICESTATEID:monitor:Gearman worker ims204 151 Untrust alef$,$SERVICESTATEID:monitor:Gearman worker ims204 151 Untrust bet$,$SERVICESTATEID:monitor:Gearman worker ims205 151 Untrust gimel failover$,$SERVICESTATEID:monitor:Gearman worker ims205 151 Untrust dalet failover$!-w @3:!-c @4: -} - -define service { - service_description Gearman worker ims204 151 Untrust alef - use Gearman Worker - host_name monitor - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims204_151_Untrust_alef" -s check -} - -define service { - service_description Gearman worker ims204 151 Untrust bet - use Gearman Worker - host_name monitor - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims204_151_Untrust_bet" -s check -} - -define service { - service_description Gearman worker ims204 NS Untrust gimel failover - use Gearman Worker - host_name monitor - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims204_NS_Untrust_gimel" -s check - notifications_enabled 0 -} - -define service { - service_description Gearman worker ims204 NS Untrust dalet failover - use Gearman Worker - host_name monitor - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims204_NS_Untrust_dalet" -s check - notifications_enabled 0 -} - -define service { - service_description Gearman worker ims204 NS Cross hei - use Gearman Worker - host_name monitor - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims204_NS_Cross_hei" -s check - notifications_enabled 0 -} - -define service { - service_description Gearman worker NS Untrust - use Gearman Worker Cluster - host_name monitor - check_command check_service_cluster!$SERVICEDESC$!$SERVICESTATEID:monitor:Gearman worker ims205 NS Untrust alef$,$SERVICESTATEID:monitor:Gearman worker ims205 NS Untrust bet$,$SERVICESTATEID:monitor:Gearman worker ims204 NS Untrust gimel failover$,$SERVICESTATEID:monitor:Gearman worker ims204 NS Untrust dalet failover$!-w @3:!-c @4: -} - -define service { - service_description Gearman worker ims205 NS Untrust alef - use Gearman Worker - host_name monitor - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims205_NS_Untrust_alef" -s check -} - -define service { - service_description Gearman worker ims205 NS Untrust bet - use Gearman Worker - host_name monitor - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims205_NS_Untrust_bet" -s check -} - -define service { - service_description Gearman worker ims205 151 Untrust gimel failover - use Gearman Worker - host_name monitor - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims205_151_Untrust_gimel" -s check - notifications_enabled 0 -} - -define service { - service_description Gearman worker ims205 151 Untrust dalet failover - use Gearman Worker - host_name monitor - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims205_151_Untrust_dalet" -s check - notifications_enabled 0 -} - -define service { - service_description Gearman worker ims205 151 Cross hei - use Gearman Worker - host_name monitor - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims204_NS_Cross_hei" -s check - notifications_enabled 0 -} - -define service { - service_description Gearman worker ims223 NS Trust alef - use Gearman Worker - host_name monitor - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims223_NS_Trust_alef" -s check -} - -define service { - service_description Gearman worker ims223 NS Trust bet - use Gearman Worker - host_name monitor - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims223_NS_Trust_bet" -s check -} - -define service { - service_description Gearman worker ims222 151 Trust alef - use Gearman Worker - host_name monitor - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims222_151_Trust_alef" -s check -} - -define service { - service_description Gearman worker ims222 151 Trust bet - use Gearman Worker - host_name monitor - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims222_151_Trust_bet" -s check -} - -define service { - service_description Gearman worker ims222 NS Trust gimel failover - use Gearman Worker - host_name monitor - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims222_NS_Trust_gimel" -s check - notifications_enabled 0 -} - -define service { - service_description Gearman worker ims222 NS Trust dalet failover - use Gearman Worker - host_name monitor - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims222_NS_Trust_dalet" -s check - notifications_enabled 0 -} - -define service { - service_description Gearman worker ims223 151 Trust gimel failover - use Gearman Worker - host_name monitor - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims223_151_Trust_gimel" -s check - notifications_enabled 0 -} - -define service { - service_description Gearman worker ims223 151 Trust dalet failover - use Gearman Worker - host_name monitor - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims223_151_Trust_dalet" -s check - notifications_enabled 0 -} - -define service { - service_description Gearman worker 151 PrivateDMZ - use Gearman Worker Cluster - host_name monitor - check_command check_service_cluster!$SERVICEDESC$!$SERVICESTATEID:monitor:Gearman worker ims218 151 PrivateDMZ alef$,$SERVICESTATEID:monitor:Gearman worker ims218 151 PrivateDMZ bet$,$SERVICESTATEID:monitor:Gearman worker ims219 151 PrivateDMZ gimel failover$,$SERVICESTATEID:monitor:Gearman worker ims219 151 PrivateDMZ dalet failover$,$SERVICESTATEID:monitor:Gearman worker ims220 151 PrivateDMZ alef$,$SERVICESTATEID:monitor:Gearman worker ims220 151 PrivateDMZ bet$,$SERVICESTATEID:monitor:Gearman worker ims221 151 PrivateDMZ gimel failover$,$SERVICESTATEID:monitor:Gearman worker ims221 151 PrivateDMZ dalet failover$!-w @5:!-c @6: -} - -define service { - service_description Gearman worker ims218 151 PrivateDMZ alef - use Gearman Worker - host_name monitor - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims218_151_PrivateDMZ_alef" -s check -} - -define service { - service_description Gearman worker ims218 151 PrivateDMZ bet - use Gearman Worker - host_name monitor - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims218_151_PrivateDMZ_bet" -s check -} - -define service { - service_description Gearman worker ims218 NS PrivateDMZ gimel failover - use Gearman Worker - host_name monitor - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims218_NS_PrivateDMZ_gimel" -s check - notifications_enabled 0 -} - -define service { - service_description Gearman worker ims218 NS PrivateDMZ dalet failover - use Gearman Worker - host_name monitor - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims218_NS_PrivateDMZ_dalet" -s check - notifications_enabled 0 -} - -define service { - service_description Gearman worker ims220 151 PrivateDMZ alef - use Gearman Worker - host_name monitor - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims220_151_PrivateDMZ_alef" -s check -} - -define service { - service_description Gearman worker ims220 151 PrivateDMZ bet - use Gearman Worker - host_name monitor - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims220_151_PrivateDMZ_bet" -s check -} - -define service { - service_description Gearman worker ims220 NS PrivateDMZ gimel failover - use Gearman Worker - host_name monitor - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims220_NS_PrivateDMZ_gimel" -s check - notifications_enabled 0 -} - -define service { - service_description Gearman worker ims220 NS PrivateDMZ dalet failover - use Gearman Worker - host_name monitor - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims220_NS_PrivateDMZ_dalet" -s check - notifications_enabled 0 -} - -define service { - service_description Gearman worker NS PrivateDMZ - use Gearman Worker Cluster - host_name monitor - check_command check_service_cluster!$SERVICEDESC$!$SERVICESTATEID:monitor:Gearman worker ims219 NS PrivateDMZ alef$,$SERVICESTATEID:monitor:Gearman worker ims219 NS PrivateDMZ bet$,$SERVICESTATEID:monitor:Gearman worker ims218 NS PrivateDMZ gimel failover$,$SERVICESTATEID:monitor:Gearman worker ims218 NS PrivateDMZ dalet failover$,$SERVICESTATEID:monitor:Gearman worker ims221 NS PrivateDMZ alef$,$SERVICESTATEID:monitor:Gearman worker ims221 NS PrivateDMZ bet$,$SERVICESTATEID:monitor:Gearman worker ims220 NS PrivateDMZ gimel failover$,$SERVICESTATEID:monitor:Gearman worker ims220 NS PrivateDMZ dalet failover$!-w @5:!-c @6: -} - -define service { - service_description Gearman worker ims219 NS PrivateDMZ alef - use Gearman Worker - host_name monitor - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims219_NS_PrivateDMZ_alef" -s check -} - -define service { - service_description Gearman worker ims219 NS PrivateDMZ bet - use Gearman Worker - host_name monitor - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims219_NS_PrivateDMZ_bet" -s check -} - -define service { - service_description Gearman worker ims219 151 PrivateDMZ gimel failover - use Gearman Worker - host_name monitor - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims219_151_PrivateDMZ_gimel" -s check - notifications_enabled 0 -} - -define service { - service_description Gearman worker ims219 151 PrivateDMZ dalet failover - use Gearman Worker - host_name monitor - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims219_151_PrivateDMZ_dalet" -s check - notifications_enabled 0 -} - -define service { - service_description Gearman worker ims221 NS PrivateDMZ alef - use Gearman Worker - host_name monitor - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims221_NS_PrivateDMZ_alef" -s check -} - -define service { - service_description Gearman worker ims221 NS PrivateDMZ bet - use Gearman Worker - host_name monitor - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims221_NS_PrivateDMZ_bet" -s check -} - -define service { - service_description Gearman worker ims221 151 PrivateDMZ gimel failover - use Gearman Worker - host_name monitor - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims221_151_PrivateDMZ_gimel" -s check - notifications_enabled 0 -} - -define service { - service_description Gearman worker ims221 151 PrivateDMZ dalet failover - use Gearman Worker - host_name monitor - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims221_151_PrivateDMZ_dalet" -s check - notifications_enabled 0 -} - -define service { - service_description Gearman worker EBT - use Gearman Worker Cluster - host_name monitor - check_command check_service_cluster!$SERVICEDESC$!$SERVICESTATEID:monitor:Gearman worker ims316 EBT alef$,$SERVICESTATEID:monitor:Gearman worker ims316 EBT bet$,$SERVICESTATEID:monitor:Gearman worker ims317 EBT alef$,$SERVICESTATEID:monitor:Gearman worker ims317 EBT bet$!-w @3:!-c @4: -} - -define service { - service_description Gearman worker ims316 EBT alef - use Gearman Worker - host_name monitor - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims316_EBT_alef" -s check -} - -define service { - service_description Gearman worker ims316 EBT bet - use Gearman Worker - host_name monitor - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims316_EBT_bet" -s check -} - -define service { - service_description Gearman worker ims317 EBT alef - use Gearman Worker - host_name monitor - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims317_EBT_alef" -s check -} - -define service { - service_description Gearman worker ims317 EBT bet - use Gearman Worker - host_name monitor - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims317_EBT_bet" -s check -} - -define service { - service_description Gearman worker ims224 NS PublicDMZ gimel failover - use Gearman Worker - host_name monitor - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims224_NS_PublicDMZ_gimel" -s check - notifications_enabled 0 -} - -define service { - service_description Gearman worker ims224 NS PublicDMZ dalet failover - use Gearman Worker - host_name monitor - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims224_NS_PublicDMZ_dalet" -s check - notifications_enabled 0 -} - -define service { - service_description Gearman worker ims224 151 PublicDMZ alef - use Gearman Worker - host_name monitor - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims224_151_PublicDMZ_alef" -s check -} - -define service { - service_description Gearman worker ims224 151 PublicDMZ bet - use Gearman Worker - host_name monitor - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims224_151_PublicDMZ_bet" -s check -} - -define service { - service_description Gearman worker ims225 NS PublicDMZ alef - use Gearman Worker - host_name monitor - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims225_NS_PublicDMZ_alef" -s check -} - -define service { - service_description Gearman worker ims225 NS PublicDMZ bet - use Gearman Worker - host_name monitor - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims225_NS_PublicDMZ_bet" -s check -} - -define service { - service_description Gearman worker ims225 151 PublicDMZ gimel failover - use Gearman Worker - host_name monitor - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims225_151_PublicDMZ_gimel" -s check - notifications_enabled 0 -} - -define service { - service_description Gearman worker ims225 151 PublicDMZ dalet failover - use Gearman Worker - host_name monitor - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims225_151_PublicDMZ_dalet" -s check - notifications_enabled 0 -} - -define service { - service_description Gearman worker 151 PublicDMZ - use Gearman Worker Cluster - host_name monitor - check_command check_service_cluster!$SERVICEDESC$!$SERVICESTATEID:monitor:Gearman worker ims224 151 PublicDMZ alef$,$SERVICESTATEID:monitor:Gearman worker ims224 151 PublicDMZ bet$,$SERVICESTATEID:monitor:Gearman worker ims225 151 PublicDMZ gimel failover$,$SERVICESTATEID:monitor:Gearman worker ims225 151 PublicDMZ dalet failover$!-w @3:!-c @4: -} - -define service { - service_description Gearman worker NS PublicDMZ - use Gearman Worker Cluster - host_name monitor - check_command check_service_cluster!$SERVICEDESC$!$SERVICESTATEID:monitor:Gearman worker ims225 NS PublicDMZ alef$,$SERVICESTATEID:monitor:Gearman worker ims225 NS PublicDMZ bet$,$SERVICESTATEID:monitor:Gearman worker ims224 NS PublicDMZ gimel failover$,$SERVICESTATEID:monitor:Gearman worker ims224 NS PublicDMZ dalet failover$!-w @3:!-c @4: -} - -define service { - service_description Gearman worker 151 Trust - use Gearman Worker Cluster - host_name monitor - check_command check_service_cluster!$SERVICEDESC$!$SERVICESTATEID:monitor:Gearman worker ims222 151 Trust alef$,$SERVICESTATEID:monitor:Gearman worker ims222 151 Trust bet$,$SERVICESTATEID:monitor:Gearman worker ims223 151 Trust gimel failover$,$SERVICESTATEID:monitor:Gearman worker ims223 151 Trust dalet failover$!-w @3:!-c @4: -} - -define service { - service_description Gearman worker NS Trust - use Gearman Worker Cluster - host_name monitor - check_command check_service_cluster!$SERVICEDESC$!$SERVICESTATEID:monitor:Gearman worker ims223 NS Trust alef$,$SERVICESTATEID:monitor:Gearman worker ims223 NS Trust bet$,$SERVICESTATEID:monitor:Gearman worker ims222 NS Trust gimel failover$,$SERVICESTATEID:monitor:Gearman worker ims222 NS Trust dalet failover$!-w @3:!-c @4: -} - -define service { - service_description Gearman worker 151 Eisfw F5 - use Gearman Worker Cluster - host_name monitor - check_command check_service_cluster!$SERVICEDESC$!$SERVICESTATEID:monitor:Gearman worker ims220 151 PrivateDMZ alef$,$SERVICESTATEID:monitor:Gearman worker ims220 151 PrivateDMZ bet$,$SERVICESTATEID:monitor:Gearman worker ims224 151 PublicDMZ alef$,$SERVICESTATEID:monitor:Gearman worker ims224 151 PublicDMZ bet$,$SERVICESTATEID:monitor:Gearman worker ims222 151 Trust alef$,$SERVICESTATEID:monitor:Gearman worker ims222 151 Trust bet$!-w @5:!-c @6: -} - -define service { - service_description Gearman worker NS Eisfw F5 - use Gearman Worker Cluster - host_name monitor - check_command check_service_cluster!$SERVICEDESC$!$SERVICESTATEID:monitor:Gearman worker ims221 NS PrivateDMZ alef$,$SERVICESTATEID:monitor:Gearman worker ims221 NS PrivateDMZ bet$,$SERVICESTATEID:monitor:Gearman worker ims225 NS PublicDMZ alef$,$SERVICESTATEID:monitor:Gearman worker ims225 NS PublicDMZ bet$,$SERVICESTATEID:monitor:Gearman worker ims223 NS Trust alef$,$SERVICESTATEID:monitor:Gearman worker ims223 NS Trust bet$!-w @3:!-c @5: -} - -### Dev/QA - - -define service { - service_description Gearman worker ims318 151 Untrust alef - use Gearman Worker Dev/QA - host_name monitor-dev - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims318_151_Untrust_alef" -s check - contacts nobody - #event_handler_enabled 0 -} - -define service { - service_description Gearman worker ims318 151 Untrust bet - use Gearman Worker Dev/QA - host_name monitor-dev - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims318_151_Untrust_bet" -s check - contacts nobody - #event_handler_enabled 0 -} - -define service { - service_description Gearman worker ims318 NS Untrust gimel failover - use Gearman Worker Dev/QA - host_name monitor-dev - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims318_NS_Untrust_gimel" -s check - notifications_enabled 0 - event_handler_enabled 0 -} - -define service { - service_description Gearman worker ims318 NS Untrust dalet failover - use Gearman Worker Dev/QA - host_name monitor-dev - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims318_NS_Untrust_dalet" -s check - notifications_enabled 0 - event_handler_enabled 0 -} - -define service { - service_description Gearman worker 151 Untrust - use Gearman Worker Cluster Dev/QA - host_name monitor-dev - check_command check_service_cluster!$SERVICEDESC$!$SERVICESTATEID:monitor-dev:Gearman worker ims318 151 Untrust alef$,$SERVICESTATEID:monitor-dev:Gearman worker ims318 151 Untrust bet$,$SERVICESTATEID:monitor-dev:Gearman worker ims319 151 Untrust gimel failover$,$SERVICESTATEID:monitor-dev:Gearman worker ims319 151 Untrust dalet failover$!-w @3:!-c @4: - contacts nobody - #event_handler_enabled 0 -} - - -define service { - service_description Gearman worker ims319 NS Untrust alef - use Gearman Worker Dev/QA - host_name monitor-dev - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims319_NS_Untrust_alef" -s check - contacts nobody - #event_handler_enabled 0 -} - -define service { - service_description Gearman worker ims319 NS Untrust bet - use Gearman Worker Dev/QA - host_name monitor-dev - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims319_NS_Untrust_bet" -s check - contacts nobody - #event_handler_enabled 0 -} - -define service { - service_description Gearman worker ims319 151 Untrust gimel failover - use Gearman Worker Dev/QA - host_name monitor-dev - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims319_151_Untrust_gimel" -s check - notifications_enabled 0 - event_handler_enabled 0 -} - -define service { - service_description Gearman worker ims319 151 Untrust dalet failover - use Gearman Worker Dev/QA - host_name monitor-dev - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims319_151_Untrust_dalet" -s check - notifications_enabled 0 - event_handler_enabled 0 -} - -define service { - service_description Gearman worker NS Untrust - use Gearman Worker Cluster Dev/QA - host_name monitor-dev - check_command check_service_cluster!$SERVICEDESC$!$SERVICESTATEID:monitor-dev:Gearman worker ims319 NS Untrust alef$,$SERVICESTATEID:monitor-dev:Gearman worker ims319 NS Untrust bet$,$SERVICESTATEID:monitor-dev:Gearman worker ims318 NS Untrust gimel failover$,$SERVICESTATEID:monitor-dev:Gearman worker ims318 NS Untrust dalet failover$!-w @3:!-c @4: - contacts nobody - #event_handler_enabled 0 -} - - -define service { - service_description Gearman worker ims314 151 PublicDMZ alef - use Gearman Worker Dev/QA - host_name monitor-dev - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims314_151_PublicDMZ_alef" -s check - contacts nobody - #event_handler_enabled 0 -} - -define service { - service_description Gearman worker ims314 151 PublicDMZ bet - use Gearman Worker Dev/QA - host_name monitor-dev - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims314_151_PublicDMZ_bet" -s check - contacts nobody - #event_handler_enabled 0 -} - -define service { - service_description Gearman worker ims315 151 PublicDMZ gimel failover - use Gearman Worker Dev/QA - host_name monitor-dev - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims315_151_PublicDMZ_gimel" -s check - notifications_enabled 0 - event_handler_enabled 0 -} - -define service { - service_description Gearman worker ims315 151 PublicDMZ dalet failover - use Gearman Worker Dev/QA - host_name monitor-dev - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims315_151_PublicDMZ_dalet" -s check - notifications_enabled 0 - event_handler_enabled 0 -} - -define service { - service_description Gearman worker 151 PublicDMZ - use Gearman Worker Cluster Dev/QA - host_name monitor-dev - check_command check_service_cluster!$SERVICEDESC$!$SERVICESTATEID:monitor-dev:Gearman worker ims314 151 PublicDMZ alef$,$SERVICESTATEID:monitor-dev:Gearman worker ims314 151 PublicDMZ bet$,$SERVICESTATEID:monitor-dev:Gearman worker ims315 151 PublicDMZ gimel failover$,$SERVICESTATEID:monitor-dev:Gearman worker ims315 151 PublicDMZ dalet failover$!-w @3:!-c @4: - contacts nobody - #event_handler_enabled 0 -} - -define service { - service_description Gearman worker ims315 NS PublicDMZ alef - use Gearman Worker Dev/QA - host_name monitor-dev - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims315_NS_PublicDMZ_alef" -s check - contacts nobody - #event_handler_enabled 0 -} - -define service { - service_description Gearman worker ims315 NS PublicDMZ bet - use Gearman Worker Dev/QA - host_name monitor-dev - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims315_NS_PublicDMZ_bet" -s check - contacts nobody - #event_handler_enabled 0 -} - -define service { - service_description Gearman worker ims314 NS PublicDMZ gimel failover - use Gearman Worker Dev/QA - host_name monitor-dev - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims314_NS_PublicDMZ_gimel" -s check - notifications_enabled 0 - event_handler_enabled 0 -} - -define service { - service_description Gearman worker ims314 NS PublicDMZ dalet failover - use Gearman Worker Dev/QA - host_name monitor-dev - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims314_NS_PublicDMZ_dalet" -s check - notifications_enabled 0 - event_handler_enabled 0 -} - -define service { - service_description Gearman worker NS PublicDMZ - use Gearman Worker Cluster Dev/QA - host_name monitor-dev - check_command check_service_cluster!$SERVICEDESC$!$SERVICESTATEID:monitor-dev:Gearman worker ims315 NS PublicDMZ alef$,$SERVICESTATEID:monitor-dev:Gearman worker ims315 NS PublicDMZ bet$,$SERVICESTATEID:monitor-dev:Gearman worker ims314 NS PublicDMZ gimel failover$,$SERVICESTATEID:monitor-dev:Gearman worker ims314 NS PublicDMZ dalet failover$!-w @3:!-c @4: - contacts nobody - #event_handler_enabled 0 -} - - -define service { - service_description Gearman worker ims320 151 PrivateDMZ alef - use Gearman Worker Dev/QA - host_name monitor-dev - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims320_151_PrivateDMZ_alef" -s check - contacts nobody - #event_handler_enabled 0 -} - -define service { - service_description Gearman worker ims320 151 PrivateDMZ bet - use Gearman Worker Dev/QA - host_name monitor-dev - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims320_151_PrivateDMZ_bet" -s check - contacts nobody - #event_handler_enabled 0 -} - -define service { - service_description Gearman worker ims321 151 PrivateDMZ gimel failover - use Gearman Worker Dev/QA - host_name monitor-dev - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims321_151_PrivateDMZ_gimel" -s check - notifications_enabled 0 - event_handler_enabled 0 -} - -define service { - service_description Gearman worker ims321 151 PrivateDMZ dalet failover - use Gearman Worker Dev/QA - host_name monitor-dev - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims321_151_PrivateDMZ_dalet" -s check - notifications_enabled 0 - event_handler_enabled 0 -} - -define service { - service_description Gearman worker 151 PrivateDMZ - use Gearman Worker Cluster Dev/QA - host_name monitor-dev - check_command check_service_cluster!$SERVICEDESC$!$SERVICESTATEID:monitor-dev:Gearman worker ims320 151 PrivateDMZ alef$,$SERVICESTATEID:monitor-dev:Gearman worker ims320 151 PrivateDMZ bet$,$SERVICESTATEID:monitor-dev:Gearman worker ims321 151 PrivateDMZ gimel failover$,$SERVICESTATEID:monitor-dev:Gearman worker ims321 151 PrivateDMZ dalet failover$!-w @3:!-c @4: - contacts nobody - #event_handler_enabled 0 -} - - -define service { - service_description Gearman worker ims321 NS PrivateDMZ hei - use Gearman Worker Dev/QA - host_name monitor-dev - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims321_NS_PrivateDMZ_hei" -s check - contacts nobody - #event_handler_enabled 0 -} - -define service { - service_description Gearman worker ims321 NS PrivateDMZ vav - use Gearman Worker Dev/QA - host_name monitor-dev - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims321_NS_PrivateDMZ_vav" -s check - contacts nobody - #event_handler_enabled 0 -} - -define service { - service_description Gearman worker ims320 NS PrivateDMZ gimel failover - use Gearman Worker Dev/QA - host_name monitor-dev - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims320_NS_PrivateDMZ_gimel" -s check - notifications_enabled 0 - event_handler_enabled 0 -} - -define service { - service_description Gearman worker ims320 NS PrivateDMZ dalet failover - use Gearman Worker Dev/QA - host_name monitor-dev - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims320_NS_PrivateDMZ_dalet" -s check - notifications_enabled 0 - event_handler_enabled 0 -} - -define service { - service_description Gearman worker NS PrivateDMZ - use Gearman Worker Cluster Dev/QA - host_name monitor-dev - check_command check_service_cluster!$SERVICEDESC$!$SERVICESTATEID:monitor-dev:Gearman worker ims321 NS PrivateDMZ hei$,$SERVICESTATEID:monitor-dev:Gearman worker ims321 NS PrivateDMZ vav$,$SERVICESTATEID:monitor-dev:Gearman worker ims320 NS PrivateDMZ gimel failover$,$SERVICESTATEID:monitor-dev:Gearman worker ims320 NS PrivateDMZ dalet failover$!-w @3:!-c @4: - contacts nobody - #event_handler_enabled 0 -} - - -define service { - service_description Gearman worker ims320 151 Trust hei - use Gearman Worker Dev/QA - host_name monitor-dev - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims320_151_Trust_hei" -s check - contacts nobody - #event_handler_enabled 0 -} - -define service { - service_description Gearman worker ims320 151 Trust vav - use Gearman Worker Dev/QA - host_name monitor-dev - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims320_151_Trust_vav" -s check - contacts nobody - #event_handler_enabled 0 -} - -define service { - service_description Gearman worker ims321 151 Trust zain failover - use Gearman Worker Dev/QA - host_name monitor-dev - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims321_151_Trust_zain" -s check - notifications_enabled 0 - event_handler_enabled 0 -} - -define service { - service_description Gearman worker ims321 151 Trust het failover - use Gearman Worker Dev/QA - host_name monitor-dev - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims321_151_Trust_het" -s check - notifications_enabled 0 - event_handler_enabled 0 -} - -define service { - service_description Gearman worker 151 Trust - use Gearman Worker Cluster Dev/QA - host_name monitor-dev - check_command check_service_cluster!$SERVICEDESC$!$SERVICESTATEID:monitor-dev:Gearman worker ims320 151 Trust hei$,$SERVICESTATEID:monitor-dev:Gearman worker ims320 151 Trust vav$,$SERVICESTATEID:monitor-dev:Gearman worker ims321 151 Trust zain failover$,$SERVICESTATEID:monitor-dev:Gearman worker ims321 151 Trust het failover$!-w @3:!-c @4: - contacts nobody - #event_handler_enabled 0 -} - - -define service { - service_description Gearman worker ims321 NS Trust alef - use Gearman Worker Dev/QA - host_name monitor-dev - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims321_NS_Trust_alef" -s check - contacts nobody - #event_handler_enabled 0 -} - -define service { - service_description Gearman worker ims321 NS Trust bet - use Gearman Worker Dev/QA - host_name monitor-dev - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims321_NS_Trust_bet" -s check - contacts nobody - #event_handler_enabled 0 -} - -define service { - service_description Gearman worker ims320 NS Trust zain failover - use Gearman Worker Dev/QA - host_name monitor-dev - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims320_NS_Trust_zain" -s check - notifications_enabled 0 - event_handler_enabled 0 -} - -define service { - service_description Gearman worker ims320 NS Trust het failover - use Gearman Worker Dev/QA - host_name monitor-dev - check_command check_gearman!$HOSTADDRESS$!-q "worker_ims320_NS_Trust_het" -s check - notifications_enabled 0 - event_handler_enabled 0 -} - -define service { - service_description Gearman worker NS Trust - use Gearman Worker Cluster Dev/QA - host_name monitor-dev - check_command check_service_cluster!$SERVICEDESC$!$SERVICESTATEID:monitor-dev:Gearman worker ims321 NS Trust alef$,$SERVICESTATEID:monitor-dev:Gearman worker ims321 NS Trust bet$,$SERVICESTATEID:monitor-dev:Gearman worker ims320 NS Trust zain failover$,$SERVICESTATEID:monitor-dev:Gearman worker ims320 NS Trust het failover$!-w @3:!-c @4: - contacts nobody - #event_handler_enabled 0 -} - - - - - -define service { - service_description snmp_nix_memory - use UNIX Production service - host_name ims205 - check_command check_snmp_nix_memory!80,20!95,50 -} - - -define service { - service_description nrpe_win_service_spooler - use Windows Production service - host_name printgpd - check_command check_nrpe_win_service!Spooler -} - - -define service { - service_description nrpe_win_service_lpd - use Windows Production service - host_name printgpd - check_command check_nrpe_win_service!LPDSVC -} - - - - - - - - -define service { - service_description nrpe_unixtest_procsize_saslauthd - use UNIX Dev/QA service - host_name csgsmtp100l - check_command check_nrpe_proc_by_size!300000!400000!saslauthd - contacts CISDR -} - - -define service { - service_description nrpe_unix_proc_ypserv - use UNIX Production service - host_name nismaster - check_command check_nrpe_daemon!1!ypserv -} - - -define service { - service_description nrpe_unix_prtdiag - use UNIX Production service - host_name isserv216 - notification_interval 1440 - check_command check_nrpe_prtdiag -} - - -define service { - service_description nrpe_unix_proc ypbind - use UNIX Production service - host_name isserv216 - check_command check_nrpe_daemon!1!ypbind -} - - -define service { - service_description nrpe_unix_proc inetd - use UNIX Production service - host_name isserv216 - check_command check_nrpe_daemon!1!inetd -} - - -define service { - service_description nrpe_unix_proc rpcbind - use UNIX Production service - host_name isserv216 - check_command check_nrpe_daemon!1!rpcbind -} - - -define service { - service_description nrpe_unix_proc syslogd - use UNIX Production service - host_name isserv216 - check_command check_nrpe_daemon!1!syslogd -} - - -define service { - service_description nrpe_unix_proc nscd - use UNIX Production service - host_name isserv216 - check_command check_nrpe_daemon!1!nscd -} - - -define service { - service_description nrpe_unix_proc dsmc - use UNIX Production service - host_name isserv216 - check_command check_nrpe_daemon!1!dsmc -} - - -define service { - service_description nrpe_unix_proc snmpd - use UNIX Production service - host_name isserv216 - check_command check_nrpe_daemon!1!snmpd -} - - -define service { - service_description nrpe_unix_proc xntpd - use UNIX Production service - host_name isserv216 - check_command check_nrpe_daemon!1!xntpd -} - - -define service { - service_description nrpe_unix_proc cron - use UNIX Production service - host_name isserv216 - check_command check_nrpe_daemon!1!cron -} - - -define service { - service_description nrpe_unix_vvm - use UNIX Production service - host_name isserv216 - notification_interval 1440 - check_command check_nrpe_vvm -} - - -#define service { -# service_description nrpe_win_service_uniprint -# use Windows Production service -# host_name -# check_command check_nrpe_win_service!PSDatabaseSvr PSLicenseSvr PSLPDSvr PSPopupSvr PSPrintSvr Spooler -#} - -##########GROUNDWORK############################################################################################# -#GW -#GW ims208_services.cfg generated 2012-09-13 10:03:26 by admin from monarch.cgi nagios v 3.x -#GW -##########GROUNDWORK############################################################################################# - - -define service { - service_description snmp_wintest_service_Cluster - use Windows Production service - host_name csgspdb101w - max_check_attempts 6 - normal_check_interval 10 - retry_check_interval 6 - check_command check_snmp_win_service!"Cluster Service" - contacts Sharepoint Admin -} - - -define service { - service_description nrpe_win_service_spooler - use Windows Production service - host_name ntprintserver - check_command check_nrpe_win_service!Spooler - contact_groups null - contacts ESS Windows List, HD Print List -} - - -define service { - service_description nrpe_win_service_lpd - use Windows Production service - host_name ntprintserver - check_command check_nrpe_win_service!LPDSVC - contact_groups null - contacts ESS Windows List, HD Print List -} - - -define service { - service_description nrpe_win_service_tcpservices - use Windows Production service - host_name ntprintserver - check_command check_nrpe_win_service!Spooler -} - - -define service { - service_description trap_win_IIS - use SNMP trap - host_name csgcas206w -} - - -define service { - service_description nrpe_win_service_exchange_cas - use Windows Production service - host_name csgcas206w - check_command check_nrpe_win_service!MSExchangeAB MSExchangeADTopology MSExchangeFDS MSExchangeFBA MSExchangeImap4 MSExchangeMailboxReplication MSExchangeProtectedServiceHost MSExchangeRPC MSExchangeServiceHost - contacts CISDR -} - - -define service { - service_description imap_ssl_login_ex2010cas - use generic-service-active - host_name csgcas206w - max_check_attempts 2 - normal_check_interval 10 - check_command check_imapssl!csgtst06 - contacts CISDR -} - - -define service { - service_description nrpe_win_service_exchange_hub - use Windows Production service - host_name csghub208w - check_command check_nrpe_win_service!MSExchangeAntispamUpdate MSExchangeServiceHost MSExchangeTransport MSExchangeTransportLogSearch - contacts CISDR -} - - - -define service { - service_description nrpe_win_service_exchange_hub - use Windows Production service - host_name csghub209w - check_command check_nrpe_win_service!MSExchangeAntispamUpdate MSExchangeServiceHost MSExchangeTransport MSExchangeTransportLogSearch - contacts CISDR -} - - - - - -define service { - service_description nrpe_unix_proc_ypserv - use UNIX Production service - host_name nismaster3 - check_command check_nrpe_daemon!1!ypserv -} - - -define service { - service_description trap_win_IIS - use Windows Production service - host_name csgcas207w - is_volatile 1 - max_check_attempts 1 - normal_check_interval 1440 - retry_check_interval 1440 - notification_interval 31536000 - event_handler_enabled 0 - process_perf_data 0 - check_command check_trap_OK -} - - -define service { - service_description nrpe_win_service_exchange_cas - use Windows Production service - host_name csgcas207w - check_command check_nrpe_win_service!MSExchangeAB MSExchangeADTopology MSExchangeFDS MSExchangeFBA MSExchangeImap4 MSExchangeMailboxReplication MSExchangeProtectedServiceHost MSExchangeRPC MSExchangeServiceHost - contacts CISDR -} - - -define service { - service_description imap_ssl_login_ex2010cas - use generic-service-active - host_name csgcas207w - max_check_attempts 2 - normal_check_interval 10 - check_command check_imapssl!csgtst06 - contacts CISDR -} - - -define service { - service_description trap_win_IIS - use Windows Production service - host_name csgcas204w - is_volatile 1 - max_check_attempts 1 - normal_check_interval 1440 - retry_check_interval 1440 - notification_interval 31536000 - event_handler_enabled 0 - process_perf_data 0 - check_command check_trap_OK -} - - -define service { - service_description imap_ssl_login_ex2010cas - use generic-service-active - host_name csgcas204w - max_check_attempts 2 - normal_check_interval 10 - check_command check_imapssl!csgtst06 - contacts CISDR -} - - -define service { - service_description nrpe_win_service_exchange_cas - use Windows Production service - host_name csgcas204w - check_command check_nrpe_win_service!MSExchangeAB MSExchangeADTopology MSExchangeFDS MSExchangeFBA MSExchangeImap4 MSExchangeMailboxReplication MSExchangeProtectedServiceHost MSExchangeRPC MSExchangeServiceHost - contacts CISDR -} - - -define service { - service_description nrpe_win_service_spooler - use Windows Production service - host_name printhp - check_command check_nrpe_win_service!Spooler -} - - -define service { - service_description nrpe_win_service_lpd - use Windows Production service - host_name printhp - check_command check_nrpe_win_service!LPDSVC -} - - -define service { - service_description trap_win_IIS - use Windows Production service - host_name csgcas205w - is_volatile 1 - max_check_attempts 1 - normal_check_interval 1440 - retry_check_interval 1440 - notification_interval 31536000 - event_handler_enabled 0 - process_perf_data 0 - check_command check_trap_OK -} - - -define service { - service_description nrpe_win_service_exchange_cas - use Windows Production service - host_name csgcas205w - check_command check_nrpe_win_service!MSExchangeAB MSExchangeADTopology MSExchangeFDS MSExchangeFBA MSExchangeImap4 MSExchangeMailboxReplication MSExchangeProtectedServiceHost MSExchangeRPC MSExchangeServiceHost - contacts CISDR -} - - -define service { - service_description imap_ssl_login_ex2010cas - use generic-service-active - host_name csgcas205w - max_check_attempts 2 - normal_check_interval 10 - check_command check_imapssl!csgtst06 - contacts CISDR -} - - -define service { - service_description nrpe_unix_prtdiag - use UNIX Production service - host_name isserv215 - notification_interval 1440 - check_command check_nrpe_prtdiag -} - - -define service { - service_description nrpe_unix_proc ypbind - use UNIX Production service - host_name isserv215 - check_command check_nrpe_daemon!1!ypbind -} - - -define service { - service_description nrpe_unix_proc inetd - use UNIX Production service - host_name isserv215 - check_command check_nrpe_daemon!1!inetd -} - - -define service { - service_description nrpe_unix_proc rpcbind - use UNIX Production service - host_name isserv215 - check_command check_nrpe_daemon!1!rpcbind -} - - -define service { - service_description nrpe_unix_proc syslogd - use UNIX Production service - host_name isserv215 - check_command check_nrpe_daemon!1!syslogd -} - - -define service { - service_description nrpe_unix_proc nscd - use UNIX Production service - host_name isserv215 - check_command check_nrpe_daemon!1!nscd -} - - -define service { - service_description nrpe_unix_proc dsmc - use UNIX Production service - host_name isserv215 - check_command check_nrpe_daemon!1!dsmc -} - - -define service { - service_description nrpe_unix_proc snmpd - use UNIX Production service - host_name isserv215 - check_command check_nrpe_daemon!1!snmpd -} - - -define service { - service_description nrpe_unix_proc xntpd - use UNIX Production service - host_name isserv215 - check_command check_nrpe_daemon!1!xntpd -} - - -define service { - service_description nrpe_unix_vvm - use UNIX Production service - host_name isserv215 - notification_interval 1440 - check_command check_nrpe_vvm -} - - -define service { - service_description nrpe_unix_proc cron - use UNIX Production service - host_name isserv215 - check_command check_nrpe_daemon!1!cron -} - - - - - -define service { - service_description nrpe_eis202lb-router1-lb-servernet-1 - use Networking service - host_name csgcas104w, sdp100w, csglync221w, csglync229w - check_command check_alive_through_nsclient!10.6.61.2 - notifications_enabled 0 -} - - -define service { - service_description nrpe_eis203lb-router1-lb-servernet-1 - use Networking service - host_name csgcas104w, sdp100w, csglync221w, csglync229w - check_command check_alive_through_nsclient!10.6.61.3 - notifications_enabled 0 -} - - -define service { - service_description nrpe_lb-prod-float-1-lb-servernet-1 - use Networking service - host_name csgcas104w, sdp100w, csglync221w, csglync229w - check_command check_alive_through_nsclient!10.6.61.1 - notifications_enabled 0 -} - - -define service { - service_description nrpe_eis202lb-router1-lb-servernet-2 - use Networking service - host_name cisdrroxen101l, cisdrroxen204l, iamroxen301l - check_command through_nrpe!$HOSTNAME$!check_ping!eis202lb-router1-lb-servernet-2.Princeton.EDU 6,6% 10,10% - notifications_enabled 0 -} - - -define service { - service_description nrpe_eis203lb-router1-lb-servernet-2 - use Networking service - host_name cisdrroxen101l, cisdrroxen204l, iamroxen301l - check_command through_nrpe!$HOSTNAME$!check_ping!eis203lb-router1-lb-servernet-2.Princeton.EDU 6,6% 10,10% - notifications_enabled 0 -} - - -define service { - service_description nrpe_lb-prod-float-1-lb-servernet-2 - use Networking service - host_name cisdrroxen101l, cisdrroxen204l, iamroxen301l - check_command through_nrpe!$HOSTNAME$!check_ping!lb-prod-float-1-lb-servernet-2.Princeton.EDU 6,6% 10,10% - notifications_enabled 0 -} - - -define service { - service_description nrpe_eis202lb-router-fw-lb-servernet-3 - use Networking service - host_name csgkaltura300l, iamxythos100l, reg102l, sdp201w - check_command through_nrpe!$HOSTNAME$!check_ping!eis202lb-router-fw-lb-servernet-3.Princeton.EDU 6,6% 10,10% - notifications_enabled 0 -} - - -define service { - service_description nrpe_eis203lb-router-fw-lb-servernet-3 - use Networking service - host_name csgkaltura300l, iamxythos100l, reg102l, sdp201w - check_command through_nrpe!$HOSTNAME$!check_ping!eis203lb-router-fw-lb-servernet-3.Princeton.EDU 6,6% 10,10% - notifications_enabled 0 -} - - -define service { - service_description nrpe_lb-prod-float-fw-lb-servernet-3 - use Networking service - host_name csgkaltura300l, iamxythos100l, reg102l, sdp201w - check_command through_nrpe!$HOSTNAME$!check_ping!lb-prod-float-fw-lb-servernet-3.Princeton.EDU 6,6% 10,10% - notifications_enabled 0 -} - - -define service { - service_description nrpe_eis202lb-router-fw-lb-servernet-4 - use Networking service - host_name wassp102w, wassp103w, sdpcas100w, sdpcas101w - check_command check_alive_through_nsclient!10.6.55.2 - notifications_enabled 0 -} - - -define service { - service_description nrpe_eis203lb-router-fw-lb-servernet-4 - use Networking service - host_name wassp102w, wassp103w, sdpcas100w, sdpcas101w - check_command check_alive_through_nsclient!10.6.55.3 - notifications_enabled 0 -} - - -define service { - service_description nrpe_lb-prod-float-fw-lb-servernet-4 - use Networking service - host_name wassp102w, wassp103w, sdpcas100w, sdpcas101w - check_command check_alive_through_nsclient!10.6.55.1 - notifications_enabled 0 -} - - -define service { - service_description nrpe_eis202lb-router-fw-lb-servernet-5 - use Networking service - host_name ais101l, iamprox100l, sdpprox100l, timeline101l - check_command through_nrpe!$HOSTNAME$!check_ping!eis202lb-router-fw-lb-servernet-5.Princeton.EDU 6,6% 10,10% - notifications_enabled 0 -} - - -define service { - service_description nrpe_eis203lb-router-fw-lb-servernet-5 - use Networking service - host_name ais101l, iamprox100l, sdpprox100l, timeline101l - check_command through_nrpe!$HOSTNAME$!check_ping!eis203lb-router-fw-lb-servernet-5.Princeton.EDU 6,6% 10,10% - notifications_enabled 0 -} - - -define service { - service_description nrpe_lb-prod-float-fw-lb-servernet-5 - use Networking service - host_name ais101l, iamprox100l, sdpprox100l, timeline101l - check_command through_nrpe!$HOSTNAME$!check_ping!lb-prod-float-fw-lb-servernet-5.Princeton.EDU 6,6% 10,10% - notifications_enabled 0 -} - - -define service { - service_description nrpe_eis202lb-router-fw-lb-servernet-6 - use Networking service - host_name eisoid101l, sdpohs100l, sdpovd100l, sdpprox301l - check_command through_nrpe!$HOSTNAME$!check_ping!eis202lb-router-fw-lb-servernet-6.Princeton.EDU 6,6% 10,10% - notifications_enabled 0 -} - - -define service { - service_description nrpe_eis203lb-router-fw-lb-servernet-6 - use Networking service - host_name eisoid101l, sdpohs100l, sdpovd100l, sdpprox301l - check_command through_nrpe!$HOSTNAME$!check_ping!eis203lb-router-fw-lb-servernet-6.Princeton.EDU 6,6% 10,10% - notifications_enabled 0 -} - - -define service { - service_description nrpe_lb-prod-float-fw-lb-servernet-6 - use Networking service - host_name eisoid101l, sdpohs100l, sdpovd100l, sdpprox301l - check_command through_nrpe!$HOSTNAME$!check_ping!lb-prod-float-fw-lb-servernet-6.Princeton.EDU 6,6% 10,10% - notifications_enabled 0 -} - - -define service { - service_description nrpe_eis202lb-router1-lb-servernet-7 - use Networking service - host_name csgcas204w, csgcas205w, csgcas206w, csgcas207w - check_command check_alive_through_nsclient!10.6.60.130 - notifications_enabled 0 -} - - -define service { - service_description nrpe_eis203lb-router1-lb-servernet-7 - use Networking service - host_name csgcas204w, csgcas205w, csgcas206w, csgcas207w - check_command check_alive_through_nsclient!10.6.60.131 - notifications_enabled 0 -} - - -define service { - service_description nrpe_lb-prod-float-1-lb-servernet-7 - use Networking service - host_name csgcas204w, csgcas205w, csgcas206w, csgcas207w - check_command check_alive_through_nsclient!10.6.60.129 - notifications_enabled 0 -} - - -define service { - service_description nrpe_eis202lb-router1-lb-servernet-8 - use Networking service - host_name csghub102w, csghub103w, csghub208w, csghub209w - check_command check_alive_through_nsclient!10.6.60.194 - notifications_enabled 0 -} - - -define service { - service_description nrpe_eis203lb-router1-lb-servernet-8 - use Networking service - host_name csghub102w, csghub103w, csghub208w, csghub209w - check_command check_alive_through_nsclient!10.6.60.195 - notifications_enabled 0 -} - - -define service { - service_description nrpe_lb-prod-float-1-lb-servernet-8 - use Networking service - host_name csghub102w, csghub103w, csghub208w, csghub209w - check_command check_alive_through_nsclient!10.6.60.193 - notifications_enabled 0 -} - - -define service { - service_description nrpe_eis202lb-router-fw-lb-servernet-9 - use Networking service - host_name csgsmtp100l, csgsmtp202l, csgsmtp203l - check_command through_nrpe!$HOSTNAME$!check_ping!eis202lb-router-fw-lb-servernet-9.Princeton.EDU 6,6% 10,10% - notifications_enabled 0 -} - - -define service { - service_description nrpe_eis203lb-router-fw-lb-servernet-9 - use Networking service - host_name csgsmtp100l, csgsmtp202l, csgsmtp203l - check_command through_nrpe!$HOSTNAME$!check_ping!eis203lb-router-fw-lb-servernet-9.Princeton.EDU 6,6% 10,10% - notifications_enabled 0 -} - - -define service { - service_description nrpe_lb-prod-float-fw-lb-servernet-9 - use Networking service - host_name csgsmtp100l, csgsmtp202l, csgsmtp203l - check_command through_nrpe!$HOSTNAME$!check_ping!lb-prod-float-fw-lb-servernet-9.Princeton.EDU 6,6% 10,10% - notifications_enabled 0 -} - - -define service { - service_description nrpe_eis202lb-router-fw-lb-servernet-10 - use Networking service - host_name sdpldap100l, sdpldap101l, sdpohs200l, sdpohs201l - check_command through_nrpe!$HOSTNAME$!check_ping!eis202lb-router-fw-lb-servernet-10.Princeton.EDU 6,6% 10,10% - notifications_enabled 0 -} - - -define service { - service_description nrpe_eis203lb-router-fw-lb-servernet-10 - use Networking service - host_name sdpldap100l, sdpldap101l, sdpohs200l, sdpohs201l - check_command through_nrpe!$HOSTNAME$!check_ping!eis203lb-router-fw-lb-servernet-10.Princeton.EDU 6,6% 10,10% - notifications_enabled 0 -} - - -define service { - service_description nrpe_lb-prod-float-fw-lb-servernet-10 - use Networking service - host_name sdpldap100l, sdpldap101l, sdpohs200l, sdpohs201l - check_command through_nrpe!$HOSTNAME$!check_ping!lb-prod-float-fw-lb-servernet-10.Princeton.EDU 6,6% 10,10% - notifications_enabled 0 -} - - -define service { - service_description nrpe_eis202lb-router-fw-lb-servernet-11 - use Networking service - host_name ais204l, eisess202l, eisess203l, eisess204l - check_command through_nrpe!$HOSTNAME$!check_ping!eis202lb-router-fw-lb-servernet-11.Princeton.EDU 6,6% 10,10% - notifications_enabled 0 -} - - -define service { - service_description nrpe_eis203lb-router-fw-lb-servernet-11 - use Networking service - host_name ais204l, eisess202l, eisess203l, eisess204l - check_command through_nrpe!$HOSTNAME$!check_ping!eis203lb-router-fw-lb-servernet-11.Princeton.EDU 6,6% 10,10% - notifications_enabled 0 -} - - -define service { - service_description nrpe_lb-prod-float-fw-lb-servernet-11 - use Networking service - host_name ais204l, eisess202l, eisess203l, eisess204l - check_command through_nrpe!$HOSTNAME$!check_ping!lb-prod-float-fw-lb-servernet-11.Princeton.EDU 6,6% 10,10% - notifications_enabled 0 -} - - -define service { - service_description https - use Networking service - hostgroup_name SRA - check_command check_https -} - - -define service { - service_description snmp_unix_mysql_mem - use Networking service - host_name ims204 - check_command check_snmp_process_mem!mysql!2000,3000 -} - - -#define service { -# service_description snmp_unix_mysql_cpu -# use Networking service -# host_name ims204 -# check_command check_snmp_process_cpu!mysql!40,50!-w 0,2 -c 0 -#} - - -define service { - service_description HTTP - use Networking service - host_name ims204 - check_command check_http_port!3!5!80 -} - - -define service { - service_description MySQL - use Networking service - host_name ims204 - check_command check_mysql!notify!notify!mysql87p! -H $HOSTALIAS$ -} - - -#define service { -# service_description nrpe_unix_nagios -# use Networking service -# hostgroup_name Monitoring Masters -# check_command check_nrpe_nagios -#} - - -define service { - service_description Naemon - use Networking service - host_name ims204, ims205 - max_check_attempts 1 - is_volatile 1 - active_checks_enabled 0 - process_perf_data 0 - flap_detection_enabled 0 - check_command check-dummy!0!"OK - Waiting for checks..." - contacts Igor V. Gubenko -} - - -define service { - service_description snmp_unix_process_snmptrapd - use Networking service - host_name ims204 - check_freshness 1 - check_command check_snmp_process!/usr/sbin/snmptrapd!0,2!0 -} - - -define service { - service_description tcp_nsca - use Networking service - host_name ims204 - check_command check_tcp_nsca -} - - -define service { - service_description snmp_unix_process_mysqld - use Networking service - host_name ims204 - check_command check_snmp_process!/usr/libexec/mysqld!0,20!0 -} - - -define service { - service_description snmp_unix_process_mysqld_safe - use Networking service - host_name ims204 - check_command check_snmp_process!/usr/bin/mysqld_safe!0,2!0 -} - - -define service { - service_description Naemon Latency - use Networking service - host_name ims204, ims205 - check_command check_nagios_latency -} - - -define service { - service_description telnet - use Networking service - #hostgroup_name OIT Wireless Access Points - Cisco - hostgroup_name OIT Cisco WAP - check_command check_tcp!23 -} - -define service { - service_description SSH - use Networking service - hostgroup_name Airwave, Backup VPN, Network ESX - host_name eisnet200l - check_command check_ssh - contacts Networking -} - -define service { - service_description snmp_unix_alive - use Networking service - hostgroup_name Airwave, Arbor TMS - host_name netbmfctrl1, netbmfctrl2 - check_command check_snmp_alive-new!'$USER28$' - contacts Networking -} - -define service { - service_description snmp_unix_alive - use Networking service - host_name eisnet-sra-n1.remote - check_command check_snmp_alive-new!'$USER28$' - contacts John Shorey -} - -define service { - service_description snmp_unix_load - use Networking service - host_name airwave1 - check_command check_snmp_load-new!'$USER28$'!28,28,28!29,29,29! -T netsl - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - contacts Networking -} - -define service { - service_description snmp_unix_load - use Networking service - host_name airwave-development, airwave-rap, netbmfctrl1, netbmfctrl2 - check_command check_snmp_load-new!'$USER28$'!2,2,2!3.5,3.5,3.5! -T netsl - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - contacts Networking -} - -define service { - service_description snmp_unix_load - use Networking service - host_name airwave2 - check_command check_snmp_load-new!'$USER28$'!10,10,10!11,11,11! -T netsl - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - contacts Networking -} - -define service { - service_description snmp_unix_mem - use Networking service - hostgroup_name Airwave - host_name netbmfctrl1, netbmfctrl2, !airwave-development, !airwave-rap - check_command check_snmp_nix_memory-new!'$USER28$'!90,40!95,70 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - contacts Networking -} - -define service { - service_description snmp_unix_mem - use Networking service - host_name airwave-development - check_command check_snmp_nix_memory-new!'$USER28$'!90,80!95,90 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - notification_period 9x5 - contacts Networking -} - -define service { - service_description snmp_unix_mem - use Networking service - host_name airwave-rap - check_command check_snmp_nix_memory-new!'$USER28$'!90,80!95,90 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - contacts Networking -} - -define service { - service_description snmp_unix_disk - use Networking service - hostgroup_name Airwave - host_name netbmfctrl1, netbmfctrl2, !airwave1, sightline-NS - check_command check_snmp_disk-new!'$USER28$'!^.*$!80!90 - contacts Networking -} - -define service { - service_description snmp_unix_disk - use Networking service - host_name airwave1 - check_command check_snmp_disk-new!'$USER28$'!^.*$!92!95 - contacts Networking -} - -define service { - service_description snmp_unix_interface - use Networking service - hostgroup_name Airwave, Arbor TMS - check_command check_snmp_int!'$USER28$'!eth0!10,10!20,20 - contacts Networking -} - -define service { - service_description snmp_unix_interface - use Networking service - hostgroup_name F5 Load Balancer MPs - check_command check_snmp_int!'$USER7$'!'mgmt|\/RD|1\.1|2\.1|[345]\.[1234]'!10,10!20,20 - contacts Hajar Pager, Networking -} - -#define service { -# service_description DNS -# use Networking service -# host_name alfrente, capserver, four11, oznot -# check_command check_dns_expect!www.net.princeton.edu!128.112.128.55! -w 6 -c 8 -# contact_groups Networking Pager -#} - - -define service { - service_description DNS - use Networking service - hostgroup_name InfoBlox DNS - check_command check_dns_expect!www.net.princeton.edu!128.112.128.55! -w 6 -c 8 - contacts Networking -} - -#define service { -# service_description DNS -# use Networking service -# host_name eyeinthesky, heymon -# check_command check_dns_expect!localhost.princeton.edu!127.0.0.1! -w 6 -c 8 -#} - - -define service { - service_description DNS_auth1_dns_cogentco - use Networking service - host_name monitor - check_command check_dns_generic!www.net.princeton.edu!128.112.128.55! -s auth1.dns.cogentco.com -} - -define service { - service_description DNS_auth2_dns_cogentco - use Networking service - host_name monitor - check_command check_dns_generic!www.net.princeton.edu!128.112.128.55! -s auth2.dns.cogentco.com -} - -define service { - service_description DNS_a1-158_akam_net - use Networking service - host_name monitor - check_command check_dns_generic!www.net.princeton.edu!128.112.128.55! -s a1-158.akam.net -} - -define service { - service_description DNS_a20-65_akam_net - use Networking service - host_name monitor - check_command check_dns_generic!www.net.princeton.edu!128.112.128.55! -s a20-65.akam.net -} - -define service { - service_description DNS_a24-66_akam_net - use Networking service - host_name monitor - check_command check_dns_generic!www.net.princeton.edu!128.112.128.55! -s a24-66.akam.net -} - -define service { - service_description DNS_a3-67_akam_net - use Networking service - host_name monitor - check_command check_dns_generic!www.net.princeton.edu!128.112.128.55! -s a3-67.akam.net -} - -define service { - service_description DNS_a6-64_akam_net - use Networking service - host_name monitor - check_command check_dns_generic!www.net.princeton.edu!128.112.128.55! -s a6-64.akam.net -} - -define service { - service_description DNS_a7-65_akam_net - use Networking service - host_name monitor - check_command check_dns_generic!www.net.princeton.edu!128.112.128.55! -s a7-65.akam.net -} - -define service { - service_description NTPq - use Networking service - hostgroup_name Network NTP - check_command check_ntp_peer!1!2 -} - -define service { - service_description NTP - use Networking service - hostgroup_name Network NTP - check_command check_ntp_time!1!2 -} - -define service { - service_description SMTP - use Networking service - host_name heymon - check_command check_smtp!6!8 - contact_groups Networking Pager -} - -define service { - service_description Comcast - use Networking service - host_name backupvpn - check_command check_by_ssh_using_preloaded_key!!ping \-V1 \-q \-c4 173.161.173.150 - contacts Networking -} - -define service { - service_description Google through Comcast - use Networking service - host_name backupvpn - check_command check_by_ssh_using_preloaded_key!!nc \-V1 google.com 80 <<< "GET /" >/dev/null - contacts Networking -} - -define servicedependency { - dependent_host_name backupvpn - dependent_service_description Comcast - host_name backupvpn - service_description Google through Comcast - notification_failure_criteria c -} - -define service { - service_description Verizon - use Networking service - host_name backupvpn - check_command check_by_ssh_using_preloaded_key!!ping \-V2 \-q \-c4 71.169.84.106 - contacts Networking -} - -define service { - service_description Yahoo through Verizon - use Networking service - host_name backupvpn - check_command check_by_ssh_using_preloaded_key!!nc \-V2 yahoo.com 80 <<< "GET /" >/dev/null - contacts Networking -} - -define servicedependency { - dependent_host_name backupvpn - dependent_service_description Verizon - host_name backupvpn - service_description Yahoo through Verizon - notification_failure_criteria c -} - - -define service { - service_description trap - use SNMP trap - hostgroup_name F5 Production Load Balancer MPs - contacts Hajar Niroomand -} - -define service { - use Networking service - host_name eisfw - service_description Ping-fw-servernet-1 - check_command check-host-alive-fw-servernet-1 - contacts epm-list, ESS UNIX List, ESS Windows List -} - -define service { - use Networking service - host_name eisfw - service_description Ping-fw-servernet-2 - check_command check-host-alive-fw-servernet-2 - contacts epm-list, ESS UNIX List, ESS Windows List -} - -define service { - use Networking service - host_name eisfw - service_description Ping-fw-servernet-3 - check_command check-host-alive-fw-servernet-3 - contacts epm-list, ESS UNIX List, ESS Windows List -} - -define service { - use Networking service - host_name eisfw - service_description Ping-fw-servernet-4 - check_command check-host-alive-fw-servernet-4 - contacts epm-list, ESS UNIX List, ESS Windows List -} - -define service { - use Networking service - host_name eisfw - service_description Ping-fw-servernet-6 - check_command check-host-alive-fw-servernet-6 - contacts epm-list, ESS UNIX List, ESS Windows List -} - -define service { - use Networking service - host_name eisfw - service_description Ping-fw-servernet-7 - check_command check-host-alive-fw-servernet-7 - contacts epm-list, ESS UNIX List, ESS Windows List -} - -define service { - use Networking service - host_name eisfw - service_description Ping-fw-servernet-10 - check_command check-host-alive-fw-servernet-10 - contacts epm-list, ESS UNIX List, ESS Windows List -} - -define service { - use Networking service - host_name eisfw - service_description Ping-fw-servernet-11 - check_command check-host-alive-fw-servernet-11 - contacts epm-list, ESS UNIX List, ESS Windows List -} - -define service { - use Networking service - host_name eisfw - service_description Ping-eisfw-plinknet8 - check_command check-host-alive-eisfw-plinknet8 - contacts epm-list, ESS UNIX List, ESS Windows List -} - -# -# $Header: /usr/local/monitoring/nagios/etc/services/RCS/services.cfg,v 1.66 2014/01/22 16:43:08 nagios Exp nagios $ -# -# Common and miscellaneous services -# -# - -define service { - service_description dns_host_resolution - use generic-service - hostgroup_name CPanel Dev/QA, CPanel Prod, CISDR, Linux Prod, Linux Dev/QA, Solaris, Windows Prod, Windows Dev/QA, MSSQL Clusters, IAM, SIEM, Network and Monitoring, Netmgmt, Ping, Raritan - host_name !alumni-ldap, !alumni-ldap1, !alumni-ldap2, !eisnet200l, exchangeimap, !heymon, !dsml, !sentinel, !ldap, !ldapprime, !ldapproxyqa, !ldapremote, !ldapupdate, !newdumper - check_command check_dns - notification_options u,c,r - contact_groups nagiosadmin - contacts null -} - -define service { - service_description nrpe_unix_tsm_backups - use UNIX Production service - hostgroup_name CPanel Prod, Linux Prod, !TSM, !AWS Untrust Prod Linux OEL6 - max_check_attempts 1 - is_volatile 1 - active_checks_enabled 0 - notification_options u,c - process_perf_data 0 - flap_detection_enabled 0 - check_command check_nrpe - contact_groups null - contacts Christopher C. Dietrich -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name ais202w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts esiddiqi -} - -define service { - service_description nrpe_unix_disk_app - use UNIX Production service - host_name ais223l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts George Kopf -} - -define service { - service_description nrpe_unix_disk_app - use UNIX Production service - host_name ais224l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts George Kopf -} - -define service { - service_description nrpe_unix_disk_app - use UNIX Production service - host_name ais225l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts George Kopf -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name ais226w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts abye -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name ais320w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Asim Shahab -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name ais329l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts Asim Shahab -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name ais330l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts ECM Admin Notify -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name ais331w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Thomas E. Dommermuth -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name aiscerberus200w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ECM Admin Notify -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisfrevvo100w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name aisfrevvo200w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisfrevvo300w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisgold7100w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisgold7101w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisgold7102w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name aisgold7200w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name aisgold7201w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name aisgold7202w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisgold7300w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisgold7301w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisgold7302w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aishmsres110w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aishmsres111w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name aishmsres210w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name aishmsres211w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name aishwscbord200w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisinfoed120w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_app_integration -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name aisinfoed200w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_app_integration -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name aisiw110l - check_command check_nrpe_disk!85!90! -p /bi00 -p /bi01 -p /bi02 - notification_options w,c,r - contacts monocle -} - - -define service { - service_description nrpe_unix_disk_app - use UNIX Production service - host_name aisiw213l - check_command check_nrpe_disk!85!90! -p /bi00 -p /bi01 -p /bi02 -p /tmp - notification_options w,c,r - contacts monocle -} - - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name aisiw344l - check_command check_nrpe_disk!85!90! -p /bi00 -p /bi01 -p /bi02 - notification_options w,c,r - contacts monocle -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name aisiw345l - check_command check_nrpe_disk!85!90! -p /bi00 -p /bi01 -p /bi02 - notification_options w,c,r - contacts monocle -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisob101w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ECM Admin Notify -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisob102w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ECM Admin Notify -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisob110w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ECM Admin Notify -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisob111w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ECM Admin Notify -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisob113w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ECM Admin Notify -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisob114w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ECM Admin Notify -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisob115w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Jennifer L. Curatola -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisob116w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ECM Admin Notify -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisob117w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ECM Admin Notify -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisob118w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ECM Admin Notify -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisob119w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ECM Admin Notify -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name aisob201w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ECM Admin Notify -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name aisob202w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ECM Admin Notify -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name aisob210w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ECM Admin Notify -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name aisob211w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ECM Admin Notify -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name aisob214w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ECM Admin Notify -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name aisob215w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ECM Admin Notify -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name aisob216w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ECM Admin Notify -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name aisob217w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ECM Admin Notify -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisob218w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ECM Admin Notify -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisob301tstw - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ECM Admin Notify -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisob301w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ECM Admin Notify -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisob302tstw - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ECM Admin Notify -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisob302w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ECM Admin Notify -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisob310tstw - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ECM Admin Notify -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisob310w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ECM Admin Notify -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisob311tstw - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ECM Admin Notify -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisob311w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ECM Admin Notify -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisob313tstw - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ECM Admin Notify -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisob313w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ECM Admin Notify -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisob314tstw - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ECM Admin Notify -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisob314w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ECM Admin Notify -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisob315tstw - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ECM Admin Notify -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisob315w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ECM Admin Notify -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisob316w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ECM Admin Notify -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisob317w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ECM Admin Notify -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisob318tstw - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ECM Admin Notify -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisob318w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ECM Admin Notify -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisob319tstw - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ECM Admin Notify -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aisob319w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ECM Admin Notify -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aissimfony7100w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aissimfony7101w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aissimfony7102w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aissimfony7103w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name aissimfony7200w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name aissimfony7201w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name aissimfony7202w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name aissimfony7203w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aissimfony7300w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aissimfony7301w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aissimfony7302w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name aissimfony7303w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name alamut - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ESS Windows List -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name amu212w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts mmarnett -} - -define service { - service_description nrpe_unix_disk_app - use UNIX Production service - host_name andvlab200l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts jmm14 -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name asbb107l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts kimhuang -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name asrv202w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts jmull -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name ath201w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts bfitzwater -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name autom100l - check_command check_nrpe_disk!85!90! -p /usr/local/autom - notification_options w,c,r - contacts Networking -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name autom101l - check_command check_nrpe_disk!85!90! -p /usr/local/autom - notification_options w,c,r - contacts Networking -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name autom102l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts Networking -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name autom200l - check_command check_nrpe_disk!85!90! -p /usr/local/autom - notification_options w,c,r - contacts Networking -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name autom201l - check_command check_nrpe_disk!85!90! -p /usr/local/autom - notification_options w,c,r - contacts Networking -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name cch100w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts czimowsk -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name cch200w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts czimowsk -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name chm200w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts drosso -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name cisdr-prep - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts CISDR -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name cisdr105w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts CISDR Group of EIS -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name cisdr205w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts CISDR -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name cisdr206w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts CISDR -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name cisdrcons200w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts CISDR -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name cisdredge102w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts CISDR -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name cisdrex100w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts CISDR Group of EIS -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name cisdrex101w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts CISDR Group of EIS -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name cisdrex200w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts CISDR Group of EIS -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name cisdrex201w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts CISDR Group of EIS -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name csi200w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts rd11 -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name css228w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts casperadmin -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name css328w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts casperadmindev -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name dcf200w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts oitdcf -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name dcf201w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts oitdcf -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name dev101w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts uats -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name dev102w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts uats -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name dev204w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts uats -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name dev205w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts uats -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name dev206w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts uats -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name dng203w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ussntadm -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name dng204w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts USS IT -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name dng205w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts University Services IT Support -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name dng305w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts University Services IT Support -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name dng306w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts USSNTADM -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name dpsbastion200w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Igor Zivkovic -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name eeb-fm201w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts eeb-fm-sa -} - -define service { - service_description nrpe_unix_disk_app - use UNIX Production service - host_name eis294l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name eis376l - check_command check_nrpe_disk!85!90! -p /elastic -p /oem - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unix_disk_app - use UNIX Production service - host_name aisiw212l - check_command check_nrpe_disk!85!90! -p /bi00 -p /bi01 -p /bi02 - notification_options w,c,r - contacts monocle -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name eis377l - check_command check_nrpe_disk!85!90! -p /elastic -p /oem - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name eiscpan100l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts CISDR -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name eiscpan101l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts CISDR -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name eiscpan102l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts Cpanel Admins -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name eiscpan301l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts Cpanel Admins -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name eisglob100l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts ESS Storage -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name eishpdm200w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sarah Kampel -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name eisiws200w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ESS Storage -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name eisiws300w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ESS Storage -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name eislmt200w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ESS Storage -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name eisnet202l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts Networking -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name eissql113w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name eissql213w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name eisssrs201w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name eisssrs301w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name eisvnet300l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts Networking -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name eisvone200w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ESS Storage -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name eisvone201w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ESS Storage -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name eisws202w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ESS Ops -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name eiswszeta102w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ESS Windows List -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name eiszeta100w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts CISDR -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name ele202w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts eeweb -} - -define service { - service_description nrpe_unix_disk_app - use UNIX Production service - host_name ele203l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts eeweb -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name epm100l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts John Shorey -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name epm200w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts epm-list -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name epm201l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts epm-list -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name epm202l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts epm-list -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name epm300w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts epm-list -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name epm301w.aws - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts epm-list -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name epm302l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts epm-list -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name epm303l.aws - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts epm-list -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name erp200l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts Thomas E. Dommermuth -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name erp201w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Thomas E. Dommermuth -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name erp302w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Thomas E. Dommermuth -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name erp330w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Thomas E. Dommermuth -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name ess-2008r2test - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ESS Windows List -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name ess-2012r2test - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ESS Windows List -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name ess-2016test - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ESS Ops -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name ess307l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts Christopher C. Dietrich -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name esschoco100w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Nicholas Delo -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name esschoco200w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Nicholas Delo -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name esschoco300w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Nicholas Delo -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name esscode200w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ESS Windows List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name essconjur300l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts ESS Storage -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name essgit100l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts none -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name essgit101l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts ESS Storage -} - -define service { - service_description nrpe_unix_disk_app - use UNIX Production service - host_name essgit200l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts ESS Ops -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name essnick2019test - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Nicholas Delo -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name esspatchtest300 - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Jennifer L. Curatola -} - -define service { - service_description nrpe_unix_disk_app - use UNIX Production service - host_name essproxy200l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts ESS UNIX List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name essproxy300l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts ESS UNIX List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name esspup101l - check_command check_nrpe_disk!85!90! -p /puppet - notification_options w,c,r - contacts ESS Storage -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name esspup201l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts George Kopf -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name essrundeck100l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts ESS Storage -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name essrundeck100w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ESS Storage -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name essrundeck101l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts ESS Storage -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name essrundeck102l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts Nicholas Delo -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name essrundeck201l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts ESS UNIX List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name essrundeck202l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts ESS UNIX List -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name essrundeck203w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ESS Windows List -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name essvmbkp200w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ESS Storage -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name essvmbkp201w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ESS Storage -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name essvprox100w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ESS Storage -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name essvprox101w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ESS Storage -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name esswsus200w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ESS Ops -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name esswsus300w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ESS Ops -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fac-spcacsha210 - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Edith M. Rzomp -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fac-spcacst102w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts tuccillo -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fac-spcacst103w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts tuccillo -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fac-spcacsts108 - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Edith M. Rzomp -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fac-spcacsts209 - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fac-spcactha105 - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Edith M. Rzomp -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fac-spcactha106 - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts tuccillo -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name fac-willo3-200w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contact_groups Maximo -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fac102w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts tuccillo -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fac103wsaltots - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Mark R. Williams -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fac111w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contact_groups Maximo -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fac112w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contact_groups Maximo -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fac113w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contact_groups Maximo -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fac114w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contact_groups Maximo -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fac115w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts slmgeo -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fac202w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Mark R. Williams -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fac206wsaltots - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts tuccillo -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fac207wsaltojs - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts markrw -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name fac211w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contact_groups Maximo - contacts Robert J. Kuhn -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name fac212w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contact_groups Maximo - contacts Robert J. Kuhn -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name fac213w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contact_groups Maximo - contacts Robert J. Kuhn -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name fac214w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contact_groups Maximo -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fac215w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts slmgeo -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fac222w-acad - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Viviane Bassily -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fac312w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contact_groups Maximo -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fac313w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contact_groups Maximo -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fac314w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts slmgeo -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name facsaltodb100w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name facsaltodb101w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name facsaltodb200w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name facsaltodb201w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name fcc200w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts USSNTADM -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fint300w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts kkaushik -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fint301w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts kkaushik -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fint302w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts kkaushik -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name fint303w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts kkaushik -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name gso201w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts gshelp -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name gso202w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts gshelp -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name gso301w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts gshelp -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name iamcacomp100w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts iam -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name iamcaproxy100l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts iam -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name iamcas102l.aws - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts iam -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name iamcas103l.aws - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts iam -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name iamcas202l.aws - check_command check_nrpe_disk!85!90! -p /data - notification_options w,c,r - contacts iam -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name iamcas203l.aws - check_command check_nrpe_disk!85!90! -p /data - notification_options w,c,r - contacts iam -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name iamcert200w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts iam -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name iamconsole - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Identity and Access Management -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name iamethos100w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts iam -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name iamethos101w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts iam -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name iamethos200w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts iam -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name iamethos201w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts iam -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name iamlds300w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts iam -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name iamlds301w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts iam -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name iamload100w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Identity and Access Management -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name iamload101w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Identity and Access Management -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name iammim100w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts iam -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name iammim300w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts iam -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name iammim301w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts iam -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name iammimdb101w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name iammimdb102w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name iammimdb301w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name iammimweb100w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts iam -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name iammimweb101w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts iam -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name iammimweb300w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts iam -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name iammimweb301w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts iam -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name iamscript200w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts iam -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name iamshib102w.aws - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts iam -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name iamshib103w.aws - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts iam -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name iamshib104w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts iam -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name iamshib105w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts iam -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name iamshib202w.aws - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts iam -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name iamshib203w.aws - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts iam -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name iamshib204w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts iam -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name iamshib205w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts iam -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name iamshib301w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts iam -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name iamsvn200w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts iam -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name iamtools100w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts iam -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name iamweb300l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts Software Infrastructure Services -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name iamwebsvc100w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts iam -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name isocconsole200w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts infosec -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name isocis200l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts oit.security -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name isogate100w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Steven Niedzwiecki -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Production service - host_name isoproxy200w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts infosec -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name iss128w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Peter T Nowak -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name iss129w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Peter T Nowak -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name iss226w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts scsops -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name iss227w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts scsops -} - - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name iss228w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Peter T Nowak -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name iss229w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Peter T Nowak -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name lib200w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts eugenek -} - - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name mcgtutor200w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Paula L. Brett -} - -define service { - service_description nrpe_maestro_stdlistsz - use generic-service-active - hostgroup_name Maestro - host_name landr - normal_check_interval 60 - freshness_threshold 4000 - check_command check_nrpe_maestro_stdlistsz - contacts ESS Storage, Martin Pager -} - -define service { - service_description nrpe_maestro_stdlistsz - use generic-service-active - hostgroup_name Maestro Dev/QA - host_name landrdev - normal_check_interval 60 - freshness_threshold 4000 - check_command check_nrpe_maestro_stdlistsz - contacts ESS Storage -} - -define service { - service_description nrpe_maestro_procs - use generic-service-active - hostgroup_name Maestro - normal_check_interval 5 - freshness_threshold 3600 - check_command check_nrpe_maestro_procs - contacts ESS Storage, Martin Pager -} - -define service { - service_description nrpe_maestro_procs - use generic-service-active - hostgroup_name Maestro Dev/QA - normal_check_interval 5 - freshness_threshold 3600 - check_command check_nrpe_maestro_procs - contacts ESS Storage -} - - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name mus200w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts langley -} - -define service { - service_description nrpe_unix_disk_app - use UNIX Production service - host_name netbmfgw200l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts Networking -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name netops200w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Anthony J. Jones -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name netvclock200l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts Networking -} - -define service { - service_description nrpe_unix_disk_app - use UNIX Production service - host_name oaapcvm203l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts milbrey -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name oac200w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts coswald -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name oac201w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts coswald -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name ocs202w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts careerdcs -} - -define service { - service_description nrpe_unix_disk_app - use UNIX Production service - host_name opr202l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts appleton -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name oss201w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts switch -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name out301w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Richard M. Curtis -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name pcocr104w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pcotech -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name pcocr105w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pcotech -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name pcocr204w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pcotech -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name pcocr205w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pcotech -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name pcocrdb106w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name pcocrdb206w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name pdom09.aws - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts iam -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name pdom10.aws - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts iam -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name pol202w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Politics Department -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name printsoa200w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Architecture Computer -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name prz205w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts przcomp -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name prz206w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts przcomp -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name psm101w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Ruth D. Gittens -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name puqa05.zeta.adtest - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts iam -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name puqa06.zeta.adtest - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts iam -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sas100l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts mhood -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sas101l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts mhood -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sas102l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts mhood -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sas103l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts mhood -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sas104l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts mhood -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sas105l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts mhood -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sas106l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts mhood -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sas108l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts George Kopf -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sas109l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts George Kopf -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sas110l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts Software Infrastructure Services -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sas111l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts Software Infrastructure Services -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sas112l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts Software Infrastructure Services -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sas113l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts sisters -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sas114l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts Software Infrastructure Services -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sas115l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts Software Infrastructure Services -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sas116l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts Software Infrastructure Services -} - -define service { - service_description nrpe_unix_disk_app - use UNIX Production service - host_name sas200l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts George Kopf -} - -define service { - service_description nrpe_unix_disk_app - use UNIX Production service - host_name sas201l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts George Kopf -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sas202l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts mhood -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name sas203w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts rsegers -} - -define service { - service_description nrpe_unix_disk_app - use UNIX Production service - host_name sas204l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts George Kopf -} - -define service { - service_description nrpe_unix_disk_app - use UNIX Production service - host_name sas205l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts George Kopf -} - -define service { - service_description nrpe_unix_disk_app - use UNIX Production service - host_name sas206l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts George Kopf -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sas207l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts Software Infrastructure Services -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sas208l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts Software Infrastructure Services -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sas209l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts Software Infrastructure Services -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sas210l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts sisters -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sas211l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts Software Infrastructure Services -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sas212l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts Software Infrastructure Services -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sas213l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts Software Infrastructure Services -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sas300l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts George Kopf -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sas301l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts George Kopf -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sas302l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts George Kopf -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sas303l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts George Kopf -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sas305w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts rsegers -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sas306w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts George Kopf -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sas307l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts Software Infrastructure Services -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sas308l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts Software Infrastructure Services -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sas309l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts Software Infrastructure Services -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sas310l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts Software Infrastructure Services -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sas311l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts Software Infrastructure Services -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sas312l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts sisters -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sasemsterm100w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sasemsterm200w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sasemsws100w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sasemsws200w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sasiw100l - check_command check_nrpe_disk!85!90! -p /is00 -p /is01 - notification_options w,c,r - contacts monocle -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sasiw101l - check_command check_nrpe_disk!85!90! -p /is01 -p /is02 -p /is03 -p /is04 - notification_options w,c,r - contacts monocle -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sasiw103l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts monocle -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sasiw111w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts monocle -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sasiw112w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts monocle -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sasiw113l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts monocle -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sasiw114w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts monocle -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sasiw116w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts monocle -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sasiw117l - check_command check_nrpe_disk!85!90! -p /bi01 - notification_options w,c,r - contacts monocle -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sasiw118l - check_command check_nrpe_disk!85!90! -p /bi01 -p /oracle - notification_options w,c,r - contacts monocle -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sasiw119l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts monocle -} - -define service { - service_description nrpe_unix_disk_app - use UNIX Production service - host_name sasiw200l - check_command check_nrpe_disk!85!90! -p /is00 -p /is01 - notification_options w,c,r - contacts monocle -} - -define service { - service_description nrpe_unix_disk_app - use UNIX Production service - host_name sasiw201l - check_command check_nrpe_disk!85!90! -p /is01 -p /is02 -p /is03 -p /is04 - notification_options w,c,r - contacts monocle -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name sasiw202w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts monocle -} - -define service { - service_description nrpe_unix_disk_app - use UNIX Production service - host_name sasiw203l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts monocle -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name sasiw215w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts monocle -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name sasiw216w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts monocle -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sasiw217l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts monocle -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sasiw218l - check_command check_nrpe_disk!85!90! -p /bi01 - notification_options w,c,r - contacts monocle -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sasiw219l - check_command check_nrpe_disk!85!90! -p /bi01 - notification_options w,c,r - contacts monocle -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sasiw220l - check_command check_nrpe_disk!85!90! -p /bi01 - notification_options w,c,r - contacts monocle -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sasiw221l - check_command check_nrpe_disk!85!90! -p /bi01 - notification_options w,c,r - contacts monocle -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sasiw222l - check_command check_nrpe_disk!85!90! -p /bi01 - notification_options w,c,r - contacts monocle -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sasiw223l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts monocle -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sasiw224l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts monocle -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sasiw225w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts monocle -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sasiw226w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts monocle -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sasiw227w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts monocle -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sasiw228w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts monocle -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sasiw346w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts monocle -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sasiw347w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts monocle -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sasiw348w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts monocle -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sasiw349w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts monocle -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sasiw350l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts monocle -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sasiw351l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts monocle -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sasmbns203w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts NAS Admin -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sasmbns204w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts NAS Admin -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sasmbns205w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ESS Storage -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sasmbproxy200w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts NAS Admin -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sasmbproxy202w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts NAS Admin -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sasmbproxy206w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts NAS Admin -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name sasmis200w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Chi M. Lu -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sasob100w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ECM Admin Notify -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sasob200w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ECM Admin Notify -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sasob299w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ECM Admin Notify -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sasob300tstw - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ECM Admin Notify -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sasob300w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ECM Admin Notify -} - - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sasspapp300w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sasspapp301w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sasspapp310w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sasspapp312w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sasspdb308w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sasspdb309w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sasspdb318w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sasspdb319w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sasspdc305w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sasspdc306w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sasspdc316w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sasspfe302w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sasspfe303w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sasspfe304w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sasspfe312w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sasspfe313w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sasspfe314w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sasspowa307w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sasspowa317w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sasspss316w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sassunapsis100w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sassunapsis101w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sassunapsis200w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sassunapsis201w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_usapps -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sastopaz100w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_app_integration -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sastopaz110w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_app_integration -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name sastopaz200w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_app_integration -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sastopaz300w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts pac_app_integration -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name savmbkent200w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ESS Storage -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis100l - check_command check_nrpe_disk!85!90! -p /psapp -p /oem -p /iwsdevqa - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis101l - check_command check_nrpe_disk!85!90! -p /psapp -p /oem -p /iwsdevqa - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis102l - check_command check_nrpe_disk!85!90! -p /psapp -p /oem -p /iwsdevqa - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis103l - check_command check_nrpe_disk!85!90! -p /psapp -p /oem -p /iwsdevqa - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis104l - check_command check_nrpe_disk!85!90! -p /psapp -p /oem -p /iwsdevqa - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis105l - check_command check_nrpe_disk!85!90! -p /psapp -p /oem -p /iwsdevqa - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis106l - check_command check_nrpe_disk!85!90! -p /appware -p /oem - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis107l - check_command check_nrpe_disk!85!90! -p /appware -p /oem - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis108l - check_command check_nrpe_disk!85!90! -p /appware -p /oem - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis109l - check_command check_nrpe_disk!85!90! -p /appware -p /oem - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis110l - check_command check_nrpe_disk!85!90! -p /appware -p /oem - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis111l - check_command check_nrpe_disk!85!90! -p /appware -p /oem - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis112l - check_command check_nrpe_disk!85!90! -p /appware -p /oem - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis113l - check_command check_nrpe_disk!85!90! -p /appware -p /oem - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis114l - check_command check_nrpe_disk!85!90! -p /elastic -p /oem - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis115l - check_command check_nrpe_disk!85!90! -p /elastic -p /oem - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sis118w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis119l - check_command check_nrpe_disk!85!90! -p /psfin -p /oem -p /iwsdevqa - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis120l - check_command check_nrpe_disk!85!90! -p /psfin -p /oem -p /iwsdevqa - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis123l - check_command check_nrpe_disk!85!90! -p /elastic -p /oem - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis124l - check_command check_nrpe_disk!85!90! -p /elastic -p /oem - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis200l - check_command check_nrpe_disk!85!90! -p /psapp -p /oem -p /iwsprod - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis201l - check_command check_nrpe_disk!85!90! -p /psapp -p /oem -p /iwsprod - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis202l - check_command check_nrpe_disk!85!90! -p /psapp -p /oem -p /iwsprod - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis203l - check_command check_nrpe_disk!85!90! -p /psapp -p /oem -p /iwsprod - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis204l - check_command check_nrpe_disk!85!90! -p /psapp -p /oem -p /iwsprod - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis205l - check_command check_nrpe_disk!85!90! -p /psapp -p /oem -p /iwsprod - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis206l - check_command check_nrpe_disk!85!90! -p /appware -p /oem - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis207l - check_command check_nrpe_disk!85!90! -p /appware -p /oem - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis208l - check_command check_nrpe_disk!85!90! -p /appware -p /oem - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis209l - check_command check_nrpe_disk!85!90! -p /appware -p /oem - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis210l - check_command check_nrpe_disk!85!90! -p /appware -p /oem - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis211l - check_command check_nrpe_disk!85!90! -p /appware -p /oem - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis212l - check_command check_nrpe_disk!85!90! -p /appware -p /oem - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis213l - check_command check_nrpe_disk!85!90! -p /appware -p /oem - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis214l - check_command check_nrpe_disk!85!90! -p /elastic -p /oem - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis215l - check_command check_nrpe_disk!85!90! -p /elastic -p /oem - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis218l - check_command check_nrpe_disk!85!90! -p /appware -p /oem - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis219l - check_command check_nrpe_disk!85!90! -p /appware -p /oem - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis220l - check_command check_nrpe_disk!85!90! -p /elastic -p /oem - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis221l - check_command check_nrpe_disk!85!90! -p /elastic -p /oem - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sis222w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis300l - check_command check_nrpe_disk!85!90! -p /psapp -p /oem - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis301l - check_command check_nrpe_disk!85!90! -p /psapp -p /oem - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis302l - check_command check_nrpe_disk!85!90! -p /psapp -p /oem - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis303l - check_command check_nrpe_disk!85!90! -p /appware -p /oem - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis304l - check_command check_nrpe_disk!85!90! -p /appware -p /oem - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis305l - check_command check_nrpe_disk!85!90! -p /appware -p /oem - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis306l - check_command check_nrpe_disk!85!90! -p /appware -p /oem - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis307l - check_command check_nrpe_disk!85!90! -p /elastic -p /oem - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis308l - check_command check_nrpe_disk!85!90! -p /psapp -p /oem -p /iwsdevqa - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis309l - check_command check_nrpe_disk!85!90! -p /appware -p /oem - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sis310w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis311l - check_command check_nrpe_disk!85!90! -p /oem -p /psfin -p /iwsdevqa - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis312l - check_command check_nrpe_disk!85!90! -p /appware -p /oem - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name sis313w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts rsegers -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis314l - check_command check_nrpe_disk!85!90! -p /psapp -p /oem - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sis315l - check_command check_nrpe_disk!85!90! -p /appware -p /oem - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name sisdba301l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name smo201w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts smo-sysadmins -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name smo202w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts smo-sysadmins -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name smo203w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts smo-sysadmin -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name smo204w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts mjo3 -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name smo205w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts smo-sysadmins -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name smo206w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts smo-sysadmins -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name smo301w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts mjo3 -} - -define service { - service_description http port - use generic-service-active - host_name sp - max_check_attempts 5 - check_command check_http!6!8 - contacts Sharepoint Admin -} - - -define service { - service_description trap_VMWare - use SNMP trap - hostgroup_name ESX - notifications_enabled 0 -} - -define service { - service_description HP Server Health ASM - use generic-service - hostgroup_name HPE - notification_interval 43200 - notification_options w, c - check_command check_hpasm - contacts ESS Ops -} - -define service { - service_description HP Server Health - use generic-service - hostgroup_name HPE - notification_interval 43200 - notification_options w, c - check_command check_multi!-f /usr/local/monitoring/princeton/etc/multi_HPiLO.cmd -n "$SERVICEDESC$" -l /usr/local/monitoring/princeton -t 80 -T 160 -s host=$HOSTADDRESS$ -s comm=$USER7$ -s indent=4 -r 1+2+4+8+128 - contacts ESS Ops -} - - -define service { - service_description nrpe_unixtest_tsm_backups - use UNIX Dev/QA service -# hostgroup_name CPanel Dev/QA, Linux Dev/QA, !AWS Untrust Dev/QA Linux OEL6, !AWS Untrust Pre-Production Linux OEL6 - host_name dascpan100l, devrtools, eiscpan102l, eiscpan301l, eisdba301l, eisdba302l, eisdba303l, epm302l, harris, hoover1, ims318, ims319, mon303l, roxdb01qa, roxdb02qa, sas110l, sas111l, sas307l, sas308l, sas309l, sas310l, sasiw113l, sasiw350l, sasiw351l, sdn-ctrl-vm, sdpldap101l, sis100l, sis101l, sis102l, sis103l, sis104l, sis105l, sis106l, sis107l, sis108l, sis109l, sis110l, sis111l, sis112l, sis113l, sis114l, sis115l, sis119l, sis120l, sis123l, sis124l, sis300l, sis301l, sis302l, sis303l, sis304l, sis305l, sis306l, sis307l, sis308l, sis309l, sis311l, sis312l, sisdba301l, ss304l, timeline105l, waseqa03l, x110client01, x110client02 - max_check_attempts 1 - is_volatile 1 - active_checks_enabled 0 - notification_options u,c - process_perf_data 0 - flap_detection_enabled 0 - check_command check_nrpe - contact_groups null - contacts Christopher C. Dietrich -} - - -define service { - service_description ICMP Ping - use generic-service-active - hostgroup_name Ping - notification_options c,r - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_alive -} - - -define service { - service_description ICMP Ping - use generic-service-active - hostgroup_name Net, Network and Monitoring - host_name !core-ns NS switch, !gigagate6 151 switch - notification_options c,r - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_alive -} - -define service { - service_description ICMP Ping - use generic-service-active - host_name ppsqm, ppvm - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_alive - contacts nagiosadmin - contact_groups null -} - -define service { - service_description ICMP Ping - hostgroup_name F5 Production Load Balancers, !F5 Production Load Balancer Interfaces - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_alive - contact_groups null - contacts Networking - use UNIX Production service -} - -define service { - service_description ICMP Ping - hostgroup_name F5 QA Load Balancers - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_alive - contact_groups null - contacts Networking - use UNIX Dev/QA service -} - -define service { - service_description netmgmt_ssh - use generic-service-active - hostgroup_name Netmgmt, !Netmgmt - No SSH - max_check_attempts 12 - normal_check_interval 60 - retry_check_interval 30 - check_command check_ssh -} - - -######################## - -define service { - service_description dns_www_Route53 - use generic-service-active - host_name csg_host - check_command check_dns_udns!www.princeton.edu.!140.180.223.42!152.3.102.149!205.251.199.145!ns-1937.awsdns-50.co.uk!205.251.194.5!ns-517.awsdns-00.net! --server 205.251.197.125 --servername ns-1405.awsdns-47.org --server 205.251.192.92 --servername ns-92.awsdns-11.com - contacts Brian K. Osborne, CISDR, Hajar Niroomand, Jill E. Moraca, John W. Jameson, Joseph M. Karam, Mark Ratliff -} - - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name spcvms13nvr213w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts tuccillo -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name spcvms14nvr214w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts tuccillo -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name spcvms1nvr101w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Mark R. Williams -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name spcvmsj215w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Edith M. Rzomp -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name spcvmsqa100w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Mark R. Williams -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name spcvmsts214w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts tuccillo -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name ss116w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts css-alert -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name ssepo224w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts markpe -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name ssohdcsp100l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts ohd-sec -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name svconsole200w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ESS Ops -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name svp2vhelper - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ESS Windows List -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name tps101w-garage - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ussntadm -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name tps201w-garage - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts ussntadm -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name tps202w-garage - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts University Services IT Support -} - -define service { - service_description tsm_sessions_tsm4 - use generic-service - host_name tsm - check_command check_tsm_sessions!tsm4 -} - - -define service { - service_description tsm_sessions_tsm2 - use generic-service - host_name tsm - check_command check_tsm_sessions!tsm2 -} - - -define service { - service_description tsm_sessions_tsm3 - use generic-service-active - host_name tsm - check_command check_tsm_sessions!tsm3 -} - - -define service { - service_description tsm_sessions_tsm1 - use generic-service - host_name tsm - max_check_attempts 3 - normal_check_interval 5 - retry_check_interval 1 - check_command check_tsm_sessions!tsm1 -} - - -define service { - service_description tsm_sessions_eistsm207l - use generic-service - host_name tsm - max_check_attempts 3 - normal_check_interval 5 - retry_check_interval 1 - check_command check_tsm_sessions!eistsm207l -} - - -define service { - service_description tsm_sessions_tsm5 - use generic-service - host_name tsm - check_command check_tsm_sessions!tsm5 -} - - -define service { - service_description tsm_sessions_eistsm208 - use generic-service-active - host_name tsm - check_command check_tsm_sessions!eistsm208 -} - - -define service { - service_description tsm_sessions_eistsm210l - use generic-service-active - host_name tsm - check_command check_tsm_sessions!eistsm210l -} - - -define service { - service_description cluster_webhead - use generic-service-active - host_name Webhead_Cluster - obsess_over_service 0 - check_freshness 1 - process_perf_data 0 - check_command check_service_cluster!Webhead!$SERVICESTATEID:webhead01:nrpe_unix_agent_status$,$SERVICESTATEID:webhead02:nrpe_unix_agent_status$!-w @1:!-c @2: -} - - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name ufa200w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts John S. Green III -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name ufa300w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts John S. Green III -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name uhs-bh201w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Judith E. Oakley -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name uhs-bhs200w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Judith E. Oakley -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name uss207w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts USS IT -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name uss208w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts USS IT -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name uss310l - check_command check_nrpe_disk_all!85!90! - notification_options w,c,r - contacts USS IT -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name wasdocave200w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts Sharepoint Admin -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name win05.aws - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts iam -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name win06.aws - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts iam -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name winqa03.aws - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts iam -} - -define service { - service_description nrpe_wintest_disk_app - use Windows Dev/QA service - host_name winqa04.aws - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts iam -} - -define service { - service_description nrpe_win_disk_app - use Windows Production service - host_name wws200w - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - notification_options w,c,r - contacts wwscs -} - - - - -define service { - service_description ssh_response - use UNIX Production service - host_name epoxy - check_command check_ssh_response!"Enter PASSCODE:" - contact_groups ESS_8x5 - process_perf_data 0 -} - -#define service { -# service_description F5 Active Connections -# use UNIX Production service -# hostgroup_name F5 Load Balancer MPs -# check_command check_snmp_f5_active_cxn!100000!200000 -# notification_options w,c,r -# contact_groups null -# contacts null -# process_perf_data 0 -#} - -define service { - service_description LDAP - use generic-service-active - host_name dumper05, dumper06, ldap, ldap05, ldap06, ldapupdate, newdumper - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_ldap_pu!"o=princeton university, c=us"!10!20 - contacts Identity and Access Management -} - -define service { - service_description LDAP - use generic-service-active - host_name sdpldap100l - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_ldap!"o=Princeton University,c=US"!10!20!-p 4388 -D "uid=nagios,o=Princeton University,c=US" -P "$USER7$" - contacts Identity and Access Management -} - -define service { - service_description LDAPS - use generic-service-active - host_name sdpldap100l - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_ldap_ssl!"o=Princeton University,c=US"!10!20!-p 4389 -D "uid=nagios,o=Princeton University,c=US" -P "$USER7$" - contacts Identity and Access Management -} - -define service { - service_description LDAP - use generic-service-active - host_name iamduo100w, iamduo101w - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_ldap!"dc=zeta,dc=adtest,dc=princeton,dc=edu"!10!20!-p 389 -D "ZETA\\$USER17$" -P "$USER7$" - contacts Identity and Access Management -} - -define service { - service_description LDAP - use generic-service-active - host_name iamduo200w, iamduo201w - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_ldap!"dc=pu,dc=win,dc=princeton,dc=edu"!10!20!-p 389 -D "$USER20$" -P "$USER30$" - contacts Identity and Access Management -} - -define service { - service_description LDAPS - use generic-service-active - host_name ldapproxyqa - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_ldap_ssl!"dc=zeta,dc=adtest,dc=princeton,dc=edu"!10!20!-D "ZETA\\$USER17$" -P "$USER7$" - contacts Identity and Access Management -} - -define service { - service_description LDAPS - use generic-service-active - host_name pdom05.pu.win, pdom06.pu.win, pdom07.pu.win, pdom08.pu.win - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_ldap_ssl!"dc=pu,dc=win,dc=princeton,dc=edu"!10!20!-D "$USER20$" -P "$USER30$" - contacts Identity and Access Management -} - - -define service { - service_description LDAPS - use generic-service-active - host_name puqa01.zeta.adtest, puqa02.zeta.adtest, puqa05.zeta.adtest, puqa06.zeta.adtest - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_ldap_ssl!"dc=zeta,dc=adtest,dc=princeton,dc=edu"!10!20!-D "$USER33$" -P "$USER34$" - contacts Identity and Access Management -} - -define service { - service_description LDAPS - use generic-service-active - host_name dumper05, dumper06, ldap, ldap05, ldap06, newdumper - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_ldap_ssl!"o=princeton university, c=us"!10!20 - contacts Identity and Access Management -} - - -define service { - service_description LDAP - use generic-service-active - host_name alumni-ldap1, alumni-ldap2, alumni05, alumni06 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_ldap!"dc=alumni,dc=princeton,dc=edu"!10!20 - contacts Identity and Access Management -} - -define service { - service_description LDAPS - use generic-service-active - host_name alumni-ldap1, alumni-ldap2, alumni05, alumni06 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_ldap!"dc=alumni,dc=princeton,dc=edu"!10!20 - contacts Identity and Access Management -} - -define service { - service_description LDAP - use generic-service-active - host_name sdpovd200l, sdpovd201l - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_ldap!'dc=Princeton,dc=EDU'!10!20!-p 6501 -D 'uid=groundwk,dc=Princeton,dc=EDU' -P '$USER30$' - contacts Ashutosh Hadap, DBA Important List, Identity and Access Management -} - -define service { - service_description LDAP - use generic-service-active - host_name sdpovd100l, sdpovd101l - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_ldap!'dc=Princeton,dc=EDU'!10!20!-p 6501 -D 'uid=nagios,dc=Princeton,dc=EDU' -P '$USER7$' - contacts Ashutosh Hadap, DBA Important List, Identity and Access Management -} - -define service { - service_description LDAPS - use generic-service-active - host_name ovdprod - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_ldap_bind_HOSTALIAS_DN_PASS_BASE!'uid=groundwk,dc=Princeton,dc=EDU'!'$USER30$'!'dc=Princeton,dc=EDU'!10!20 - contacts Ashutosh Hadap, DBA Important List, Identity and Access Management -} - -define service { - service_description LDAPS - use generic-service-active - host_name qaovd - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_ldap_bind_HOSTALIAS_DN_PASS_BASE!'uid=nagios,dc=Princeton,dc=EDU'!'$USER7$'!'dc=Princeton,dc=EDU'!10!20 - contacts Ashutosh Hadap, DBA Important List, Identity and Access Management -} - -define service { - service_description LDAPS - use generic-service-active - host_name sdpovd200l, sdpovd201l - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_ldap_ssl_novalcert!'dc=Princeton,dc=EDU'!10!20!-p 7501 -D 'uid=groundwk,dc=Princeton,dc=EDU' -P '$USER30$' - contacts Ashutosh Hadap, DBA Important List, Identity and Access Management -} - -define service { - service_description LDAPS - use generic-service-active - host_name sdpovd100l, sdpovd101l - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_ldap_ssl_novalcert!'dc=Princeton,dc=EDU'!10!20!-p 7501 -D 'uid=nagios,dc=Princeton,dc=EDU' -P '$USER7$' - contacts Ashutosh Hadap, DBA Important List, Identity and Access Management -} - -define service { - service_description dsml_lookup - use generic-service-active - host_name dsml - check_command check_dsml!'o=Princeton University,c=US'!uid!esm!Enterprise S Management - contacts Identity and Access Management -} - -define service { - service_description netid_available - use generic-service-active - host_name webservices - check_command check_netid_avail!notarealid!20 - contacts Identity and Access Management -} - -define service { - service_description nrpe_win_VSS - use Windows Production service - hostgroup_name Exchange Mailbox - process_perf_data 0 - check_command check_nrpe_win_vss - contacts John P. Sophy -} - -define service { - service_description DNS - use generic-service - host_name dns1a.aws, dns1c.aws - check_command check_dns_expect!dns1a.aws.princeton.edu!10.21.1.10! -w 6 -c 8 - contacts CISDR -} - - - -######################### -# TSM Dev/QA services -######################### - -define service { - service_description snmp_unixtest_alive - use UNIX Production service - hostgroup_name TSM Dev/QA - max_check_attempts 3 - retry_check_interval 2 - check_command check_snmp_alive - contacts Igor V. Gubenko -} - - -define service { - service_description nrpe_unixtest_active_mem - use UNIX Production service - hostgroup_name TSM Dev/QA - process_perf_data 1 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_active_mem!90!95 - contacts ESS Storage -} - - -define service { - service_description nrpe_unixtest_agent_status - use UNIX Production service - hostgroup_name TSM Dev/QA - max_check_attempts 3 - retry_check_interval 1 - check_command check_nrpe_agent - contacts ESS Storage -} - - -define service { - service_description nrpe_unixtest_cpu_system - use UNIX Production service - hostgroup_name TSM Dev/QA - max_check_attempts 6 - normal_check_interval 10 - retry_check_interval 10 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_cpu_system!70:80!50:70 - contacts ESS Storage -} - - -define service { - service_description nrpe_unixtest_cpu_user - use UNIX Production service - hostgroup_name TSM Dev/QA - max_check_attempts 6 - normal_check_interval 10 - retry_check_interval 10 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_cpu_user!85:90 - contacts ESS Storage -} - - -define service { - service_description nrpe_unixtest_disk_system - use UNIX Production service - hostgroup_name TSM Dev/QA -action_url /graphs/cgi-bin/label_graph.cgi?host=$HOSTNAME$&service=nrpe_unixtest_disk_system - check_command check_nrpe_disk_by_class!system - contacts ESS Storage -} - - -define service { - service_description snmp_unixtest_disk_system - use UNIX Production service - hostgroup_name TSM Dev/QA - check_command check_snmp_disk!^/(|boot|tmp|usr(|/local)|var(|/local)|home)$!85!90 - contacts nagiosadmin - contact_groups null -} - - -define service { - service_description nrpe_unixtest_load - use UNIX Production service - hostgroup_name TSM Dev/QA - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_load!2,2.3,2.7!4,4.5,5!" -r " - contacts ESS Storage -} - - -define service { - service_description nrpe_unixtest_lxfiles6 - use UNIX Production service - hostgroup_name TSM Dev/QA - check_command check_nrpe_unix_lxfiles!-c!/etc/fstab,/etc/group,/etc/hosts,/etc/hosts.allow,/etc/passwd,/etc/rsyslog.conf - contacts ESS UNIX List -} - - -define service { - service_description nrpe_unixtest_mounts - use UNIX Production service - hostgroup_name TSM Dev/QA - notification_options c,r - check_command check_nrpe_mounts - contacts ESS Storage -} - - -# dsmserv check -#define service { -# service_description nrpe_unixtest_proc_dsmserv -# use UNIX Production service -# hostgroup_name TSM Dev/QA -# check_command check_nrpe_proclist!dsmserv -# contacts ESS Storage -#} - - -define service { - service_description nrpe_unixtest_proc_tripwire - use UNIX Production service - hostgroup_name TSM Dev/QA - check_command check_nrpe_process!5!1:! -a tripwire -} - - -# No tsm check -define service { - service_description nrpe_unixtest_proclist_linux6 - use UNIX Production service - hostgroup_name TSM Dev/QA - check_command check_nrpe_proclist!crond,nscd,ntpd,sendmail,snmpd,sshd,rsyslogd,xinetd,ypbind - contacts ESS Storage -} - - -define service { - service_description nrpe_unixtest_swap - use UNIX Production service - hostgroup_name TSM Dev/QA - notification_options c,r - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_swap!20!10 - contacts ESS Storage -} - - -define service { - service_description snmp_linux_mem - use UNIX Production service - hostgroup_name TSM Dev/QA - check_command check_snmp_nix_memory!95,85!98,90 - notification_options c,r - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - contact_groups null - contacts nagiosadmin -} - - - -######################### -# Common services for UNIX/Linux Production hosts -######################### - -define service { - service_description snmp_unix_alive - use UNIX Production service - hostgroup_name TSM Production - max_check_attempts 3 - retry_check_interval 2 - check_command check_snmp_alive - contacts Igor V. Gubenko -} - - -define service { - service_description nrpe_unix_active_mem - use UNIX Production service - hostgroup_name TSM Production - process_perf_data 1 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_active_mem!90!95 - contacts ESS Storage -} - - -define service { - service_description nrpe_unix_agent_status - use UNIX Production service - hostgroup_name TSM Production - max_check_attempts 3 - retry_check_interval 1 - check_command check_nrpe_agent - contacts ESS Storage -} - - -define service { - service_description nrpe_unix_cpu_system - use UNIX Production service - hostgroup_name TSM Production - max_check_attempts 6 - normal_check_interval 10 - retry_check_interval 10 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_cpu_system!70:80!50:70 - contacts ESS Storage -} - - -define service { - service_description nrpe_unix_cpu_user - use UNIX Production service - hostgroup_name TSM Production - max_check_attempts 6 - normal_check_interval 10 - retry_check_interval 10 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_cpu_user!85:90 - contacts ESS Storage -} - - -define service { - service_description nrpe_unix_disk_app_tsm - use UNIX Production service - host_name eistsm206l, eistsm207l, eistsm208l, eistsm210l, eistsm211l, ims211 - check_command check_nrpe_disk_by_class!tsm - notification_options w,c,r - contacts ESS Storage -} - - -define service { - service_description nrpe_unix_disk_system - use UNIX Production service - hostgroup_name TSM Production -action_url /graphs/cgi-bin/label_graph.cgi?host=$HOSTNAME$&service=nrpe_unix_disk_system - check_command check_nrpe_disk_by_class!system - contacts ESS Storage -} - - -define service { - service_description snmp_unix_disk_system - use UNIX Production service - hostgroup_name TSM Production - check_command check_snmp_disk!^/(|boot|tmp|usr(|/local)|var(|/local)|home)$!85!90 - contacts nagiosadmin - contact_groups null -} - - -define service { - service_description nrpe_unix_load - use UNIX Production service - hostgroup_name TSM Production - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_load!2,2.3,2.7!4,4.5,5!" -r " - contacts ESS Storage -} - - -define service { - service_description nrpe_unix_lxfiles6 - use UNIX Production service - host_name eistsm206l, eistsm207l, eistsm208l, eistsm210l - check_command check_nrpe_unix_lxfiles!-c!/etc/fstab,/etc/group,/etc/hosts,/etc/hosts.allow,/etc/passwd,/etc/rsyslog.conf - contacts ESS UNIX List -} - - -define service { - service_description nrpe_unix_mounts - use UNIX Production service - hostgroup_name TSM Production - notification_options c,r - check_command check_nrpe_mounts - contacts ESS Storage -} - - -# dsmserv check -define service { - service_description nrpe_unix_proc_dsmserv - use UNIX Production service - hostgroup_name TSM Production - host_name !eistsm200l, !eistsm208l - check_command check_nrpe_proclist!dsmserv - contacts ESS Storage - contact_groups TSM, TSM Page -} - - -# dsmserv check -define service { - service_description snmp_unix_proc_dsmserv - use UNIX Production service - host_name eistsm208l - check_command check_snmp_process!^.*dsmserv!1,2!0 - notification_options w,c,r - contacts ESS Storage - contact_groups TSM, TSM Page -} - - -define service { - service_description nrpe_unix_proc_tripwire - use UNIX Production service - hostgroup_name TSM Production - check_command check_nrpe_process!5!1:! -a tripwire -} - - -# No dsmc check -define service { - service_description nrpe_unix_proclist_linux6 - use UNIX Production service - host_name eistsm206l, eistsm207l, eistsm208l, eistsm210l - check_command check_nrpe_proclist!crond,nscd,ntpd,sendmail,snmpd,sshd,rsyslogd,xinetd,ypbind - contacts ESS Storage -} - - -define service { - service_description nrpe_unix_swap - use UNIX Production service - hostgroup_name TSM Production - notification_options c,r - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_swap!20!10 - contacts ESS Storage -} - - -define service { - service_description snmp_linux_mem - use UNIX Production service - hostgroup_name TSM Production - check_command check_snmp_nix_memory!95,85!98,90 - notification_options c,r - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - contact_groups null - contacts nagiosadmin -} - - - -##### Common UNIX/Linux Dev/QA services - -define service { - service_description nrpe_unixtest_agent_status - use UNIX Dev/QA service - hostgroup_name Linux Dev/QA, !CPanel Dev/QA, !Oracle Exadata Dev/QA, !TSM Dev/QA - max_check_attempts 3 - retry_check_interval 3 - check_freshness 1 - freshness_threshold 1220 - check_command check_nrpe_agent - contacts ESS UNIX List -} - -#define service { -# service_description ESS Services -# use UNIX Dev/QA service -# host_name csgroxen102l -# max_check_attempts 6 -# normal_check_interval 10 -# retry_check_interval 10 -# process_perf_data 1 -# action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ -# check_command check_multi!-f /usr/local/nagios/etc/objects/multi_unixtest.cmd -n "$SERVICEDESC$" -l /usr/local/monitoring/nagios/libexec -t 80 -T 160 -s HOSTADDRESS=$HOSTADDRESS$ -r 1+2+4+8+64 -# contacts nobody -# contact_groups null -#} - -define service { - service_description nrpe_unixtest_active_mem - use UNIX Dev/QA service - hostgroup_name Linux Dev/QA, !CPanel Dev/QA, !Oracle Exadata Dev/QA, !TSM Dev/QA, !Exceptions - process_perf_data 1 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_active_mem!90!95 - contacts ESS UNIX List -} - -define service { - service_description nrpe_unixtest_cpu_system - use UNIX Dev/QA service - hostgroup_name Linux Dev/QA, !CPanel Dev/QA, !Oracle Exadata Dev/QA, !TSM Dev/QA, !Exceptions - max_check_attempts 6 - normal_check_interval 10 - retry_check_interval 10 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_cpu_system!70:80!50:70 - contacts ESS UNIX List - contact_groups null -} - -define service { - service_description nrpe_unixtest_cpu_user - use UNIX Dev/QA service - hostgroup_name Linux Dev/QA, !CPanel Dev/QA, !Oracle Exadata Dev/QA, !TSM Dev/QA, !Exceptions - max_check_attempts 6 - normal_check_interval 10 - retry_check_interval 10 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_cpu_user!85:90 - contacts nobody - contact_groups null -} - -define service { - service_description nrpe_unixtest_load - use UNIX Dev/QA service - hostgroup_name Linux Dev/QA, !32bit Linux, !Oracle Exadata Dev/QA, !TSM Dev/QA, !Exceptions - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_load!2,2.3,2.7!4,4.5,5!" -r " - contacts nobody - contact_groups null -} - -define service { - service_description nrpe_unixtest_disk_system - use UNIX Dev/QA service - hostgroup_name Linux Dev/QA, !CPanel Dev/QA, Linux DevQA - no SNMP, !Oracle Exadata Dev/QA, !TSM Dev/QA, !Exceptions - check_command check_nrpe_disk_by_class!system - contacts ESS UNIX List -} - -define service { - service_description nrpe_unixtest_swap - use UNIX Dev/QA service - hostgroup_name Linux DevQA - no SNMP, !Oracle Exadata Dev/QA, !TSM Dev/QA, !Exceptions - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_swap!20!10 - contacts ESS UNIX List -} - -define service { - service_description nrpe_unixtest_proclist_linux - use UNIX Dev/QA service - hostgroup_name Linux Dev/QA OEL5, !CPanel Dev/QA - host_name !harris - check_command check_nrpe_proclist!crond,nscd,ntpd,portmap,sendmail,snmpd,sshd,syslogd,xinetd,ypbind - contacts ESS UNIX List -} - -define service { - service_description nrpe_unixtest_proc_tripwire - use UNIX Dev/QA service - hostgroup_name Linux Dev/QA, !CPanel Dev/QA, !Oracle Exadata Dev/QA, !TSM Dev/QA - check_command check_nrpe_process!5!1:! -a tripwire -t 30 - contacts ESS UNIX List -} - - -# No ypbind check -define service { - service_description nrpe_unixtest_proclist_linux - use UNIX Dev/QA service - host_name harris - check_command check_nrpe_proclist!crond,nscd,ntpd,portmap,sendmail,snmpd,sshd,syslogd,xinetd - contacts ESS UNIX List -} - - -define service { - service_description nrpe_unixtest_proclist_linux6 - use UNIX Dev/QA service - hostgroup_name Linux Dev/QA OEL6, !Oracle Exadata Dev/QA, !TSM Dev/QA - host_name !cses01, !csglists300l - check_command check_nrpe_proclist!crond,nscd,ntpd,sendmail,snmpd,sshd,rsyslogd,xinetd,ypbind - contacts ESS UNIX List -} - -# No sendmail -define service { - service_description nrpe_unixtest_proclist_linux6 - use UNIX Dev/QA service - host_name cses01, csglists300l - check_command check_nrpe_proclist!crond,nscd,ntpd,snmpd,sshd,rsyslogd,xinetd,ypbind - contacts ESS UNIX List -} - -define service { - service_description nrpe_unixtest_lxfiles - use UNIX Dev/QA service - hostgroup_name Linux Dev/QA OEL5, !CPanel Dev/QA - check_command check_nrpe_unix_lxfiles!-c!/etc/fstab,/etc/group,/etc/hosts,/etc/hosts.allow,/etc/passwd,/etc/syslog.conf - contacts ESS UNIX List -} - -define service { - service_description nrpe_unixtest_lxfiles6 - use UNIX Dev/QA service - hostgroup_name Linux Dev/QA OEL6, !Oracle Exadata Dev/QA, !TSM Dev/QA - check_command check_nrpe_unix_lxfiles!-c!/etc/fstab,/etc/group,/etc/hosts,/etc/hosts.allow,/etc/passwd,/etc/rsyslog.conf - contacts ESS UNIX List -} - -#define service { -# service_description nrpe_unixtest_log_nfs_failure -# use UNIX Dev/QA service -# host_name epm302l -# max_check_attempts 1 -# normal_check_interval 10 -# is_volatile 1 -# notification_options w,c -# check_command check_nrpe_very_generic! -p $USER10$! -t $USER3$! -H eis222l! -c check_log3! -a /logs/today/$HOSTNAME$/messages!'kernel: nfs:.+not responding'!' -s /tmp/nagios_check_log_nfs_failure_$HOSTNAME$ -i -c 1 -a -Q --missing=OK --show-filename' -# contacts John Shorey -#} - -define service { - service_description nrpe_unixtest_log_nfs_failure - use UNIX Dev/QA service - hostgroup_name Linux Dev/QA OEL6, !Oracle Exadata Dev/QA, !TSM Dev/QA - max_check_attempts 1 - normal_check_interval 10 - is_volatile 1 - notification_options w,c -# check_command check_nrpe_very_generic! -p $USER10$! -t $USER3$! -H eis222l! -c check_log3! -a /logs/today/$HOSTNAME$/messages!'kernel:.+nfs'!' -s /tmp/nagios_check_log_nfs_failure_$HOSTNAME$ -i -c 1 -a -Q --missing=OK --show-filename' - check_command check_nrpe_very_generic! -p $USER10$! -t $USER3$! -H eis222l! -c check_log3! -a /logs/today/$HOSTNAME$/messages!'kernel:.+nfs.+not.+responding'!' -s /tmp/nagios_check_log_nfs_failure_$HOSTNAME$ -i -c 1 -a -Q --missing=OK --show-filename' - contacts ESS Storage -} - -define service { - service_description snmp_unixtest_alive - use UNIX Dev/QA service - hostgroup_name Linux Dev/QA, !CPanel Dev/QA, !Linux DevQA - no SNMP, !TSM Dev/QA - max_check_attempts 3 - retry_check_interval 3 - check_command check_snmp_alive - contacts Igor V. Gubenko -} - -#define service { -# service_description snmp_unixtest_disk_system -# use UNIX Dev/QA service -# hostgroup_name Linux Dev/QA, !CPanel Dev/QA, !Oracle Exadata Dev/QA, !Linux DevQA - no SNMP, !TSM Dev/QA -# max_check_attempts 5 -# retry_interval 10 -# check_command check_snmp_disk!^/(|boot|tmp|usr(|/local)|var(|/local)|home)$!90!95 -# contacts Igor V. Gubenko -#} - - -#define service { -# service_description snmp_unixtest_disk_app -# use UNIX Dev/QA service -# hostgroup_name Linux Dev/QA, !Application Linux Dev/QA, !CPanel Dev/QA, !DBA UNIX Dev/QA, !Linux DevQA - no SNMP, !TSM Dev/QA -# max_check_attempts 5 -# retry_interval 10 -# check_command check_snmp_disk_except!^/(|batman/.*|dev(|ices)(|/.*)|dmsdrop/.*|etc/(mnttab|dfs/sharetab|svc/volatile)|export(|/home.*)|platform/sun4[uv].*|system/(contract|object)|proc(|/.*)|boot|nashome|patches|run(|/.*)|rpool|sys/fs/cgroup|tmp|usr(|/compile|/licensed|/local|/operations|/psr.oit|/hostdatabase)|var(|/local|/localsoft|/run|/scholarpac|/scratch)|home.*|yum_repo)$!90!95 -# contacts Igor V. Gubenko -#} - - -define service { - service_description snmp_unixtest_disk_app_dba - use UNIX Dev/QA service - hostgroup_name DBA UNIX Dev/QA - check_command check_snmp_disk!^/(apps|appware|grid|psapp|ora.*|oem|pshrsa.*|redo.*|u01)$!90!95 - contacts DBA Important List -} - -define service { - service_description snmp_unixtest_disk_app - use UNIX Dev/QA service - host_name asoar301l - check_command check_snmp_disk!^/oar$!85!95 - contacts Open Access Repository -} - -define service { - service_description snmp_unixtest_disk_app - use UNIX Dev/QA service - host_name hoover1 - check_command check_snmp_disk!^/(var/local/software|data)$!75!85 - contacts Networking -} - -define service { - service_description snmp_unixtest_disk_app - use UNIX Dev/QA service - host_name ais101l, ais302l - check_command check_snmp_disk!^/aislocal$!70!85 - notification_options w,c,r - contacts AIS Mon CustomApps -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name ais111l - check_command check_nrpe_disk_by_class!AIScustomapps - notification_options w,c,r - contacts AIS Mon CustomApps -} - -define service { - service_description snmp_unixtest_disk_app - use UNIX Dev/QA service - host_name ais310l, ais311l - check_command check_snmp_disk!^/(pafiles|weblogic|tomcat|middleware)!85!95 - notification_options w,c,r - contacts AIS Mon CustomApps -} - -define service { - service_description snmp_unixtest_disk_app - use UNIX Dev/QA service - host_name ele303l, ele304l - check_command check_snmp_disk!^/usr/local/ele$!80!95 - contacts Philip Fugate -} - -define service { - service_description snmp_unixtest_disk_app - use UNIX Dev/QA service - host_name sdpldap100l, sdpldap101l - check_command check_snmp_disk!^/var/ldap$!70!85 - contacts Identity and Access Management -} - -define service { - service_description snmp_unixtest_disk_app - use UNIX Dev/QA service - host_name sdpprox100l, sdpprox101l, sdpprox300l, sdpprox301l - check_command check_snmp_disk!^/puaccess$!70!85 - contacts Identity and Access Management -} - -#define service { -# service_description snmp_linuxtest_mem -# use UNIX Dev/QA service -# hostgroup_name Linux Dev/QA, !CPanel Dev/QA, !Linux DevQA - no SNMP, !Oracle Exadata Dev/QA, !TSM Dev/QA -# action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ -# check_command check_snmp_nix_memory!90,80!98,90 -# contacts nobody -# contact_groups null -#} - -define service { - service_description nrpe_unixtest_om - use UNIX Dev/QA service - hostgroup_name Physical Dev/QA Linux - check_command check_nrpe_om - contacts ESS UNIX List -} - -define service { - service_description nrpe_unixtest_multipath - use UNIX Dev/QA service - host_name eis319l - check_command check_nrpe_multipath!2!2 - contacts ESS UNIX List - contact_groups null -} - -define service { - service_description nrpe_unixtest_mounts - use UNIX Dev/QA service - hostgroup_name Linux Dev/QA, !CPanel Dev/QA, !Oracle Exadata Dev/QA, !TSM Dev/QA - check_command check_nrpe_mounts - contact_groups null - contacts Christopher Dietrich -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name aisiw302l, aisiw303l - check_command check_nrpe_disk_by_class!cedar - notification_options w,c,r - contacts monocle -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name aisiw341l - check_command check_nrpe_disk_by_class!oas - notification_options w,c,r - contacts monocle -} - -define service { - service_description nrpe_unixtest_disk_app_cisdr - use UNIX Dev/QA service - host_name updatespace - check_command check_nrpe_disk_by_class!cisdr - notification_options w,c,r - contact_groups null - contacts DSP Admins -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name cisdr103l - check_command check_nrpe_disk_by_class!dspace - notification_options w,c,r - contact_groups null - contacts CISDR -} - -define service { - service_description nrpe_unixtest_disk_app_ora - use UNIX Dev/QA service - hostgroup_name DBA UNIX Dev/QA - host_name !eisdba303l - check_command check_nrpe_disk_by_class!dbas - notification_options w,c,r - contact_groups null - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app_ora - use UNIX Dev/QA service - host_name eis176l, eis368l - check_command check_nrpe_disk_by_class!Tools855_AppSvrs_2 - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app_ora - use UNIX Dev/QA service - host_name eis178l, eis369l - check_command check_nrpe_disk_by_class!Tools855_Weblogic_2 - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description nrpe_unixtest_disk_app_cisdr - use UNIX Dev/QA service - host_name csgtools300l - check_command check_nrpe_disk_by_class!csg - notification_options w,c,r - contacts CISDR, CSG OnCall -} - -define service { - service_description nrpe_unixtest_disk_app_cisdr - use UNIX Dev/QA service - host_name cisdrroxen100l, cisdrroxen101l, iamroxen301l - check_command check_nrpe_disk_by_class!csg - notification_options w,c,r - contacts OIT CSG Reports -} - -define service { - service_description nrpe_unixtest_disk_app_iam - use UNIX Dev/QA service - host_name iamxythos100l, iamxythos101l, iamxythos300l, iamxythos301l - check_command check_nrpe_disk_by_class!iam - notification_options w,c,r - contacts CISDR -} - -define service { - service_description nrpe_unixtest_disk_app_cisdr - use UNIX Dev/QA service - host_name cisdrswh100l, cisdrswh300l - check_command check_nrpe_disk_by_class!cisdr - notification_options w,c,r - contacts CISDR -} - - -define service { - service_description nrpe_unixtest_disk_app_bb - use UNIX Dev/QA service - host_name asbb106l - check_command check_nrpe_disk_by_class!bb - notification_options w,c,r - contacts Kim Y. Huang -} - -define service { - service_description nrpe_unixtest_disk_app_etc - use UNIX Dev/QA service - host_name asweb100l, asweb300l - check_command check_nrpe_disk_by_class!etc - notification_options w,c,r - contacts ATS System Administration -} - -define service { - service_description snmp_unixtest_disk_app - use UNIX Dev/QA service - host_name eisoid101l, eisoid102l - check_command check_snmp_disk!^/var$!85!95 - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description snmp_unixtest_disk_app - use UNIX Dev/QA service - host_name prson-proj-dev - check_command check_snmp_disk!^/usr/local/prson$!85!95 - notification_options w,c,r - contacts PRSON PROJ, Diana I. Tamir - dit2 -} - -define service { - service_description snmp_unixtest_disk_app - use UNIX Dev/QA service - host_name timeline101l, timeline102l, timeline103l, timeline104l, timeline301l, timeline302l - check_command check_snmp_disk!^/usr/local/apps$!85!95 - notification_options w,c,r - contacts Timeline -} - -define service { - service_description nrpe_unixtest_disk_app_molbio - use UNIX Dev/QA service - host_name mol100l, mol101l, mol103l, mol300l, mol301l - check_command check_nrpe_disk_by_class!molbio - notification_options w,c,r - contact_groups null - contacts Matthew H. Cahn -} - -define service { - service_description nrpe_unixtest_disk_app_iam - use UNIX Dev/QA service - host_name iamprox100l, iamprox101l, iamprox102l, iamprox300l, iamprox301l - check_command check_nrpe_disk_by_class!iam - notification_options w,c,r - contacts Identity and Access Management -} - -define service { - service_description nrpe_unixtest_disk_app_sdp - use UNIX Dev/QA service - host_name qaprov01, sdpoam100l, sdpoam101l, sdpobi100l, sdpohs100l, sdpohs101l, sdpovd100l, sdpovd101l, sdpprox100l, sdpprox101l, sdpprox300l, sdpprox301l, sdppua300l, sdppua301l - check_command check_nrpe_disk_by_class!sdp - notification_options w,c,r - contacts Identity and Access Management -} - -define service { - service_description nrpe_unixtest_disk_app_maestro - use UNIX Dev/QA service - hostgroup_name Maestro Dev/QA - check_command check_nrpe_disk_by_class!maestro - notification_options w,c,r - contacts ESS Storage -} - -#define service { -# service_description snmp_unixtest_nic -# use UNIX Dev/QA service -# hostgroup_name Linux Dev/QA -# check_command check_snmp_int!'.*'!1!2 -# contact_groups null -# contacts nagiosadmin -#} - -define service { - service_description snmp_unixtest_OpenManage - use UNIX Dev/QA service - hostgroup_name Physical Dev/QA Linux - max_check_attempts 5 - retry_check_interval 5 - notification_interval 43200 - notification_options c - check_command check_snmp_openmanage_new - contacts ESS Ops -} - -define service { - service_description nrpe_unixtest_disk_app_sws - use UNIX Dev/QA service - host_name ss100l - check_command check_nrpe_disk_by_class!sws - notification_options w,c,r - contact_groups null - contacts Mark J. Pellecchia, Thomas J. Francais -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name ims316, ims317, ims318, ims319, ims320, ims321 - check_command check_nrpe_disk_by_class!ims - notification_options w,c,r - contacts Networking -} - -define service { - service_description nrpe_unixtest_disk_app - use UNIX Dev/QA service - host_name mon302l, mon303l - check_command check_nrpe_disk_by_class!networking - notification_options w,c,r - contacts Networking -} - - - -######################### -# Common services for UNIX/Linux Production hosts -######################### - -define service { - service_description snmp_unix_alive - use UNIX Production service - hostgroup_name Linux Prod, SIEM, Solaris, !Oracle Exadata, !Prod 8x5 Linux, !CPanel Prod, !TSM Production, !Linux Prod - no SNMP - host_name ims204 - max_check_attempts 3 - retry_check_interval 2 - check_command check_snmp_alive - contacts Igor V. Gubenko -} - -define service { - service_description snmp_unix_alive - use UNIX Production 8x5 service - hostgroup_name Prod 8x5 Linux, !Ping - max_check_attempts 3 - retry_check_interval 2 - notification_options u,c,r - check_command check_snmp_alive - contacts Igor V. Gubenko -} - -define service { - service_description nrpe_unix_agent_status - use UNIX Production service - hostgroup_name Linux Prod, !Oracle Exadata, !Prod 8x5 Linux, !CPanel Prod, Solaris, !TSM Production - max_check_attempts 3 - retry_check_interval 1 - check_command check_nrpe_agent - contacts ESS Page, ESS UNIX List -} - - -define service { - service_description nrpe_unix_agent_status - use UNIX Production 8x5 service - hostgroup_name Prod 8x5 Linux, !Ping - max_check_attempts 3 - retry_check_interval 1 - check_command check_nrpe_agent - contacts ESS Page -} - -define service { - service_description nrpe_unix_cpu - use UNIX Production service - hostgroup_name Solaris - max_check_attempts 6 - normal_check_interval 10 - retry_check_interval 10 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_cpu!50!70!2!1 - contacts ESS UNIX List -} - -define service { - service_description nrpe_unix_cpu_system - use UNIX Production service - hostgroup_name Linux Prod, !Oracle Exadata, !Prod 8x5 Linux, !CPanel Prod, !TSM Production, !PUaccess, !Exceptions - max_check_attempts 6 - normal_check_interval 10 - retry_check_interval 10 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_cpu_system!70:80!50:70 - contacts ESS UNIX List - contact_groups null -} - - -define service { - service_description nrpe_unix_cpu_user - use UNIX Production service - hostgroup_name Linux Prod, !Oracle Exadata, !Prod 8x5 Linux, !CPanel Prod, !TSM Production, !PUaccess, !Exceptions - max_check_attempts 6 - normal_check_interval 10 - retry_check_interval 10 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_cpu_user!85:90 - contacts nobody - contact_groups null -} - - -define service { - service_description nrpe_unix_cpu_system - use UNIX Production service - hostgroup_name PUaccess - max_check_attempts 6 - normal_check_interval 10 - retry_check_interval 10 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_cpu_system!70:80!50:70 - contacts ESS UNIX List, Identity and Access Management -} - -define service { - service_description nrpe_unix_load - use UNIX Production service - hostgroup_name Linux Prod, !Oracle Exadata, !Prod 8x5 Linux, !32bit Linux, !TSM Production, !Exceptions - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_load!2,2.3,2.7!4,4.5,5!" -r " - contacts nobody - contact_groups null -} - - -define service { - service_description nrpe_unix_cpu_user - use UNIX Production service - hostgroup_name PUaccess - max_check_attempts 6 - normal_check_interval 10 - retry_check_interval 10 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_cpu_user!85:90 - contacts Identity and Access Management -} - -define service { - service_description nrpe_unix_cpu_system - use UNIX Production 8x5 service - hostgroup_name Prod 8x5 Linux, !Ping - max_check_attempts 6 - normal_check_interval 10 - retry_check_interval 10 - notification_options c,r - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_cpu_system!70:80!50:70!85:90 - contacts ESS UNIX List - contact_groups null -} - -define service { - service_description nrpe_unix_cpu_user - use UNIX Production 8x5 service - hostgroup_name Prod 8x5 Linux, !Ping - max_check_attempts 6 - normal_check_interval 10 - retry_check_interval 10 - notification_options c,r - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_cpu_user!85:90 - contacts nobody - contact_groups null -} - -define service { - service_description nrpe_unix_load - use UNIX Production 8x5 service - hostgroup_name Prod 8x5 Linux, !Ping - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_load!2,2.3,2.7!4,4.5,5!" -r " - contacts nobody - contact_groups null -} - - -define service { - service_description nrpe_unix_active_mem - use UNIX Production service - hostgroup_name Linux Prod, !Oracle Exadata, !Prod 8x5 Linux, !CPanel Prod, !TSM Production, !PUaccess, !Exceptions - process_perf_data 1 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_active_mem!90!95 - contacts ESS UNIX List -} - -define service { - service_description nrpe_unix_active_mem - use UNIX Production service - hostgroup_name PUaccess - process_perf_data 1 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_active_mem!90!95 - contacts ESS UNIX List, Identity and Access Management -} - -define service { - service_description nrpe_unix_active_mem - use UNIX Production 8x5 service - hostgroup_name Prod 8x5 Linux, !Ping - notification_options c,r - process_perf_data 1 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_active_mem!90!95 - contacts ESS UNIX List -} - -define service { - service_description nrpe_unix_swap - use UNIX Production service - hostgroup_name Linux Prod, !Oracle Exadata, !Prod 8x5 Linux, !CPanel Prod, Solaris, !TSM Production, !PUaccess, !Exceptions - notification_options c,r - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_swap!20!10 - contacts ESS UNIX List -} - -define service { - service_description nrpe_unix_swap - use UNIX Production service - hostgroup_name PUaccess - notification_options c,r - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_swap!20!10 - contacts ESS UNIX List, Identity and Access Management -} - -define service { - service_description nrpe_unix_swap - use UNIX Production 8x5 service - hostgroup_name Prod 8x5 Linux, !Ping - notification_options c,r - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_swap!20!10 - contacts ESS UNIX List -} - - -define service { - service_description nrpe_unix_mounts - use UNIX Production service - hostgroup_name Linux Prod, Solaris, !CPanel Prod, !Oracle Exadata, !PUaccess, !TSM Production - notification_options c,r - check_command check_nrpe_mounts - contact_groups null - contacts Christopher Dietrich -} - -define service { - service_description nrpe_unix_mounts - use UNIX Production service - hostgroup_name PUaccess - notification_options c,r - check_command check_nrpe_mounts - contact_groups null - contacts Christopher Dietrich, Identity and Access Management -} - - -define service { - service_description nrpe_unix_log_nfs_failure - use UNIX Production service - hostgroup_name Linux Prod - max_check_attempts 1 - normal_check_interval 10 - is_volatile 1 - notification_options w,c - check_command check_nrpe_very_generic! -p $USER10$! -t $USER3$! -H eis222l! -c check_log3! -a /logs/today/$HOSTNAME$/messages!'kernel:.+nfs.+not.+responding'!' -s /tmp/nagios_check_log_nfs_failure_$HOSTNAME$ -i -c 1 -a -Q --missing=OK --show-filename' - contacts ESS Storage -} - - -define service { - service_description snmp_unix_load - use UNIX Production service - hostgroup_name SIEM - host_name !esm, !receiver01, !receiver02, !receiver03 - check_command check_snmp_load!4,4.5,5!6,6.5,7! -T netsl - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - contact_groups null - contacts Eric Burd, Igor V. Gubenko, Ruth D. Gittens -} - -define service { - service_description snmp_unix_load - use UNIX Production service - host_name esm - check_command check_snmp_load!10,10.5,11!12,12.5,13! -T netsl - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - contact_groups null - contacts Eric Burd, Igor V. Gubenko, Ruth D. Gittens -} - -define service { - service_description snmp_unix_load - use UNIX Production service - host_name receiver01, receiver02, !receiver03 - check_command check_snmp_load!8,8.5,9!10,10.5,11! -T netsl - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - contact_groups null - contacts Eric Burd, Igor V. Gubenko, Ruth D. Gittens -} - -define service { - service_description snmp_linux_mem - use UNIX Production service - hostgroup_name SIEM - host_name !esm, !receiver01, !receiver02, !receiver03 - check_command check_snmp_nix_memory!95,85!98,90 - notification_options c,r - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - contact_groups null - contacts Eric Burd, Igor V. Gubenko, Ruth D. Gittens -} - -define service { - service_description snmp_linux_mem - use UNIX Production service - host_name esm, receiver01, receiver02, receiver03 - check_command check_snmp_nix_memory!60,0!80,0 - notification_options w,c,r - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - contact_groups null - contacts Eric Burd, Igor V. Gubenko, Ruth D. Gittens -} - -#define service { -# service_description snmp_linux_mem -# use UNIX Production service -# hostgroup_name Linux Prod, !Oracle Exadata, !Prod 8x5 Linux, !CPanel Prod, !Linux Prod - no SNMP, !PUaccess, !TSM Production -# check_command check_snmp_nix_memory!95,85!98,90 -# notification_options c,r -# action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ -# contact_groups null -# contacts nagiosadmin -#} - - -define service { - service_description snmp_linux_mem - use UNIX Production service - hostgroup_name PUaccess - check_command check_snmp_nix_memory!95,85!98,90 - notification_options c,r - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - contact_groups null - contacts Identity and Access Management -} - -define service { - service_description nrpe_unix_disk_system - use UNIX Production service - hostgroup_name Linux Prod, !Oracle Exadata, !Prod 8x5 Linux, !CPanel Prod, !TSM Production, !Exceptions -action_url /graphs/cgi-bin/label_graph.cgi?host=$HOSTNAME$&service=nrpe_unix_disk_system - check_command check_nrpe_disk_by_class!system - contacts ESS UNIX List -} - -define service { - service_description nrpe_unix_disk_system - use UNIX Production service - hostgroup_name Solaris -action_url /graphs/cgi-bin/label_graph.cgi?host=$HOSTNAME$&service=nrpe_unix_disk_system - check_command check_nrpe_disk_by_class!system - contacts ESS Page -} - - -define service { - service_description nrpe_unix_disk_system - use UNIX Production 8x5 service - hostgroup_name Prod 8x5 Linux, !Ping - notification_options u,c,r -action_url /graphs/cgi-bin/label_graph.cgi?host=$HOSTNAME$&service=nrpe_unix_disk_system - check_command check_nrpe_disk_by_class!system - contacts ESS UNIX List -} - -#define service { -# service_description snmp_unix_disk_system -# use UNIX Production service -# hostgroup_name Linux Prod, !Oracle Exadata, !Prod 8x5 Linux, !CPanel Prod, Solaris, !Linux Prod - no SNMP, !PUaccess, !TSM Production, !Exceptions -# check_command check_snmp_disk!^/(|boot|tmp|usr(|/local)|var(|/local)|home)$!85!90 -# contacts nagiosadmin -# contact_groups null -#} - -define service { - service_description snmp_unix_disk_system - use UNIX Production service - hostgroup_name PUaccess - check_command check_snmp_disk!^/(|boot|tmp|usr(|/local)|var(|/local)|home)$!85!90 - contacts Identity and Access Management - contact_groups null -} - -define service { - service_description snmp_unix_disk - use UNIX Production service - hostgroup_name SIEM - host_name !esm, !receiver01, !receiver02, !receiver03, !siem-elm - check_command check_snmp_disk!^.*$!80!90 - notification_options w,c,r - contacts Dean Plante, Networking -} - -define service { - service_description snmp_unix_disk - use UNIX Production service - host_name esm, siem-elm - check_command check_snmp_disk!^.*$!90!95 - notification_options w,c,r - contacts Dean Plante, Networking -} - -define service { - service_description snmp_unix_disk - use UNIX Production service - host_name receiver01, receiver02, receiver03 - check_command check_snmp_disk!^.*$!65!85 - notification_options w,c,r - contacts Dean Plante, Networking -} - -#define service { -# service_description snmp_unix_disk_app -# use UNIX Production service -# hostgroup_name Linux Prod, !Prod 8x5 Linux, !Application Linux Production, !CPanel Prod, Solaris, !DBA UNIX Prod, !Linux Prod - no SNMP, !PUaccess, !TSM Production -# check_command check_snmp_disk_except!^/(|batman/.*|dev(|ices)(|/.*)|dmsdrop/.*|etc/(mnttab|dfs/sharetab|svc/volatile)|export(|/home.*)|platform/sun4[uv].*|system/(contract|object)|proc(|/.*)|boot|nashome|patches|run(|/.*)|rpool|sys/fs/cgroup|tmp|usr(|/compile|/licensed|/local|/operations|/psr.oit|/hostdatabase)|var(|/local|/localsoft|/run|/scholarpac|/scratch)|home.*|yum_repo)$!90!95 -# contacts nagiosadmin -# contact_groups null -#} - -define service { - service_description nrpe_unix_lxfiles - use UNIX Production service - hostgroup_name Linux Prod OEL5, !Prod 8x5 Linux, !CPanel Prod, !PUaccess, !TSM Production - host_name !raas03 - check_command check_nrpe_unix_lxfiles!-c!/etc/fstab,/etc/group,/etc/hosts,/etc/hosts.allow,/etc/passwd,/etc/syslog.conf - contacts ESS UNIX List -} - -define service { - service_description nrpe_unix_lxfiles - use UNIX Production service - host_name raas03 - check_command check_nrpe_unix_lxfiles!-c!/etc/fstab,/etc/group,/etc/hosts,/etc/hosts.allow,/etc/passwd - contacts ESS UNIX List -} - -define service { - service_description nrpe_unix_lxfiles - use UNIX Production 8x5 service - hostgroup_name Prod 8x5 Linux, !Ping - notification_options u,c,r - check_command check_nrpe_unix_lxfiles!-c!/etc/fstab,/etc/group,/etc/hosts,/etc/hosts.allow,/etc/passwd,/etc/syslog.conf - contacts ESS UNIX List -} - -define service { - service_description nrpe_unix_lxfiles6 - use UNIX Production service - hostgroup_name Linux Prod OEL6, !Oracle Exadata, !PUaccess, !TSM Production - check_command check_nrpe_unix_lxfiles!-c!/etc/fstab,/etc/group,/etc/hosts,/etc/hosts.allow,/etc/passwd,/etc/rsyslog.conf - contacts ESS UNIX List -} - -define service { - service_description nrpe_unix_lxfiles6 - use UNIX Production service - hostgroup_name PUaccess - check_command check_nrpe_unix_lxfiles!-c!/etc/fstab,/etc/group,/etc/hosts,/etc/hosts.allow,/etc/passwd,/etc/rsyslog.conf - contacts ESS UNIX List, Identity and Access Management -} - -define service { - service_description nrpe_unix_proclist_linux - use UNIX Production service - hostgroup_name Linux Prod OEL5, !Prod 8x5 Linux, !CPanel Prod, !PUaccess, !TSM Production - host_name !raas03 - check_command check_nrpe_proclist!crond,nscd,ntpd,portmap,sendmail,snmpd,sshd,syslogd,xinetd,ypbind - contacts ESS UNIX List -} - -define service { - service_description nrpe_unix_proc_tripwire - use UNIX Production service - hostgroup_name Linux Prod, !Prod 8x5 Linux, !CPanel Prod, !Oracle Exadata, !PUaccess, !TSM Production - host_name !raas03 - check_command check_nrpe_process!5!1:! -a tripwire -t 30 - contacts ESS UNIX List -} - - -# No portmap check -define service { - service_description nrpe_unix_proclist_linux - use UNIX Production service - host_name raas03 - check_command check_nrpe_proclist!crond,nscd,ntpd,sendmail,snmpd,sshd,xinetd,ypbind - contacts ESS UNIX List -} - - -define service { - service_description nrpe_unix_proclist_linux - use UNIX Production 8x5 service - hostgroup_name Prod 8x5 Linux, !Ping - notification_options u,c,r - check_command check_nrpe_proclist!crond,nscd,ntpd,portmap,sendmail,snmpd,sshd,syslogd,xinetd,ypbind - contacts ESS UNIX List -} - -define service { - service_description nrpe_unix_proc_tripwire - use UNIX Production 8x5 service - hostgroup_name Prod 8x5 Linux, !Ping - check_command check_nrpe_process!5!1:! -a tripwire - contacts ESS UNIX List -} - -define service { - service_description nrpe_unix_proclist_linux6 - use UNIX Production service - hostgroup_name Linux Prod OEL6, !Oracle Exadata, !Prod 8x5 Linux, !PUaccess, !TSM Production - host_name !csglists200l - check_command check_nrpe_proclist!crond,nscd,ntpd,sendmail,snmpd,sshd,rsyslogd,xinetd,ypbind - contacts ESS UNIX List -} - -define service { - service_description nrpe_unix_proclist_linux6 - use UNIX Production service - hostgroup_name PUaccess - check_command check_nrpe_proclist!crond,nscd,ntpd,sendmail,snmpd,sshd,rsyslogd,xinetd,ypbind - contacts ESS UNIX List, Identity and Access Management -} - -# No sendmail -define service { - service_description nrpe_unix_proclist_linux6 - use UNIX Production service - host_name csglists200l - check_command check_nrpe_proclist!crond,nscd,ntpd,snmpd,sshd,rsyslogd,xinetd,ypbind - contacts ESS UNIX List -} - -# lsv check -define service { - service_description nrpe_unix_proclist_lsv - use UNIX Production service - host_name csglists200l - check_command check_nrpe_proclist!lsv - contacts CISDR -} - - -########################### End common UNIX/Linux definitions - -define service { - service_description nrpe_unix_asm_disk - use UNIX Production service - host_name eis208l - check_command check_nrpe_asm_disk!85!95 - contact_groups null - contacts DBA Important List -} - -define service { - service_description nrpe_unix_disk_app - use UNIX Production service - host_name iamxythos200l, iamxythos201l, oaamx201l, oaamx202l - check_command check_nrpe_disk_by_class!iam - notification_options w,c,r - contacts CISDR -} - -define service { - service_description nrpe_unix_disk_app - use UNIX Production service - host_name cisdr202l, cisdr204l - check_command check_nrpe_disk_by_class!dspace - notification_options w,c,r - contacts CISDR -} - -define service { - service_description snmp_unix_disk_app - use UNIX Production service - host_name asoar201l - check_command check_snmp_disk!^/oar$!85!95 - contacts CISDR -} - -define service { - service_description nrpe_unix_disk_app - use UNIX Production service - host_name aisiw207l, aisiw208l - check_command check_nrpe_disk_by_class!monocle - notification_options w,c,r - contacts monocle -} - -define service { - service_description nrpe_unix_disk_app_ora - use UNIX Production service - hostgroup_name DBA UNIX Prod - check_command check_nrpe_disk_by_class!dbas - notification_options w,c,r - contact_groups null - contacts DBA Important List -} - -define service { - service_description nrpe_unix_disk_app_aas-l - use UNIX Production service - host_name isserv215, isserv216 - notification_options w,c,r - check_command check_nrpe_disk_by_class!aas-l - contacts DBA Important List, AIS ERP List -} - -define service { - service_description nrpe_unix_disk_app_amu - use UNIX Production service - host_name amu203l - check_command check_nrpe_disk_by_class!amu - contact_groups null - contacts Janet M. Strohl-Morgan -} - -define service { - service_description nrpe_unix_disk_app_bb - use UNIX Production service - host_name asbb208l - check_command check_nrpe_disk_by_class!bb - notification_options w,c,r - contact_groups null - contacts Kim Y. Huang -} - -define service { - service_description nrpe_unix_disk_app_molbio - use UNIX Production service - host_name mol201l,mol203l - check_command check_nrpe_disk_by_class!molbio - notification_options w,c,r - contact_groups null - contacts Matthew H. Cahn -} - -define service { - service_description nrpe_unix_disk_app_sdp - use UNIX Production service - host_name prov01, sdpoam200l, sdpoam201l, sdpobi200l, sdpohs200l, sdpohs201l, sdpovd200l, sdpovd201l, sdpprox200l, sdpprox201l - check_command check_nrpe_disk_by_class!sdp - notification_options w,c,r - contacts Identity and Access Management -} - -define service { - service_description nrpe_unix_disk_app_maestro - use UNIX Production service - hostgroup_name Maestro - check_command check_nrpe_disk_by_class!maestro - notification_options w,c,r - contacts ESS Storage, Martin Pager -} - -define service { - service_description nrpe_unix_disk_app_cisdr - use UNIX Production service - host_name csgsmtp202l, csgsmtp203l - check_command check_nrpe_disk_by_class!csg - notification_options w,c,r - contacts CISDR, CSG OnCall -} - -define service { - service_description nrpe_unix_disk_app_cisdr - use UNIX Production service - host_name cisdrroxen200l, cisdrroxen201l, cisdrroxen202l, cisdrroxen203l, cisdrroxen204l, cisdrroxen205l - check_command check_nrpe_disk_by_class!csg - notification_options w,c,r - contacts OIT CSG Reports -} - -define service { - service_description nrpe_unix_disk_app_cisdr - use UNIX Production service - host_name cisdrswh200l, cisdrswh201l - check_command check_nrpe_disk_by_class!cisdr - notification_options w,c,r - contacts CISDR, CSG OnCall -} - -# Software support -define service { - service_description nrpe_unix_disk_app_sws - use UNIX Production service - host_name ss200l, ss209l - check_command check_nrpe_disk_by_class!sws - notification_options w,c,r - contacts Mark J. Pellecchia, Thomas J. Francais -} - -define service { - service_description nrpe_unix_disk_app_etc - use UNIX Production service - host_name asetc206l, asweb200l - check_command check_nrpe_disk_by_class!etc - notification_options w,c,r - contact_groups null - contacts ATS System Administration -} - -define service { - service_description nrpe_unix_disk_app_ims - use UNIX Production service - host_name ims204, ims205, ims218, ims219, ims220, ims221, ims222, ims223, ims224, ims225, ims314, ims315 - check_command check_nrpe_disk_by_class!ims - notification_options w,c,r - contacts Networking, Igor Pager -} - -define service { - service_description nrpe_unix_disk_logs - use UNIX Production service - host_name eis222l - check_command check_nrpe_disk!85!90!/logs - notification_options w,c,r - contacts ESS UNIX List -} - -# /aislocal -define service { - service_description snmp_unix_disk_app_aislocal - use UNIX Production service - host_name ais204l - check_command check_snmp_disk!^/aislocal$!85!90 - notification_options w,c,r - contacts AIS Mon CustomApps -} - -define service { - service_description nrpe_unix_disk_app - use UNIX Production service - host_name ais211l - check_command check_nrpe_disk_by_class!AIScustomapps - notification_options w,c,r - contacts AIS Mon CustomApps -} - - -define service { - service_description snmp_unix_disk_app - use UNIX Production service - host_name eisoid201l, eisoid202l, eisoid203l - check_command check_snmp_disk!^/var$!85!95 - notification_options w,c,r - contacts DBA Important List -} - -define service { - service_description snmp_unix_disk_app - use UNIX Production service - host_name iso200l-rencif - check_command check_snmp_disk!^/usr/local/security$!85!95 - notification_options w,c,r - contacts Dean Plante, Eric Burd, Igor V. Gubenko -} - -define service { - service_description snmp_unix_disk_app - use UNIX Production service - host_name prson-proj-prod - check_command check_snmp_disk!^/usr/local/prson$!85!95 - notification_options w,c,r - contacts PRSON PROJ, Diana I. Tamir - dit2 -} - -# /web -define service { - service_description snmp_unix_disk_app - use UNIX Production service - host_name mol200l - check_command check_snmp_fixed_storage!^/web$!85!90 - notification_options w,c,r - contacts Matthew H. Cahn -} - -define service { - service_description snmp_unix_disk_app - use UNIX Production service - host_name mon204l, mon205l - check_command check_snmp_disk!^/usr/local/monitoring$!70!85 - contacts Networking -} - -define service { - service_description snmp_unix_disk_app - use UNIX Production service - host_name net200l-config - check_command check_snmp_disk!^/manageengine$!70!85 - contacts Networking -} - -define service { - service_description snmp_unix_disk_app - use UNIX Production service - host_name sdpldap200l, sdpldap201l - check_command check_snmp_disk!^/var/ldap$!70!85 - contacts Identity and Access Management -} - -define service { - service_description snmp_unix_disk_app - use UNIX Production service - host_name sentinel - check_command check_snmp_disk!^/(data|opt)$!85!95 - contacts Networking -} - -define service { - service_description snmp_unix_disk_app - use UNIX Production service - host_name timeline201l, timeline202l, timeline203l, timeline204l, timeline205l - check_command check_snmp_disk!^/usr/local/apps$!85!95 - notification_options w,c,r - contacts Timeline -} - -define service { - service_description snmp_unix_disk_app_var - use UNIX Production service - host_name csglists200l - check_command check_snmp_disk!^/var$!85!95 - contacts CSG Page, ESS Page -} - -define service { - service_description nrpe_unix_om - use UNIX Production service - hostgroup_name Physical Prod Linux - check_command check_nrpe_om - contacts ESS UNIX List -} - -define service { - service_description nrpe_unix_multipath - use UNIX Production service - host_name eis208l - check_command check_nrpe_multipath!2!2 - contacts ESS UNIX List - contact_groups null -} - -define service { - service_description snmp_unix_OpenManage - use UNIX Production service - hostgroup_name Physical Prod Linux - max_check_attempts 5 - retry_check_interval 5 - notification_interval 43200 - notification_options c - check_command check_snmp_openmanage_new - contacts ESS Ops -} - -define service { - service_description trap - use SNMP trap - hostgroup_name SIEM - contacts epm-list -} - -define service { - service_description trap - use SNMP trap - hostgroup_name Firewalls - contacts John Shorey -} - - - -define service { - service_description http - use generic-service - host_name cisdrswh200l, cisdrswh201l - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http!6!8 - contacts CISDR, Dwight D. Bashore -} - -define service { - service_description http - use generic-service - host_name egn-dome-wwwinterface - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http!6!8 - check_period EGN Dome WWWInterface - notification_period EGN Dome WWWInterface - contacts Gregory S. Paczkowski, Joseph M. Karam -} - -define service { - service_description http - use generic-service - host_name tools - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http!6!8 - contacts Identity and Access Management -} - -define service { - service_description http - use generic-service - host_name net200l-config - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https_port!6!8!6060 - contacts Networking -} - -define service { - service_description https - use generic-service - host_name eisnet200l - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https!6!8 - contacts Networking -} - -define service { - service_description https - use generic-service - host_name sdptools200w, tools - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https!6!8!-N - contacts Identity and Access Management -} - -#define service { -# service_description https -# use generic-service -# host_name -# action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ -# check_command check_https!6!8!-N -f "follow" -# contacts Identity and Access Management -#} - -define service { - service_description http_dropbox.com - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_simple!dropbox.com!6!8 - contacts Networking -} - -define service { - service_description http_www.mccarter.org - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_simple!www.mccarter.org!6!8 - contacts dummy -} - -define service { - service_description https_www.mccarter.org - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https_simple!www.mccarter.org!6!8 - contacts dummy -} - -define service { - service_description https_Exchange_EWS - use generic-service - host_name csgcas204w, csgcas205w, csgcas206w, csgcas207w - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https_auth!ntlm!https://$HOSTALIAS$/ews/exchange.asmx!PRINCETON%groundwk!$USER30$!xmlns:t=\"http://schemas.microsoft.com - contacts CISDR -} - -define service { - service_description https_owa_Exchange_EWS - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https_auth!ntlm!https://owa.Princeton.EDU/ews/exchange.asmx!PRINCETON%groundwk!$USER30$!xmlns:t=\"http://schemas.microsoft.com - contacts CISDR -} - -define service { - service_description https_careers - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https_simple!careers.Princeton.EDU!6!8 - contacts Networking -} - -define service { - service_description https_campaignvolunteers - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https_url!campaignvolunteers.princeton.edu!/!6!8! -f "follow" - contacts Dev Web Monitor -} - -define service { - service_description https_job_search - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https_simple!main-princeton.icims.com!6!8 - contacts Networking -} - -define service { - service_description https_Service-Now - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https_url!princeton.service-now.com!/!6!8 - contacts Networking -} - -define service { - service_description https_secure.ohmcentral.com - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https_url!secure.ohmcentral.com!/!6!8 - contacts David Rinker -} - -define service { - service_description https_shibboleth_qa - use generic-service - host_name idpqa, iamshib102w.aws, iamshib103w.aws - check_command check_https_url!$HOSTALIAS$!/idp/shibboleth!6!8! -s "https://idpqa.princeton.edu/idp/shibboleth" - contacts Identity and Access Management -} - -define service { - service_description https_shib_qa_status - use generic-service - host_name idpqa, iamshib102w.aws, iamshib103w.aws - check_command check_https_url!$HOSTALIAS$!/idp/profile/status!6!8! -s "DataConnector myLDAP: has never failed" - contacts Identity and Access Management -} - -define service { - service_description https_CAS_idpqa_elb.125_status - use generic-service - host_name idpqa - check_command check_https_url_idpqa_125!6!8! -s "DataConnector myLDAP: has never failed" - contacts Identity and Access Management -} - -define service { - service_description https_CAS_idpqa_elb.83_status - use generic-service - host_name idpqa - check_command check_https_url_idpqa_83!6!8! -s "DataConnector myLDAP: has never failed" - contacts Identity and Access Management -} - -define service { - service_description https_shibboleth - use generic-service - host_name idp, iamshib202w.aws, iamshib203w.aws - check_command check_https_url!$HOSTALIAS$!/idp/shibboleth!6!8! -s "https://idpqa.princeton.edu/idp/shibboleth" - contacts Identity and Access Management -} - -define service { - service_description https_shib_status - use generic-service - host_name idp, iamshib202w.aws, iamshib203w.aws - check_command check_https_url!$HOSTALIAS$!/idp/profile/status!6!8! -s "DataConnector myLDAP: has never failed" - contacts Identity and Access Management -} - -define service { - service_description https_CAS_idp_elb.95_status - use generic-service - host_name idp - check_command check_https_url_idp_95!6!8! -s "DataConnector myLDAP: has never failed" - contacts Identity and Access Management -} - -define service { - service_description https_CAS_idp_elb.168_status - use generic-service - host_name idp - check_command check_https_url_idp_168!6!8! -s "DataConnector myLDAP: has never failed" - contacts Identity and Access Management -} - -define service { - service_description https_status - use generic-service - host_name iamshib200w, iamshib201w - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https_url!$HOSTALIAS$!/idp/profile/status!6!8! -s "last reload attempt" - contacts Identity and Access Management -} - - -define service { - service_description http_aisfe05 - use generic-service - host_name www_roxen - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_simple!aisfe05.princeton.edu!6!8 - contacts CISDR -} - -define service { - service_description http_aisfe06 - use generic-service - host_name www_roxen - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_simple!aisfe06.princeton.edu!6!8 - contacts CISDR -} - -define service { - service_description http_aisfe07 - use generic-service - host_name www_roxen - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_simple!aisfe07.princeton.edu!6!8 - contacts CISDR -} - -define service { - service_description http_aisfe08 - use generic-service - host_name www_roxen - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_simple!aisfe08.princeton.edu!6!8 - contacts CISDR -} - -define service { - service_description http_alumnife05 - use generic-service - host_name www_roxen - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_simple!alumnife05.princeton.edu!6!8 - contacts CISDR -} - -define service { - service_description http_alumnife06 - use generic-service - host_name www_roxen - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_simple!alumnife06.princeton.edu!6!8 - contacts CISDR -} - -define service { - service_description http_alumnife07 - use generic-service - host_name www_roxen - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_simple!alumnife07.princeton.edu!6!8 - contacts CISDR -} - -define service { - service_description http_alumnife08 - use generic-service - host_name www_roxen - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_simple!alumnife08.princeton.edu!6!8 - contacts CISDR -} - -define service { - service_description http_deptafe05 - use generic-service - host_name www_roxen - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_simple!deptafe05.princeton.edu!6!8 - contacts CISDR -} - -define service { - service_description http_deptafe06 - use generic-service - host_name www_roxen - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_simple!deptafe06.princeton.edu!6!8 - contacts CISDR -} - -define service { - service_description http_deptafe07 - use generic-service - host_name www_roxen - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_simple!deptafe07.princeton.edu!6!8 - contacts CISDR -} - -define service { - service_description http_deptafe08 - use generic-service - host_name www_roxen - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_simple!deptafe08.princeton.edu!6!8 - contacts CISDR -} - -define service { - service_description http_deptbfe05 - use generic-service - host_name www_roxen - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_simple!deptbfe05.princeton.edu!6!8 - contacts CISDR -} - -define service { - service_description http_deptbfe06 - use generic-service - host_name www_roxen - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_simple!deptbfe06.princeton.edu!6!8 - contacts CISDR -} - -define service { - service_description http_deptbfe07 - use generic-service - host_name www_roxen - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_simple!deptbfe07.princeton.edu!6!8 - contacts CISDR -} - -define service { - service_description http_deptbfe08 - use generic-service - host_name www_roxen - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_simple!deptbfe08.princeton.edu!6!8 - contacts CISDR -} - -define service { - service_description http_financefe05 - use generic-service - host_name www_roxen - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_simple!financefe05.princeton.edu!6!8 - contacts CISDR -} - -define service { - service_description http_financefe06 - use generic-service - host_name www_roxen - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_simple!financefe06.princeton.edu!6!8 - contacts CISDR -} - -define service { - service_description http_financefe07 - use generic-service - host_name www_roxen - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_simple!financefe07.princeton.edu!6!8 - contacts CISDR -} - -define service { - service_description http_financefe08 - use generic-service - host_name www_roxen - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_simple!financefe08.princeton.edu!6!8 - contacts CISDR -} - -define service { - service_description http_upc - use generic-service - host_name aisupc202w, aisupc203w - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_url!$HOSTNAME$.princeton.edu!/upc/pubcal/release.html!6!8 -} - -define service { - service_description http_registrarfe05 - use generic-service - host_name www_roxen - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_simple!registrarfe05.princeton.edu!6!8 - contacts CISDR -} - -define service { - service_description http_registrarfe06 - use generic-service - host_name www_roxen - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_simple!registrarfe06.princeton.edu!6!8 - contacts CISDR -} - -define service { - service_description http_registrarfe07 - use generic-service - host_name www_roxen - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_simple!registrarfe07.princeton.edu!6!8 - contacts CISDR -} - -define service { - service_description http_registrarfe08 - use generic-service - host_name www_roxen - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_simple!registrarfe08.princeton.edu!6!8 - contacts CISDR -} - -define service { - service_description http_8001 - use generic-service - host_name sdpoam200l - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_url!$HOSTNAME$.Princeton.EDU!/OAAMUtilityWeb/CreateUser!6!8! -p 8001 - contacts Identity and Access Management -} - -define service { - service_description https_4443 - use generic-service - host_name iamprox100l, iamprox101l - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https!6!8!-N -p 4443 -f "follow" - contacts Identity and Access Management -} - -define service { - service_description https_4444 - use generic-service - host_name iamprox100l, iamprox101l - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https!6!8!-N -p 4444 -f "follow" - contacts Identity and Access Management -} - -define service { - service_description https_4450 - use generic-service - host_name iamprox100l, iamprox101l - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https!6!8!-N -p 4444 -f "follow" - contacts Identity and Access Management -} - -define service { - service_description https_4446 - use generic-service - host_name iamprox100l, iamprox101l - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https_port!6!8!4446 - contacts Identity and Access Management -} - -define service { - service_description https_4447 - use generic-service - host_name iamprox100l, iamprox101l - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https_port!6!8!4447 - contacts Identity and Access Management -} - -define service { - service_description https_4448 - use generic-service - host_name iamprox100l, iamprox101l - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https_port!6!8!4448 - contacts Identity and Access Management -} - -define service { - service_description https_4449 - use generic-service - host_name iamprox100l, iamprox101l - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https_port!6!8!4449 - contacts Identity and Access Management -} - -define service { - service_description http_www-dept-edit - use generic-service - host_name www_roxen - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_simple!www-dept-edit.princeton.edu!6!8 - contacts CISDR -} - -define service { - service_description http_deptbedit - use generic-service - host_name www_roxen - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_simple!deptbedit.princeton.edu!6!8 - contacts CISDR -} - -define service { - service_description webcheck_https_ShoppingCart - use generic-service - host_name dascrl200w - max_check_attempts 3 - normal_check_interval 1 - retry_check_interval 1 - check_command check_https_ShoppingCart - contacts CRL List -} - -define service { - service_description http_agchallenge - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_simple!agchallenge.princeton.edu!6!8 - contacts Dev Web Monitor -} - -define service { - service_description http_classics - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_simple!classics.princeton.edu!6!8 - contacts Classics Web -} - -define service { - service_description http_cpanel-das-prod-oitcpanel - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_url!cpanel-das-prod-oitcpanel.princeton.edu!/showmysqlstatus.php!6!8! -s "DBConnection=Yes" - contacts Cpanel Admins -} - -define service { - service_description http_cpanel-das-qa-oitcpanel - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_url!cpanel-das-qa-oitcpanel.princeton.edu!/showmysqlstatus.php!6!8! -s "DBConnection=Yes" - contacts Cpanel Admins -} - -define service { - service_description http_ohdcpanl_deptcpanel_reclaim_prod - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_url!ohdcpanl.deptcpanel.princeton.edu!/showmysqlstatus.php!6!8! -s "DBConnection=Yes" - contacts Cpanel Admins -} - -define service { - service_description http_ohdcpanl_cpaneldev_reclaim_dev - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_url!ohdcpanl.cpaneldev.princeton.edu!/showmysqlstatus.php!6!8! -s "DBConnection=Yes" - contacts Open Access Repository -} - -define service { - service_description http_ohdcpanl_mycpanel2_reclaim_personal - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_url!ohdcpanl.mycpanel2.princeton.edu!/showmysqlstatus.php!6!8! -s "DBConnection=Yes" - contacts Cpanel Admins -} - -define service { - service_description http_ohdcpanl-oitwasprod - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_url!ohdcpanl.oitwasprod.princeton.edu!/showstatus.php!6!8! -s "PHP and MySQL are working properly" - contacts CISDR -} - -define service { - service_description http_oar - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_url!oar.princeton.edu!/!6!8! - contacts CISDR -} - -define service { - service_description http_oar_rt4ds - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_url!oar.princeton.edu!/rt4ds/repository!8!12! -N - contacts CISDR -} - -define service { - service_description http_oar-dev - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_url!oar-dev.princeton.edu!/!6!8! - contacts Open Access Repository -} - -define service { - service_description http_oar-dev_rt4ds - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_url!oar-dev.princeton.edu!/rt4ds/repository!8!12! -s "Repository Item" - contacts Open Access Repository -} - -define service { - service_description http_thesis-central - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_url!thesis-central.princeton.edu!/!6!8! -s "Thesis Central" - contacts CISDR -} - -define service { - service_description http_thesis-central-firefox-navigation - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https_thesis_central!thesis-central.princeton.edu!groundwk!$USER30$ - contacts Thesis Central -} - -define service { - service_description http_thesis-central-qa.aws - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_url!thesis-central-qa.aws.princeton.edu!/!6!8! -s "Thesis Central" - contacts Thesis Central -} - -define service { - service_description http_thesis-central-qa.aws-firefox-navigation - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https_thesis_central!thesis-central-qa.aws.princeton.edu!groundwk!$USER30$ - contacts Thesis Central -} - -define service { - service_description http_oitcpanel.cpaneldev - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_url!oitcpanel.cpaneldev.princeton.edu!/showmysqlstatus.php!6!8! -s "DBConnection=Yes" - contacts Cpanel Admins -} - -define service { - service_description http_oitcpanel.deptcpanel - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_url!oitcpanel.deptcpanel.princeton.edu!/showmysqlstatus.php!6!8! -s "DBConnection=Yes" - contacts Cpanel Admins -} - -define service { - service_description http_oitcpanel.mycpanel - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_url!oitcpanel.mycpanel.princeton.edu!/showmysqlstatus.php!6!8! -s "DBConnection=Yes" - contacts Cpanel Admins -} - -define service { - service_description http_oitcpanel.mycpanel2 - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_url!oitcpanel.mycpanel2.princeton.edu!/showmysqlstatus.php!6!8! -s "DBConnection=Yes" - contacts Cpanel Admins -} - -define service { - service_description https_idpstatus - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https_url!idp.princeton.edu!/idp/profile/status!6!8! -s "idp_version: 3.2.1" - contacts Identity and Access Management -} - -define service { - service_description webcheck_http_simple_giving - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_simple!giving.princeton.edu!6!8 - contacts Kathleen D. Haney, Kathy Haney Pager, Nicholas DiPietro -} - -define service { - service_description http_idm - use Windows Production service - host_name prov01 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_url!idm.princeton.edu!/xlWebApp!6!8! -p 7001 -s "Oracle Identity Manager" - contacts Identity and Access Management -} - - -define service { - service_description https_idm - use Windows Production service - host_name prov01 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https_url-tlsv1!idm.princeton.edu!/xlWebApp!6!8! -s "Oracle Identity Manager" -p 8443 - contacts Identity and Access Management -} - -define service { - service_description http_rms - use generic-service - host_name Webcheck_host - check_command check_http_www_rms - event_handler sdpalc200w_restart - contacts Identity and Access Management -} - -define service { - service_description webcheck_https_ntlm_homepageSamplePhoto - use generic-service - host_name csg_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https_url!ntlm.princeton.edu!/_layouts/images/homepageSamplePhoto.jpg!6!8 - contacts Sharepoint Admin -} - -define service { - service_description webcheck_https_ntlm_logoPU.png - use generic-service - host_name csg_host - check_command check_https_auth!ntlm!https://ntlm.princeton.edu/nagios/SiteAssets/SitePages/Home/logoPU.png!PRINCETON%groundwk!$USER30$ - contacts Sharepoint Admin -} - -define service { - service_description webcheck_https_owa_csgcas205w - use generic-service-active - host_name csg_host - max_check_attempts 5 - normal_check_interval 10 - retry_check_interval 5 - check_command check_owa!https://csgcas205w.princeton.edu!csgtst04 - contacts CISDR -} - -define service { - service_description webcheck_https_owa_csgcas204w - use generic-service-active - host_name csg_host - max_check_attempts 5 - normal_check_interval 10 - retry_check_interval 5 - check_command check_owa!https://csgcas204w.princeton.edu!csgtst05 - contacts CISDR -} - -define service { - service_description webcheck_https_owa - use generic-service-active - host_name csg_host - normal_check_interval 10 - retry_check_interval 5 - check_command check_owa!https://owa.princeton.edu!csgtst06 - contacts CISDR -} - -define service { - service_description webcheck_https_owa_csgcas207w - use generic-service-active - host_name csg_host - max_check_attempts 5 - normal_check_interval 10 - retry_check_interval 5 - check_command check_owa!https://csgcas207w.princeton.edu!csgtst06 - contacts CISDR -} - -define service { - service_description webcheck_https_owa_csgcas206w - use generic-service-active - host_name csg_host - max_check_attempts 5 - normal_check_interval 10 - retry_check_interval 5 - check_command check_owa!https://csgcas206w.princeton.edu!csgtst03 - contacts CISDR -} - -define service { - service_description http_princeton.edu - use generic-service - host_name csg_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_simple!www.princeton.edu!6!8 - contacts Joseph M. Karam -} - -define service { - service_description webcheck_http_simple_volunteer - use generic-service - host_name csg_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_simple!volunteer.princeton.edu!6!8 - contacts CISDR -} - -define service { - service_description webcheck_http_simple_alumni - use generic-service - host_name csg_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_simple!alumni.princeton.edu!25!30 - contacts CISDR -} - -define service { - service_description webcheck_https_simple_finance - use generic-service - host_name www_roxen - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https_simple!finance.princeton.edu!25!30 - contacts CISDR -} - -define service { - service_description webcheck_https_simple_financeedit - use generic-service - host_name www_roxen - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https_simple!financeedit.princeton.edu!6!8 - contacts CISDR -} - -define service { - service_description webcheck_https_simple_alumniedit - use generic-service - host_name www_roxen - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_simple!alumniedit.princeton.edu!6!8 - contacts CISDR -} - -define service { - service_description webcheck_https_registrar_score - use generic-service - host_name www_roxen - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https_url!registrar.princeton.edu!/score!25!30 - contacts CISDR -} - -define service { - service_description webcheck_https_simple_registraredit - use generic-service - host_name www_roxen - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https_simple!registraredit.princeton.edu!6!8 - contacts CISDR -} - -define service { - service_description webcheck_http_www.princeton.edu_oit - use generic-service - host_name www_roxen - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_url!www.princeton.edu!/oit!25!30 - contacts CISDR -} - -define service { - service_description webcheck_http_www.princeton.edu_physics - use generic-service - host_name www_roxen - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_url!www.princeton.edu!/physics!25!30 - contacts CISDR -} - -define service { - service_description https_Kaltura_Hybrid - use generic-service - host_name csgtools200l - check_command check_https_auth_groundwk!6!8!/kaltura/kaltura-hybrid-status.html! -s "Kaltura hybrid configuration status is: UP" - contacts CISDR OnCall, Dwight D. Bashore, Mark A. Ratliff -} - -define service { - service_description https_Webspace - use generic-service - host_name webspace, webspaceqa - normal_check_interval 5 - retry_check_interval 5 - check_command check_https_Webspace!!Xythosm - contacts CISDR, Dwight D. Bashore -} - -define service { - service_description https_Webspace - use generic-service - host_name iamxythos200l, iamxythos201l - normal_check_interval 5 - retry_check_interval 5 - check_command check_https_Webspace_backend!https://$HOSTALIAS$:9443 - contacts CISDR -} - -define service { - service_description https_Webspaceqa - use generic-service - host_name iamxythos100l, iamxythos101l - normal_check_interval 5 - retry_check_interval 5 - check_command check_https_Webspaceqa_backend!https://$HOSTALIAS$:9443 - contacts CISDR -} - -define service { - service_description webcheck_http_simple_deptaedit-qa - use generic-service - host_name Webcheck_host - check_period Except 23:55-3:05 - notification_period Except 23:55-3:05 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_simple!deptaedit-qa.princeton.edu!6!8 - contacts CISDR -} - -define service { - service_description webcheck_http_libweb - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_url!libweb.princeton.edu!/libraries/firestone/rbsc/aids!6!8! -s "Index of" - contact_groups pu_default -} - -define service { - service_description https_simple_makeagift - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https_simple!makeagift.princeton.edu!6!8 - contacts Dev Web Monitor -} - -define service { - service_description https_makeagift_athletics - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https_url!makeagift.princeton.edu!/athletics!6!10! -s "Give to Varsity Athletics" - contacts Dev Web Monitor -} - -define service { - service_description http_tagd - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_simple!tagd.princeton.edu!6!10 - contacts Dev Web Monitor -} - -define service { - service_description https_events_admin - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https_url!events.princeton.edu!/admin!6!10 - contacts Dev Web Monitor -} - -define service { - service_description https_simple_tigertracks - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https_simple!tigertracks.princeton.edu!6!8 - contacts Dev Web Monitor -} - -define service { - service_description http_aisupcprd - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_url!aisupcprd.princeton.edu!/upc/pubcal/release.html!6!8 -} - -define service { - service_description webcheck_http_simple_punews - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_simple!news.princeton.edu!6!8 - contact_groups pu_default -} - -define service { - service_description webcheck_https_simple_webshare - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https_simple!webshare.princeton.edu!6!8 -} - -define service { - service_description https_aisupcprd - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https_url!aisupcprd.princeton.edu!/upc/pubcal/release.html!6!8 -} - -define service { - service_description webcheck_http_etcweb - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_url!etcweb.princeton.edu!/almagest3/admin/poolbusy.jsp!6!8! -s Status: - contacts ATS System Administration -} - -define service { - service_description http_r25wsprod-lb - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_url!r25wsprod-lb.princeton.edu!/r25ws/ver.html!6!8 -} - -define service { - service_description http_oar_UCHV - use generic-service - host_name cisdr204l - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_url!oar.Princeton.EDU!/jspui/handle/88435/pr1qg6r!6!8! -s "University Center for Human Values" - contacts CISDR -} - -define service { - service_description http_oar_UCHV - use generic-service - host_name cisdr103l - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_url!oar-dev.Princeton.EDU!/jspui/handle/99999/fk4514878k!6!8! -s "University Center for Human Values" - contacts Open Access Repository -} - -define service { - service_description http_oawaiver - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_url!oawaiver.princeton.edu!/!6!8! -s rails_production - contacts CISDR -} - -define service { - service_description http_oawaiver_api - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_url!oawaiver.princeton.edu!/api/employees/get_all/name.json?search_term=david!6!8! -s David - contacts CISDR -} - -define service { - service_description http_oawaiverdev - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_url!oawaiverdev.princeton.edu!/!6!8! -s rails_qa - contacts Open Access Repository -} - -define service { - service_description http_dataspace_rest - use generic-service - host_name cisdr202l - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_url!dataspace.princeton.edu!/rest/collections/201/items?expand=metadata&limit=2!6!8 - contacts CISDR -} - -define service { - service_description http_updatespace_rest - use generic-service - host_name updatespace - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_url!updatespace.princeton.edu!/rest/collections/201/items?expand=metadata&limit=2!6!8 - contacts DSP Admins -} - -define service { - service_description http_dataspace_wws - use generic-service - host_name cisdr202l - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_url!dataspace.princeton.edu!/jspui/handle/88435/dsp01g445cd134!6!8! -s "Woodrow Wilson School" - contacts CISDR -} - -define service { - service_description http_updatespace_wws - use generic-service - host_name updatespace - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_url!updatespace.princeton.edu!/jspui/handle/88435/dsp01g445cd134!6!8! -s "Woodrow Wilson School" - contacts DSP Admins -} - -define service { - service_description https_oaworkflow - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https_url!oaworkflow.princeton.edu!/!6!8! -s "CAS Login" - contacts CISDR -} - -define service { - service_description https_oaworkflow-dev - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https_url!oaworkflow-dev.princeton.edu!/!6!8! -s "CAS Login" - contacts CISDR -} - -define service { - service_description https_auth - use generic-service - host_name statseeker - check_command check_https!6!8! -a admin:G0tm1LK - contacts Networking -} - -define service { - service_description https_concur - use generic-service - host_name Webcheck_host - check_command check_https_url!princeton.edu!/concur!7!8 - contacts Networking -} - -define service { - service_description https_CAS - use generic-service-active - host_name fed, iamcas200w, iamcas202l.aws, iamcas203l.aws - max_check_attempts 4 - retry_check_interval 5 - check_command check_https_CAS_new!https://$HOSTNAME$.princeton.edu/cas/login!casmgr!Cas12r\!ght - contacts Identity and Access Management -} - -define service { - service_description https_CAS - use generic-service-active - host_name iamcas201w - max_check_attempts 4 - retry_check_interval 5 - check_command check_https_CAS_new!https://$HOSTNAME$.princeton.edu/cas/login!casmgr!Cas12r\!ght - notifications_enabled 0 - contacts Identity and Access Management -} - -define service { - service_description https_CAS_QA - use generic-service-active - host_name fedqa, iamcas102l.aws, iamcas103l.aws - max_check_attempts 4 - retry_check_interval 5 - check_command check_https_CAS_QA_new!https://$HOSTNAME$.princeton.edu/cas/login!casmgr!Cas12r\!ght - contacts Identity and Access Management -} - -define service { - service_description https_CAS_status - use generic-service-active - host_name iamcas200w - check_command check_http_script!/usr/local/monitoring/princeton/http_cas_status! -H $HOSTNAME$.Princeton.EDU -u /cas/status -f follow -S -v - contacts Identity and Access Management -} - -define service { - service_description https_CAS_status - use generic-service-active - host_name iamcas201w - check_command check_http_script!/usr/local/monitoring/princeton/http_cas_status! -H $HOSTNAME$.Princeton.EDU -u /cas/status -f follow -S -v - notifications_enabled 0 - contacts Identity and Access Management -} - -define service { - service_description https_CAS_QA_status - use generic-service - host_name fedqa, iamcas102l.aws, iamcas103l.aws - check_command check_https_url!$HOSTALIAS$!/cas/status!6!8! -s "Health: OK" - contacts Identity and Access Management -} - -define service { - service_description https_CAS_fedqa_elb.135_status - use generic-service - host_name fedqa - check_command check_https_url_fedqa_135!6!8! -s "Health: OK" - contacts Identity and Access Management -} - -define service { - service_description https_CAS_fedqa_elb.44_status - use generic-service - host_name fedqa - check_command check_https_url_fedqa_44!6!8! -s "Health: OK" - contacts Identity and Access Management -} - -define service { - service_description https_CAS_status - use generic-service - host_name fed, iamcas202l.aws, iamcas203l.aws - check_command check_https_url!$HOSTALIAS$!/cas/status!6!8! -s "Health: OK" - contacts Identity and Access Management -} - -define service { - service_description https_CAS_fed_elb.24_status - use generic-service - host_name fed - check_command check_https_url_fed_24!6!8! -s "Health: OK" - contacts Identity and Access Management -} - -define service { - service_description https_CAS_fed_elb.100_status - use generic-service - host_name fed - check_command check_https_url_fed_100!6!8! -s "Health: OK" - contacts Identity and Access Management -} - -define service { - service_description https_CAS - use generic-service-active - host_name alumnicas - max_check_attempts 4 - retry_check_interval 5 - check_command check_https_CAS!https://alumnicas.princeton.edu/tigernetcas/login/!casmgr!Cas12r\!ght - contacts Identity and Access Management -} - -define service { - service_description https_PUaccess - use generic-service-active - host_name PUAccess - max_check_attempts 3 - retry_check_interval 5 - check_command check_https_PUaccess!https://puaccess.princeton.edu!casmgr!$USER16$ - contacts Ashutosh Hadap, DBA Important List, Identity and Access Management -} - -define service { - service_description https - use generic-service - host_name PUAccess - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https!6!8 - contacts Ashutosh Hadap, DBA Important List, Identity and Access Management -} - -define service { - service_description https - use generic-service - host_name PUAccessQA - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https_url!$HOSTNAME$.Princeton.EDU!/oaam_server!6!8 - contacts Ashutosh Hadap, DBA Important List, Identity and Access Management -} - - -define service { - service_description https_pfs - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https_url!pfs.Princeton.EDU!/psp/pfsprod/EMPLOYEE/ERP!6!8! -s "Central Authentication Service" - contacts Ashutosh Hadap, DBA Important List, Identity and Access Management -} - -define service { - service_description https_oampfsqual - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https_url!oampfsqual.Princeton.EDU!/psp/pfsqual/EMPLOYEE/ERP!6!8! -s "Central Authentication Service" - contacts Ashutosh Hadap, DBA Important List, Identity and Access Management, Jason Rappaport -} - -#define service { -# service_description https_oampfsqual_navi -# use generic-service -# host_name Webcheck_host -# action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ -# is_volatile 1 -# active_checks_enabled 0 -# flap_detection_enabled 0 -# passive_checks_enabled 1 -# max_check_attempts 1 - #notification_interval 31536000 -# check_command check_OK - #notifications_enabled 0 -# notification_options w,c -# contacts null -# contact_groups null -#} - -define service { - service_description https_iwprod - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https_iw!https://iwprod.princeton.edu/bi!groundwk!$USER30$ - check_period Exclude Cognos App Server Restart - notification_period Exclude Cognos App Server Restart - contacts Ashutosh Hadap -} - -define service { - service_description https_AWS_DUO - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https_AWS_DUO!'https://api-dc8397fa.duosecurity.com/auth/v2/ping'!60!AWS - contacts Identity and Access Management, Steven Niedzwiecki -} - -define service { - service_description http_AWS_Cloudfront_Failover - use generic-service - host_name Webcheck_host - normal_check_interval 60 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_url!d13g98nelaza49.cloudfront.net!/!6!8! -f "follow" -s "Temporary Outage" - contacts CISDR, Networking -} - - -#define service { -# service_description https_ClearPass -# use generic-service -# host_name aruba-cppm-master, aruba-cppm-03, aruba-cppm-04 -# normal_check_interval 15 -# retry_check_interval 15 -# max_check_attempts 2 -# check_command check_https_ClearPass!https://$HOSTALIAS$!$USER17$!$USER30$ -# event_handler clearpass_restart -# contacts Networking -#} - -define service { - service_description https_remote - use generic-service - host_name Webcheck_host - check_command check_https_remote!http://remote.princeton.edu!groundwk!th4de/DC - contacts Networking -} - -define service { - service_description https_rsa_sc - use generic-service - host_name sdprsa200l, sdprsa201l - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https_sdprsa_sc!https://$HOSTALIAS$/sc!nagiosmonitor!Thewatcherwatchesevery1. - contacts Identity and Access Management -} - -define service { - service_description https_rsa_ss - use generic-service - host_name sdprsa200l - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https_sdprsa_ss!https://$HOSTALIAS$/ss!nagiosmonitor!Thewatcherwatchesevery1. - contacts Identity and Access Management -} - - -#define service { -# service_description https_OnBase_AppServer -# use generic-service -# host_name aisob310w, aisob310tstw, aisob311w, aisob311tstw -# action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ -# notification_period 8x5 -# check_command check_https_url!$HOSTNAME$.Princeton.EDU!/AppServer64/Service.asmx!6!8 -# contacts ECM Admin Notify -#} - - -define service { - service_description http_OnBase_Hyland - use generic-service - host_name aisob116w, aisob316w - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - notification_period 8x5 - check_command check_http_url!onbasebtdev.Princeton.EDU!/Hyland.Integrations.OBInvUpdateService/WebService1.asmx!10!12 - contacts ECM Admin Notify -} - - -define service { - service_description http_OnBase_Hyland - use generic-service - host_name aisob216w - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_url!onbasebt.Princeton.EDU!/Hyland.Integrations.OBInvUpdateService/WebService1.asmx!10!12 - contacts ECM Admin Notify -} - -define service { - service_description https - use generic-service - host_name puwebp - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https_url!$HOSTNAME$.Princeton.EDU!/robots.txt!6!8 - contacts AIS Mon CustomApps -} - -define service { - service_description https_cng - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https_simple!cng.Princeton.EDU!6!8 - contacts ESS Windows List -} - -define service { - service_description https_lists - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https_lists!https://lists.princeton.edu/cgi-bin/wa?REPORT&z=3!groundwk@Princeton.EDU!$USER30$ - contacts CISDR -} - -define service { - service_description https_ezmaxmobile - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https_url!ezmaxmobile.Princeton.EDU!/ezmaxmobile!6!8! -N - contact_groups Maximo, Maximo Pagers -} - -define service { - service_description https_maximo - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_generic!$USER1$/check_http -H maximo.Princeton.EDU -u /maximo -S -d '"'"'WWW-Authenticate: Basic realm="MAXIMO Web Application Realm'"'"' -N -f follow -E! -n "Maximo" -o '=~ /HTTP WARNING: HTTP\/1.1 401 Unauthorized/' --ignore_rc - contact_groups Maximo, Maximo Pagers -} - -define service { - service_description https_ifacilities - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https_simple!ifacilities.Princeton.EDU!6!8! - contact_groups Maximo, Maximo Pagers -} - -define service { - service_description https_wase - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https_wase - contacts Serge J. Goldstein, James Chu Pager -} - -define service { - service_description https_mrtg_net - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https_url!mrtg.net.princeton.edu!/statistics/multiplexors.html!6!8! -f "follow" - contact_groups Networking Pager -} - -define service { - service_description https_www_net - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https_url!www.net.princeton.edu!/!6!8! -f "follow" - contact_groups Networking Pager -} - -define service { - service_description https_webstatsdev_8988 - use generic-service - host_name csgsawmill300l - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https_url!webstatsdev.Princeton.EDU!/!6!8! -p 8988 -s "Sawmill Login" - contacts Dwight D. Bashore -} - -define service { - service_description https_webstats_8988 - use generic-service - host_name csgsawmill200l - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https_url!webstats.Princeton.EDU!/!6!8! -p 8988 -s "Sawmill Login" - #check_command check_https!6!8!-N -p 8988 -f "follow" -e "Sawmill Login" - contacts Dwight D. Bashore, CSG OnCall -} - -#define service { -# service_description https -# use generic-service -# hostgroup_name Cognos Test Users -# max_check_attempts 3 -# action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ -# check_command check_nrpe_http! -H iwqual.Princeton.EDU! -u /bi/! -S -w 6 -c 8 -# contacts nagiosadmin -#} - -define service { - service_description https - use generic-service - host_name iamxythos301l - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_https_url!$HOSTALIAS$!/xythoswfs/webview/xythoslogin.action!6!8! -p 8443 -s Welcome - contacts CISDR -} - -#define service { -# service_description tcp -# use generic-service -# hostgroup_name Cognos Test Users -# max_check_attempts 3 -# action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ -# check_command check_nrpe_tcp! -H iwqual.Princeton.EDU! -p 80 -w 6 -c 8 -# contacts nagiosadmin -#} - - -define service { - service_description Gmail Portal - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_simple!gmail.princeton.edu!6!8! -s "var domain = 'princeton.edu'" - contacts Igor V. Gubenko, Joseph M. Karam -} - - -define service { - service_description Office365 Portal - use generic-service - host_name Webcheck_host - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_http_simple!portal.office365.com!6!8! -s "Sign in" - contacts Igor V. Gubenko, Joseph M. Karam -} - -# -# $Header: /usr/local/monitoring/nagios/etc/services/RCS/windows_devqa_application_services.cfg,v 1.3 2014/07/03 16:17:49 nagios Exp nagios $ -# -# Windows Dev/QA application services -# - - -### Common Windows Dev/QA services - -#define service { -# service_description ESS services -# use Windows Dev/QA service -# hostgroup_name Windows Dev/QA, MSSQL Dev Clusters -# notification_period 8x5 -# check_command check_multi!-f /usr/local/nagios/etc/objects/multi_ess_devqa_win.cmd -n "$SERVICEDESC$" -s USER1=/usr/local/monitoring/nagios/libexec -s USER3=60 -s USER10=9666 -r 1+2+4+8 -# contact_groups null -# contacts nagiosadmin -#} - -define service { - service_description nrpe_wintest_agent_status - use Windows Dev/QA service - hostgroup_name Windows Dev/QA, MSSQL Dev Clusters - max_check_attempts 3 - retry_interval 2 - notification_period 8x5 - check_command check_nrpe_agent - contacts ESS Windows List -} - -define service { - service_description snmp_wintest_alive - use Windows Dev/QA service - hostgroup_name Windows Dev/QA - max_check_attempts 3 - retry_interval 3 - check_command check_snmp_alive - contacts Igor V. Gubenko -} -#### -##define service { -# service_description nrpe_wintest_cpu -# use Windows Dev/QA service -# hostgroup_name Windows Dev/QA, !Facilities Dev/QA -# max_check_attempts 5 -# normal_check_interval 30 -# retry_check_interval 30 -# notification_period 8x5 -# action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ -# check_command check_nrpe_win_cpu!90!95!time=1h -#} - -define service { - service_description nrpe_wintest_cpu - use Windows Dev/QA service - hostgroup_name Facilities Dev/QA - max_check_attempts 5 - normal_check_interval 30 - retry_check_interval 30 - notification_period 8x5 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_cpu!90!95!time=1h - contact_groups null - contacts Fac List -} - -#define service { -# service_description snmp_wintest_load -# use Windows Dev/QA service -# hostgroup_name Windows Dev/QA -# max_check_attempts 6 -# normal_check_interval 10 -# retry_check_interval 6 -#action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=snmp_wintest_load -# check_command check_snmp_win_load!95!99 -#} -# -#define service { -# service_description snmp_wintest_memory -# use Windows Dev/QA service -# hostgroup_name Windows Dev/QA -# max_check_attempts 6 -# normal_check_interval 10 -# retry_check_interval 6 -#action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=snmp_wintest_memory -# check_command check_snmp_win_memory!85!95 -#} - -define service { - service_description nrpe_wintest_paging_used - use Windows Dev/QA service - hostgroup_name Windows Dev/QA, !Facilities Dev/QA - notification_period 8x5 - process_perf_data 1 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_mem!page!90%!95% - contacts ESS Windows List -} - -define service { - service_description nrpe_wintest_paging_used - use Windows Dev/QA service - hostgroup_name Facilities Dev/QA - notification_period 8x5 - process_perf_data 1 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_mem!page!90%!95% - contacts Fac List -} - -define service { - service_description nrpe_wintest_service_McAfee - use Windows Dev/QA service - host_name sdp100w - notification_period 8x5 - check_command check_nrpe_win_service!McAfeeFramework McShield McTaskManager - contacts ESS Windows List -} - -define service { - service_description nrpe_wintest_service_standard - use Windows Dev/QA service - hostgroup_name Windows Dev/QA, !AWS Untrust Dev/QA Windows - host_name !csgcas104w, !csgcas105w, !csghub102w, !csghub103w, !sdp300w, !sdp100w - notification_period 8x5 - check_command check_nrpe_win_service!CSFalconService Eventlog "Rapid7 Insight Agent" SNMP Snare "Tripwire Enterprise Agent" "Tripwire Detection Service" - contacts ESS Windows List -} - -define service { - service_description nrpe_wintest_puppet - use Windows Dev/QA service - hostgroup_name Windows Dev/QA - normal_check_interval 30 - retry_check_interval 10 - notification_interval 1440 - check_command check_nrpe_generic!check_puppet - contacts nobody - #contacts Nicholas Delo -} - -# No Snare -define service { - service_description nrpe_wintest_service_standard - use Windows Dev/QA service - host_name sdp300w - notification_period 8x5 - check_command check_nrpe_win_service!CSFalconService Eventlog "Rapid7 Insight Agent" SNMP "Tripwire Enterprise Agent" "Tripwire Detection Service" - contacts ESS Windows List -} - -# Snare replaced by McAfee SIEM Collector -define service { - service_description nrpe_wintest_service_standard - use Windows Dev/QA service - host_name csgcas104w, csgcas105w, csghub102w, csghub103w - notification_period 8x5 - check_command check_nrpe_win_service!CSFalconService Eventlog "McAfee SIEM Collector" "Rapid7 Insight Agent" SNMP "Tripwire Enterprise Agent" "Tripwire Detection Service" - contacts ESS Windows List -} - - -define service { - service_description nrpe_wintest_disk_system - use Windows Dev/QA service - hostgroup_name Windows Dev/QA, !Facilities Dev/QA - host_name !aisob318tstw, !aisob318w, !aisob118w - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_disk!90%!97%!Drive=C: - contacts ESS Windows List -} - -# C:\ for Facilities boxes also goes to Facilities -define service { - service_description nrpe_wintest_disk_system - use Windows Dev/QA service - hostgroup_name Facilities Dev/QA - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_disk!90%!97%!Drive=C: - contacts ESS Windows List, Fac List -} - -define service { - service_description nrpe_wintest_disk_system - use Windows Dev/QA service - host_name aisob318tstw, aisob318w, aisob118w - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_disk!90%!97%!Drive=C: - contacts ESS Windows List, ECM Admin Notify -} - - -define service { - service_description snmp_wintest_OpenManage - use Windows Dev/QA service - hostgroup_name Physical Dev/QA Windows - notification_interval 43200 - notification_options c - check_command check_snmp_openmanage_new - contacts ESS Ops -} - - -define service { - service_description nrpe_wintest_service_OpenManage - use Windows Dev/QA service - hostgroup_name Physical Dev/QA Windows - check_command check_nrpe_win_service!"DSM SA Connection Service" "DSM SA Data Manager" "DSM SA Event Manager" "DSM SA Shared Services" - contacts ESS Windows List -} - - - -### Common Windows Production services - -define service { - service_description snmp_win_alive - use Windows Production service - hostgroup_name Windows Prod, !Prod 8x5 Windows - max_check_attempts 3 - retry_check_interval 2 - check_command check_snmp_alive - contacts Igor V. Gubenko -} - -define service { - service_description snmp_win_alive - use Windows Production 8x5 service - hostgroup_name Prod 8x5 Windows - max_check_attempts 3 - retry_check_interval 2 - notification_options u,c,r - check_command check_snmp_alive - contacts Igor V. Gubenko -} - -define service { - service_description nrpe_win_agent_status - use Windows Production service - hostgroup_name Windows Prod, !Prod 8x5 Windows, MSSQL Prod Clusters - max_check_attempts 3 - retry_check_interval 1 - check_command check_nrpe - contacts ESS Page, ESS Windows List -} - -define service { - service_description nrpe_win_agent_status - use Windows Production 8x5 service - hostgroup_name Prod 8x5 Windows - max_check_attempts 3 - retry_check_interval 1 - notification_options u,c,r - check_command check_nrpe - contacts ESS Page, ESS Windows List -} - -define service { - service_description nrpe_win_disk_system - use Windows Production service - hostgroup_name Windows Prod, !Prod 8x5 Windows, !Facilities Production, !SharePoint 2016 - host_name !dev203w, !aisob218w - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_disk!90%!97%!Drive=C: - contacts ESS Windows List -} - -define service { - service_description nrpe_win_disk_system - use Windows Production service - hostgroup_name Facilities Production - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_disk!90%!97%!Drive=C: - contacts ESS Windows List, Fac List -} - -define service { - service_description nrpe_win_disk_system - use Windows Production service - hostgroup_name SharePoint 2016 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_disk!90%!97%!Drive=C: - contacts ESS Windows List, Sharepoint Admin -} - -define service { - service_description nrpe_win_disk_system - use Windows Production 8x5 service - hostgroup_name Prod 8x5 Windows - notification_options u,c,r - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_disk!90%!97%!Drive=C: - contacts ESS Windows List -} - -define service { - service_description nrpe_win_disk_system - use Windows Production service - host_name dev203w - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_disk!90%!97%!Drive=C: - contacts Kathleen D. Haney, ESS Windows List -} - -define service { - service_description nrpe_win_disk_system - use Windows Production service - host_name aisob218w - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_disk!90%!97%!Drive=C: - contacts ECM Admin Notify, ESS Windows List -} - -define service { - service_description nrpe_win_disk_app - use Windows Production 8x5 service - hostgroup_name Prod 8x5 Windows - host_name !eisrds201w - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - notification_options u,c,r - check_command check_nrpe_win_all_disks!90%!97% - contacts ESS Windows List -} - -define service { - service_description nrpe_win_disk_app - use Windows Production 8x5 service - host_name eisrds201w - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - notification_options u,c,r - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=Q: Drive=C: - contacts ESS Windows List -} - -define service { - service_description nrpe_win_disk_app_eis - use Windows Production service - host_name csgsp200w, csgsp201w, csgsp202w, csgsp203w, csgsp204w - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_all_disks_except!90%!97%!Drive=C: Drive=Q: - notification_options w,c,r - contacts Sharepoint Admin -} - - -define service { - service_description nrpe_win_cpu - use Windows Production service - hostgroup_name Windows Prod, !Prod 8x5 Windows, !Facilities Production - host_name !aishmsres200w - max_check_attempts 5 - normal_check_interval 30 - retry_check_interval 30 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_cpu!90!95!time=1h -# contacts Igor V. Gubenko -} - -define service { - service_description nrpe_win_cpu - use Windows Production service - hostgroup_name Facilities Production - max_check_attempts 5 - normal_check_interval 30 - retry_check_interval 30 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_cpu!90!95!time=1h - contact_groups null - contacts Fac List -} - - -define service { - service_description nrpe_win_cpu - use Windows Production service - host_name aishmsres200w - retry_check_interval 2 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_cpu!75!80!time=7m - contacts Christopher Dietrich, pac_usapps, Mary L. Chang -} - - -define service { - service_description nrpe_win_cpu - use Windows Production 8x5 service - hostgroup_name Prod 8x5 Windows - max_check_attempts 7 - normal_check_interval 30 - retry_check_interval 30 - notification_options c,r - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_cpu!90!95!time=1h -# contacts Igor V. Gubenko -} - -define service { - service_description nrpe_win_memory - use Windows Production service - host_name aishmsres200w - max_check_attempts 6 - normal_check_interval 5 - retry_check_interval 6 - process_perf_data 1 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_mem!physical!70%!80% - contacts Christopher Dietrich, pac_usapps, Mary L. Chang -} - -define service { - service_description nrpe_win_paging_used - use Windows Production service - hostgroup_name Windows Prod, !Prod 8x5 Windows, !Facilities Production - process_perf_data 1 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_mem!page!90%!95% - contacts ESS Windows List -} - -define service { - service_description nrpe_win_paging_used - use Windows Production service - hostgroup_name Facilities Production - process_perf_data 1 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_mem!page!90%!95% - contact_groups null - contacts Fac List -} - -define service { - service_description nrpe_win_paging_used - use Windows Production 8x5 service - hostgroup_name Prod 8x5 Windows - notification_options c,r - process_perf_data 1 - action_url /princeton/cgi-bin/cacti-mapper.cgi?host=$HOSTALIAS$&service=$SERVICEDESC$ - check_command check_nrpe_win_mem!page!90%!95% - contacts ESS Windows List -} - -define service { - service_description nrpe_win_service_McAfee - use Windows Production service - host_name ais201w, sdp200w, sdp201w, sdp202w, sdpalc200w - check_command check_nrpe_win_service!McAfeeFramework McShield McTaskManager - contacts ESS Windows List -} - -define service { - service_description nrpe_win_service_standard - use Windows Production service -# hostgroup_name Windows Prod, !Prod 8x5 Windows, !AWS Untrust Prod Windows - hostgroup_name Windows Prod, !Prod 8x5 Windows - host_name !csgcas204w, !csgcas205w, !csghub208w, !ais201w, !sdp200w, !sdp201w, !sdp202w, !sdpalc200w - check_command check_nrpe_win_service!CSFalconService Eventlog "Rapid7 Insight Agent" SNMP Snare "Tripwire Enterprise Agent" "Tripwire Detection Service" - contacts ESS Windows List -} - -#define service { -# service_description nrpe_win_service_standard -# use Windows Production service -# host_name aishmsres210w, aishmsres211w, aishwscbord200w, ant-had200w, asmobile203w, ath201w, csgcas206w, csghub209w, eishpdm200w, eisrds201w, essconsole200w, essonsm200w, esssan202w, esssma100w, fac211w, fac212w, fac213w, fac214w, fac214w-centric, fac216w-xibo, fac219w-tsw, fac-goshin200w, fac-keys200w, fac-rds-200w, fac-rds-201w, fac-trimble, fac-willo3-200w, iamcas201w, iamdirsync200w, iamshib201w -# check_command check_nrpe_win_service!CSFalconService Eventlog SNMP Snare "Tripwire Enterprise Agent" "Tripwire Detection Service" -# contacts ESS Windows List -#} - -define service { - service_description nrpe_win_puppet - use Windows Production service - hostgroup_name Windows Prod, !Prod 8x5 Windows - normal_check_interval 30 - retry_check_interval 10 - notification_interval 1440 - check_command check_nrpe_generic!check_puppet - #contacts Nicholas Delo -} - -define service { - service_description nrpe_win_puppet - use Windows Production 8x5 service - hostgroup_name Prod 8x5 Windows - normal_check_interval 30 - retry_check_interval 10 - notification_interval 1440 - check_command check_nrpe_generic!check_puppet - #contacts Nicholas Delo -} - -# Snare replaced by McAfee SIEM Collector -define service { - service_description nrpe_win_service_standard - use Windows Production service - host_name csgcas204w, csgcas205w, csghub208w - check_command check_nrpe_win_service!CSFalconService Eventlog "McAfee SIEM Collector" "Rapid7 Insight Agent" SNMP "Tripwire Enterprise Agent" "Tripwire Detection Service" - contacts ESS Windows List -} - -# Same as above for Snare replaced by McAfee SIEM Collector, but TSM also Removed -#define service { -# service_description nrpe_win_service_standard -# use Windows Production service -# host_name csgcas204w -# check_command check_nrpe_win_service!CSFalconService Eventlog "McAfee SIEM Collector" "Rapid7 Insight Agent" SNMP "Tripwire Enterprise Agent" "Tripwire Detection Service" -# contacts ESS Windows List -#} - -#define service { -# service_description nrpe_win_service_standard -# use Windows Production service -# host_name pdom07.pu.win -# check_command check_nrpe_win_service!CSFalconService Eventlog "TSM Central Scheduler Service" SNMP "Tripwire Enterprise Agent" "Tripwire Detection Service" -# contacts ESS Windows List -#} - -# ESS Servers Still Running McAfee ePO and VirusScan -define service { - service_description nrpe_win_service_standard - use Windows Production service - host_name ais201w, sdp200w, sdp201w, sdp202w, sdpalc200w - check_command check_nrpe_win_service!Eventlog "Rapid7 Insight Agent" SNMP Snare "Tripwire Enterprise Agent" "Tripwire Detection Service" - contacts ESS Windows List -} - -#define service { -# service_description nrpe_win_service_standard -# use Windows Production service -# hostgroup_name AWS Untrust Prod Windows -# check_command check_nrpe_win_service!CSFalconService Eventlog SNMP Snare "Tripwire Enterprise Agent" "Tripwire Detection Service" -# contacts ESS Windows List -#} - -define service { - service_description nrpe_win_service_standard - use Windows Production 8x5 service - hostgroup_name Prod 8x5 Windows - notification_options c,r - check_command check_nrpe_win_service!Eventlog SNMP - contacts ESS Windows List -} - -define service { - service_description nrpe_win_service_TSM_Scheduler - use Windows Production service - hostgroup_name Prod 8x5 Windows - notification_options c,r - check_command check_nrpe_win_service!"TSM Central Scheduler Service" - contacts ESS Windows List -} - -define service { - service_description nrpe_wintest_service_CCURE800 - use Windows Dev/QA service - host_name spcacsa202w - check_command check_nrpe_win_service!CCURE800 - contacts Bradley Parkot, Ed Biedricki, Keith Tuccillo, Keith Tuccillo css-inc, Edith M. Rzomp, Mark R. Williams -} - -define service { - service_description snmp_win_OpenManage - use Windows Production service - hostgroup_name Physical Prod Windows - notification_interval 43200 - notification_options c - check_command check_snmp_openmanage_new - contacts ESS Ops -} - -define service { - service_description nrpe_win_service_OpenManage - use Windows Production service - hostgroup_name Physical Prod Windows - check_command check_nrpe_win_service!"DSM SA Connection Service" "DSM SA Data Manager" "DSM SA Event Manager" "DSM SA Shared Services" - contacts ESS Windows List -} - - - - -define contact { - name generic-contact - host_notification_period 24x7 - service_notification_period 24x7 - host_notification_options d,r - service_notification_options c,r - host_notification_commands host-notify-by-email - service_notification_commands notify-by-email - register 0 -} - - -define contact { - name Auth Contact - use generic-contact - host_notifications_enabled 0 - service_notifications_enabled 0 -} - - -define contact { - name Princeton-Contact - use generic-contact - host_notification_options d,u,r - service_notification_options u,c,w,r - host_notification_commands host-notify-by-email-pu - service_notification_commands service-notify-by-email-pu - register 0 -} - - -define contact { - name Princeton-Contact-Warning - use Princeton-Contact - service_notification_options w,r - register 0 -} - - -define contact { - name Princeton-Contact-Critical - use Princeton-Contact - service_notification_options c,r - register 0 -} - - -define contact { - name Princeton-contact-punotify - use Princeton-Contact - host_notification_commands host-notify-by-punotify - service_notification_commands service-notify-by-punotify - register 0 -} - - -define contact { - name contact-via-external-backup - use Princeton-Contact - host_notification_commands host-notify-by-email-via-Comcast_Gmail, host-notify-by-email-via-Verizon_Gmail - service_notification_commands service-notify-by-email-via-Comcast_Gmail, service-notify-by-email-via-Verizon_Gmail - register 0 -} - - -# -# $Header: /usr/local/monitoring/nagios/etc/templates/RCS/escalation_templates.cfg,v 1.3 2013/02/07 15:17:50 nagios Exp nagios $ -# -# Escalation Templates -# - -define hostescalation { - name Prod 8x5 escalation - first_notification 2 - last_notification 24 - notification_interval 360 - escalation_period 8x5 - escalation_options r,d,u - register 0 -} - - -define hostescalation { - name Prod outside 8x5 escalation - first_notification 2 - last_notification 24 - notification_interval 360 - escalation_period Outside 8x5 - escalation_options r,d,u - register 0 -} - - -define hostescalation { - name Delay Dev - first_notification 1 - last_notification 30 - notification_interval 1440 - escalation_period 24x7 - escalation_options r,d - register 0 -} - - -define hostescalation { - name Delay Production - first_notification 2 - last_notification 6 - notification_interval 360 - escalation_period 24x7 - escalation_options r,d,u - register 0 -} - - -define hostescalation { - name Delay Exadata Production - first_notification 1 - last_notification 6 - notification_interval 360 - escalation_period 24x7 - escalation_options r,d,u - register 0 -} - - -define hostescalation { - name host_notify_once - first_notification 1 - last_notification 1 - notification_interval 0 - escalation_period 24x7 - escalation_options d,u - register 0 -} - - -define serviceescalation { - name service_notify_once - first_notification 1 - last_notification 1 - notification_interval 0 - escalation_period 24x7 - escalation_options w,u,c - register 0 -} - -# $Header: /usr/local/monitoring/nagios/etc/templates/RCS/host_templates.cfg,v 1.11 2014/08/25 17:50:12 nagios Exp nagios $ - -define host { - name generic-host - process_perf_data 1 - retain_status_information 1 - flap_detection_enabled 1 - retain_nonstatus_information 1 - active_checks_enabled 1 - passive_checks_enabled 1 - check_period 24x7 - obsess_over_host 0 - check_freshness 1 - check_command check-host-alive - max_check_attempts 5 - check_interval 10 - event_handler_enabled 1 - notifications_enabled 1 - notification_interval 360 - notification_period 24x7 - notification_options d,r -# contact_groups pu_default - register 0 -} - - -define host { - name Out of band interface - use generic-host - check_interval 60 - max_check_attempts 12 - retry_interval 30 - process_perf_data 0 - register 0 - contacts dummy -} - - -define host { - name template-ping - use generic-host - max_check_attempts 3 - notification_interval 60 - contact_groups nagiosadmin - register 0 -} - -define host { - name Router/Switch/Load Balancer - process_perf_data 1 - retain_status_information 1 - flap_detection_enabled 1 - retain_nonstatus_information 1 - active_checks_enabled 1 - passive_checks_enabled 1 - check_period 24x7 - obsess_over_host 0 - check_freshness 0 - check_command check-host-alive - max_check_attempts 3 - check_interval 10 - event_handler_enabled 1 - notifications_enabled 1 - notification_interval 60 - notification_period 24x7 - notification_options d,r - icon_image router.png - icon_image_alt Router, Switch, Firewall, or a Load Balancer - vrml_image router.jpg - statusmap_image router.gd2 - contacts nobody - register 0 -} - -define host { - name UNIX Production - process_perf_data 0 - retain_status_information 1 - flap_detection_enabled 1 - retain_nonstatus_information 1 - active_checks_enabled 1 - passive_checks_enabled 1 - check_period 24x7 - obsess_over_host 0 - check_freshness 1 - check_command check-host-alive - max_check_attempts 3 - check_interval 4 - event_handler_enabled 1 - notifications_enabled 1 - notification_interval 7 - notification_period 24x7 - notification_options d,r,s - icon_image redhat.jpg - icon_image_alt Oracle Enterprise Linux - vrml_image redhat.jpg - statusmap_image redhat.gd2 - notes Linux Server - contacts dummy - register 0 -} - -define host { - name Solaris Production - use UNIX Production - icon_image sun40.jpg - icon_image_alt Solaris - vrml_image sun40.png - statusmap_image sun40.gd2 - notes Solaris Server - register 0 -} - -define host { - name UNIX Production Untrust - use UNIX Production - parents Monitor Untrust -} - -define host { - name UNIX Production PrivateDMZ - use UNIX Production - parents Monitor PrivateDMZ -} - -define host { - name UNIX Production PublicDMZ - use UNIX Production - parents Monitor PublicDMZ -} - -define host { - name UNIX Production Trust - use UNIX Production - parents Monitor Trust -} - -define host { - name UNIX Production EISFW - use UNIX Production - parents Monitor Eisfw F5 -} - -define host { - name UNIX Dev/QA - process_perf_data 0 - retain_status_information 1 - flap_detection_enabled 1 - retain_nonstatus_information 1 - active_checks_enabled 1 - passive_checks_enabled 1 - check_period 24x7 - obsess_over_host 0 - check_freshness 1 - check_command check-host-alive - max_check_attempts 3 - check_interval 2 - retry_interval 2 - event_handler_enabled 1 - notifications_enabled 1 - notification_interval 360 - notification_period 7x4 - notification_options d,r,s - icon_image redhat.jpg - icon_image_alt Oracle Enterprise Linux - vrml_image redhat.jpg - statusmap_image redhat.gd2 - notes Linux Server - contacts dummy - register 0 -} - -define host { - name Solaris Dev/QA - use UNIX Dev/QA - icon_image sun40.jpg - icon_image_alt Solaris - vrml_image sun40.png - statusmap_image sun40.gd2 - notes Solaris Server - register 0 -} - -define host { - name UNIX Dev/QA Untrust - use UNIX Dev/QA - parents Monitor Untrust -} - -define host { - name UNIX Dev/QA PrivateDMZ - use UNIX Dev/QA - parents Monitor PrivateDMZ -} - -define host { - name UNIX Dev/QA PublicDMZ - use UNIX Dev/QA - parents Monitor PublicDMZ -} - -define host { - name UNIX Dev/QA Trust - use UNIX Dev/QA - parents Monitor Trust -} - -define host { - name UNIX Dev/QA EISFW - use UNIX Dev/QA - parents Monitor Eisfw F5 -} - -define host { - name Windows Production - process_perf_data 0 - retain_status_information 1 - flap_detection_enabled 1 - retain_nonstatus_information 1 - active_checks_enabled 1 - passive_checks_enabled 1 - check_period 24x7 - obsess_over_host 0 - check_freshness 1 - check_command check-host-alive - max_check_attempts 4 - check_interval 4 - event_handler_enabled 1 - notifications_enabled 1 - notification_interval 7 - notification_period 24x7 - notification_options d,r,s - icon_image win40.png - icon_image_alt Windows - vrml_image win40.png - statusmap_image win40.gd2 - notes Windows Server - contacts dummy - register 0 -} - -define host { - name Windows Production Untrust - use Windows Production - parents Monitor Untrust -} - -define host { - name Windows Production Restricted - use Windows Production - parents Monitor Untrust -} - -define host { - name Windows Production PublicDMZ - use Windows Production - parents Monitor PublicDMZ -} - -define host { - name Windows Production PrivateDMZ - use Windows Production - parents Monitor PrivateDMZ -} - -define host { - name Windows Production Trust - use Windows Production - parents Monitor Trust -} - -define host { - name Windows Production EISFW - use Windows Production - parents Monitor Eisfw F5 -} - -define host { - name Windows Dev/QA - process_perf_data 0 - retain_status_information 1 - flap_detection_enabled 1 - retain_nonstatus_information 1 - active_checks_enabled 1 - passive_checks_enabled 1 - check_period 24x7 - obsess_over_host 0 - check_freshness 1 - check_command check-host-alive - max_check_attempts 4 - check_interval 3 - retry_interval 2 - event_handler_enabled 1 - notifications_enabled 1 - notification_interval 1440 - notification_period 7x4 - notification_options d,r,s - icon_image win40.png - icon_image_alt Windows - vrml_image win40.png - statusmap_image win40.gd2 - notes Windows Server - contacts dummy - register 0 -} - -define host { - name Windows Dev/QA Untrust - use Windows Dev/QA - parents Monitor Untrust -} - -define host { - name Windows Dev/QA Restricted - use Windows Dev/QA - parents Monitor Untrust -} - -define host { - name Windows Dev/QA PublicDMZ - use Windows Dev/QA - parents Monitor PublicDMZ -} - -define host { - name Windows Dev/QA PrivateDMZ - use Windows Dev/QA - parents Monitor PrivateDMZ -} - -define host { - name Windows Dev/QA Trust - use Windows Dev/QA - parents Monitor Trust -} - -define host { - name Windows Dev/QA EISFW - use Windows Dev/QA - parents Monitor Eisfw F5 -} - -define host { - name Gearman Worker Dev/QA - use UNIX Dev/QA - event_handler gearman_host_recovery - contacts Igor V. Gubenko - register 0 -} - -define host { - name Gearman Worker Production - use UNIX Production - event_handler gearman_host_recovery - contacts Joseph M. Karam, Igor V. Gubenko - register 0 -} - -define host { - name Gearman - process_perf_data 0 - retain_status_information 1 - flap_detection_enabled 1 - retain_nonstatus_information 1 - active_checks_enabled 1 - passive_checks_enabled 0 - check_period 24x7 - obsess_over_host 0 - check_freshness 1 - check_command check-host-alive - max_check_attempts 1 - check_interval 1 - retry_interval 1 - event_handler_enabled 1 - notifications_enabled 1 - notification_interval 360 - notification_period 24x7 - notification_options d,r - contact_groups nagiosadmin - contacts nagiosadmin - register 0 -} - -define host { - name UNIX Dev/QA AWS Untrust - use UNIX Dev/QA - parents Gearman 151 Untrust, Gearman NS Untrust -} - -define host { - name UNIX Production AWS Untrust - use UNIX Production - parents Gearman 151 Untrust, Gearman NS Untrust -} - -define host { - name Windows Dev/QA AWS Untrust - use Windows Dev/QA - parents Gearman 151 Untrust, Gearman NS Untrust -} - -define host { - name Windows Production AWS Untrust - use Windows Production - parents Gearman 151 Untrust, Gearman NS Untrust -} - -define host { - name AWS Load Balancer - use Router/Switch/Load Balancer - check_command check_dns - parents Gearman 151 Untrust, Gearman NS Untrust -} - -define host { - name UNIX Dev/QA 151 PrivateDMZ - use UNIX Dev/QA - parents Gearman 151 PrivateDMZ -} - -define host { - name UNIX Production 151 PrivateDMZ - use UNIX Production - parents Gearman 151 PrivateDMZ -} - -define host { - name Windows Dev/QA 151 PrivateDMZ - use Windows Dev/QA - parents Gearman 151 PrivateDMZ -} - -define host { - name Windows Production 151 PrivateDMZ - use Windows Production - parents Gearman 151 PrivateDMZ -} - -define host { - name UNIX Dev/QA 151 PublicDMZ - use UNIX Dev/QA - parents Gearman 151 PublicDMZ -} - -define host { - name UNIX Production 151 PublicDMZ - use UNIX Production - parents Gearman 151 PublicDMZ -} - -define host { - name Windows Dev/QA 151 PublicDMZ - use Windows Dev/QA - parents Gearman 151 PublicDMZ -} - -define host { - name Windows Production 151 PublicDMZ - use Windows Production - parents Gearman 151 PublicDMZ -} - -define host { - name UNIX Dev/QA 151 Trust - use UNIX Dev/QA - parents Gearman 151 Trust -} - -define host { - name UNIX Production 151 Trust - use UNIX Production - parents Gearman 151 Trust -} - -define host { - name Windows Dev/QA 151 Trust - use Windows Dev/QA - parents Gearman 151 Trust -} - -define host { - name Windows Production 151 Trust - use Windows Production - parents Gearman 151 Trust -} - -define host { - name UNIX Dev/QA 151 Untrust - use UNIX Dev/QA - parents Gearman 151 Untrust -} - -define host { - name UNIX Dev/QA 151 Restricted - use UNIX Dev/QA - parents Gearman 151 Untrust -} - -define host { - name UNIX Production 151 Untrust - use UNIX Production - parents Gearman 151 Untrust -} - -define host { - name Windows Dev/QA 151 Untrust - use Windows Dev/QA - parents Gearman 151 Untrust -} - -define host { - name Windows Dev/QA 151 Restricted - use Windows Dev/QA - parents Gearman 151 Untrust -} - -define host { - name Windows Production 151 Untrust - use Windows Production - parents Gearman 151 Untrust -} - -define host { - name Windows Production 151 Restricted - use Windows Production - parents Gearman 151 Untrust -} - -define host { - name UNIX Dev/QA 151 EISFW - use UNIX Dev/QA - parents Gearman 151 PrivateDMZ, Gearman 151 Trust, Gearman 151 PublicDMZ -} - -define host { - name UNIX Production 151 EISFW - use UNIX Production - parents Gearman 151 PrivateDMZ, Gearman 151 Trust, Gearman 151 PublicDMZ -} - -define host { - name Windows Dev/QA 151 EISFW - use Windows Dev/QA - parents Gearman 151 PrivateDMZ, Gearman 151 Trust, Gearman 151 PublicDMZ -} - -define host { - name Windows Production 151 EISFW - use Windows Production - parents Gearman 151 PrivateDMZ, Gearman 151 Trust, Gearman 151 PublicDMZ -} - -define host { - name UNIX Dev/QA NS PrivateDMZ - use UNIX Dev/QA - parents Gearman NS PrivateDMZ -} - -define host { - name UNIX Production NS PrivateDMZ - use UNIX Production - parents Gearman NS PrivateDMZ -} - -define host { - name Windows Dev/QA NS PrivateDMZ - use Windows Dev/QA - parents Gearman NS PrivateDMZ -} - -define host { - name Windows Production NS PrivateDMZ - use Windows Production - parents Gearman NS PrivateDMZ -} - -define host { - name UNIX Dev/QA NS PublicDMZ - use UNIX Dev/QA - parents Gearman NS PublicDMZ -} - -define host { - name UNIX Production NS PublicDMZ - use UNIX Production - parents Gearman NS PublicDMZ -} - -define host { - name Windows Dev/QA NS PublicDMZ - use Windows Dev/QA - parents Gearman NS PublicDMZ -} - -define host { - name Windows Production NS PublicDMZ - use Windows Production - parents Gearman NS PublicDMZ -} - -define host { - name UNIX Dev/QA NS Trust - use UNIX Dev/QA - parents Gearman NS Trust -} - -define host { - name UNIX Production NS Trust - use UNIX Production - parents Gearman NS Trust -} - -define host { - name Windows Dev/QA NS Trust - use Windows Dev/QA - parents Gearman NS Trust -} - -define host { - name Windows Production NS Trust - use Windows Production - parents Gearman NS Trust -} - -define host { - name UNIX Dev/QA NS Untrust - use UNIX Dev/QA - parents Gearman NS Untrust -} - -define host { - name UNIX Dev/QA NS Restricted - use UNIX Dev/QA - parents Gearman NS Untrust -} - -define host { - name UNIX Production NS Untrust - use UNIX Production - parents Gearman NS Untrust -} - -define host { - name Windows Dev/QA NS Untrust - use Windows Dev/QA - parents Gearman NS Untrust -} - -define host { - name Windows Dev/QA NS Restricted - use Windows Dev/QA - parents Gearman NS Untrust -} - -define host { - name Windows Production NS Untrust - use Windows Production - parents Gearman NS Untrust -} - -define host { - name Windows Production NS Restricted - use Windows Production - parents Gearman NS Untrust -} - -define host { - name UNIX Dev/QA NS EISFW - use UNIX Dev/QA - parents Gearman NS PrivateDMZ, Gearman NS Trust, Gearman NS PublicDMZ -} - -define host { - name UNIX Production NS EISFW - use UNIX Production - parents Gearman NS PrivateDMZ, Gearman NS Trust, Gearman NS PublicDMZ -} - -define host { - name Windows Dev/QA NS EISFW - use Windows Dev/QA - parents Gearman NS PrivateDMZ, Gearman NS Trust, Gearman NS PublicDMZ -} - -define host { - name Windows Production NS EISFW - use Windows Production - parents Gearman NS PrivateDMZ, Gearman NS Trust, Gearman NS PublicDMZ -} - - -define host { - name Networking device - process_perf_data 0 - retain_status_information 1 - flap_detection_enabled 1 - retain_nonstatus_information 1 - active_checks_enabled 1 - passive_checks_enabled 1 - check_period 24x7 - obsess_over_host 0 - check_freshness 1 - check_command check-host-alive - max_check_attempts 3 - check_interval 3 - retry_interval 5 - event_handler_enabled 1 - notifications_enabled 1 - notification_interval 360 - notification_period 24x7 - notification_options d,r - contacts Networking - hostgroups Net - icon_image router.png - icon_image_alt Router, Switch, Firewall, or a Load Balancer - vrml_image router.jpg - statusmap_image router.gd2 - register 0 -} - - -define host { - name Rover device - process_perf_data 0 - retain_status_information 1 - flap_detection_enabled 1 - retain_nonstatus_information 1 - active_checks_enabled 1 - passive_checks_enabled 1 - check_period 24x7 - obsess_over_host 0 - check_freshness 1 - check_command check-host-alive - max_check_attempts 3 - check_interval 1 - event_handler_enabled 1 - notifications_enabled 1 - notification_interval 10080 - notification_period 24x7 - notification_options d,r - contact_groups nobody - contacts nobody - hostgroups Rover hosts - icon_image router.png - icon_image_alt Router, Switch, Firewall, or a Load Balancer - vrml_image router.jpg - statusmap_image router.gd2 - register 0 -} - -define host { - name OIT Core Router-Switch - hostgroups OIT Core Routers/Switches - use Networking device -} - -define host { - name OIT Non-Core Router - hostgroups OIT Non-Core Routers - use Networking device -} - -define host { - name ISP Router - hostgroups ISP Routers - use Networking device -} - -define host { - name OIT CWDM - hostgroups OIT CWDM - use Networking device -} - -define host { - name OIT VPN Tunnel - hostgroups OIT VPN Tunnel Endpoints - use Networking device -} - -define host { - name OIT DSL Modem - hostgroups OIT DSL Modems - use Networking device -} - -define host { - name OIT Ethernet Switch/Repeater - hostgroups OIT Ethernet Switches/Repeaters - use Networking device -} - -define host { - name OIT Wireless Access Point (Aruba) - hostgroups OIT Wireless Access Points - Aruba - use Networking device -} - -define host { - name OIT Wireless Access Point (Cisco) - hostgroups OIT Wireless Access Points - Cisco - use Networking device -} - -define host { - name OIT UPS Networking - hostgroups OIT UPS Networking - use Networking device -} - -define host { - name OIT APC Switched Rack PDU - hostgroups OIT APC Switched Rack PDU - use Networking device -} - -define host { - name OIT APC Redundant Power Auto Transfer Switch - hostgroups OIT APC Redundant Power Auto Transfer Switches - use Networking device -} - -define host { - name Lantronix Serial-to-IP Terminal Server Gateway - hostgroups Lantronix Serial-to-IP Terminal Server Gateways - use Networking device -} - -define host { - name NAT - hostgroups NATs - use Networking device -} - -define host { - name VPN - hostgroups VPN Servers - use Networking device -} - -define host { - name Aruba Controller - hostgroups Aruba controllers - use Networking device -} - -define host { - name Aruba Remote Access Controller - hostgroups Aruba remote access controllers - use Networking device -} - -define host { - name Aruba Remote Access Point - hostgroups Aruba remote access points - use Networking device -} - -define host { - name Aruba ClearPass - hostgroups Aruba ClearPass Appliances - use Networking device - contacts Networking -} - -define host { - name Remote Cable Modem - hostgroups Remote cable modems - use Networking device -} - -define host { - name OIT POE Power Injector - hostgroups OIT POE Power Injectors - use Networking device -} - -define host { - name OIT Server - hostgroups OIT Servers - use Networking device -} - -define host { - name OIT Telephony - hostgroups OIT Telephony - use Networking device -} - -define host { - name Public Safety - hostgroups Public Safety - use Networking device -} - -define host { - name Dining Services - hostgroups Dining Services - use Networking device -} - -define host { - name InfoBlox - hostgroups InfoBlox - use Networking device - contacts Networking -} - -define host { - name Oracle Exadata Dev/QA 151 Trust - use UNIX Dev/QA - parents Gearman 151 Trust - notification_period 24x7 -} - -define servicedependency { - name NRPE_Unix_Dependency - service_description nrpe_unix_agent_status - execution_failure_criteria w,u,c - notification_failure_criteria w,u,c - register 0 -} - - -define servicedependency { - name NRPE_Unix_NonProd_Dependency - service_description nrpe_unixtest_agent_status - execution_failure_criteria w,u,c - notification_failure_criteria w,u,c - register 0 -} - - -define servicedependency { - name NRPE_Win_Dependency - service_description nrpe_win_agent_status - execution_failure_criteria w,u,c - notification_failure_criteria w,u,c - register 0 -} - - -define servicedependency { - name NRPE_Win_NonProd_Dependency - service_description nrpe_wintest_agent_status - execution_failure_criteria w,u,c - notification_failure_criteria w,u,c - register 0 -} - - -define servicedependency { - name SNMP_Win_Dependency - service_description snmp_win_alive - execution_failure_criteria w,u,c - notification_failure_criteria w,u,c - register 0 -} - -define servicedependency { - name SNMP_Win_NonProd_Dependency - service_description snmp_wintest_alive - execution_failure_criteria w,u,c - notification_failure_criteria w,u,c - register 0 -} - -define servicedependency { - name SNMP_Unix_Dependency - service_description snmp_unix_alive - execution_failure_criteria w,u,c - notification_failure_criteria w,u,c - register 0 -} - -define servicedependency { - name SNMP_Unix_NonProd_Dependency - service_description snmp_unixtest_alive - execution_failure_criteria w,u,c - notification_failure_criteria w,u,c - register 0 -} - -define servicedependency { - name maestro_carryfwd_dependency - service_description jnextcheck - execution_failure_criteria w,u,c - notification_failure_criteria w,u,c - register 0 -} - - -define service { - name generic-service - is_volatile 0 - check_period 24x7 - max_check_attempts 3 - normal_check_interval 5 - retry_check_interval 2 - active_checks_enabled 1 - passive_checks_enabled 1 - obsess_over_service 0 - check_freshness 0 - notifications_enabled 1 - notification_interval 60 - notification_period 24x7 - notification_options u,c,w,r - event_handler_enabled 1 - flap_detection_enabled 1 - process_perf_data 1 - icon_image services.gif - icon_image_alt Generic check - retain_status_information 1 - retain_nonstatus_information 1 -# contact_groups pu_default - register 0 -} - - -define service { - name generic-service-active - use generic-service - notification_interval 360 - flap_detection_enabled 0 - register 0 -} - - -define service { - name email-end2end - use generic-service-active - max_check_attempts 4 - normal_check_interval 10 - retry_check_interval 2 - register 0 -} - -define service { - name UNIX Dev/QA service - is_volatile 0 - check_period 24x7 - max_check_attempts 4 - normal_check_interval 5 - retry_check_interval 5 - active_checks_enabled 1 - passive_checks_enabled 1 - obsess_over_service 0 - check_freshness 0 - notifications_enabled 1 - notification_interval 1440 - notification_period 7x4 - notification_options c,r - event_handler_enabled 0 - flap_detection_enabled 1 - process_perf_data 0 - retain_status_information 1 - retain_nonstatus_information 1 - icon_image services.gif - icon_image_alt Linux Dev/QA check - register 0 -} - - -define service { - name UNIX Production service - is_volatile 0 - check_period 24x7 - max_check_attempts 3 - normal_check_interval 4 - retry_check_interval 5 - active_checks_enabled 1 - passive_checks_enabled 1 - obsess_over_service 0 - check_freshness 0 - notifications_enabled 1 - notification_interval 360 - notification_period 24x7 - notification_options c,r - event_handler_enabled 0 - flap_detection_enabled 0 - process_perf_data 0 - retain_status_information 1 - retain_nonstatus_information 1 - icon_image services.gif - icon_image_alt Linux Production check - contact_groups pu_default - register 0 -} - - -define service { - name UNIX Production 8x5 service - use UNIX Production service - max_check_attempts 6 - normal_check_interval 10 - retry_check_interval 5 - notification_options u,c,w,r - contact_groups ESS_8x5 - register 0 -} - - -define service { - name Windows Dev/QA service - is_volatile 0 - check_period 24x7 - max_check_attempts 4 - normal_check_interval 5 - retry_check_interval 5 - active_checks_enabled 1 - passive_checks_enabled 1 - obsess_over_service 0 - check_freshness 0 - notifications_enabled 1 - notification_interval 1440 - notification_period 7x4 - notification_options c,r - event_handler_enabled 1 - flap_detection_enabled 1 - process_perf_data 0 - icon_image services.gif - icon_image_alt Windows Dev/QA check - retain_status_information 1 - retain_nonstatus_information 1 - register 0 -} - - -define service { - name Windows Production service - is_volatile 0 - check_period 24x7 - max_check_attempts 3 - normal_check_interval 4 - retry_check_interval 5 - active_checks_enabled 1 - passive_checks_enabled 1 - obsess_over_service 0 - check_freshness 0 - notifications_enabled 1 - notification_interval 360 - notification_period 24x7 - notification_options c,r - event_handler_enabled 1 - flap_detection_enabled 0 - process_perf_data 0 - icon_image services.gif - icon_image_alt Windows Production check - retain_status_information 1 - retain_nonstatus_information 1 - contact_groups pu_default - register 0 -} - - -define service { - name Windows Production 8x5 service - use Windows Production service - max_check_attempts 6 - normal_check_interval 10 - retry_check_interval 5 - notification_options u,c,w,r - contact_groups ESS_8x5 - register 0 -} - -define service { - name Gearman Worker - use generic-service - normal_check_interval 2 - retry_check_interval 2 - max_check_attempts 4 - event_handler gearman_failover - contact_groups Monitoring Admins - contacts null - #check_period Gearman server online - #notification_period Gearman server online - notification_interval 180 - register 0 -} - -define service { - name Gearman Worker Dev/QA - use Gearman Worker - event_handler gearman_devqa_failover - contacts Igor V. Gubenko - contact_groups null - register 0 -} - -define service { - name Gearman Worker Cluster - use Gearman Worker - normal_check_interval 1 - notification_interval 30 - register 0 -} - -define service { - name Gearman Worker Cluster Dev/QA - use Gearman Worker Cluster - event_handler gearman_devqa_failover - contacts Igor V. Gubenko - contact_groups null - register 0 -} - -define service { - name Networking service - is_volatile 0 - check_period 24x7 - max_check_attempts 3 - normal_check_interval 3 - retry_check_interval 5 - active_checks_enabled 1 - passive_checks_enabled 1 - obsess_over_service 0 - check_freshness 1 - notifications_enabled 1 - notification_interval 360 - notification_period 24x7 - notification_options u,c,w,r - event_handler_enabled 1 - flap_detection_enabled 1 - process_perf_data 1 - icon_image services.gif - icon_image_alt Networking service - retain_status_information 1 - retain_nonstatus_information 1 - contacts Networking - contact_groups nobody - register 0 -} - -define service { - name SNMP trap - use generic-service - # Do not track states - is_volatile 1 - # No actively executing checks - we wait for traps - active_checks_enabled 0 - # The service doesn't need to be actively checked - but needs to be reset periodically - check_freshness 1 - # Automatically determine when to reset - freshness_threshold 0 - # The flapping detection is not applicable - flap_detection_enabled 0 - # Accepting external results, i.e traps - passive_checks_enabled 1 - # traps arrive once - max_check_attempts 1 - #notification_interval31536000 - process_perf_data 0 - check_command check_trap_OK - notification_options u,c,w - register 0 -} - - -