freebsd-ports/security/sguil-sensor/files/patch-log_packets.sh
Marcelo Araujo 6083e46d06 - Update to 0.7.0.
PR:		ports/122645, ports/122646, ports/122647
Submitted by:	Paul Schmehl <pauls@utdallas.edu> (maintainer)
2008-05-03 13:22:16 +00:00

50 lines
1.7 KiB
Bash

--- sensor/log_packets.sh.orig 2008-04-03 22:16:22.000000000 -0500
+++ sensor/log_packets.sh 2008-04-03 22:22:20.000000000 -0500
@@ -22,38 +22,16 @@
# #
##############################################################
+# You shouldn't need to edit anything in this script
-# Edit these for your setup
-
-# Sensors hostname.
-# Note: If running multiple snort instances, then this must be different
-# for each instance (ie sensor1, sensor2, sensor-eth0, sensor-eth1, etc)
-HOSTNAME="myhost"
-# Path to snort binary
-SNORT_PATH="/usr/local/bin/snort"
-# Directory to log pcap data to (date dirs will be created in here)
-# Note: The path $HOSTNAME/dailylogs, will be appended to this.
-LOG_DIR="/snort_data"
-# Percentage of disk to try and maintain
-MAX_DISK_USE=90
-# Interface to 'listen' to.
-INTERFACE="eth0"
-# Other options to use when starting snort
-#OPTIONS="-u sguil -g sguil -m 122"
-# Where to store the pid
-PIDFILE="/var/run/snort_log-${HOSTNAME}.pid"
-# How do we run ps
-PS="ps awx"
-# Where is grep
-GREP="/usr/bin/grep"
-#Add BPFs here.
-#The below is an example of a filter for ignoring outbound HTTP from my network
-# to the world.
-#FILTER='not \( src net 67.11.255.148/32 and dst port 80 and "tcp[0:2] > 1024" \) and not \( src port 80 and dst net 67.11.255.148/32 and "tcp[2:2] > 1024"\)'
-
-#Some installs may need these
-#LD_LIBRARY_PATH=/usr/local/lib/mysql
-#export LD_LIBRARY_PATH
+CONF=/usr/local/etc/sguil-sensor/log_packets.conf
+if [ -r ${CONF} ]; then
+ . ${CONF}
+else
+ echo "Your conf file is either missing or the path "
+ echo "in the log_packets.sh script is incorrect."
+ exit 1
+fi
TZ=GMT
export TZ