summaryrefslogtreecommitdiffstats
path: root/usr/local
diff options
context:
space:
mode:
Diffstat (limited to 'usr/local')
-rwxr-xr-xusr/local/bin/3gstats.php9
-rwxr-xr-xusr/local/www/status_interfaces.php7
2 files changed, 13 insertions, 3 deletions
diff --git a/usr/local/bin/3gstats.php b/usr/local/bin/3gstats.php
index c63a014..bea0461 100755
--- a/usr/local/bin/3gstats.php
+++ b/usr/local/bin/3gstats.php
@@ -9,7 +9,8 @@ if(empty($argv[1])) {
/* Huawei example */
$device = "/dev/{$argv[1]}";
$statfile = "/tmp/3gstats.{$argv[2]}";
-$header = "#seconds,rssi,mode,upstream,downstream,sentbytes,receivedbyts,bwupstream,bwdownstream\n";
+/* mode is a comma seperated value, thus submode is born */
+$header = "#seconds,rssi,mode,submode,upstream,downstream,sentbytes,receivedbyts,bwupstream,bwdownstream\n";
$i = 0;
@@ -19,15 +20,17 @@ if(! $handle) {
echo "Can not open modem stats device\n";
exit(1);
}
-$record['mode'] = 0;
-$record['rssi'] = 0;
+
$record['time'] = 0;
+$record['rssi'] = 0;
+$record['mode'] = "0,0";
$record['upstream'] = 0;
$record['downstream'] = 0;
$record['sent'] = 0;
$record['received'] = 0;
$record['bwupstream'] = 0;
$record['bwdownstream'] = 0;
+
while(true) {
$string = "";
$string = fgets($handle, 256);
diff --git a/usr/local/www/status_interfaces.php b/usr/local/www/status_interfaces.php
index dec67bb..c23140e 100755
--- a/usr/local/www/status_interfaces.php
+++ b/usr/local/www/status_interfaces.php
@@ -198,6 +198,13 @@ include("head.inc");
<?=htmlspecialchars($ifinfo['cell_rssi']);?> (0-31)
</td>
</tr>
+ <?php endif; if ($ifinfo['cell_mode']): ?>
+ <tr>
+ <td width="22%" class="vncellt"><?=gettext("Cell Mode");?></td>
+ <td width="78%" class="listr">
+ <?=htmlspecialchars($ifinfo['cell_mode']);?>
+ </td>
+ </tr>
<?php endif; if ($ifinfo['cell_upstream']): ?>
<tr>
<td width="22%" class="vncellt"><?=gettext("Cell Upstream");?></td>
OpenPOWER on IntegriCloud