1 |
9f428275
|
Erik Fonnesbeck
|
<?php
|
2 |
|
|
/*
|
3 |
|
|
interfaces_wireless.php
|
4 |
|
|
*/
|
5 |
b9043cdc
|
Stephen Beaver
|
/* ====================================================================
|
6 |
|
|
* Copyright (c) 2004-2015 Electric Sheep Fencing, LLC. All rights reserved.
|
7 |
cb41dd63
|
Renato Botelho
|
* Copyright (c) 2010 Erik Fonnesbeck
|
8 |
b9043cdc
|
Stephen Beaver
|
*
|
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 |
9f428275
|
Erik Fonnesbeck
|
|
57 |
|
|
##|+PRIV
|
58 |
|
|
##|*IDENT=page-interfaces-wireless
|
59 |
5230f468
|
jim-p
|
##|*NAME=Interfaces: Wireless
|
60 |
9f428275
|
Erik Fonnesbeck
|
##|*DESCR=Allow access to the 'Interfaces: Wireless' page.
|
61 |
|
|
##|*MATCH=interfaces_wireless.php*
|
62 |
|
|
##|-PRIV
|
63 |
|
|
|
64 |
71d3c2f7
|
Phil Davis
|
require_once("guiconfig.inc");
|
65 |
9f428275
|
Erik Fonnesbeck
|
|
66 |
2af86dda
|
Phil Davis
|
if (!is_array($config['wireless'])) {
|
67 |
6ef2297b
|
Erik Fonnesbeck
|
$config['wireless'] = array();
|
68 |
2af86dda
|
Phil Davis
|
}
|
69 |
|
|
if (!is_array($config['wireless']['clone'])) {
|
70 |
9f428275
|
Erik Fonnesbeck
|
$config['wireless']['clone'] = array();
|
71 |
2af86dda
|
Phil Davis
|
}
|
72 |
9f428275
|
Erik Fonnesbeck
|
|
73 |
16120707
|
Erik Fonnesbeck
|
$a_clones = &$config['wireless']['clone'];
|
74 |
9f428275
|
Erik Fonnesbeck
|
|
75 |
16120707
|
Erik Fonnesbeck
|
function clone_inuse($num) {
|
76 |
|
|
global $config, $a_clones;
|
77 |
9f428275
|
Erik Fonnesbeck
|
|
78 |
38b7d47d
|
Erik Fonnesbeck
|
$iflist = get_configured_interface_list(false, true);
|
79 |
28f697ab
|
sbeaver
|
|
80 |
9f428275
|
Erik Fonnesbeck
|
foreach ($iflist as $if) {
|
81 |
2af86dda
|
Phil Davis
|
if ($config['interfaces'][$if]['if'] == $a_clones[$num]['cloneif']) {
|
82 |
9f428275
|
Erik Fonnesbeck
|
return true;
|
83 |
2af86dda
|
Phil Davis
|
}
|
84 |
9f428275
|
Erik Fonnesbeck
|
}
|
85 |
|
|
|
86 |
|
|
return false;
|
87 |
|
|
}
|
88 |
|
|
|
89 |
|
|
if ($_GET['act'] == "del") {
|
90 |
|
|
/* check if still in use */
|
91 |
16120707
|
Erik Fonnesbeck
|
if (clone_inuse($_GET['id'])) {
|
92 |
55344749
|
Rafael Lucas
|
$input_errors[] = gettext("This wireless clone cannot be deleted because it is assigned as an interface.");
|
93 |
9f428275
|
Erik Fonnesbeck
|
} else {
|
94 |
|
|
mwexec("/sbin/ifconfig " . $a_clones[$_GET['id']]['cloneif'] . " destroy");
|
95 |
|
|
unset($a_clones[$_GET['id']]);
|
96 |
|
|
|
97 |
|
|
write_config();
|
98 |
|
|
|
99 |
|
|
header("Location: interfaces_wireless.php");
|
100 |
|
|
exit;
|
101 |
|
|
}
|
102 |
|
|
}
|
103 |
|
|
|
104 |
|
|
|
105 |
6c07db48
|
Phil Davis
|
$pgtitle = array(gettext("Interfaces"), gettext("Wireless"));
|
106 |
b32dd0a6
|
jim-p
|
$shortcut_section = "wireless";
|
107 |
9f428275
|
Erik Fonnesbeck
|
include("head.inc");
|
108 |
|
|
|
109 |
aa82505e
|
Phil Davis
|
if ($input_errors) {
|
110 |
087bfe61
|
NOYB
|
print_input_errors($input_errors);
|
111 |
aa82505e
|
Phil Davis
|
}
|
112 |
719e4eeb
|
sbeaver
|
|
113 |
|
|
$tab_array = array();
|
114 |
26b4bef8
|
k-paulius
|
$tab_array[] = array(gettext("Interface Assignments"), false, "interfaces_assign.php");
|
115 |
28f697ab
|
sbeaver
|
$tab_array[] = array(gettext("Interface Groups"), false, "interfaces_groups.php");
|
116 |
|
|
$tab_array[] = array(gettext("Wireless"), true, "interfaces_wireless.php");
|
117 |
|
|
$tab_array[] = array(gettext("VLANs"), false, "interfaces_vlan.php");
|
118 |
|
|
$tab_array[] = array(gettext("QinQs"), false, "interfaces_qinq.php");
|
119 |
|
|
$tab_array[] = array(gettext("PPPs"), false, "interfaces_ppps.php");
|
120 |
26b4bef8
|
k-paulius
|
$tab_array[] = array(gettext("GREs"), false, "interfaces_gre.php");
|
121 |
|
|
$tab_array[] = array(gettext("GIFs"), false, "interfaces_gif.php");
|
122 |
28f697ab
|
sbeaver
|
$tab_array[] = array(gettext("Bridges"), false, "interfaces_bridge.php");
|
123 |
26b4bef8
|
k-paulius
|
$tab_array[] = array(gettext("LAGGs"), false, "interfaces_lagg.php");
|
124 |
719e4eeb
|
sbeaver
|
display_top_tabs($tab_array);
|
125 |
9f428275
|
Erik Fonnesbeck
|
?>
|
126 |
060ed238
|
Stephen Beaver
|
<div class="panel panel-default">
|
127 |
70dc5cd6
|
Phil Davis
|
<div class="panel-heading"><h2 class="panel-title"><?=gettext('Wireless Interfaces')?></h2></div>
|
128 |
060ed238
|
Stephen Beaver
|
<div class="panel-body">
|
129 |
|
|
<div class="table-responsive">
|
130 |
|
|
<table class="table table-striped table-hover table-condensed">
|
131 |
|
|
<thead>
|
132 |
|
|
<tr>
|
133 |
70dc5cd6
|
Phil Davis
|
<th><?=gettext("Interface"); ?></th>
|
134 |
|
|
<th><?=gettext("Mode"); ?></th>
|
135 |
|
|
<th><?=gettext("Description"); ?></th>
|
136 |
|
|
<th><?=gettext("Actions"); ?></th>
|
137 |
060ed238
|
Stephen Beaver
|
</tr>
|
138 |
|
|
</thead>
|
139 |
|
|
<tbody>
|
140 |
9f428275
|
Erik Fonnesbeck
|
<?php
|
141 |
719e4eeb
|
sbeaver
|
|
142 |
|
|
$i = 0;
|
143 |
|
|
|
144 |
|
|
foreach ($a_clones as $clone) {
|
145 |
9f428275
|
Erik Fonnesbeck
|
?>
|
146 |
060ed238
|
Stephen Beaver
|
<tr>
|
147 |
|
|
<td>
|
148 |
|
|
<?=htmlspecialchars($clone['cloneif'])?>
|
149 |
|
|
</td>
|
150 |
|
|
<td>
|
151 |
|
|
<?= $wlan_modes[$clone['mode']]; ?>
|
152 |
|
|
</td>
|
153 |
|
|
<td>
|
154 |
|
|
<?=htmlspecialchars($clone['descr'])?>
|
155 |
|
|
</td>
|
156 |
|
|
<td>
|
157 |
|
|
<a class="fa fa-pencil" title="<?=gettext('Edit WiFi interface')?>" href="interfaces_wireless_edit.php?id=<?=$i?>"></a>
|
158 |
|
|
<a class="fa fa-trash" title="<?=gettext('Delete WiFi interface')?>" href="interfaces_wireless.php?act=del&id=<?=$i?>"></a>
|
159 |
|
|
</td>
|
160 |
|
|
</tr>
|
161 |
719e4eeb
|
sbeaver
|
<?php
|
162 |
|
|
$i++;
|
163 |
|
|
}
|
164 |
|
|
?>
|
165 |
060ed238
|
Stephen Beaver
|
</tbody>
|
166 |
|
|
</table>
|
167 |
|
|
</div>
|
168 |
|
|
</div>
|
169 |
719e4eeb
|
sbeaver
|
</div>
|
170 |
83804723
|
k-paulius
|
|
171 |
|
|
<nav class="action-buttons">
|
172 |
|
|
<a href="interfaces_wireless_edit.php" class="btn btn-success btn-sm">
|
173 |
|
|
<i class="fa fa-plus icon-embed-btn"></i>
|
174 |
|
|
<?=gettext("Add")?></a>
|
175 |
|
|
</nav>
|
176 |
719e4eeb
|
sbeaver
|
<?php
|
177 |
|
|
include("foot.inc");
|