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 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 153 insertions(+) create mode 100755 usr/local/www/interfaces_qinq.php (limited to 'usr/local/www/interfaces_qinq.php') 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.

+
 
+
+
+ + + -- cgit v1.1