|
@@ -62,8 +62,33 @@ After all, start the PingPanel Daemon:
|
|
|
|
|
|
### Configuration
|
|
|
|
|
|
+The application is controlled via a configuration file in which the hosts to be pinged are listed and named
|
|
|
+in freely selectable blocks, the loop- and fping-related parameters are defined and the application behavior can be set.
|
|
|
The configuration is made in the _config.cfg_ file located in the installation directory.
|
|
|
-All parameters are documented in this file.
|
|
|
+All parameters like `ListenAddr`, `CertFile`, `LoopInterval`, fping-related params etc. are well documented in this file.
|
|
|
+
|
|
|
+*Example of blocks and its hosts configurtion:*
|
|
|
+```
|
|
|
+[LOCAL]
|
|
|
+192.168.1.1 = One
|
|
|
+192.168.1.2 = Two
|
|
|
+192.168.1.3 = Three
|
|
|
+192.168.1.4 = Four
|
|
|
+....
|
|
|
+[Zum Fröhlichen Zehnernetz]
|
|
|
+10.0.0.1 = happy 1
|
|
|
+10.0.0.2 = happy 2
|
|
|
+...
|
|
|
+[REMOTE]
|
|
|
+212.51.140.225 = <span style="color: yellow">ZweierNet.ch</span>
|
|
|
+2a02:168:6229::10 = <span style="color: blue">ZweierNet.ch IPv6</span>
|
|
|
+8.8.8.8 = The Quad Eight
|
|
|
+...
|
|
|
+```
|
|
|
+*That will look something like this:*
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
If you want to use a name other than config.cfg, you can specify this in the _/etc/default/pingpanel_ file
|
|
|
or using the `-c <filename>` parameter to the PingPanel.py script.
|
|
|
|