diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2006-01-22 19:57:09 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2006-01-22 19:57:09 +0000 |
commit | 5f0f6f60345c26c32dc5376813786a8dbccb8038 (patch) | |
tree | aaccf37f6ca91c07d31ee7dc4e0c3add3affa595 /etc | |
parent | 2bc16adc2ad536d3ad0737cb761e9f929b816f01 (diff) | |
download | pfsense-5f0f6f60345c26c32dc5376813786a8dbccb8038.zip pfsense-5f0f6f60345c26c32dc5376813786a8dbccb8038.tar.gz |
Disable pflogd which is wasting cpu cycles
In-disucssion-with: Bill M
Diffstat (limited to 'etc')
-rw-r--r-- | etc/inc/filter.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/inc/filter.inc b/etc/inc/filter.inc index 7cc90a1..59fedfd 100644 --- a/etc/inc/filter.inc +++ b/etc/inc/filter.inc @@ -49,8 +49,8 @@ function filter_pflog_start() { mute_kernel_msgs(); /* do not run pflogd on non HD platforms */ - if($g['platform'] == "pfSense") - mwexec("/sbin/ifconfig pflog0 up && pflogd"); + //if($g['platform'] == "pfSense") + // mwexec("/sbin/ifconfig pflog0 up && pflogd"); mwexec_bg("/usr/sbin/tcpdump -l -n -e -ttt -i pflog0 | egrep -e \"IGMP|TCP|UDP|ESP|IGRP|IGMP|ICMP|esp|tcp|udp|icmp|igmp|igrp\" |logger -t pf -p local0.info"); |