diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-03-05 01:16:28 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-03-05 01:16:28 +0000 |
commit | c99b621a89c601678b15e8835a8a669084cb480f (patch) | |
tree | 9bd5d62b69d689a259dabcf323a5c982319dfe97 /etc/inc/filter.inc | |
parent | 8e9b111fd98d4ea00be6ab44e0d2cb4aae3e4f49 (diff) | |
download | pfsense-c99b621a89c601678b15e8835a8a669084cb480f.zip pfsense-c99b621a89c601678b15e8835a8a669084cb480f.tar.gz |
Do not send carp traffic through the packet shaper.
Diffstat (limited to 'etc/inc/filter.inc')
-rw-r--r-- | etc/inc/filter.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/etc/inc/filter.inc b/etc/inc/filter.inc index e8b6f9c..7f5fa17 100644 --- a/etc/inc/filter.inc +++ b/etc/inc/filter.inc @@ -402,6 +402,7 @@ function filter_generate_altq_rules() { so the user cannot lock himself out of the webGUI */ $shaperrules = "add $rulei set 4 pass all from $lanip to any\n"; $rulei++; $shaperrules .= "add $rulei set 4 pass all from any to $lanip\n"; $rulei++; + $shaperrules .= "add $rulei set 4 pass carp from any to any\n"; $rulei++; /* generate rules */ if (isset($config['shaper']['rule'])) |