summaryrefslogtreecommitdiffstats
path: root/usr/local/www/vpn_ipsec_phase2.php
diff options
context:
space:
mode:
authorRenato Botelho <garga@FreeBSD.org>2013-01-24 17:33:13 -0200
committerRenato Botelho <garga@FreeBSD.org>2013-01-24 17:33:13 -0200
commite4ffca08822057400f6a8c2af91622e0c32f6140 (patch)
tree47588f1f0ee20af929530fb0e3fe44a841ab0ba5 /usr/local/www/vpn_ipsec_phase2.php
parentab2ccd9f8c5c12bee3d5bcf8ceacd53b9e3f316f (diff)
downloadpfsense-e4ffca08822057400f6a8c2af91622e0c32f6140.zip
pfsense-e4ffca08822057400f6a8c2af91622e0c32f6140.tar.gz
Make IPv4/IPv6 validation on IPSec
It should fix #2769
Diffstat (limited to 'usr/local/www/vpn_ipsec_phase2.php')
-rw-r--r--usr/local/www/vpn_ipsec_phase2.php20
1 files changed, 20 insertions, 0 deletions
diff --git a/usr/local/www/vpn_ipsec_phase2.php b/usr/local/www/vpn_ipsec_phase2.php
index a8c859e..4e4ac3c 100644
--- a/usr/local/www/vpn_ipsec_phase2.php
+++ b/usr/local/www/vpn_ipsec_phase2.php
@@ -129,6 +129,10 @@ if ($_POST) {
case "address":
if (!$pconfig['localid_address'] || !is_ipaddr($pconfig['localid_address']))
$input_errors[] = gettext("A valid local network IP address must be specified.");
+ elseif (is_ipaddrv4($pconfig['localid_address']) && ($pconfig['mode'] != "tunnel"))
+ $input_errors[] = gettext("A valid local network IPv4 address must be specified or you need to change Mode to IPv6");
+ elseif (is_ipaddrv6($pconfig['localid_address']) && ($pconfig['mode'] != "tunnel6"))
+ $input_errors[] = gettext("A valid local network IPv6 address must be specified or you need to change Mode to IPv4");
break;
}
/* Check if the localid_type is an interface, to confirm if it has a valid subnet. */
@@ -151,6 +155,10 @@ if ($_POST) {
case "address":
if (!empty($pconfig['natlocalid_address']) && !is_ipaddr($pconfig['natlocalid_address']))
$input_errors[] = gettext("A valid nat local network IP address must be specified.");
+ elseif (is_ipaddrv4($pconfig['natlocalid_address']) && ($pconfig['mode'] != "tunnel"))
+ $input_errors[] = gettext("A valid nat local network IPv4 address must be specified or you need to change Mode to IPv6");
+ elseif (is_ipaddrv6($pconfig['natlocalid_address']) && ($pconfig['mode'] != "tunnel6"))
+ $input_errors[] = gettext("A valid nat local network IPv6 address must be specified or you need to change Mode to IPv4");
break;
}
@@ -171,6 +179,10 @@ if ($_POST) {
case "address":
if (!$pconfig['remoteid_address'] || !is_ipaddr($pconfig['remoteid_address']))
$input_errors[] = gettext("A valid remote network IP address must be specified.");
+ elseif (is_ipaddrv4($pconfig['remoteid_address']) && ($pconfig['mode'] != "tunnel"))
+ $input_errors[] = gettext("A valid remote network IPv4 address must be specified or you need to change Mode to IPv6");
+ elseif (is_ipaddrv6($pconfig['remoteid_address']) && ($pconfig['mode'] != "tunnel6"))
+ $input_errors[] = gettext("A valid remote network IPv6 address must be specified or you need to change Mode to IPv4");
break;
}
}
@@ -270,6 +282,14 @@ if ($_POST) {
if (isset($pconfig['mobile']))
$ph2ent['mobile'] = true;
+ ipsec_lookup_phase1($ph2ent, $ph1ent);
+ if (($ph1ent['protocol'] == "inet") && ($ph2ent['mode'] == "tunnel6"))
+ $input_errors[] = gettext("Phase 1 is using IPv4. You cannot use Tunnel IPv6 on Phase 2.");
+ if (($ph1ent['protocol'] == "inet6") && ($ph2ent['mode'] == "tunnel"))
+ $input_errors[] = gettext("Phase 1 is using IPv6. You cannot use Tunnel IPv4 on Phase 2.");
+ }
+
+ if (!$input_errors) {
if (isset($p2index) && $a_phase2[$p2index])
$a_phase2[$p2index] = $ph2ent;
else
OpenPOWER on IntegriCloud