summaryrefslogtreecommitdiff
blob: 13ee2d21801467d9d2fa80741f8fef9717299bad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
--- push_rules.sh.old	2002-09-30 17:25:22.000000000 -0400
+++ push_rules.sh	2002-09-30 17:26:27.000000000 -0400
32c32
< set rules_directory='/home/snort/rules'
---
> set rules_directory='/etc/snort/rules'
--- hourly_wrapup.sh.old	2002-09-30 17:25:22.000000000 -0400
+++ hourly_wrapup.sh	2002-09-30 17:26:27.000000000 -0400
@@ -60,18 +60,18 @@
 # This variable should be set to the directory
 # that contains the rule sets you want used for each 
 # network block you want snort to watch.
-set rules_directory='/home/snort/rules'
+set rules_directory='/etc/snort'
 
 # This variable should be set to the directory where
 # snort should log everything to.  It is the 'root' directory
 # where snort will create hourly log directories, and then
 # tar/gzip the hourly directories when the hour ends.
-set log_directory='/home/snort/LOGS'
+set log_directory='/usr/lib/snort/addons/snorticus/LOGS'
 
 # This variable should be set to the directory and filename
 # of the configuration file containing the network blocks
 # snort should watch.
-set network_list_file='/home/snort/network.cfg'
+set network_list_file='/etc/snort/addons/network.cfg'
 
 # END USER CONFIGURABLE SECTION
 # END USER CONFIGURABLE SECTION
--- retrieve_wrapup.sh.old	2002-09-30 18:34:39.000000000 -0400
+++ retrieve_wrapup.sh	2002-09-30 18:37:19.000000000 -0400
@@ -41,7 +41,7 @@
 # place the data into the appropriate site 
 # subdirectory in this directory.  It is also
 # used when retrieving data from the sensor.
-set log_directory='/home/snort/LOGS'
+set log_directory='/usr/lib/snort/addons/snorticus/LOGS'
 
 # This should be set to the number of days the data
 # should reside on this server until it is deleted
@@ -52,7 +52,7 @@
 # SnortSnarf perl script can be found ('snortsnarf.pl').
 # Or you can use this to point to whatever script you 
 # choose to use for processing the retrieved log data.
-set snortsnarf_path='/home/snort/scripts'
+set snortsnarf_path='/usr/bin'
 
 # This variable should be set to include any extra features
 # of snortsnarf that you want to use.
@@ -67,7 +67,7 @@
 # FLAVORS OF UNIX. WHEN DEALING WITH MULTIPLE PLATFORMS
 # YOU MAY WANT TO 'ln -s /usr/bin/date /usr/local/date'
 # ON THE LINUX BOXES.
-set gnudate_path='/usr/local/bin'
+set gnudate_path='/bin'
 
 # This is the account to use when scp'ing the wrapup
 # files from the sensors.
@@ -104,7 +104,7 @@
 # determine the proper settings/commands for Linux.
 # They vary slightly between Linux and Solaris.
 if (`uname -s` == 'Linux') then
-        set tar_flags='xvfP'
+        set tar_flags='xvPf'
 else
         # Until others give me the proper settings
         # (if there are any other differences)