Project

General

Profile

Download (6.01 KB) Statistics
| Branch: | Tag: | Revision:
1 648ec0c2 Ermal Luçi
<?php
2
/* $Id$ */
3
/*
4
	interfaces_bridge.php
5
*/
6 b9043cdc Stephen Beaver
/* ====================================================================
7
 *	Copyright (c)  2004-2015  Electric Sheep Fencing, LLC. All rights reserved.
8
 *
9
 *	Redistribution and use in source and binary forms, with or without modification,
10
 *	are permitted provided that the following conditions are met:
11
 *
12
 *	1. Redistributions of source code must retain the above copyright notice,
13
 *		this list of conditions and the following disclaimer.
14
 *
15
 *	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
 *
20
 *	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
 *
25
 *	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
 *
30
 *	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
 *
34
 *	6. Redistributions of any form whatsoever must retain the following
35
 *		acknowledgment:
36
 *
37
 *	"This product includes software developed by the pfSense Project
38
 *	for use in the pfSense software distribution (http://www.pfsense.org/).
39
 *
40
 *	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
 *
53
 *	====================================================================
54
 *
55
 */
56 7ac5a4cb Scott Ullrich
/*
57
	pfSense_BUILDER_BINARIES:	/bin/rm
58 34998435 sbeaver
	pfSense_MODULE: interfaces_assign
59 7ac5a4cb Scott Ullrich
*/
60 648ec0c2 Ermal Luçi
61 ea9828af Ermal Lu?i
##|+PRIV
62
##|*IDENT=page-interfaces-bridge
63
##|*NAME=Interfaces: Bridge page
64
##|*DESCR=Allow access to the 'Interfaces: Bridge' page.
65
##|*MATCH=interfaces_bridge.php*
66
##|-PRIV
67
68 648ec0c2 Ermal Luçi
require("guiconfig.inc");
69
70 2af86dda Phil Davis
if (!is_array($config['bridges']['bridged'])) {
71 3134528d Ermal Luçi
	$config['bridges']['bridged'] = array();
72 2af86dda Phil Davis
}
73 648ec0c2 Ermal Luçi
74 3134528d Ermal Luçi
$a_bridges = &$config['bridges']['bridged'] ;
75 648ec0c2 Ermal Luçi
76 9c17db74 Erik Fonnesbeck
function bridge_inuse($num) {
77 c059940b Erik Fonnesbeck
	global $config, $a_bridges;
78 648ec0c2 Ermal Luçi
79
	$iflist = get_configured_interface_list(false, true);
80 461f8fd1 sbeaver
81 648ec0c2 Ermal Luçi
	foreach ($iflist as $if) {
82 2af86dda Phil Davis
		if ($config['interfaces'][$if]['if'] == $a_bridges[$num]['bridgeif']) {
83 648ec0c2 Ermal Luçi
			return true;
84 2af86dda Phil Davis
		}
85 648ec0c2 Ermal Luçi
	}
86
87
	return false;
88
}
89
90
if ($_GET['act'] == "del") {
91 2af86dda Phil Davis
	if (!isset($_GET['id'])) {
92 b3f0b2e1 Phil Davis
		$input_errors[] = gettext("Wrong parameters supplied");
93 2af86dda Phil Davis
	} else if (empty($a_bridges[$_GET['id']])) {
94 b3f0b2e1 Phil Davis
		$input_errors[] = gettext("Wrong index supplied");
95 648ec0c2 Ermal Luçi
	/* check if still in use */
96 2af86dda Phil Davis
	} else if (bridge_inuse($_GET['id'])) {
97 9cdd5a84 Carlos Eduardo Ramos
		$input_errors[] = gettext("This bridge cannot be deleted because it is assigned as an interface.");
98 648ec0c2 Ermal Luçi
	} else {
99 a5303b6e Chris Buechler
		if (!does_interface_exist($a_bridges[$_GET['id']]['bridgeif'])) {
100
			log_error("Bridge interface does not exist, skipping ifconfig destroy.");
101
		} else {
102
			mwexec("/sbin/ifconfig " . $a_bridges[$_GET['id']]['bridgeif'] . " destroy");
103
		}
104 34998435 sbeaver
105 648ec0c2 Ermal Luçi
		unset($a_bridges[$_GET['id']]);
106
107
		write_config();
108
109
		header("Location: interfaces_bridge.php");
110
		exit;
111
	}
112
}
113
114 9cdd5a84 Carlos Eduardo Ramos
$pgtitle = array(gettext("Interfaces"),gettext("Bridge"));
115 b32dd0a6 jim-p
$shortcut_section = "interfaces";
116 648ec0c2 Ermal Luçi
include("head.inc");
117 34998435 sbeaver
if ($input_errors)
118
	print_input_errors($input_errors); ?>
119 648ec0c2 Ermal Luçi
120 34998435 sbeaver
<?php
121
$tab_array = array();
122 461f8fd1 sbeaver
$tab_array[] = array(gettext("Interface assignments"), false, "interfaces_assign.php");
123
$tab_array[] = array(gettext("Interface Groups"), false, "interfaces_groups.php");
124
$tab_array[] = array(gettext("Wireless"), false, "interfaces_wireless.php");
125
$tab_array[] = array(gettext("VLANs"), false, "interfaces_vlan.php");
126
$tab_array[] = array(gettext("QinQs"), false, "interfaces_qinq.php");
127
$tab_array[] = array(gettext("PPPs"), false, "interfaces_ppps.php");
128
$tab_array[] = array(gettext("GRE"), false, "interfaces_gre.php");
129
$tab_array[] = array(gettext("GIF"), false, "interfaces_gif.php");
130
$tab_array[] = array(gettext("Bridges"), true, "interfaces_bridge.php");
131
$tab_array[] = array(gettext("LAGG"), false, "interfaces_lagg.php");
132 34998435 sbeaver
display_top_tabs($tab_array);
133 648ec0c2 Ermal Luçi
?>
134
135 34998435 sbeaver
<div class="table-responsive">
136
	<table class="table table-striped table-hover table-condensed">
137
		<thead>
138
			<tr>
139
			  <th><?=gettext("Interface"); ?></th>
140
			  <th><?=gettext("Members"); ?></th>
141
			  <th><?=gettext("Description"); ?></th>
142
			  <th></th>
143
			</tr>
144
		</thead>
145
		<tbody>
146 648ec0c2 Ermal Luçi
<?php
147 34998435 sbeaver
148
$i = 0;
149
$ifdescrs = get_configured_interface_with_descr();
150
151
foreach ($a_bridges as $bridge) {
152 648ec0c2 Ermal Luçi
?>
153 461f8fd1 sbeaver
			<tr>
154
				<td>
155 34998435 sbeaver
					<?=htmlspecialchars(strtoupper($bridge['bridgeif']))?>
156
				</td>
157
				<td>
158
<?php
159
	$members = explode(',', $bridge['members']);
160
	$j = 0;
161
	foreach ($members as $member) {
162
		if (isset($ifdescrs[$member])) {
163
			echo $ifdescrs[$member];
164
			$j++;
165
		}
166
		if ($j > 0 && $j < count($members))
167
			echo ", ";
168
	}
169
?>
170
				</td>
171
				<td>
172 77d42518 sbeaver
					<?=htmlspecialchars($bridge['descr'])?>
173 34998435 sbeaver
				</td>
174
				<td>
175 77d42518 sbeaver
					<a href="interfaces_bridge_edit.php?id=<?=$i?>" class="btn btn-default btn-xs"><?=gettext("Edit")?></a>
176
					<a href="interfaces_bridge.php?act=del&amp;id=<?=$i?>" class="btn btn-danger btn-xs"><?=gettext("Delete")?></a>
177 34998435 sbeaver
				</td>
178
			</tr>
179
<?php
180
	$i++;
181
}
182
?>
183
		</tbody>
184
	</table>
185
186 cf46aed2 sbeaver
	<nav class="action-buttons">
187
		<a href="interfaces_bridge_edit.php" class="btn btn-success"><?=gettext("Add")?></a>
188
	</nav>
189 34998435 sbeaver
190
</div>
191
192
<?php include("foot.inc");