summaryrefslogtreecommitdiffstats
path: root/usr/local/www
diff options
context:
space:
mode:
authorErmal Luçi <eri@pfsense.org>2009-03-16 23:48:03 +0000
committerErmal Luçi <eri@pfsense.org>2009-03-16 23:48:59 +0000
commit0ec2fdf0ad985ff390c6230f375e88cde5a4d61b (patch)
tree828de0128f6d57c5624b9ef954a3bf246d9a2537 /usr/local/www
parenta4d372d59794e64a220947a704b56fe1c5bd2e40 (diff)
downloadpfsense-0ec2fdf0ad985ff390c6230f375e88cde5a4d61b.zip
pfsense-0ec2fdf0ad985ff390c6230f375e88cde5a4d61b.tar.gz
* Introduce interface groups. For now they are availble only on Firewall:Rules section maybe it would be usable to have tham on nat too.
* Some fixes and cleanup.
Diffstat (limited to 'usr/local/www')
-rwxr-xr-xusr/local/www/firewall_rules.php6
-rwxr-xr-xusr/local/www/firewall_rules_edit.php6
-rwxr-xr-xusr/local/www/interfaces_assign.php13
-rw-r--r--usr/local/www/interfaces_bridge.php13
-rw-r--r--usr/local/www/interfaces_gif.php13
-rw-r--r--usr/local/www/interfaces_gre.php13
-rwxr-xr-xusr/local/www/interfaces_groups.php146
-rwxr-xr-xusr/local/www/interfaces_groups_edit.php274
-rw-r--r--usr/local/www/interfaces_lagg.php13
-rw-r--r--usr/local/www/interfaces_ppp.php13
-rwxr-xr-xusr/local/www/interfaces_vlan.php13
11 files changed, 481 insertions, 42 deletions
diff --git a/usr/local/www/firewall_rules.php b/usr/local/www/firewall_rules.php
index 9dca190..1a859a6 100755
--- a/usr/local/www/firewall_rules.php
+++ b/usr/local/www/firewall_rules.php
@@ -79,6 +79,12 @@ if (isset($config['ipsec']['enable']) || isset($config['ipsec']['mobileclients']
if ($config['openvpn']["openvpn-server"] || $config['openvpn']["openvpn-client"])
$iflist["openvpn"] = "OpenVPN";
+/* add group interfaces */
+if (is_array($config['ifgroups']['ifgroupentry']))
+ foreach($config['ifgroups']['ifgroupentry'] as $ifgen)
+ if (have_ruleint_access($ifgen['ifname']))
+ $iflist[$ifgen['ifname']] = $ifgen['ifname'];
+
if (!$if || !isset($iflist[$if])) {
if ("any" == $if)
$if = "FloatingRules";
diff --git a/usr/local/www/firewall_rules_edit.php b/usr/local/www/firewall_rules_edit.php
index ecbb87e..ffd7062 100755
--- a/usr/local/www/firewall_rules_edit.php
+++ b/usr/local/www/firewall_rules_edit.php
@@ -548,6 +548,12 @@ include("head.inc");
if ($config['openvpn']["openvpn-server"] || $config['openvpn']["openvpn-client"])
$interfaces["openvpn"] = "OpenVPN";
+ /* add group interfaces */
+ if (is_array($config['ifgroups']['ifgroupentry']))
+ foreach($config['ifgroups']['ifgroupentry'] as $ifgen)
+ if (have_ruleint_access($ifgen['ifname']))
+ $interfaces[$ifgen['ifname']] = $ifgen['ifname'];
+
foreach ($interfaces as $iface => $ifacename): ?>
<option value="<?=$iface;?>" <?php if ($pconfig['interface'] <> "" && stristr($pconfig['interface'], $iface)) echo "selected"; ?>><?=gettext($ifacename);?></option>
<?php endforeach; ?>
diff --git a/usr/local/www/interfaces_assign.php b/usr/local/www/interfaces_assign.php
index 2a2b81c..00f58aa 100755
--- a/usr/local/www/interfaces_assign.php
+++ b/usr/local/www/interfaces_assign.php
@@ -316,12 +316,13 @@ if(file_exists("/var/run/interface_mismatch_reboot_needed"))
<?php
$tab_array = array();
$tab_array[0] = array("Interface assignments", true, "interfaces_assign.php");
- $tab_array[1] = array("VLANs", false, "interfaces_vlan.php");
- $tab_array[2] = array("PPP", false, "interfaces_ppp.php");
- $tab_array[3] = array("GRE", false, "interfaces_gre.php");
- $tab_array[4] = array("GIF", false, "interfaces_gif.php");
- $tab_array[5] = array("Bridges", false, "interfaces_bridge.php");
- $tab_array[6] = array("LAGG", false, "interfaces_lagg.php");
+ $tab_array[1] = array("Interface Groups", false, "interfaces_groups.php");
+ $tab_array[2] = array("VLANs", false, "interfaces_vlan.php");
+ $tab_array[3] = array("PPP", false, "interfaces_ppp.php");
+ $tab_array[4] = array("GRE", false, "interfaces_gre.php");
+ $tab_array[5] = array("GIF", false, "interfaces_gif.php");
+ $tab_array[6] = array("Bridges", false, "interfaces_bridge.php");
+ $tab_array[7] = array("LAGG", false, "interfaces_lagg.php");
display_top_tabs($tab_array);
?>
</td></tr>
diff --git a/usr/local/www/interfaces_bridge.php b/usr/local/www/interfaces_bridge.php
index f5f3734..934dbd3 100644
--- a/usr/local/www/interfaces_bridge.php
+++ b/usr/local/www/interfaces_bridge.php
@@ -76,12 +76,13 @@ include("head.inc");
<?php
$tab_array = array();
$tab_array[0] = array("Interface assignments", false, "interfaces_assign.php");
- $tab_array[1] = array("VLANs", false, "interfaces_vlan.php");
- $tab_array[2] = array("PPP", false, "interfaces_ppp.php");
- $tab_array[3] = array("GRE", false, "interfaces_gre.php");
- $tab_array[4] = array("GIF", false, "interfaces_gif.php");
- $tab_array[5] = array("Bridges", true, "interfaces_bridge.php");
- $tab_array[6] = array("LAGG", false, "interfaces_lagg.php");
+ $tab_array[1] = array("Interface Groups", false, "interfaces_groups.php");
+ $tab_array[2] = array("VLANs", false, "interfaces_vlan.php");
+ $tab_array[3] = array("PPP", false, "interfaces_ppp.php");
+ $tab_array[4] = array("GRE", false, "interfaces_gre.php");
+ $tab_array[5] = array("GIF", false, "interfaces_gif.php");
+ $tab_array[6] = array("Bridges", true, "interfaces_bridge.php");
+ $tab_array[7] = array("LAGG", false, "interfaces_lagg.php");
display_top_tabs($tab_array);
?>
</td></tr>
diff --git a/usr/local/www/interfaces_gif.php b/usr/local/www/interfaces_gif.php
index 21ef0c1..9e01b33 100644
--- a/usr/local/www/interfaces_gif.php
+++ b/usr/local/www/interfaces_gif.php
@@ -84,12 +84,13 @@ include("head.inc");
<?php
$tab_array = array();
$tab_array[0] = array("Interface assignments", false, "interfaces_assign.php");
- $tab_array[1] = array("VLANs", false, "interfaces_vlan.php");
- $tab_array[2] = array("PPP", false, "interfaces_ppp.php");
- $tab_array[3] = array("GRE", false, "interfaces_gre.php");
- $tab_array[4] = array("GIF", true, "interfaces_gif.php");
- $tab_array[5] = array("Bridges", false, "interfaces_bridge.php");
- $tab_array[6] = array("LAGG", false, "interfaces_lagg.php");
+ $tab_array[1] = array("Interface Groups", false, "interfaces_groups.php");
+ $tab_array[2] = array("VLANs", false, "interfaces_vlan.php");
+ $tab_array[3] = array("PPP", false, "interfaces_ppp.php");
+ $tab_array[4] = array("GRE", false, "interfaces_gre.php");
+ $tab_array[5] = array("GIF", true, "interfaces_gif.php");
+ $tab_array[6] = array("Bridges", false, "interfaces_bridge.php");
+ $tab_array[7] = array("LAGG", false, "interfaces_lagg.php");
display_top_tabs($tab_array);
?>
</td></tr>
diff --git a/usr/local/www/interfaces_gre.php b/usr/local/www/interfaces_gre.php
index 51698ed..85540e5 100644
--- a/usr/local/www/interfaces_gre.php
+++ b/usr/local/www/interfaces_gre.php
@@ -84,12 +84,13 @@ include("head.inc");
<?php
$tab_array = array();
$tab_array[0] = array("Interface assignments", false, "interfaces_assign.php");
- $tab_array[1] = array("VLANs", false, "interfaces_vlan.php");
- $tab_array[2] = array("PPP", false, "interfaces_ppp.php");
- $tab_array[3] = array("GRE", true, "interfaces_gre.php");
- $tab_array[4] = array("GIF", false, "interfaces_gif.php");
- $tab_array[5] = array("Bridges", false, "interfaces_bridge.php");
- $tab_array[6] = array("LAGG", false, "interfaces_lagg.php");
+ $tab_array[1] = array("Interface Groups", false, "interfaces_groups.php");
+ $tab_array[2] = array("VLANs", false, "interfaces_vlan.php");
+ $tab_array[3] = array("PPP", false, "interfaces_ppp.php");
+ $tab_array[4] = array("GRE", true, "interfaces_gre.php");
+ $tab_array[5] = array("GIF", false, "interfaces_gif.php");
+ $tab_array[6] = array("Bridges", false, "interfaces_bridge.php");
+ $tab_array[7] = array("LAGG", false, "interfaces_lagg.php");
display_top_tabs($tab_array);
?>
</td></tr>
diff --git a/usr/local/www/interfaces_groups.php b/usr/local/www/interfaces_groups.php
new file mode 100755
index 0000000..09d0b99
--- /dev/null
+++ b/usr/local/www/interfaces_groups.php
@@ -0,0 +1,146 @@
+<?php
+/*
+ Copyright (C) 2009 Ermal Luçi
+ Copyright (C) 2004 Scott Ullrich
+ All rights reserved.
+
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are met:
+
+ 1. Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+
+ 2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+
+ THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
+ INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
+ AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
+ AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
+ OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ POSSIBILITY OF SUCH DAMAGE.
+*/
+
+##|+PRIV
+##|*IDENT=page-interfaces-groups
+##|*NAME=Interfaces: Groups page
+##|*DESCR=Create interface groups
+##|*MATCH=interfaces_groups.php*
+##|-PRIV
+
+
+require("guiconfig.inc");
+
+if (!is_array($config['ifgroups']['ifgroupentry']))
+ $config['ifgroups']['ifgroupentry'] = array();
+
+$a_ifgroups = &$config['ifgroups']['ifgroupentry'];
+
+if ($_GET['act'] == "del") {
+ if ($a_ifgroups[$_GET['id']]) {
+ unset($a_ifgroups[$_GET['id']]);
+ write_config();
+ touch($d_ifgroupsdirty_path);
+ header("Location: interfaces_groups.php");
+ exit;
+ }
+}
+
+$pgtitle = array("Interfaces","Groups");
+include("head.inc");
+
+?>
+
+<body link="#0000CC" vlink="#0000CC" alink="#0000CC">
+<?php include("fbegin.inc"); ?>
+
+<table width="100%" border="0" cellpadding="0" cellspacing="0">
+ <tr><td>
+<?php
+ $tab_array = array();
+ $tab_array[0] = array("Interface assignments", false, "interfaces_assign.php");
+ $tab_array[1] = array("Interface Groups", true, "interfaces_groups.php");
+ $tab_array[2] = array("VLANs", false, "interfaces_vlan.php");
+ $tab_array[3] = array("PPP", false, "interfaces_ppp.php");
+ $tab_array[4] = array("GRE", false, "interfaces_gre.php");
+ $tab_array[5] = array("GIF", false, "interfaces_gif.php");
+ $tab_array[6] = array("Bridges", false, "interfaces_bridge.php");
+ $tab_array[7] = array("LAGG", false, "interfaces_lagg.php");
+ display_top_tabs($tab_array);
+?>
+ </td></tr>
+<tr>
+ <td>
+ <div id="mainarea">
+ <table class="tabcont" width="100%" border="0" cellpadding="0" cellspacing="0">
+
+<tr>
+ <td width="15%" class="listhdrr">Name</td>
+ <td width="35%" class="listhdrr">Members</td>
+ <td width="25%" class="listhdr">Description</td>
+ <td width="5%" class="list"></td>
+</tr>
+ <?php if (count ($a_ifgroups)):
+ $i = 0; foreach ($a_ifgroups as $ifgroupentry): ?>
+<tr>
+ <td class="listlr" ondblclick="document.location='interfaces_groups_edit.php?id=<?=$i;?>';">
+ <?=htmlspecialchars($ifgroupentry['ifname']);?>
+ </td>
+ <td class="listr" ondblclick="document.location='interfaces_groups_edit.php?id=<?=$i;?>';">
+ <?php
+ $members_arr = array_slice(explode(" ", $ifgroupentry['members']), 0, 10);
+ $iflist = get_configured_interface_with_descr();
+ foreach ($members_arr as $memb)
+ $memberses_arr[] = $iflist[$memb] ? $iflist[$memb] : $memb;
+ $memberses = implode(", ", $memberses_arr);
+ echo $memberses;
+ if(count($members_arr) < 10) {
+ echo " ";
+ } else {
+ echo "...";
+ }
+ ?>
+ </td>
+ <td class="listbg" ondblclick="document.location='interfaces_groups_edit.php?id=<?=$i;?>';">
+ <?=htmlspecialchars($ifgroupentry['descr']);?>&nbsp;
+ </td>
+ <td valign="middle" nowrap class="list">
+ <table border="0" cellspacing="0" cellpadding="1">
+ <tr>
+ <td valign="middle"><a href="interfaces_groups_edit.php?id=<?=$i;?>"><img src="/themes/<?= $g['theme']; ?>/images/icons/icon_e.gif" width="17" height="17" border="0" title="edit group"></a></td>
+ <td><a href="interfaces_ifgroups.php?act=del&id=<?=$i;?>" onclick="return confirm('Do you really want to delete this group? All elements that still use it will become invalid (e.g. filter rules)!')"><img src="/themes/<?= $g['theme']; ?>/images/icons/icon_x.gif" width="17" height="17" border="0" title="delete ifgroupentry"></a></td>
+ </tr>
+ </table>
+ </td>
+</tr>
+ <?php $i++; endforeach; endif;?>
+<tr>
+ <td class="list" colspan="3"></td>
+ <td class="list">
+ <table border="0" cellspacing="0" cellpadding="1">
+ <tr>
+ <td valign="middle" width="17">&nbsp;</td>
+ <td valign="middle"><a href="interfaces_groups_edit.php"><img src="/themes/<?= $g['theme']; ?>/images/icons/icon_plus.gif" width="17" height="17" border="0" title="add a new group"></a></td>
+ </td>
+ </tr>
+ </table>
+ </td>
+</tr>
+<tr>
+ <td class="tabcont" colspan="3">
+ <p><span class="vexpl"><span class="red"><strong>Note:<br></strong></span>Interface Groups allow you to create rules that apply to multiple interface at once. If you remove members from an interface group the rules do not apply anymore to that interface.</span></p>
+ </td>
+</tr>
+ </table>
+ </div>
+ </td>
+</tr>
+</table>
+<?php include("fend.inc"); ?>
+</body>
+</html>
diff --git a/usr/local/www/interfaces_groups_edit.php b/usr/local/www/interfaces_groups_edit.php
new file mode 100755
index 0000000..1044bed
--- /dev/null
+++ b/usr/local/www/interfaces_groups_edit.php
@@ -0,0 +1,274 @@
+<?php
+/*
+ Copyright (C) 2009 Ermal Luçi
+ Copyright (C) 2004 Scott Ullrich
+ All rights reserved.
+
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are met:
+
+ 1. Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+
+ 2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+
+ THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
+ INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
+ AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
+ AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
+ OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ POSSIBILITY OF SUCH DAMAGE.
+*/
+
+##|+PRIV
+##|*IDENT=page-interfacess-groups
+##|*NAME=Interfaces: Groups: Edit page
+##|*DESCR=Edit Interface groups
+##|*MATCH=interfaces_groups_edit.php*
+##|-PRIV
+
+
+$pgtitle = array("Interfaces","Groups", "Edit");
+
+require("guiconfig.inc");
+
+if (!is_array($config['ifgroups']['ifgroupentry']))
+ $config['ifgroups']['ifgroupentry'] = array();
+
+$a_ifgroups = &$config['ifgroups']['ifgroupentry'];
+
+$id = $_GET['id'];
+if (isset($_POST['id']))
+ $id = $_POST['id'];
+
+if (isset($id) && $a_ifgroups[$id]) {
+ $pconfig['ifname'] = $a_ifgroups[$id]['ifname'];
+ $pconfig['members'] = $a_ifgroups[$id]['members'];
+ $pconfig['descr'] = html_entity_decode($a_ifgroups[$id]['descr']);
+
+}
+
+if ($_POST) {
+
+ unset($input_errors);
+ $pconfig = $_POST;
+
+ foreach ($a_ifgroups as $groupentry)
+ if ($groupentry['ifname'] == $_POST['ifname'])
+ $input_errors[] = "Group name already exists!";
+
+ $ifgroupentry = array();
+ $ifgroupentry['ifname'] = $_POST['ifname'];
+ $members = "";
+ $isfirst = 0;
+ /* item is a normal ifgroupentry type */
+ for($x=0; $x<9999; $x++) {
+ if($_POST["members{$x}"] <> "") {
+ if ($isfirst > 0)
+ $members .= " ";
+ $members .= $_POST["members{$x}"];
+ $isfirst++;
+ }
+ }
+
+ if (!$input_errors) {
+ $ifgroupentry['members'] = $members;
+ $ifgroupentry['descr'] = mb_convert_encoding($_POST['descr'],"HTML-ENTITIES","auto");
+
+ if (isset($id) && $a_ifgroups[$id])
+ $a_ifgroups[$id] = $ifgroupentry;
+ else
+ $a_ifgroups[] = $ifgroupentry;
+
+ write_config();
+
+ header("Location: interfaces_groups.php");
+ exit;
+ } else {
+ $pconfig['descr'] = mb_convert_encoding($_POST['descr'],"HTML-ENTITIES","auto");
+ $pconfig['members'] = $members;
+ }
+}
+
+include("head.inc");
+
+?>
+
+<body link="#0000CC" vlink="#0000CC" alink="#0000CC" onload="<?= $jsevents["body"]["onload"] ?>">
+<?php
+ include("fbegin.inc");
+?>
+
+<script type="text/javascript">
+// Global Variables
+var rowname = new Array(9999);
+var rowtype = new Array(9999);
+var newrow = new Array(9999);
+var rowsize = new Array(9999);
+
+for (i = 0; i < 9999; i++) {
+ rowname[i] = '';
+ rowtype[i] = 'select';
+ newrow[i] = '';
+ rowsize[i] = '30';
+}
+
+var field_counter_js = 0;
+var loaded = 0;
+var is_streaming_progress_bar = 0;
+var temp_streaming_text = "";
+
+var addRowTo = (function() {
+ return (function (tableId) {
+ var d, tbody, tr, td, bgc, i, ii, j;
+ d = document;
+ tbody = d.getElementById(tableId).getElementsByTagName("tbody").item(0);
+ tr = d.createElement("tr");
+ for (i = 0; i < field_counter_js; i++) {
+ td = d.createElement("td");
+ <?php
+ $innerHTML="\"<INPUT type='hidden' value='\" + totalrows +\"' name='\" + rowname[i] + \"_row-\" + totalrows + \"'></input><select size='1' name='\" + rowname[i] + totalrows + \"'>\" +\"";
+
+ $iflist = get_configured_interface_with_descr();
+ foreach ($iflist as $ifnam => $ifdescr)
+ $innerHTML .= "<option value={$ifnam}>{$ifdescr}</option>";
+ $innerHTML .= "</select>\";";
+ ?>
+ td.innerHTML=<?=$innerHTML;?>
+ tr.appendChild(td);
+ }
+ td = d.createElement("td");
+ td.rowSpan = "1";
+
+ td.innerHTML = '<input type="image" src="/themes/' + theme + '/images/icons/icon_x.gif" onclick="removeRow(this);return false;" value="Delete">';
+ tr.appendChild(td);
+ tbody.appendChild(tr);
+ totalrows++;
+ });
+})();
+
+function removeRow(el) {
+ var cel;
+ while (el && el.nodeName.toLowerCase() != "tr")
+ el = el.parentNode;
+
+ if (el && el.parentNode) {
+ cel = el.getElementsByTagName("td").item(0);
+ el.parentNode.removeChild(el);
+ }
+}
+
+ rowname[0] = "members";
+ rowtype[0] = "textbox";
+ rowsize[0] = "30";
+
+ rowname[2] = "detail";
+ rowtype[2] = "textbox";
+ rowsize[2] = "50";
+</script>
+<input type='hidden' name='members_type' value='textbox' class="formfld unknown" />
+
+<?php if ($input_errors) print_input_errors($input_errors); ?>
+<div id="inputerrors"></div>
+
+<form action="interfaces_groups_edit.php" method="post" name="iform" id="iform">
+<table width="100%" border="0" cellpadding="6" cellspacing="0">
+ <tr>
+ <td colspan="2" valign="top" class="listtopic">Interface Groups Edit</td>
+ </tr>
+ <tr>
+ <td valign="top" class="vncellreq">Interface</td>
+ <td class="vtable">
+ <input class="formfld unknown" name="ifname" id="ifname" value="<?=$pconfig['ifname'];?>" />
+ </td>
+ </tr>
+ <tr>
+ <td width="22%" valign="top" class="vncell">Description</td>
+ <td width="78%" class="vtable">
+ <input name="descr" type="text" class="formfld unknown" id="descr" size="40" value="<?=$pconfig['descr'];?>" />
+ <br />
+ <span class="vexpl">
+ You may enter a description here for your reference (not parsed).
+ </span>
+ </td>
+ </tr>
+ <tr>
+ <td width="22%" valign="top" class="vncellreq"><div id="membersnetworkport">Member (s)</div></td>
+ <td width="78%" class="vtable">
+ <table id="maintable">
+ <tbody>
+ <tr>
+ <td><div id="onecolumn">Interface</div></td>
+ </tr>
+
+ <?php
+ $counter = 0;
+ $members = $pconfig['members'];
+ if ($members <> "") {
+ $item = explode(" ", $members);
+ foreach($item as $ww) {
+ $members = $item[$counter];
+ $tracker = $counter;
+ ?>
+ <tr>
+ <td class="vtable">
+ <select name="members<?php echo $tracker; ?>" class="formselect" id="members<?php echo $tracker; ?>">
+ <?php
+ foreach ($iflist as $ifnam => $ifdescr) {
+ echo "<option value={$ifnam}";
+ if ($ifnam == $members)
+ echo " selected";
+ echo ">{$ifdescr}</option>";
+ }
+ ?>
+ </select>
+ </td>
+ <td>
+ <input type="image" src="/themes/<?echo $g['theme'];?>/images/icons/icon_x.gif" onclick="removeRow(this); return false;" value="Delete" />
+ </td>
+ </tr>
+<?php
+ $counter++;
+
+ } // end foreach
+ } // end if
+?>
+ </tbody>
+ <tfoot>
+
+ </tfoot>
+ </table>
+ <a onclick="javascript:addRowTo('maintable'); return false;" href="#">
+ <img border="0" src="/themes/<?= $g['theme']; ?>/images/icons/icon_plus.gif" alt="" title="add another entry" />
+ </a>
+ </td>
+ </tr>
+ <tr>
+ <td width="22%" valign="top">&nbsp;</td>
+ <td width="78%">
+ <input id="submit" name="submit" type="submit" class="formbtn" value="Save" />
+ <a href="interfaces_groups.php"><input id="cancelbutton" name="cancelbutton" type="button" class="formbtn" value="Cancel" /></a>
+ <?php if (isset($id) && $a_ifgroups[$id]): ?>
+ <input name="id" type="hidden" value="<?=$id;?>" />
+ <?php endif; ?>
+ </td>
+ </tr>
+</table>
+</form>
+
+<script type="text/javascript">
+ field_counter_js = 1;
+ rows = 1;
+ totalrows = <?php echo $counter; ?>;
+ loaded = <?php echo $counter; ?>;
+</script>
+
+<?php include("fend.inc"); ?>
+</body>
+</html>
diff --git a/usr/local/www/interfaces_lagg.php b/usr/local/www/interfaces_lagg.php
index 27a21d7..fd46c9c 100644
--- a/usr/local/www/interfaces_lagg.php
+++ b/usr/local/www/interfaces_lagg.php
@@ -76,12 +76,13 @@ include("head.inc");
<?php
$tab_array = array();
$tab_array[0] = array("Interface assignments", false, "interfaces_assign.php");
- $tab_array[1] = array("VLANs", false, "interfaces_vlan.php");
- $tab_array[2] = array("PPP", false, "interfaces_ppp.php");
- $tab_array[3] = array("GRE", false, "interfaces_gre.php");
- $tab_array[4] = array("GIF", false, "interfaces_gif.php");
- $tab_array[5] = array("Bridges", false, "interfaces_bridge.php");
- $tab_array[6] = array("LAGG", true, "interfaces_lagg.php");
+ $tab_array[1] = array("Interface Groups", false, "interfaces_groups.php");
+ $tab_array[2] = array("VLANs", false, "interfaces_vlan.php");
+ $tab_array[3] = array("PPP", false, "interfaces_ppp.php");
+ $tab_array[4] = array("GRE", false, "interfaces_gre.php");
+ $tab_array[5] = array("GIF", false, "interfaces_gif.php");
+ $tab_array[6] = array("Bridges", false, "interfaces_bridge.php");
+ $tab_array[7] = array("LAGG", true, "interfaces_lagg.php");
display_top_tabs($tab_array);
?>
</td></tr>
diff --git a/usr/local/www/interfaces_ppp.php b/usr/local/www/interfaces_ppp.php
index 2ad7e1d..b258762 100644
--- a/usr/local/www/interfaces_ppp.php
+++ b/usr/local/www/interfaces_ppp.php
@@ -98,12 +98,13 @@ include("head.inc");
<?php
$tab_array = array();
$tab_array[0] = array("Interface assignments", false, "interfaces_assign.php");
- $tab_array[1] = array("VLANs", false, "interfaces_vlan.php");
- $tab_array[2] = array("PPP", true, "interfaces_ppp.php");
- $tab_array[3] = array("GRE", false, "interfaces_gre.php");
- $tab_array[4] = array("GIF", false, "interfaces_gif.php");
- $tab_array[5] = array("Bridges", false, "interfaces_bridge.php");
- $tab_array[6] = array("LAGG", false, "interfaces_lagg.php");
+ $tab_array[1] = array("Interface Groups", false, "interfaces_groups.php");
+ $tab_array[2] = array("VLANs", false, "interfaces_vlan.php");
+ $tab_array[3] = array("PPP", true, "interfaces_ppp.php");
+ $tab_array[4] = array("GRE", false, "interfaces_gre.php");
+ $tab_array[5] = array("GIF", false, "interfaces_gif.php");
+ $tab_array[6] = array("Bridges", false, "interfaces_bridge.php");
+ $tab_array[7] = array("LAGG", false, "interfaces_lagg.php");
display_top_tabs($tab_array);
?>
</td></tr>
diff --git a/usr/local/www/interfaces_vlan.php b/usr/local/www/interfaces_vlan.php
index b7f7a50..f8bf3f3 100755
--- a/usr/local/www/interfaces_vlan.php
+++ b/usr/local/www/interfaces_vlan.php
@@ -85,12 +85,13 @@ include("head.inc");
<?php
$tab_array = array();
$tab_array[0] = array("Interface assignments", false, "interfaces_assign.php");
- $tab_array[1] = array("VLANs", true, "interfaces_vlan.php");
- $tab_array[2] = array("PPP", false, "interfaces_ppp.php");
- $tab_array[3] = array("GRE", false, "interfaces_gre.php");
- $tab_array[4] = array("GIF", false, "interfaces_gif.php");
- $tab_array[5] = array("Bridges", false, "interfaces_bridge.php");
- $tab_array[6] = array("LAGG", false, "interfaces_lagg.php");
+ $tab_array[1] = array("Interface Groups", false, "interfaces_groups.php");
+ $tab_array[2] = array("VLANs", true, "interfaces_vlan.php");
+ $tab_array[3] = array("PPP", false, "interfaces_ppp.php");
+ $tab_array[4] = array("GRE", false, "interfaces_gre.php");
+ $tab_array[5] = array("GIF", false, "interfaces_gif.php");
+ $tab_array[6] = array("Bridges", false, "interfaces_bridge.php");
+ $tab_array[7] = array("LAGG", false, "interfaces_lagg.php");
display_top_tabs($tab_array);
?>
</td></tr>
OpenPOWER on IntegriCloud