1
0
mirror of https://github.com/moexe/FFFGateway-Monitoring.git synced 2024-11-22 05:53:40 +01:00
FFFGateway-Monitoring/html/start.html

69 lines
1.5 KiB
HTML
Raw Normal View History

2017-01-21 19:00:26 +01:00
<div id="content">
<?php
$hostname = gethostname();
echo "<h1 align=center>FFF Gateway $hostname</h1>";
echo "<p align=center>Hoods: has und has-süd";
?>
<div class="ampel">
<?php
2017-01-21 19:00:26 +01:00
$l2tp = shell_exec('ip l | grep -c l2tp');
echo "<b>Anzahl der l2tp Tunnel</b><br>has-sued: <b>$l2tp</b><br><br>";
$gwselsued = file_get_contents('http://10.50.60.22/bat0.dat');
$gwselhas = file_get_contents('http://10.50.60.22/bat2.dat');
echo "<b>Gatewayselection Hood has:</b><br>";
$gwsel_has = explode(PHP_EOL, $gwselhas);
for($i = 0; $i < count($gwsel_has); ++$i) {
echo "$gwsel_has[$i]<br>";
}
echo "<b>Gatewayselection Hood has-sued</b><br>";
$gwsel_sued = explode(PHP_EOL, $gwselsued);
for($i = 0; $i < count($gwsel_sued); ++$i) {
echo "$gwsel_sued[$i]<br>";
2017-01-21 19:00:26 +01:00
}
2017-01-22 21:58:13 +01:00
$clients = file_get_contents('http://5.189.166.50/test.html');
echo $clients;
2017-01-21 19:00:26 +01:00
?>
2017-01-22 21:58:13 +01:00
2017-01-21 19:00:26 +01:00
<hr />
</div>
2017-01-21 19:00:26 +01:00
<div class=mrtg>
2017-01-24 22:20:14 +01:00
<b>Speedtest has und has-sued (Kabel, wr-841, l2tp)</b>
<img src="http://163.172.161.233/top/img/speed.png">
<hr />
2017-01-21 19:00:26 +01:00
<H1>Durchsatz eth0</H1>
<b>GW has</b>
<img src="http://78.47.36.148/localhost_eth0-day.png">
<b>GW has1</b>
<img src="http://78.47.161.124/localhost_eth0-day.png">
2017-01-21 19:00:26 +01:00
<b>GW has2</b>
<img src="http://5.189.166.50/localhost_eth0-day.png">
<br><b>GW has3 - kein mrtg</b><br>
2017-01-21 19:00:26 +01:00
<b>GW roffl</b>
<img src="http://5.189.142.26/localhost_eth0-day.png">
2017-01-21 19:00:26 +01:00
<b>GW rola1</b>
<img src="http://163.172.161.233/mrtg/localhost_eth0-day.png">
<hr />
</div>
</div></div>
</div></div></div>
</body>
</html>