diff options
author | Seth Mos <seth.mos@xs4all.nl> | 2009-11-26 21:52:39 +0100 |
---|---|---|
committer | Seth Mos <seth.mos@xs4all.nl> | 2009-11-26 22:02:32 +0100 |
commit | 6c4b9f4699eca72515ff25c3f952b6fd9bb07e25 (patch) | |
tree | f28be761da43c400a456232b7db6f50b92bcd7a8 /usr/local | |
parent | 818a6b7d78f1e796e06d30f43f312b99d640c2ea (diff) | |
download | pfsense-6c4b9f4699eca72515ff25c3f952b6fd9bb07e25.zip pfsense-6c4b9f4699eca72515ff25c3f952b6fd9bb07e25.tar.gz |
Show the RSSI, BSSID and the wireless connection rate
Diffstat (limited to 'usr/local')
-rwxr-xr-x | usr/local/www/status_interfaces.php | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/usr/local/www/status_interfaces.php b/usr/local/www/status_interfaces.php index e37fa69..4ff725c 100755 --- a/usr/local/www/status_interfaces.php +++ b/usr/local/www/status_interfaces.php @@ -183,6 +183,24 @@ include("head.inc"); <td width="78%" class="listr"> <?=htmlspecialchars($ifinfo['ssid']);?> </td> + </tr><?php endif; ?><?php if ($ifinfo['bssid']): ?> + <tr> + <td width="22%" class="vncellt">BSSID</td> + <td width="78%" class="listr"> + <?=htmlspecialchars($ifinfo['bssid']);?> + </td> + </tr><?php endif; ?><?php if ($ifinfo['rate']): ?> + <tr> + <td width="22%" class="vncellt">Rate</td> + <td width="78%" class="listr"> + <?=htmlspecialchars($ifinfo['rate']);?> + </td> + </tr><?php endif; ?><?php if ($ifinfo['rssi']): ?> + <tr> + <td width="22%" class="vncellt">RSSI</td> + <td width="78%" class="listr"> + <?=htmlspecialchars($ifinfo['rssi']);?> + </td> </tr><?php endif; ?> <tr> <td width="22%" class="vncellt">In/out packets</td> |