Project

General

Profile

Download (5.95 KB) Statistics
| Branch: | Tag: | Revision:
1 94be2ccf Ermal Luçi
<?php
2
/*
3 aaec5634 Renato Botelho
 * interfaces_lagg.php
4 b9043cdc Stephen Beaver
 *
5 aaec5634 Renato Botelho
 * part of pfSense (https://www.pfsense.org)
6
 * Copyright (c) 2004-2016 Electric Sheep Fencing, LLC
7
 * All rights reserved.
8 b9043cdc Stephen Beaver
 *
9 aaec5634 Renato Botelho
 * Redistribution and use in source and binary forms, with or without
10
 * modification, are permitted provided that the following conditions are met:
11 b9043cdc Stephen Beaver
 *
12 aaec5634 Renato Botelho
 * 1. Redistributions of source code must retain the above copyright notice,
13
 *    this list of conditions and the following disclaimer.
14 b9043cdc Stephen Beaver
 *
15 aaec5634 Renato Botelho
 * 2. Redistributions in binary form must reproduce the above copyright
16
 *    notice, this list of conditions and the following disclaimer in
17
 *    the documentation and/or other materials provided with the
18
 *    distribution.
19 b9043cdc Stephen Beaver
 *
20 aaec5634 Renato Botelho
 * 3. All advertising materials mentioning features or use of this software
21
 *    must display the following acknowledgment:
22
 *    "This product includes software developed by the pfSense Project
23
 *    for use in the pfSense® software distribution. (http://www.pfsense.org/).
24 b9043cdc Stephen Beaver
 *
25 aaec5634 Renato Botelho
 * 4. The names "pfSense" and "pfSense Project" must not be used to
26
 *    endorse or promote products derived from this software without
27
 *    prior written permission. For written permission, please contact
28
 *    coreteam@pfsense.org.
29 b9043cdc Stephen Beaver
 *
30 aaec5634 Renato Botelho
 * 5. Products derived from this software may not be called "pfSense"
31
 *    nor may "pfSense" appear in their names without prior written
32
 *    permission of the Electric Sheep Fencing, LLC.
33 b9043cdc Stephen Beaver
 *
34 aaec5634 Renato Botelho
 * 6. Redistributions of any form whatsoever must retain the following
35
 *    acknowledgment:
36 b9043cdc Stephen Beaver
 *
37 aaec5634 Renato Botelho
 * "This product includes software developed by the pfSense Project
38
 * for use in the pfSense software distribution (http://www.pfsense.org/).
39 b9043cdc Stephen Beaver
 *
40 aaec5634 Renato Botelho
 * THIS SOFTWARE IS PROVIDED BY THE pfSense PROJECT ``AS IS'' AND ANY
41
 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
43
 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE pfSense PROJECT OR
44
 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
45
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
46
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
47
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
49
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
50
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
51
 * OF THE POSSIBILITY OF SUCH DAMAGE.
52 b9043cdc Stephen Beaver
 */
53 7ac5a4cb Scott Ullrich
54
##|+PRIV
55 7997ed44 Renato Botelho
##|*IDENT=page-interfaces-lagg
56 5230f468 jim-p
##|*NAME=Interfaces: LAGG:
57 7997ed44 Renato Botelho
##|*DESCR=Allow access to the 'Interfaces: LAGG' page.
58 7ac5a4cb Scott Ullrich
##|*MATCH=interfaces_lagg.php*
59
##|-PRIV
60 94be2ccf Ermal Luçi
61 aceaf18c Phil Davis
require_once("guiconfig.inc");
62 94be2ccf Ermal Luçi
63 2af86dda Phil Davis
if (!is_array($config['laggs']['lagg'])) {
64 94be2ccf Ermal Luçi
	$config['laggs']['lagg'] = array();
65 2af86dda Phil Davis
}
66 94be2ccf Ermal Luçi
67
$a_laggs = &$config['laggs']['lagg'] ;
68
69
function lagg_inuse($num) {
70 67b6de9e Ermal Lu?i
	global $config, $a_laggs;
71 94be2ccf Ermal Luçi
72
	$iflist = get_configured_interface_list(false, true);
73
	foreach ($iflist as $if) {
74 2af86dda Phil Davis
		if ($config['interfaces'][$if]['if'] == $a_laggs[$num]['laggif']) {
75 94be2ccf Ermal Luçi
			return true;
76 2af86dda Phil Davis
		}
77 94be2ccf Ermal Luçi
	}
78
79 67b6de9e Ermal Lu?i
	if (is_array($config['vlans']['vlan']) && count($config['vlans']['vlan'])) {
80 2af86dda Phil Davis
		foreach ($config['vlans']['vlan'] as $vlan) {
81
			if ($vlan['if'] == $a_laggs[$num]['laggif']) {
82 67b6de9e Ermal Lu?i
				return true;
83 fb455ab4 Sjon Hortensius
			}
84 2af86dda Phil Davis
		}
85 fb455ab4 Sjon Hortensius
	}
86 94be2ccf Ermal Luçi
	return false;
87
}
88
89
if ($_GET['act'] == "del") {
90 2af86dda Phil Davis
	if (!isset($_GET['id'])) {
91
		$input_errors[] = gettext("Wrong parameters supplied");
92
	} else if (empty($a_laggs[$_GET['id']])) {
93
		$input_errors[] = gettext("Wrong index supplied");
94 94be2ccf Ermal Luçi
	/* check if still in use */
95 2af86dda Phil Davis
	} else if (lagg_inuse($_GET['id'])) {
96 b705a25b Carlos Eduardo Ramos
		$input_errors[] = gettext("This LAGG interface cannot be deleted because it is still being used.");
97 94be2ccf Ermal Luçi
	} else {
98 67b6de9e Ermal Lu?i
		mwexec_bg("/sbin/ifconfig " . $a_laggs[$_GET['id']]['laggif'] . " destroy");
99 94be2ccf Ermal Luçi
		unset($a_laggs[$_GET['id']]);
100
101
		write_config();
102
103
		header("Location: interfaces_lagg.php");
104
		exit;
105
	}
106
}
107
108 26b4bef8 k-paulius
$pgtitle = array(gettext("Interfaces"), gettext("LAGGs"));
109 b32dd0a6 jim-p
$shortcut_section = "interfaces";
110 94be2ccf Ermal Luçi
include("head.inc");
111
112 aa82505e Phil Davis
if ($input_errors) {
113 620e28a7 sbeaver
	print_input_errors($input_errors);
114 aa82505e Phil Davis
}
115 620e28a7 sbeaver
116
$tab_array = array();
117 26b4bef8 k-paulius
$tab_array[] = array(gettext("Interface Assignments"), false, "interfaces_assign.php");
118 fb455ab4 Sjon Hortensius
$tab_array[] = array(gettext("Interface Groups"), false, "interfaces_groups.php");
119
$tab_array[] = array(gettext("Wireless"), false, "interfaces_wireless.php");
120
$tab_array[] = array(gettext("VLANs"), false, "interfaces_vlan.php");
121
$tab_array[] = array(gettext("QinQs"), false, "interfaces_qinq.php");
122
$tab_array[] = array(gettext("PPPs"), false, "interfaces_ppps.php");
123 26b4bef8 k-paulius
$tab_array[] = array(gettext("GREs"), false, "interfaces_gre.php");
124
$tab_array[] = array(gettext("GIFs"), false, "interfaces_gif.php");
125 fb455ab4 Sjon Hortensius
$tab_array[] = array(gettext("Bridges"), false, "interfaces_bridge.php");
126 26b4bef8 k-paulius
$tab_array[] = array(gettext("LAGGs"), true, "interfaces_lagg.php");
127 620e28a7 sbeaver
display_top_tabs($tab_array);
128 94be2ccf Ermal Luçi
?>
129 060ed238 Stephen Beaver
<div class="panel panel-default">
130 70dc5cd6 Phil Davis
	<div class="panel-heading"><h2 class="panel-title"><?=gettext('LAGG Interfaces')?></h2></div>
131 060ed238 Stephen Beaver
	<div class="panel-body">
132
		<div class="table-responsive">
133 91677170 PiBa-NL
			<table class="table table-striped table-hover table-condensed table-rowdblclickedit">
134 060ed238 Stephen Beaver
				<thead>
135
					<tr>
136 70dc5cd6 Phil Davis
						<th><?=gettext("Interface"); ?></th>
137
						<th><?=gettext("Members"); ?></th>
138
						<th><?=gettext("Description"); ?></th>
139
						<th><?=gettext("Actions"); ?></th>
140 060ed238 Stephen Beaver
					</tr>
141
				</thead>
142
				<tbody>
143 620e28a7 sbeaver
<?php
144
145
$i = 0;
146 94be2ccf Ermal Luçi
147 620e28a7 sbeaver
foreach ($a_laggs as $lagg) {
148
?>
149 060ed238 Stephen Beaver
					<tr>
150
						<td>
151
							<?=htmlspecialchars(strtoupper($lagg['laggif']))?>
152
						</td>
153
						<td>
154
							<?=htmlspecialchars($lagg['members'])?>
155
						</td>
156
						<td>
157
							<?=htmlspecialchars($lagg['descr'])?>
158
						</td>
159
						<td>
160
							<a class="fa fa-pencil"	title="<?=gettext('Edit LAGG interface')?>"	href="interfaces_lagg_edit.php?id=<?=$i?>"></a>
161
							<a class="fa fa-trash"	title="<?=gettext('Delete LAGG interface')?>"	href="interfaces_lagg.php?act=del&amp;id=<?=$i?>"></a>
162
						</td>
163
					</tr>
164 94be2ccf Ermal Luçi
<?php
165 620e28a7 sbeaver
	$i++;
166
}
167 94be2ccf Ermal Luçi
?>
168 060ed238 Stephen Beaver
				</tbody>
169
			</table>
170
		</div>
171
	</div>
172 620e28a7 sbeaver
</div>
173 060ed238 Stephen Beaver
174
 <nav class="action-buttons">
175
	<a href="interfaces_lagg_edit.php" class="btn btn-success btn-sm">
176
		<i class="fa fa-plus icon-embed-btn"></i>
177
		<?=gettext("Add")?>
178
	</a>
179
</nav>
180
181 620e28a7 sbeaver
<?php
182
include("foot.inc");