diff options
author | bmeeks8 <bmeeks8@bellsouth.net> | 2015-08-11 18:43:18 -0400 |
---|---|---|
committer | bmeeks8 <bmeeks8@bellsouth.net> | 2015-08-11 18:43:18 -0400 |
commit | b2447d05bb64548815b4d0f72d0069e057162d9a (patch) | |
tree | 08f93e65232342daa2764346c7db593a563af900 /config/snort | |
parent | 89e3801c0b79e3a5f059b8f367dad0589358eade (diff) | |
download | pfsense-packages-b2447d05bb64548815b4d0f72d0069e057162d9a.tar.gz pfsense-packages-b2447d05bb64548815b4d0f72d0069e057162d9a.tar.bz2 pfsense-packages-b2447d05bb64548815b4d0f72d0069e057162d9a.zip |
Include proxy arp VIPs in default HOME_NET and PASS LIST.
Diffstat (limited to 'config/snort')
-rwxr-xr-x | config/snort/snort.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/snort/snort.inc b/config/snort/snort.inc index 027207b1..24804461 100755 --- a/config/snort/snort.inc +++ b/config/snort/snort.inc @@ -471,7 +471,7 @@ function snort_build_list($snortcfg, $listname = "", $whitelist = false, $extern /* iterate all vips and add to whitelist */ if (is_array($config['virtualip']) && is_array($config['virtualip']['vip'])) { foreach($config['virtualip']['vip'] as $vip) { - if ($vip['subnet'] && $vip['mode'] != 'proxyarp') { + if ($vip['subnet']) { if (!in_array("{$vip['subnet']}/{$vip['subnet_bits']}", $home_net)) $home_net[] = "{$vip['subnet']}/{$vip['subnet_bits']}"; } |