From 522c95751093513a0b5ce9a4156c415b2cee8f96 Mon Sep 17 00:00:00 2001 From: Louis Rossouw Date: Tue, 14 Jul 2015 22:23:20 +0200 Subject: [PATCH] Add documentation. --- doc/Support/Configuration.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/doc/Support/Configuration.md b/doc/Support/Configuration.md index 68cb55251..aa29e5c52 100644 --- a/doc/Support/Configuration.md +++ b/doc/Support/Configuration.md @@ -169,6 +169,14 @@ $config['enable_footer'] = 1; ``` Disable the footer of the WebUI by setting `enable_footer` to 0. +#### Add host settings +The following setting controls how hosts are added. If a host is added as an ip address it is checked to ensure the ip is not already present. If the ip is present the host is not added. +If host is added by hostname this check is not performed. If the setting is true hostnames are resovled and the check is also performed. This helps prevents accidental duplicate hosts. +```php +$config['addhost_alwayscheckip'] = FALSE; #TRUE - check for duplicate ips even when adding host by name. + #FALSE- only check when adding host by ip. +``` + #### SNMP Settings ```php