From 1d803e7ec0877ebf0d00134e813c11ec94c48c62 Mon Sep 17 00:00:00 2001 From: Rudy Hardeman Date: Wed, 13 May 2015 09:22:55 +0200 Subject: [PATCH] Updated config docs --- doc/Support/Configuration.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/doc/Support/Configuration.md b/doc/Support/Configuration.md index 3d0f2807ed..cfd6fcb281 100644 --- a/doc/Support/Configuration.md +++ b/doc/Support/Configuration.md @@ -430,6 +430,16 @@ $config['update'] = 1; ``` By default, LibreNMS will auto update itself every 24 hours. You can stop this from happening by setting `update` to 0. +#### IPMI +Setup the types of IPMI protocols to test a host for and it what order. + +```php +$config['ipmi']['type'][] = "lanplus"; +$config['ipmi']['type'][] = "lan"; +$config['ipmi']['type'][] = "imb"; +$config['ipmi']['type'][] = "open"; +``` + #### Distributed poller settings -Please see [Distributed Poller](http://docs.librenms.org/Extensions/Distributed-Poller/) section of the docs for setup and configuration options. \ No newline at end of file +Please see [Distributed Poller](http://docs.librenms.org/Extensions/Distributed-Poller/) section of the docs for setup and configuration options.