diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2007-12-10 18:47:43 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2007-12-10 18:47:43 +0000 |
commit | 0bd546d38f90a5f490f246c1628685b7f3926c48 (patch) | |
tree | 91b0344d52edf5d3f04410175a0e2b76f3519080 /etc | |
parent | 479628e6683b69f55920be94f4792c335ce8d6eb (diff) | |
download | pfsense-0bd546d38f90a5f490f246c1628685b7f3926c48.zip pfsense-0bd546d38f90a5f490f246c1628685b7f3926c48.tar.gz |
Allow pfsync and carp traffic on captive portal.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/inc/captiveportal.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/etc/inc/captiveportal.inc b/etc/inc/captiveportal.inc index 4e67c72..a0f58f1 100644 --- a/etc/inc/captiveportal.inc +++ b/etc/inc/captiveportal.inc @@ -298,7 +298,8 @@ function captiveportal_rules_generate() { /* note: the captive portal daemon inserts all pass rules for authenticated clients as skipto 50000 rules to make traffic shaping work */ - $cprules = ""; + $cprules = "add 500 set 1 allow pfsync from any to any"; + $cprules .= "add 500 set 1 allow carp from any to any"; /* allow nat redirects to work see http://cvstrac.pfsense.com/tktview?tn=651 |