diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-07-14 17:04:07 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-07-14 17:04:07 +0000 |
commit | 4ba654c01610d420df78e28c693266feeb8a8532 (patch) | |
tree | 7e5ea7d71de2fcefb2ffdf160f0aec80ecda36a0 /etc/inc | |
parent | 2f97b482153b15db82b075bab751aa89abd763d1 (diff) | |
download | pfsense-4ba654c01610d420df78e28c693266feeb8a8532.zip pfsense-4ba654c01610d420df78e28c693266feeb8a8532.tar.gz |
Unbreak carp by allowing its protocols to talk to other hosts. This item was overlooked during the vip transition
Diffstat (limited to 'etc/inc')
-rw-r--r-- | etc/inc/filter.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/etc/inc/filter.inc b/etc/inc/filter.inc index 94a3761..b670083 100644 --- a/etc/inc/filter.inc +++ b/etc/inc/filter.inc @@ -2060,7 +2060,8 @@ function process_carp_rules() { global $g, $config; $lines = ""; /* return if there are no carp configured items */ - if($config['installedpackages']['carp']['config'] <> "") { + if($config['installedpackages']['carpsettings']['config'] <> "" or + $config['virtualip']['vip'] <> "") { $lines .= "pass quick proto carp keep state\n"; $lines .= "pass quick proto pfsync"; } |