From b991e3b54ffaa67f39add10783d7a0fd0ea67d46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ermal=20Lu=E7i?= Date: Sun, 29 Mar 2009 21:18:34 +0000 Subject: Add GUI pages for QinQ missed in previous commit. --- usr/local/www/interfaces_qinq.php | 153 +++++++++++++ usr/local/www/interfaces_qinq_edit.php | 406 +++++++++++++++++++++++++++++++++ 2 files changed, 559 insertions(+) create mode 100755 usr/local/www/interfaces_qinq.php create mode 100755 usr/local/www/interfaces_qinq_edit.php (limited to 'usr') diff --git a/usr/local/www/interfaces_qinq.php b/usr/local/www/interfaces_qinq.php new file mode 100755 index 0000000..f14d91a --- /dev/null +++ b/usr/local/www/interfaces_qinq.php @@ -0,0 +1,153 @@ +. + 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-qinq +##|*NAME=Interfaces: QinQ page +##|*DESCR=Allow access to the 'Interfaces: QinQ' page. +##|*MATCH=interfaces_qinq.php* +##|-PRIV + + +require("guiconfig.inc"); + +if (!is_array($config['qinqs']['qinqentry'])) + $config['qinqs']['qinqentry'] = array(); + +$a_qinqs = &$config['qinqs']['qinqentry']; + +function qinq_inuse($num) { + global $config, $g; + + $iflist = get_configured_interface_list(false, true); + foreach ($iflist as $if) { + if ($config['interfaces'][$if]['if'] == $a_qinqs[$num]['qinqif']) + return true; + } + + return false; +} + +if ($_GET['act'] == "del") { + /* check if still in use */ + if (qinq_inuse($_GET['id'])) { + $input_errors[] = "This QinQ cannot be deleted because it is still being used as an interface."; + } else { + $id = $_GET['id']; + $qinq =& $a_qinqs[$id]; + + $delmembers = explode(" ", $qinq['members']); + if (count($delmembers) > 0) { + foreach ($delmembers as $tag) + mwexec("/usr/sbin/ngctl shutdown vlan{$qinq['tag']}h{$tag}:"); + } + mwexec("/usr/sbin/ngctl shutdown {$qinq['if']}qinq:"); + unset($a_qinqs[$id]); + + write_config(); + + header("Location: interfaces_qinq.php"); + exit; + } +} + + +$pgtitle = array("Interfaces","QinQ"); +include("head.inc"); + +?> + + + + + + + + + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + +
InterfaceTagQinQ membersDescription
+ + + + + + +   + +  
 

+ Note:
+
+ Not all drivers/NICs support 802.1Q QinQ tagging properly. On cards that do not explicitly support it, QinQ tagging will still work, but the reduced MTU may cause problems. See the handbook for information on supported cards.

+
 
+
+
+ + + diff --git a/usr/local/www/interfaces_qinq_edit.php b/usr/local/www/interfaces_qinq_edit.php new file mode 100755 index 0000000..aed5d0e --- /dev/null +++ b/usr/local/www/interfaces_qinq_edit.php @@ -0,0 +1,406 @@ + "") { + $member = explode("-", $_POST["members{$x}"]); + if (count($member) > 1) { + if (preg_match("/([^0-9])+/", $member[0], $match) || + preg_match("/([^0-9])+/", $member[1], $match)) + $input_errors[] = "Tags can contain only numbers or a range in format #-#."; + + for ($i = $member[0]; $i < $member[1]; $i++) { + if ($isfirst > 0) + $members .= " "; + $members .= $i; + $isfirst++; + } + } else { + if (preg_match("/([^0-9])+/", $_POST["members{$x}"], $match)) + $input_errors[] = "Tags can contain only numbers or a range in format #-#."; + + if ($isfirst > 0) + $members .= " "; + $members .= $_POST["members{$x}"]; + $isfirst++; + } + } + } + + if (!$input_errors) { + $qinqentry['members'] = $members; + $qinqentry['descr'] = mb_convert_encoding($_POST['descr'],"HTML-ENTITIES","auto"); + $qinqentry['vlanif'] = "vlan{$_POST['tag']}"; + $nmembers = explode(" ", $members); + + if (isset($id) && $a_qinqs[$id]) { + $omembers = explode(" ", $a_qinqs[$id]['members']); + $delmembers = array_diff($omembers, $nmembers); + if (count($delmembers) > 0) { + foreach ($delmembers as $tag) { + mwexec("/usr/sbin/ngctl shutdown vlan{$_POST['tag']}h{$tag}:"); + mwexec("/usr/sbin/ngctl msg vlan{$_POST['tag']}qinq: delfilter \\\"vlan{$_POST['tag']}{$tag}\\\""); + } + } + $addmembers = array_diff($nmembers, $omembers); + if (count($addmembers) > 0) { + foreach ($addmembers as $member) { + $vlan = array(); + $vlan['if'] = "vlan{$_POST['tag']}"; + $vlan['tag'] = $member; + interface_qinq2_configure($vlan); + } + } + $a_qinqs[$id] = $qinqentry; + } else { + interface_qinq_configure($qinqentry); + $a_qinqs[] = $qinqentry; + } + if ($_POST['autogroup'] == "yes") { + if (!is_array($config['ifgroups']['ifgroupentry'])) + $config['ifgroups']['ifgroupentry'] = array(); + foreach ($config['ifgroups']['ifgroupentry'] as $gid => $group) { + if ($group['ifname'] == "QinQ") { + $found = true; + break; + } + } + $additions = ""; + foreach($nmembers as $qtag) + $additions .= "vlan{$qinqentry['tag']}_{$qtag} "; + $additions .= "vlan{$qinqentry['tag']} "; + if ($found == true) + $config['ifgroups']['ifgroupentry'][$gid]['members'] .= " {$additions}"; + else { + $gentry = array(); + $gentry['ifname'] = "QinQ"; + $gentry['members'] = "{$additions}"; + $gentry['descr'] = "QinQ VLANs group"; + $config['ifgroup']['ifgroupentry'][] = $gentry; + } + } + + write_config(); + + header("Location: interfaces_qinq.php"); + exit; + } else { + $pconfig['descr'] = mb_convert_encoding($_POST['descr'],"HTML-ENTITIES","auto"); + $pconfig['tag'] = $_POST['tag']; + $pconfig['members'] = $members; + } +} + +include("head.inc"); + +?> + +"> + + + + + + +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Interface QinQ Edit
Parent interface + +
+ Only QinQ capable interfaces will be shown.
First level tag + +
+ + This is the first level VLAN tag. On top of this are stacked the member VLANs defined below. + +
Options + +
+ /> + Auto assign interface so it can be configured with ip etc... +
+ /> + Auto enable interface so it can be used on filter rules. +
+ > + Allows to keep clients mtu unchanged(1500).
NOTE: if you are using jumbo frames this option is not needed and may produce incorrect results!
+ +
+ > + Adds interface to QinQ interface groups so you can write filter rules easily. +
Description + +
+ + You may enter a description here for your reference (not parsed). + +
Member (s)
+ + + + + + + "") { + $item = explode(" ", $members); + foreach($item as $ww) { + $members = $item[$counter]; + $tracker = $counter; + ?> + + + + + + + + + +
Tag
+ + + +
+ + + +
  + + + + + +
+
+ + + + + + -- cgit v1.1