Project

General

Profile

Download (5.69 KB) Statistics
| Branch: | Tag: | Revision:
1
<?php
2
/* $Id$ */
3
/*
4
	interfaces_gif.php
5
*/
6
/* ====================================================================
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
/*
57
	pfSense_BUILDER_BINARIES:	/sbin/ifconfig
58
	pfSense_MODULE: interfaces
59
*/
60

    
61
##|+PRIV
62
##|*IDENT=page-interfaces-gif
63
##|*NAME=Interfaces: GIF page
64
##|*DESCR=Allow access to the 'Interfaces: GIF' page.
65
##|*MATCH=interfaces_gif.php*
66
##|-PRIV
67

    
68
require("guiconfig.inc");
69

    
70
if (!is_array($config['gifs']['gif'])) {
71
	$config['gifs']['gif'] = array();
72
}
73

    
74
$a_gifs = &$config['gifs']['gif'] ;
75

    
76
function gif_inuse($num) {
77
	global $config, $a_gifs;
78

    
79
	$iflist = get_configured_interface_list(false, true);
80
	foreach ($iflist as $if) {
81
		if ($config['interfaces'][$if]['if'] == $a_gifs[$num]['gifif']) {
82
			return true;
83
		}
84
	}
85

    
86
	return false;
87
}
88

    
89
if ($_GET['act'] == "del") {
90
	if (!isset($_GET['id'])) {
91
		$input_errors[] = gettext("Wrong parameters supplied");
92
	} else if (empty($a_gifs[$_GET['id']])) {
93
		$input_errors[] = gettext("Wrong index supplied");
94
	/* check if still in use */
95
	} else if (gif_inuse($_GET['id'])) {
96
		$input_errors[] = gettext("This gif TUNNEL cannot be deleted because it is still being used as an interface.");
97
	} else {
98
		mwexec("/sbin/ifconfig " . $a_gifs[$_GET['id']]['gifif'] . " destroy");
99
		unset($a_gifs[$_GET['id']]);
100

    
101
		write_config();
102

    
103
		header("Location: interfaces_gif.php");
104
		exit;
105
	}
106
}
107

    
108
$pgtitle = array(gettext("Interfaces"), gettext("GIF"));
109
$shortcut_section = "interfaces";
110
include("head.inc");
111

    
112
if ($input_errors)
113
	print_input_errors($input_errors);
114

    
115
$tab_array = array();
116
$tab_array[] = array(gettext("Interface assignments"), false, "interfaces_assign.php");
117
$tab_array[] = array(gettext("Interface Groups"), false, "interfaces_groups.php");
118
$tab_array[] = array(gettext("Wireless"), false, "interfaces_wireless.php");
119
$tab_array[] = array(gettext("VLANs"), false, "interfaces_vlan.php");
120
$tab_array[] = array(gettext("QinQs"), false, "interfaces_qinq.php");
121
$tab_array[] = array(gettext("PPPs"), false, "interfaces_ppps.php");
122
$tab_array[] = array(gettext("GRE"), false, "interfaces_gre.php");
123
$tab_array[] = array(gettext("GIF"), true, "interfaces_gif.php");
124
$tab_array[] = array(gettext("Bridges"), false, "interfaces_bridge.php");
125
$tab_array[] = array(gettext("LAGG"), false, "interfaces_lagg.php");
126
display_top_tabs($tab_array);
127
?>
128

    
129
<div class="table-responsive">
130
	<table class="table table-striped table-hover table-condensed">
131
		<thead>
132
			<tr>
133
				<th><?=gettext("Interface"); ?></th>
134
				<th><?=gettext("Tunnel to &hellip;"); ?></th>
135
				<th><?=gettext("Description"); ?></th>
136
				<th></th>
137
			</tr>
138
		</thead>
139
		<tbody>
140
<?php foreach ($a_gifs as $i => $gif): ?>
141
			<tr>
142
				<td>
143
					<?=htmlspecialchars(convert_friendly_interface_to_friendly_descr($gif['if']))?>
144
				</td>
145
				<td>
146
					<?=htmlspecialchars($gif['remote-addr'])?>
147
				</td>
148
				<td>
149
					<?=htmlspecialchars($gif['descr'])?>
150
				</td>
151
				<td>
152
					<a class="fa fa-pencil"	title="<?=gettext('Edit GIF interface')?>"	href="interfaces_gif_edit.php?id=<?=$i?>"></a>
153
					<a class="fa fa-trash"	title="<?=gettext('Delete GIF interface')?>"	href="interfaces_gif.php?act=del&amp;id=<?=$i?>" onclick="return confirm('<?=gettext("Are you sure you want to delete this GIF interface?")?>')"></a>
154
				</td>
155
			</tr>
156
<?php endforeach; ?>
157
		</tbody>
158
	</table>
159
</div>
160

    
161
<nav class="action-buttons">
162
	<a href="interfaces_gif_edit.php" class="btn btn-success">
163
		<?=gettext("Add")?>
164
	</a>
165
</nav>
166

    
167
<?php include("foot.inc");
(86-86/233)