summaryrefslogtreecommitdiffstats
path: root/usr/local/www/vpn_ipsec_settings.php
diff options
context:
space:
mode:
authorChris Buechler <cmb@pfsense.org>2015-04-04 19:50:04 -0500
committerChris Buechler <cmb@pfsense.org>2015-04-04 19:52:10 -0500
commitc5292060a497a88bdeb5cb9325fb2a5595bbcea1 (patch)
treecc9b1198d6621339e4250c39cef45d47b26b2391 /usr/local/www/vpn_ipsec_settings.php
parent600b4c3bb8a148032348f7d980ba2cfac683306f (diff)
downloadpfsense-c5292060a497a88bdeb5cb9325fb2a5595bbcea1.zip
pfsense-c5292060a497a88bdeb5cb9325fb2a5595bbcea1.tar.gz
Fix up Ticket #4504 implementation. Match config style with other areas. Use a config setting to disable, rather than enable, this functionality since it's enabled by default so the tag isn't necessary in the default config. Remove now unnecessary config upgrade code.
Diffstat (limited to 'usr/local/www/vpn_ipsec_settings.php')
-rw-r--r--usr/local/www/vpn_ipsec_settings.php18
1 files changed, 9 insertions, 9 deletions
diff --git a/usr/local/www/vpn_ipsec_settings.php b/usr/local/www/vpn_ipsec_settings.php
index 6c63722..7c21817 100644
--- a/usr/local/www/vpn_ipsec_settings.php
+++ b/usr/local/www/vpn_ipsec_settings.php
@@ -46,7 +46,7 @@ foreach ($ipsec_loglevels as $lkey => $ldescr) {
$pconfig["ipsec_{$lkey}"] = $config['ipsec']["ipsec_{$lkey}"];
}
$pconfig['unityplugin'] = isset($config['ipsec']['unityplugin']);
-$pconfig['shuntlaninterfaces'] = isset($config['ipsec']['shuntlaninterfaces']);
+$pconfig['noshuntlaninterfaces'] = isset($config['ipsec']['noshuntlaninterfaces']);
$pconfig['compression'] = isset($config['ipsec']['compression']);
$pconfig['enableinterfacesuse'] = isset($config['ipsec']['enableinterfacesuse']);
$pconfig['acceptunencryptedmainmode'] = isset($config['ipsec']['acceptunencryptedmainmode']);
@@ -156,10 +156,10 @@ if ($_POST) {
unset($config['ipsec']['unityplugin']);
}
- if($_POST['shuntlaninterfaces'] == "yes") {
- $config['ipsec']['shuntlaninterfaces'] = true;
- } elseif (isset($config['ipsec']['shuntlaninterfaces'])) {
- unset($config['ipsec']['shuntlaninterfaces']);
+ if($_POST['noshuntlaninterfaces'] == "yes") {
+ $config['ipsec']['noshuntlaninterfaces'] = true;
+ } elseif (isset($config['ipsec']['noshuntlaninterfaces'])) {
+ unset($config['ipsec']['noshuntlaninterfaces']);
}
if($_POST['acceptunencryptedmainmode'] == "yes") {
@@ -356,12 +356,12 @@ function maxmss_checked(obj) {
</td>
</tr>
<tr>
- <td width="22%" valign="top" class="vncell"><?=gettext("Bypass LAN address"); ?></td>
+ <td width="22%" valign="top" class="vncell"><?=gettext("Auto-exclude LAN address"); ?></td>
<td width="78%" class="vtable">
- <input name="shuntlaninterfaces" type="checkbox" id="shuntlaninterfaces" value="yes" <?php if ($pconfig['shuntlaninterfaces'] == true) echo "checked=\"checked\""; ?> />
- <strong><?=gettext("Enable bypass for LAN interface ip"); ?></strong>
+ <input name="noshuntlaninterfaces" type="checkbox" id="noshuntlaninterfaces" value="yes" <?php if (!$pconfig['noshuntlaninterfaces'] == true) echo "checked=\"checked\""; ?> />
+ <strong><?=gettext("Enable bypass for LAN interface IP"); ?></strong>
<br />
- <?=gettext("Prevent LAN ip address to be proccessed for IPsec traffic."); ?>
+ <?=gettext("Exclude traffic from LAN subnet to LAN IP address from IPsec."); ?>
</td>
</tr>
<tr>
OpenPOWER on IntegriCloud