diff options
author | Ermal <eri@pfsense.org> | 2010-11-26 12:20:30 +0000 |
---|---|---|
committer | Ermal <eri@pfsense.org> | 2010-11-26 12:20:30 +0000 |
commit | cfa62e06c7bdec6ed5856c335fe47dabcbb22de4 (patch) | |
tree | 9ca3a8031ef153fa7ebf76671c0a349c18f03a86 /etc/inc | |
parent | 979c816c6dfa2e618df20a0e25387c43e2888b11 (diff) | |
download | pfsense-cfa62e06c7bdec6ed5856c335fe47dabcbb22de4.zip pfsense-cfa62e06c7bdec6ed5856c335fe47dabcbb22de4.tar.gz |
include broadcast address to allow dhcp to work.
Diffstat (limited to 'etc/inc')
-rw-r--r-- | etc/inc/captiveportal.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/inc/captiveportal.inc b/etc/inc/captiveportal.inc index 007bd44..63d3ce9 100644 --- a/etc/inc/captiveportal.inc +++ b/etc/inc/captiveportal.inc @@ -616,7 +616,7 @@ EOD; } $ipcount++; } - $ips = "{ {$ips} }"; + $ips = "{ 255.255.255.255 {$ips} }"; $cprules .= "add {$rulenum} set 1 pass ip from any to {$ips} in\n"; $rulenum++; $cprules .= "add {$rulenum} set 1 pass ip from {$ips} to any out\n"; @@ -1471,4 +1471,4 @@ function portal_ip_from_client_ip($cliip) { return false; } -?>
\ No newline at end of file +?> |