mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
Also consider 0.0.0.0/0 here since it fails both these tests but is still a valid/special config.
This commit is contained in:
parent
94d1cd834d
commit
2dd57bd95f
@ -650,7 +650,7 @@ EOD;
|
||||
$localid_type = "subnet";
|
||||
}
|
||||
// Don't let an empty subnet into racoon.conf, it can cause parse errors. Ticket #2201.
|
||||
if (!is_ipaddr($localid_data) && !is_subnet($localid_data)) {
|
||||
if (!is_ipaddr($localid_data) && !is_subnet($localid_data) && ($localid_data != "0.0.0.0/0")) {
|
||||
log_error("Invalid IPsec Phase 2 \"{$ph2ent['descr']}\" - {$ph2ent['localid']['type']} has no subnet.");
|
||||
continue;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user