From 45d58644f639d505342c74432341f7a49c5211a7 Mon Sep 17 00:00:00 2001 From: Nils Steinger Date: Mon, 21 Sep 2015 17:53:49 +0200 Subject: [PATCH] Added explanation of fping configuration options (adapted from the fping man page, version 2013-05-21) --- doc/Support/Configuration.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/doc/Support/Configuration.md b/doc/Support/Configuration.md index ed190a4d18..f9938e7a53 100644 --- a/doc/Support/Configuration.md +++ b/doc/Support/Configuration.md @@ -52,7 +52,12 @@ $config['fping_options']['timeout'] = 500; $config['fping_options']['count'] = 3; $config['fping_options']['millisec'] = 200; ``` -fping configuration options, this includes setting the timeout and retry options. +`fping` configuration options: + +* `retries` (`fping` parameter `-r`): Number of times an attempt at pinging a target will be made, not including the first try. +* `timeout` (`fping` parameter `-t`): Amount of time that fping waits for a response to its first request (in milliseconds). +* `count` (`fping` parameter `-c`): Number of request packets to send to each target. +* `millisec` (`fping` parameter `-p`): Time in milliseconds that fping waits between successive packets to an individual target. ```php $config['snmpwalk'] = "/usr/bin/snmpwalk";