summaryrefslogtreecommitdiffstats
path: root/usr
diff options
context:
space:
mode:
authorjim-p <jimp@pfsense.org>2012-02-28 12:48:53 -0500
committerjim-p <jimp@pfsense.org>2012-02-28 12:57:46 -0500
commit0b29093bc42d5ed3fbcabacc8f09be99ac9dda7f (patch)
treebe65668afd371dc6a6b29dfba387e6632633c8f7 /usr
parentd63b89af70f6de1f3ab7be2321dbc2f48ce61513 (diff)
downloadpfsense-0b29093bc42d5ed3fbcabacc8f09be99ac9dda7f.zip
pfsense-0b29093bc42d5ed3fbcabacc8f09be99ac9dda7f.tar.gz
Show lagg protocol and member interfaces on Status > Interfaces. Implements #2242
Diffstat (limited to 'usr')
-rwxr-xr-xusr/local/www/status_interfaces.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/usr/local/www/status_interfaces.php b/usr/local/www/status_interfaces.php
index e998ae1..248667a 100755
--- a/usr/local/www/status_interfaces.php
+++ b/usr/local/www/status_interfaces.php
@@ -260,6 +260,22 @@ include("head.inc");
<?=htmlspecialchars($ifinfo['media']);?>
</td>
</tr>
+ <?php endif; if ($ifinfo['laggproto']): ?>
+ <tr>
+ <td width="22%" class="vncellt"><?=gettext("LAGG Protocol");?></td>
+ <td width="78%" class="listr">
+ <?=htmlspecialchars($ifinfo['laggproto']);?>
+ </td>
+ </tr>
+ <?php endif; if (is_array($ifinfo['laggport'])): ?>
+ <tr>
+ <td width="22%" class="vncellt"><?=gettext("LAGG Ports");?></td>
+ <td width="78%" class="listr">
+ <?php foreach ($ifinfo['laggport'] as $laggport) { ?>
+ <?php echo htmlspecialchars($laggport); ?><br/>
+ <?php } ?>
+ </td>
+ </tr>
<?php endif; ?><?php if ($ifinfo['channel']): ?>
<tr>
<td width="22%" class="vncellt"><?=gettext("Channel");?></td>
OpenPOWER on IntegriCloud