1
|
#!/usr/local/bin/php
|
2
|
<?php
|
3
|
/* $Id$ */
|
4
|
/*
|
5
|
firewall_virtual_ip.php
|
6
|
part of pfSense (http://www.pfsense.com/)
|
7
|
|
8
|
Copyright (C) 2005 Bill Marquette <bill.marquette@gmail.com>.
|
9
|
All rights reserved.
|
10
|
|
11
|
Includes code from m0n0wall which is:
|
12
|
Copyright (C) 2003-2005 Manuel Kasper <mk@neon1.net>.
|
13
|
All rights reserved.
|
14
|
|
15
|
Includes code from pfSense which is:
|
16
|
Copyright (C) 2004-2005 Scott Ullrich <geekgod@pfsense.com>.
|
17
|
All rights reserved.
|
18
|
|
19
|
Redistribution and use in source and binary forms, with or without
|
20
|
modification, are permitted provided that the following conditions are met:
|
21
|
|
22
|
1. Redistributions of source code must retain the above copyright notice,
|
23
|
this list of conditions and the following disclaimer.
|
24
|
|
25
|
2. Redistributions in binary form must reproduce the above copyright
|
26
|
notice, this list of conditions and the following disclaimer in the
|
27
|
documentation and/or other materials provided with the distribution.
|
28
|
|
29
|
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
30
|
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
|
31
|
AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
32
|
AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
|
33
|
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
34
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
35
|
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
36
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
37
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
38
|
POSSIBILITY OF SUCH DAMAGE.
|
39
|
*/
|
40
|
|
41
|
require("guiconfig.inc");
|
42
|
|
43
|
if (!is_array($config['virtualip']['vip'])) {
|
44
|
$config['virtualip']['vip'] = array();
|
45
|
}
|
46
|
$a_vip = &$config['virtualip']['vip'];
|
47
|
|
48
|
if ($_POST) {
|
49
|
$pconfig = $_POST;
|
50
|
|
51
|
if ($_POST['apply']) {
|
52
|
$retval = 0;
|
53
|
if (!file_exists($d_sysrebootreqd_path)) {
|
54
|
config_lock();
|
55
|
$retval = services_proxyarp_configure();
|
56
|
/* Bring up any configured CARP interfaces */
|
57
|
interfaces_carp_configure();
|
58
|
interfaces_carp_bringup();
|
59
|
$retval |= filter_configure();
|
60
|
config_unlock();
|
61
|
}
|
62
|
$savemsg = get_std_save_message($retval);
|
63
|
unlink_if_exists($d_vipconfdirty_path);
|
64
|
}
|
65
|
}
|
66
|
|
67
|
if ($_GET['act'] == "del") {
|
68
|
if ($a_vip[$_GET['id']]) {
|
69
|
/* make sure no inbound NAT mappings reference this entry */
|
70
|
if (is_array($config['nat']['rule'])) {
|
71
|
foreach ($config['nat']['rule'] as $rule) {
|
72
|
if ($rule['external-address'] == $a_vip[$_GET['id']]['ipaddr']) {
|
73
|
$input_errors[] = "This entry cannot be deleted because it is still referenced by at least one NAT mapping.";
|
74
|
break;
|
75
|
}
|
76
|
}
|
77
|
}
|
78
|
|
79
|
if (!$input_errors) {
|
80
|
unset($a_vip[$_GET['id']]);
|
81
|
write_config();
|
82
|
touch($d_vipconfdirty_path);
|
83
|
header("Location: firewall_virtual_ip.php");
|
84
|
exit;
|
85
|
}
|
86
|
}
|
87
|
}
|
88
|
|
89
|
$pgtitle = "Firewall: Virtual IP Addresses";
|
90
|
include("head.inc");
|
91
|
|
92
|
?>
|
93
|
<body link="#0000CC" vlink="#0000CC" alink="#0000CC">
|
94
|
<?php include("fbegin.inc"); ?>
|
95
|
<p class="pgtitle"><?=$pgtitle?></p>
|
96
|
<form action="firewall_virtual_ip.php" method="post">
|
97
|
<?php if ($input_errors) print_input_errors($input_errors); ?>
|
98
|
<?php if ($savemsg) print_info_box($savemsg); ?>
|
99
|
<?php if (file_exists($d_vipconfdirty_path)): ?><p>
|
100
|
<?php print_info_box_np("The VIP configuration has been changed.<br>You must apply the changes in order for them to take effect.");?><br>
|
101
|
<?php endif; ?>
|
102
|
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
103
|
<tr><td class="tabnavtbl">
|
104
|
<?php
|
105
|
/* active tabs */
|
106
|
$tab_array = array();
|
107
|
$tab_array[] = array("Virtual IPs", true, "firewall_virtual_ip.php");
|
108
|
$tab_array[] = array("CARP Settings", false, "pkg_edit.php?xml=carp_settings.xml&id=0");
|
109
|
display_top_tabs($tab_array);
|
110
|
?>
|
111
|
</td></tr>
|
112
|
<tr>
|
113
|
<td>
|
114
|
<div id="mainarea">
|
115
|
<table class="tabcont" width="100%" border="0" cellpadding="0" cellspacing="0">
|
116
|
<tr>
|
117
|
<td width="30%" class="listhdrr">Virtual IP address</td>
|
118
|
<td width="10%" class="listhdrr">Type</td>
|
119
|
<td width="40%" class="listhdr">Description</td>
|
120
|
<td width="10%" class="list"></td>
|
121
|
</tr>
|
122
|
<?php $i = 0; foreach ($a_vip as $vipent): ?>
|
123
|
<tr>
|
124
|
<td class="listlr" ondblclick="document.location='firewall_virtual_ip_edit.php?id=<?=$i;?>';">
|
125
|
<?php if (($vipent['type'] == "single") || ($vipent['type'] == "network"))
|
126
|
echo "{$vipent['subnet']}/{$vipent['subnet_bits']}";
|
127
|
if ($vipent['type'] == "range")
|
128
|
echo "{$vipent['range']['from']}-{$vipent['range']['to']}";
|
129
|
?>
|
130
|
</td>
|
131
|
<td class="listlr" align="center" ondblclick="document.location='firewall_virtual_ip_edit.php?id=<?=$i;?>';">
|
132
|
<? if($vipent['mode'] == "proxyarp") echo "<img src='./themes/".$g['theme']."/images/icons/icon_parp.gif' title='Proxy ARP'>"; elseif($vipent['mode'] == "carp") echo "<img src='./themes/".$g['theme']."/images/icons/icon_carp.gif' title='CARP'>"; elseif($vipent['mode'] == "other") echo "<img src='./themes/".$g['theme']."/images/icons/icon_other.gif' title='Other'>";?>
|
133
|
</td>
|
134
|
<td class="listbg" ondblclick="document.location='firewall_virtual_ip_edit.php?id=<?=$i;?>';">
|
135
|
<font color="#FFFFFF"><?=htmlspecialchars($vipent['descr']);?>
|
136
|
</td>
|
137
|
<td class="list" nowrap>
|
138
|
<table border="0" cellspacing="0" cellpadding="1">
|
139
|
<tr>
|
140
|
<td valign="middle"><a href="firewall_virtual_ip_edit.php?id=<?=$i;?>"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_e.gif" width="17" height="17" border="0"></a></td>
|
141
|
<td valign="middle"><a href="firewall_virtual_ip.php?act=del&id=<?=$i;?>" onclick="return confirm('Do you really want to delete this entry?')"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_x.gif" width="17" height="17" border="0"></a></td>
|
142
|
</tr>
|
143
|
</table>
|
144
|
</td>
|
145
|
</tr>
|
146
|
<?php $i++; endforeach; ?>
|
147
|
<tr>
|
148
|
<td class="list" colspan="3"></td>
|
149
|
<td class="list">
|
150
|
<table border="0" cellspacing="0" cellpadding="1">
|
151
|
<tr>
|
152
|
<td valign="middle"><a href="firewall_virtual_ip_edit.php"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_plus.gif" width="17" height="17" border="0"></a></td>
|
153
|
</tr>
|
154
|
</table>
|
155
|
</td>
|
156
|
</tr>
|
157
|
<tr>
|
158
|
<td colspan="4">
|
159
|
<p><span class="vexpl"><span class="red"><strong>Note:<br>
|
160
|
</strong></span>The virtual IP addresses defined on this page may be used in <a href="firewall_nat.php">NAT</a> mappings.<br>
|
161
|
You can check the status of your CARP-Interfaces <a href="carp_status.php">here</a>.</span></p>
|
162
|
</td>
|
163
|
</tr>
|
164
|
</table>
|
165
|
</div>
|
166
|
</table>
|
167
|
</form>
|
168
|
<?php include("fend.inc"); ?>
|
169
|
</body>
|
170
|
</html>
|