1 |
ead45104
|
Ermal Luçi
|
<?php
|
2 |
|
|
/*
|
3 |
c5d81585
|
Renato Botelho
|
* interfaces_gif.php
|
4 |
b9043cdc
|
Stephen Beaver
|
*
|
5 |
c5d81585
|
Renato Botelho
|
* part of pfSense (https://www.pfsense.org)
|
6 |
81299b5c
|
Renato Botelho
|
* Copyright (c) 2004-2016 Rubicon Communications, LLC (Netgate)
|
7 |
c5d81585
|
Renato Botelho
|
* All rights reserved.
|
8 |
b9043cdc
|
Stephen Beaver
|
*
|
9 |
b12ea3fb
|
Renato Botelho
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
10 |
|
|
* you may not use this file except in compliance with the License.
|
11 |
|
|
* You may obtain a copy of the License at
|
12 |
b9043cdc
|
Stephen Beaver
|
*
|
13 |
b12ea3fb
|
Renato Botelho
|
* http://www.apache.org/licenses/LICENSE-2.0
|
14 |
b9043cdc
|
Stephen Beaver
|
*
|
15 |
b12ea3fb
|
Renato Botelho
|
* Unless required by applicable law or agreed to in writing, software
|
16 |
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
17 |
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
18 |
|
|
* See the License for the specific language governing permissions and
|
19 |
|
|
* limitations under the License.
|
20 |
b9043cdc
|
Stephen Beaver
|
*/
|
21 |
ead45104
|
Ermal Luçi
|
|
22 |
6b07c15a
|
Matthew Grooms
|
##|+PRIV
|
23 |
|
|
##|*IDENT=page-interfaces-gif
|
24 |
5230f468
|
jim-p
|
##|*NAME=Interfaces: GIF
|
25 |
6b07c15a
|
Matthew Grooms
|
##|*DESCR=Allow access to the 'Interfaces: GIF' page.
|
26 |
|
|
##|*MATCH=interfaces_gif.php*
|
27 |
|
|
##|-PRIV
|
28 |
|
|
|
29 |
c81ef6e2
|
Phil Davis
|
require_once("guiconfig.inc");
|
30 |
ead45104
|
Ermal Luçi
|
|
31 |
2af86dda
|
Phil Davis
|
if (!is_array($config['gifs']['gif'])) {
|
32 |
ead45104
|
Ermal Luçi
|
$config['gifs']['gif'] = array();
|
33 |
2af86dda
|
Phil Davis
|
}
|
34 |
ead45104
|
Ermal Luçi
|
|
35 |
|
|
$a_gifs = &$config['gifs']['gif'] ;
|
36 |
|
|
|
37 |
|
|
function gif_inuse($num) {
|
38 |
c059940b
|
Erik Fonnesbeck
|
global $config, $a_gifs;
|
39 |
ead45104
|
Ermal Luçi
|
|
40 |
80fe8369
|
Phil Davis
|
$iflist = get_configured_interface_list(true);
|
41 |
ead45104
|
Ermal Luçi
|
foreach ($iflist as $if) {
|
42 |
2af86dda
|
Phil Davis
|
if ($config['interfaces'][$if]['if'] == $a_gifs[$num]['gifif']) {
|
43 |
ead45104
|
Ermal Luçi
|
return true;
|
44 |
2af86dda
|
Phil Davis
|
}
|
45 |
ead45104
|
Ermal Luçi
|
}
|
46 |
|
|
|
47 |
|
|
return false;
|
48 |
|
|
}
|
49 |
|
|
|
50 |
b591908c
|
Steve Beaver
|
if ($_POST['act'] == "del") {
|
51 |
|
|
if (!isset($_POST['id'])) {
|
52 |
2af86dda
|
Phil Davis
|
$input_errors[] = gettext("Wrong parameters supplied");
|
53 |
b591908c
|
Steve Beaver
|
} else if (empty($a_gifs[$_POST['id']])) {
|
54 |
2af86dda
|
Phil Davis
|
$input_errors[] = gettext("Wrong index supplied");
|
55 |
ead45104
|
Ermal Luçi
|
/* check if still in use */
|
56 |
b591908c
|
Steve Beaver
|
} else if (gif_inuse($_POST['id'])) {
|
57 |
57d84321
|
Carlos Eduardo Ramos
|
$input_errors[] = gettext("This gif TUNNEL cannot be deleted because it is still being used as an interface.");
|
58 |
ead45104
|
Ermal Luçi
|
} else {
|
59 |
b591908c
|
Steve Beaver
|
pfSense_interface_destroy($a_gifs[$_POST['id']]['gifif']);
|
60 |
|
|
unset($a_gifs[$_POST['id']]);
|
61 |
ead45104
|
Ermal Luçi
|
|
62 |
|
|
write_config();
|
63 |
|
|
|
64 |
|
|
header("Location: interfaces_gif.php");
|
65 |
|
|
exit;
|
66 |
|
|
}
|
67 |
|
|
}
|
68 |
|
|
|
69 |
26b4bef8
|
k-paulius
|
$pgtitle = array(gettext("Interfaces"), gettext("GIFs"));
|
70 |
b32dd0a6
|
jim-p
|
$shortcut_section = "interfaces";
|
71 |
ead45104
|
Ermal Luçi
|
include("head.inc");
|
72 |
814b5184
|
sbeaver
|
|
73 |
aa82505e
|
Phil Davis
|
if ($input_errors) {
|
74 |
6a2a3416
|
sbeaver
|
print_input_errors($input_errors);
|
75 |
aa82505e
|
Phil Davis
|
}
|
76 |
6a2a3416
|
sbeaver
|
|
77 |
|
|
$tab_array = array();
|
78 |
26b4bef8
|
k-paulius
|
$tab_array[] = array(gettext("Interface Assignments"), false, "interfaces_assign.php");
|
79 |
c8610c74
|
Sjon Hortensius
|
$tab_array[] = array(gettext("Interface Groups"), false, "interfaces_groups.php");
|
80 |
|
|
$tab_array[] = array(gettext("Wireless"), false, "interfaces_wireless.php");
|
81 |
|
|
$tab_array[] = array(gettext("VLANs"), false, "interfaces_vlan.php");
|
82 |
|
|
$tab_array[] = array(gettext("QinQs"), false, "interfaces_qinq.php");
|
83 |
|
|
$tab_array[] = array(gettext("PPPs"), false, "interfaces_ppps.php");
|
84 |
26b4bef8
|
k-paulius
|
$tab_array[] = array(gettext("GREs"), false, "interfaces_gre.php");
|
85 |
|
|
$tab_array[] = array(gettext("GIFs"), true, "interfaces_gif.php");
|
86 |
c8610c74
|
Sjon Hortensius
|
$tab_array[] = array(gettext("Bridges"), false, "interfaces_bridge.php");
|
87 |
26b4bef8
|
k-paulius
|
$tab_array[] = array(gettext("LAGGs"), false, "interfaces_lagg.php");
|
88 |
6a2a3416
|
sbeaver
|
display_top_tabs($tab_array);
|
89 |
ead45104
|
Ermal Luçi
|
?>
|
90 |
060ed238
|
Stephen Beaver
|
<div class="panel panel-default">
|
91 |
70dc5cd6
|
Phil Davis
|
<div class="panel-heading"><h2 class="panel-title"><?=gettext('GIF Interfaces')?></h2></div>
|
92 |
060ed238
|
Stephen Beaver
|
<div class="panel-body">
|
93 |
|
|
<div class="table-responsive">
|
94 |
1c10ce97
|
PiBa-NL
|
<table class="table table-striped table-hover table-condensed table-rowdblclickedit">
|
95 |
060ed238
|
Stephen Beaver
|
<thead>
|
96 |
|
|
<tr>
|
97 |
|
|
<th><?=gettext("Interface"); ?></th>
|
98 |
|
|
<th><?=gettext("Tunnel to …"); ?></th>
|
99 |
|
|
<th><?=gettext("Description"); ?></th>
|
100 |
70dc5cd6
|
Phil Davis
|
<th><?=gettext("Actions"); ?></th>
|
101 |
060ed238
|
Stephen Beaver
|
</tr>
|
102 |
|
|
</thead>
|
103 |
|
|
<tbody>
|
104 |
c8610c74
|
Sjon Hortensius
|
<?php foreach ($a_gifs as $i => $gif): ?>
|
105 |
060ed238
|
Stephen Beaver
|
<tr>
|
106 |
|
|
<td>
|
107 |
|
|
<?=htmlspecialchars(convert_friendly_interface_to_friendly_descr($gif['if']))?>
|
108 |
|
|
</td>
|
109 |
|
|
<td>
|
110 |
|
|
<?=htmlspecialchars($gif['remote-addr'])?>
|
111 |
|
|
</td>
|
112 |
|
|
<td>
|
113 |
|
|
<?=htmlspecialchars($gif['descr'])?>
|
114 |
|
|
</td>
|
115 |
|
|
<td>
|
116 |
4401107f
|
Steve Beaver
|
<a class="fa fa-pencil" title="<?=gettext('Edit GIF interface')?>" href="interfaces_gif_edit.php?id=<?=$i?>"></a>
|
117 |
b591908c
|
Steve Beaver
|
<a class="fa fa-trash" title="<?=gettext('Delete GIF interface')?>" href="interfaces_gif.php?act=del&id=<?=$i?>" usepost></a>
|
118 |
060ed238
|
Stephen Beaver
|
</td>
|
119 |
|
|
</tr>
|
120 |
c8610c74
|
Sjon Hortensius
|
<?php endforeach; ?>
|
121 |
060ed238
|
Stephen Beaver
|
</tbody>
|
122 |
|
|
</table>
|
123 |
|
|
</div>
|
124 |
|
|
</div>
|
125 |
6a2a3416
|
sbeaver
|
</div>
|
126 |
|
|
|
127 |
c10cb196
|
Stephen Beaver
|
<nav class="action-buttons">
|
128 |
4401107f
|
Steve Beaver
|
<a href="interfaces_gif_edit.php" class="btn btn-success btn-sm">
|
129 |
9d5a20cf
|
heper
|
<i class="fa fa-plus icon-embed-btn"></i>
|
130 |
c8610c74
|
Sjon Hortensius
|
<?=gettext("Add")?>
|
131 |
|
|
</a>
|
132 |
|
|
</nav>
|
133 |
|
|
|
134 |
b76a8ff4
|
heper
|
<?php include("foot.inc");
|