mirror of
https://github.com/moexe/FFFGateway-Monitoring.git
synced 2024-11-23 06:03:41 +01:00
88a1f885c0
* Anzahl der Clients in has und has-sued als Gnuplot !!!! gnuplot installieren !!!! * Anzahl und Auflisten der fastd und l2tp Router
20 lines
431 B
HTML
20 lines
431 B
HTML
<div id="content">
|
|
<H2>Router via fastd in der has-hood</H2>
|
|
|
|
<?php
|
|
$routers = file_get_contents('http://5.189.166.50/fastd_routers');
|
|
$router = explode(PHP_EOL, $routers);
|
|
for($i = 0; $i < count($router); ++$i) {
|
|
echo "<a href=\"https://monitoring.freifunk-franken.de/routers?q=^$router[$i]\$\">$router[$i]</a><br>";
|
|
}
|
|
--$i;
|
|
echo "<br>fastd Router has-sued: $i"
|
|
?>
|
|
|
|
</div>
|
|
</div></div>
|
|
</div></div></div>
|
|
</body>
|
|
</html>
|
|
|