From cae6400729e2b4cf9cd12cb548a7337342f681a4 Mon Sep 17 00:00:00 2001 From: Stephen Smoogen Date: Wed, 22 Mar 2023 09:06:45 -0400 Subject: [PATCH] Fix external IAD2 ip address The address noc02 was monitoring, 209.132.185.254, was a switch behind a firewall which might not be viewable for various reasons. Red Hat NOC let us know that 209.132.185.206 was the floating IP address which is a better source of uptime. Signed-off-by: Stephen Smoogen --- roles/nagios_server/templates/nagios/hosts/gateway-hosts.cfg.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/nagios_server/templates/nagios/hosts/gateway-hosts.cfg.j2 b/roles/nagios_server/templates/nagios/hosts/gateway-hosts.cfg.j2 index d38a2aec39..c6adf6c054 100644 --- a/roles/nagios_server/templates/nagios/hosts/gateway-hosts.cfg.j2 +++ b/roles/nagios_server/templates/nagios/hosts/gateway-hosts.cfg.j2 @@ -24,7 +24,7 @@ define host { {% if vars['nagios_location'] == 'iad2_internal' %} address 10.3.163.254 {% elif vars['nagios_location'] == 'external' %} - address 209.132.185.254 + address 209.132.185.206 parents ibiblio-gw {% endif %}