summaryrefslogtreecommitdiffstats
path: root/usr/local/www/services_dhcp.php
diff options
context:
space:
mode:
authorRenato Botelho <garga@FreeBSD.org>2013-03-22 16:22:45 -0300
committerRenato Botelho <garga@FreeBSD.org>2013-03-22 16:22:45 -0300
commite680b2f912e7334c1b4c8d8bd1b6be0ecf61b0bd (patch)
treea6cae6668efd5a521d031a2ef0d20294bbfbbfde /usr/local/www/services_dhcp.php
parentab1cf45537b0a96c39ddaaa57cd9a6ac742d39af (diff)
downloadpfsense-e680b2f912e7334c1b4c8d8bd1b6be0ecf61b0bd.zip
pfsense-e680b2f912e7334c1b4c8d8bd1b6be0ecf61b0bd.tar.gz
Add checks to make sure CP hard timeout is less or equal DHCP server default lease time. It fixes #2899
Diffstat (limited to 'usr/local/www/services_dhcp.php')
-rwxr-xr-xusr/local/www/services_dhcp.php22
1 files changed, 21 insertions, 1 deletions
diff --git a/usr/local/www/services_dhcp.php b/usr/local/www/services_dhcp.php
index fa174f4..a1269cf 100755
--- a/usr/local/www/services_dhcp.php
+++ b/usr/local/www/services_dhcp.php
@@ -254,7 +254,27 @@ if ($_POST) {
$input_errors[] = gettext("A valid IP address must be specified for the primary/secondary DNS servers.");
if ($_POST['deftime'] && (!is_numeric($_POST['deftime']) || ($_POST['deftime'] < 60)))
- $input_errors[] = gettext("The default lease time must be at least 60 seconds.");
+ $input_errors[] = gettext("The default lease time must be at least 60 seconds.");
+
+ if (isset($config['captiveportal']) && is_array($config['captiveportal'])) {
+ $deftime = 7200; // Default value if it's empty
+ if (is_numeric($_POST['deftime']))
+ $deftime = $_POST['deftime'];
+
+ foreach ($config['captiveportal'] as $cpZone => $cpdata) {
+ if (!isset($cpdata['enable']))
+ continue;
+ if (!isset($cpdata['timeout']) || !is_numeric($cpdata['timeout']))
+ continue;
+ $cp_ifs = explode(',', $cpdata['interface']);
+ if (!in_array($if, $cp_ifs))
+ continue;
+ if ($cpdata['timeout'] > $deftime)
+ $input_errors[] = sprintf(gettext(
+ "The Captive Portal zone '%s' has Hard Timeout parameter set to a value bigger than Default lease time (%s)."), $cpZone, $deftime);
+ }
+ }
+
if ($_POST['maxtime'] && (!is_numeric($_POST['maxtime']) || ($_POST['maxtime'] < 60) || ($_POST['maxtime'] <= $_POST['deftime'])))
$input_errors[] = gettext("The maximum lease time must be at least 60 seconds and higher than the default lease time.");
if (($_POST['ddnsdomain'] && !is_domain($_POST['ddnsdomain'])))
OpenPOWER on IntegriCloud