Commit 0fa331c1 authored by Franco Fichtner's avatar Franco Fichtner

interfaces: show lagg proto in overview; closes #823

(cherry picked from commit 27f83256)
parent 8a5bb675
...@@ -128,6 +128,7 @@ $main_buttons = array( ...@@ -128,6 +128,7 @@ $main_buttons = array(
<tr> <tr>
<th><?=gettext("Interface");?></th> <th><?=gettext("Interface");?></th>
<th><?=gettext("Members");?></th> <th><?=gettext("Members");?></th>
<th><?=gettext("Protocol");?></th>
<th><?=gettext("Description");?></th> <th><?=gettext("Description");?></th>
<th>&nbsp;</th> <th>&nbsp;</th>
</tr> </tr>
...@@ -139,6 +140,7 @@ $main_buttons = array( ...@@ -139,6 +140,7 @@ $main_buttons = array(
<tr> <tr>
<td><?=strtoupper($lagg['laggif']);?></td> <td><?=strtoupper($lagg['laggif']);?></td>
<td><?=$lagg['members'];?></td> <td><?=$lagg['members'];?></td>
<td><?=strtoupper($lagg['proto']);?></td>
<td><?=$lagg['descr'];?></td> <td><?=$lagg['descr'];?></td>
<td> <td>
<a href="interfaces_lagg_edit.php?id=<?=$i;?>" class="btn btn-xs btn-default" data-toggle="tooltip" title="<?=gettext("edit interface");?>"> <a href="interfaces_lagg_edit.php?id=<?=$i;?>" class="btn btn-xs btn-default" data-toggle="tooltip" title="<?=gettext("edit interface");?>">
...@@ -153,7 +155,7 @@ $main_buttons = array( ...@@ -153,7 +155,7 @@ $main_buttons = array(
$i++; $i++;
endforeach; ?> endforeach; ?>
<tr> <tr>
<td colspan="4"> <td colspan="5">
<?=gettext("LAGG allows for link aggregation, bonding and fault tolerance. Only unassigned interfaces can be added to LAGG."); ?> <?=gettext("LAGG allows for link aggregation, bonding and fault tolerance. Only unassigned interfaces can be added to LAGG."); ?>
</td> </td>
</tr> </tr>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment