Project

General

Profile

Download (5.95 KB) Statistics
| Branch: | Tag: | Revision:
1
<?php
2
/*
3
 * interfaces_gre.php
4
 *
5
 * part of pfSense (https://www.pfsense.org)
6
 * Copyright (c) 2004-2016 Rubicon Communications, LLC (Netgate)
7
 * All rights reserved.
8
 *
9
 * Redistribution and use in source and binary forms, with or without
10
 * modification, 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
##|+PRIV
55
##|*IDENT=page-interfaces-gre
56
##|*NAME=Interfaces: GRE
57
##|*DESCR=Allow access to the 'Interfaces: GRE' page.
58
##|*MATCH=interfaces_gre.php*
59
##|-PRIV
60

    
61
require_once("guiconfig.inc");
62
require_once("functions.inc");
63

    
64
if (!is_array($config['gres']['gre'])) {
65
	$config['gres']['gre'] = array();
66
}
67

    
68
$a_gres = &$config['gres']['gre'] ;
69

    
70
function gre_inuse($num) {
71
	global $config, $a_gres;
72

    
73
	$iflist = get_configured_interface_list(false, true);
74
	foreach ($iflist as $if) {
75
		if ($config['interfaces'][$if]['if'] == $a_gres[$num]['greif']) {
76
			return true;
77
		}
78
	}
79

    
80
	return false;
81
}
82

    
83
if ($_GET['act'] == "del") {
84
	if (!isset($_GET['id'])) {
85
		$input_errors[] = gettext("Wrong parameters supplied");
86
	} else if (empty($a_gres[$_GET['id']])) {
87
		$input_errors[] = gettext("Wrong index supplied");
88
	/* check if still in use */
89
	} else if (gre_inuse($_GET['id'])) {
90
		$input_errors[] = gettext("This GRE tunnel cannot be deleted because it is still being used as an interface.");
91
	} else {
92
		mwexec("/sbin/ifconfig " . $a_gres[$_GET['id']]['greif'] . " destroy");
93
		unset($a_gres[$_GET['id']]);
94

    
95
		write_config();
96

    
97
		header("Location: interfaces_gre.php");
98
		exit;
99
	}
100
}
101

    
102
$pgtitle = array(gettext("Interfaces"), gettext("GREs"));
103
$shortcut_section = "interfaces";
104
include("head.inc");
105
if ($input_errors) {
106
	print_input_errors($input_errors);
107
}
108

    
109
$tab_array = array();
110
$tab_array[] = array(gettext("Interface Assignments"), false, "interfaces_assign.php");
111
$tab_array[] = array(gettext("Interface Groups"), false, "interfaces_groups.php");
112
$tab_array[] = array(gettext("Wireless"), false, "interfaces_wireless.php");
113
$tab_array[] = array(gettext("VLANs"), false, "interfaces_vlan.php");
114
$tab_array[] = array(gettext("QinQs"), false, "interfaces_qinq.php");
115
$tab_array[] = array(gettext("PPPs"), false, "interfaces_ppps.php");
116
$tab_array[] = array(gettext("GREs"), true, "interfaces_gre.php");
117
$tab_array[] = array(gettext("GIFs"), false, "interfaces_gif.php");
118
$tab_array[] = array(gettext("Bridges"), false, "interfaces_bridge.php");
119
$tab_array[] = array(gettext("LAGGs"), false, "interfaces_lagg.php");
120
display_top_tabs($tab_array);
121
?>
122
<div class="panel panel-default">
123
	<div class="panel-heading"><h2 class="panel-title"><?=gettext('GRE Interfaces')?></h2></div>
124
	<div class="panel-body">
125
		<div class="table-responsive">
126
			<table class="table table-striped table-hover table-condensed table-rowdblclickedit">
127
				<thead>
128
					<tr>
129
						<th><?=gettext("Interface"); ?></th>
130
						<th><?=gettext("Tunnel to &hellip;"); ?></th>
131
						<th><?=gettext("Description"); ?></th>
132
						<th><?=gettext("Actions"); ?></th>
133
					</tr>
134
				</thead>
135
				<tbody>
136
<?php foreach ($a_gres as $i => $gre):
137
	if (substr($gre['if'], 0, 4) == "_vip") {
138
		$if = convert_real_interface_to_friendly_descr(get_real_interface($gre['if']));
139
	} else {
140
		$if = $gre['if'];
141
	}
142
?>
143
					<tr>
144
						<td>
145
							<?=htmlspecialchars(convert_friendly_interface_to_friendly_descr($if))?>
146
						</td>
147
						<td>
148
							<?=htmlspecialchars($gre['remote-addr'])?>
149
						</td>
150
						<td>
151
							<?=htmlspecialchars($gre['descr'])?>
152
						</td>
153
						<td>
154
							<a class="fa fa-pencil"	title="<?=gettext('Edit GRE interface')?>"	href="interfaces_gre_edit.php?id=<?=$i?>"></a>
155
							<a class="fa fa-trash"	title="<?=gettext('Delete GRE interface')?>"	href="interfaces_gre.php?act=del&amp;id=<?=$i?>"></a>
156
						</td>
157
					</tr>
158
<?php endforeach; ?>
159
				</tbody>
160
			</table>
161
		</div>
162
	</div>
163
</div>
164

    
165
<nav class="action-buttons">
166
	<a href="interfaces_gre_edit.php" class="btn btn-success btn-sm">
167
		<i class="fa fa-plus icon-embed-btn"></i>
168
		<?=gettext("Add")?>
169
	</a>
170
</nav>
171
<?php
172
include("foot.inc");
(74-74/227)