Added explanation of fping configuration options (adapted from the fping man page, version 2013-05-21)

This commit is contained in:
Nils Steinger
2015-09-21 17:53:49 +02:00
parent 40ed489f63
commit 45d58644f6

View File

@ -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";