Home Directory Patches Nagios Core configure a second IP-address for each Host - Nagios 1.x

Search Exchange

Search All Sites

Nagios Live Webinars

Let our experts show you how Nagios can help your organization.

Contact Us

Phone: 1-888-NAGIOS-1
Email: sales@nagios.com

Login

Remember Me

Directory Tree

configure a second IP-address for each Host - Nagios 1.x

Rating
0 votes
Favoured:
0
Hits
175897
Files:
FileDescription
nagios-1.2-ipadresses.patchnagios-1.2-ipadresses.patch
Network Monitoring Software - Download Nagios XI
Log Management Software - Nagios Log Server - Download
Netflow Analysis Software - Nagios Network Analyzer - Download
Sometimes it can be useful to be able to configure secondary addresses
Because most of our Servers got at least two IP-Addresses, (one for the customer-service (ie. web) one for the internal-services (ie. snmp)), I faced the problem that it seems to be impossible to define two addresses to one host and refer to each of these address via macro.


Of course you can define more ip-adresses in a row, but I think it is not possible to use each one of them in a specific macro. However, because of possible DNS failures I like to use IPs.

Therefor I wrote a simple patch. With this patch it is possible to use a new directive in the host-definition and refer to this entry with a new macro.

ie:

define host {

host_name name
alias alias
address primary-ip-address

--> secondary_addres secondary-ip-address

check_command check_host_alive
max_check_attempts 5
notification_interval 60
notification_period 24x7
notification_options d,u,r

}


In checkcommands you will be able to use this value with $SECONDARYHOSTADDRESS$.
If no secondary_address is defined for the host, it will use the primary_address.

Of course the secondary address will be shown on the webinterface.

However, I am not quite sure if this patch is useful for other nagios-installations also this patch will only work with version 1.2 (probably 1.3 too).