summaryrefslogtreecommitdiffstats
path: root/usr/local/www/firewall_nat_edit.php
diff options
context:
space:
mode:
authorRenato Botelho <renato.botelho@bluepex.com>2010-07-07 08:28:32 -0300
committerRenato Botelho <renato.botelho@bluepex.com>2010-07-07 08:28:32 -0300
commit6a73963a31143cadc343b0786b122ebc960baca6 (patch)
treee4f0743fa485fcd153ecf5827f8d3f7a919a23a5 /usr/local/www/firewall_nat_edit.php
parent3c7b2c1eb010d630b11826e98e8ca867ac257e35 (diff)
parent29721fe6a60c1f772c601b1f43e54518e58b97f0 (diff)
downloadpfsense-6a73963a31143cadc343b0786b122ebc960baca6.zip
pfsense-6a73963a31143cadc343b0786b122ebc960baca6.tar.gz
Merge remote branch 'mainline/master' into 2_firewall
Diffstat (limited to 'usr/local/www/firewall_nat_edit.php')
-rwxr-xr-xusr/local/www/firewall_nat_edit.php24
1 files changed, 24 insertions, 0 deletions
diff --git a/usr/local/www/firewall_nat_edit.php b/usr/local/www/firewall_nat_edit.php
index 48a1686..a969e4c 100755
--- a/usr/local/www/firewall_nat_edit.php
+++ b/usr/local/www/firewall_nat_edit.php
@@ -84,6 +84,7 @@ if (isset($id) && $a_nat[$id]) {
$pconfig['interface'] = $a_nat[$id]['interface'];
$pconfig['associated-rule-id'] = $a_nat[$id]['associated-rule-id'];
$pconfig['nosync'] = isset($a_nat[$id]['nosync']);
+ $pconfig['natreflection'] = $a_nat[$id]['natreflection'];
if (!$pconfig['interface'])
$pconfig['interface'] = "wan";
@@ -315,6 +316,11 @@ if ($_POST) {
else
unset($natent['nosync']);
+ if ($_POST['natreflection'] == "enable" || $_POST['natreflection'] == "disable")
+ $natent['natreflection'] = $_POST['natreflection'];
+ else
+ unset($natent['natreflection']);
+
// If we used to have an associated filter rule, but no-longer should have one
if (!empty($a_nat[$id]) && ( empty($natent['associated-rule-id']) || $natent['associated-rule-id'] != $a_nat[$id]['associated-rule-id'] ) ) {
// Delete the previous rule
@@ -456,6 +462,10 @@ include("fbegin.inc"); ?>
if(have_ruleint_access($if))
$interfaces[$if] = $ifdesc;
+ if ($config['l2tp']['mode'] == "server")
+ if(have_ruleint_access("l2tp"))
+ $interfaces['l2tp'] = "L2TP VPN";
+
if ($config['pptpd']['mode'] == "server")
if(have_ruleint_access("pptp"))
$interfaces['pptp'] = "PPTP VPN";
@@ -469,6 +479,10 @@ include("fbegin.inc"); ?>
if(have_ruleint_access("enc0"))
$interfaces["enc0"] = "IPsec";
+ /* add openvpn/tun interfaces */
+ if ($config['openvpn']["openvpn-server"] || $config['openvpn']["openvpn-client"])
+ $interfaces["openvpn"] = "OpenVPN";
+
foreach ($interfaces as $iface => $ifacename): ?>
<option value="<?=$iface;?>" <?php if ($iface == $pconfig['interface']) echo "selected"; ?>>
<?=htmlspecialchars($ifacename);?>
@@ -751,6 +765,16 @@ include("fbegin.inc"); ?>
<?=gettext("HINT: This prevents the rule from automatically syncing to other CARP members"); ?>.
</td>
</tr>
+ <tr>
+ <td width="22%" valign="top" class="vncell">NAT reflection</td>
+ <td width="78%" class="vtable">
+ <select name="natreflection" class="formselect">
+ <option value="default" <?php if ($pconfig['natreflection'] != "enable" && $pconfig['natreflection'] != "disable") echo "selected"; ?>>use system default</option>
+ <option value="enable" <?php if ($pconfig['natreflection'] == "enable") echo "selected"; ?>>enable</option>
+ <option value="disable" <?php if ($pconfig['natreflection'] == "disable") echo "selected"; ?>>disable</option>
+ </select>
+ </td>
+ </tr>
<?php if (isset($id) && $a_nat[$id] && !isset($_GET['dup'])): ?>
<tr>
<td width="22%" valign="top" class="vncell"><?=gettext("Filter rule association"); ?></td>
OpenPOWER on IntegriCloud