Project

General

Profile

Download (6.2 KB) Statistics
| Branch: | Tag: | Revision:
1 648ec0c2 Ermal Luçi
<?php
2
/*
3 aaec5634 Renato Botelho
 * interfaces_bridge.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 648ec0c2 Ermal Luçi
54 ea9828af Ermal Lu?i
##|+PRIV
55
##|*IDENT=page-interfaces-bridge
56 5230f468 jim-p
##|*NAME=Interfaces: Bridge
57 ea9828af Ermal Lu?i
##|*DESCR=Allow access to the 'Interfaces: Bridge' page.
58
##|*MATCH=interfaces_bridge.php*
59
##|-PRIV
60
61 aceaf18c Phil Davis
require_once("guiconfig.inc");
62 648ec0c2 Ermal Luçi
63 2af86dda Phil Davis
if (!is_array($config['bridges']['bridged'])) {
64 3134528d Ermal Luçi
	$config['bridges']['bridged'] = array();
65 2af86dda Phil Davis
}
66 648ec0c2 Ermal Luçi
67 3134528d Ermal Luçi
$a_bridges = &$config['bridges']['bridged'] ;
68 648ec0c2 Ermal Luçi
69 9c17db74 Erik Fonnesbeck
function bridge_inuse($num) {
70 c059940b Erik Fonnesbeck
	global $config, $a_bridges;
71 648ec0c2 Ermal Luçi
72
	$iflist = get_configured_interface_list(false, true);
73 461f8fd1 sbeaver
74 648ec0c2 Ermal Luçi
	foreach ($iflist as $if) {
75 2af86dda Phil Davis
		if ($config['interfaces'][$if]['if'] == $a_bridges[$num]['bridgeif']) {
76 648ec0c2 Ermal Luçi
			return true;
77 2af86dda Phil Davis
		}
78 648ec0c2 Ermal Luçi
	}
79
80
	return false;
81
}
82
83
if ($_GET['act'] == "del") {
84 2af86dda Phil Davis
	if (!isset($_GET['id'])) {
85 b3f0b2e1 Phil Davis
		$input_errors[] = gettext("Wrong parameters supplied");
86 2af86dda Phil Davis
	} else if (empty($a_bridges[$_GET['id']])) {
87 b3f0b2e1 Phil Davis
		$input_errors[] = gettext("Wrong index supplied");
88 648ec0c2 Ermal Luçi
	/* check if still in use */
89 2af86dda Phil Davis
	} else if (bridge_inuse($_GET['id'])) {
90 9cdd5a84 Carlos Eduardo Ramos
		$input_errors[] = gettext("This bridge cannot be deleted because it is assigned as an interface.");
91 648ec0c2 Ermal Luçi
	} else {
92 a5303b6e Chris Buechler
		if (!does_interface_exist($a_bridges[$_GET['id']]['bridgeif'])) {
93
			log_error("Bridge interface does not exist, skipping ifconfig destroy.");
94
		} else {
95
			mwexec("/sbin/ifconfig " . $a_bridges[$_GET['id']]['bridgeif'] . " destroy");
96
		}
97 34998435 sbeaver
98 648ec0c2 Ermal Luçi
		unset($a_bridges[$_GET['id']]);
99
100
		write_config();
101
102
		header("Location: interfaces_bridge.php");
103
		exit;
104
	}
105
}
106
107 26b4bef8 k-paulius
$pgtitle = array(gettext("Interfaces"), gettext("Bridges"));
108 b32dd0a6 jim-p
$shortcut_section = "interfaces";
109 648ec0c2 Ermal Luçi
include("head.inc");
110 aa82505e Phil Davis
if ($input_errors) {
111
	print_input_errors($input_errors);
112
}
113 648ec0c2 Ermal Luçi
114 34998435 sbeaver
$tab_array = array();
115 26b4bef8 k-paulius
$tab_array[] = array(gettext("Interface Assignments"), false, "interfaces_assign.php");
116 461f8fd1 sbeaver
$tab_array[] = array(gettext("Interface Groups"), false, "interfaces_groups.php");
117
$tab_array[] = array(gettext("Wireless"), false, "interfaces_wireless.php");
118
$tab_array[] = array(gettext("VLANs"), false, "interfaces_vlan.php");
119
$tab_array[] = array(gettext("QinQs"), false, "interfaces_qinq.php");
120
$tab_array[] = array(gettext("PPPs"), false, "interfaces_ppps.php");
121 26b4bef8 k-paulius
$tab_array[] = array(gettext("GREs"), false, "interfaces_gre.php");
122
$tab_array[] = array(gettext("GIFs"), false, "interfaces_gif.php");
123 461f8fd1 sbeaver
$tab_array[] = array(gettext("Bridges"), true, "interfaces_bridge.php");
124 26b4bef8 k-paulius
$tab_array[] = array(gettext("LAGGs"), false, "interfaces_lagg.php");
125 34998435 sbeaver
display_top_tabs($tab_array);
126 648ec0c2 Ermal Luçi
?>
127 060ed238 Stephen Beaver
<div class="panel panel-default">
128 70dc5cd6 Phil Davis
	<div class="panel-heading"><h2 class="panel-title"><?=gettext('Bridge Interfaces')?></h2></div>
129 060ed238 Stephen Beaver
	<div class="panel-body">
130
		<div class="table-responsive">
131 91677170 PiBa-NL
			<table class="table table-striped table-hover table-condensed table-rowdblclickedit">
132 060ed238 Stephen Beaver
				<thead>
133
					<tr>
134 70dc5cd6 Phil Davis
						<th><?=gettext("Interface"); ?></th>
135
						<th><?=gettext("Members"); ?></th>
136
						<th><?=gettext("Description"); ?></th>
137
						<th><?=gettext("Actions"); ?></th>
138 060ed238 Stephen Beaver
					</tr>
139
				</thead>
140
				<tbody>
141 648ec0c2 Ermal Luçi
<?php
142 34998435 sbeaver
143
$i = 0;
144
$ifdescrs = get_configured_interface_with_descr();
145
146
foreach ($a_bridges as $bridge) {
147 648ec0c2 Ermal Luçi
?>
148 060ed238 Stephen Beaver
					<tr>
149
						<td>
150
							<?=htmlspecialchars(strtoupper($bridge['bridgeif']))?>
151
						</td>
152
						<td>
153 34998435 sbeaver
<?php
154
	$members = explode(',', $bridge['members']);
155
	$j = 0;
156
	foreach ($members as $member) {
157
		if (isset($ifdescrs[$member])) {
158
			echo $ifdescrs[$member];
159
			$j++;
160
		}
161 aa82505e Phil Davis
		if ($j > 0 && $j < count($members)) {
162 34998435 sbeaver
			echo ", ";
163 aa82505e Phil Davis
		}
164 34998435 sbeaver
	}
165
?>
166 060ed238 Stephen Beaver
						</td>
167
						<td>
168
							<?=htmlspecialchars($bridge['descr'])?>
169
						</td>
170
						<td>
171
							<a class="fa fa-pencil"	title="<?=gettext('Edit interface bridge')?>"	href="interfaces_bridge_edit.php?id=<?=$i?>"></a>
172
							<a class="fa fa-trash"	title="<?=gettext('Delete interface bridge')?>"	href="interfaces_bridge.php?act=del&amp;id=<?=$i?>"></a>
173
						</td>
174
					</tr>
175 34998435 sbeaver
<?php
176
	$i++;
177
}
178
?>
179 060ed238 Stephen Beaver
				</tbody>
180
			</table>
181
		</div>
182
	</div>
183 34998435 sbeaver
</div>
184
185 060ed238 Stephen Beaver
<nav class="action-buttons">
186
	<a href="interfaces_bridge_edit.php" class="btn btn-success btn-sm">
187
		<i class="fa fa-plus icon-embed-btn"></i>
188
		<?=gettext("Add")?>
189
	</a>
190
</nav>
191
192 d9cfc587 heper
<?php include("foot.inc");