summaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorbcyrill <cyrill@bannwart.info>2012-06-09 22:17:22 +0200
committerbcyrill <cyrill@bannwart.info>2012-06-09 22:17:22 +0200
commit52a43b2fa3c018b145de759af4da823fcb6260fc (patch)
tree579a8b8ae0606cefc99637380ae1b4abb1fa259d /etc
parent63c654a49e788f83a7ffb19d7e009585f62c7bc8 (diff)
downloadpfsense-52a43b2fa3c018b145de759af4da823fcb6260fc.zip
pfsense-52a43b2fa3c018b145de759af4da823fcb6260fc.tar.gz
Update Captiveportal
Diffstat (limited to 'etc')
-rw-r--r--etc/inc/captiveportal.inc8
1 files changed, 4 insertions, 4 deletions
diff --git a/etc/inc/captiveportal.inc b/etc/inc/captiveportal.inc
index 45f1402..4953f23 100644
--- a/etc/inc/captiveportal.inc
+++ b/etc/inc/captiveportal.inc
@@ -1688,7 +1688,7 @@ function captiveportal_reapply_attributes($cpentry, $attributes) {
if ($peruserbw && !empty($bw_up) && is_numeric($bw_up)) {
$commands .= "pipe {$bw_up_pipeno} config bw {$bw_up}Kbit/s queue 100\n";
- if (!isset($config['captiveportal']['nomacfilter'])) {
+ if (!isset($config['captiveportal'][$cpzone]['nomacfilter'])) {
$commands .= "table 1 del {$cpentry[2]} mac {$cpentry[3]}\n";
$commands .= "table 1 add {$cpentry[2]} mac {$cpentry[3]} {$bw_up_pipeno}\n";
} else {
@@ -1699,7 +1699,7 @@ function captiveportal_reapply_attributes($cpentry, $attributes) {
if ($peruserbw && !empty($bw_down) && is_numeric($bw_down)) {
$commands .= "pipe {$bw_down_pipeno} config bw {$bw_down}Kbit/s queue 100\n";
- if (!isset($config['captiveportal']['nomacfilter'])) {
+ if (!isset($config['captiveportal'][$cpzone]['nomacfilter'])) {
$commands .= "table 2 del {$cpentry[2]} mac {$cpentry[3]}\n";
$commands .= "table 2 add {$cpentry[2]} mac {$cpentry[3]} {$bw_down_pipeno}\n";
} else {
@@ -1710,7 +1710,7 @@ function captiveportal_reapply_attributes($cpentry, $attributes) {
if (!empty($commands)) {
@file_put_contents("{$g['tmp_path']}/reattribute{$cpzone}.rule.tmp", $commands);
- captiveportal_ipfw_set_context($cpzone);
+ captiveportal_ipfw_set_context($cpzone);
mwexec("/sbin/ipfw -q {$g['tmp_path']}/reattribute{$cpzone}.rule.tmp");
//captiveportal_logportalauth($cpentry[4], $cpentry[3], $cpentry[2], "RADIUS_BANDWIDTH_REAPPLY", "{$bw_up}/{$bw_down}");
}
@@ -1797,7 +1797,7 @@ function portal_allow($clientip,$clientmac,$username,$password = null, $attribut
$cpentry[10] = 'first';
/* on the same ip */
if ($cpentry[2] == $clientip) {
- if (isset($config['captiveportal']['nomacfilter']) || $cpentry[3] == $clientmac)
+ if (isset($config['captiveportal'][$cpzone]['nomacfilter']) || $cpentry[3] == $clientmac)
captiveportal_logportalauth($cpentry[4],$cpentry[3],$cpentry[2],"CONCURRENT LOGIN - REUSING OLD SESSION");
else
captiveportal_logportalauth($cpentry[4],$cpentry[3],$cpentry[2],"CONCURRENT LOGIN - REUSING IP {$cpentry[2]} WITH DIFFERENT MAC ADDRESS {$cpentry[3]}");
OpenPOWER on IntegriCloud