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
|
--- acidlab-0.9.6b20.orig/acid_conf.php Tue Feb 5 11:55:56 2002
+++ acidlab-0.9.6b20/acid_conf.php Wed Feb 27 09:36:55 2002
@@ -9,7 +9,7 @@
* $foo = "c:\tmp" [OK]
* $foo = "c:\tmp\" [WRONG]
*/
-$DBlib_path = "";
+$DBlib_path = "/usr/lib/adodb";
/* The type of underlying alert database
*
@@ -17,7 +17,7 @@
* PostgresSQL : "postgres"
* MS SQL Server : "mssql"
*/
-$DBtype = "mysql";
+$DBtype = "DBTYPE";
/* Alert DB connection parameters
* - $alert_dbname : MySQL database name of Snort alert DB
@@ -29,18 +29,18 @@
* This information can be gleaned from the Snort database
* output plugin configuration.
*/
-$alert_dbname = "snort_log";
-$alert_host = "localhost";
-$alert_port = "";
-$alert_user = "root";
-$alert_password = "mypassword";
+$alert_dbname = "ALERT_NAME";
+$alert_host = "ALERT_HOST";
+$alert_port = "ALERT_PORT";
+$alert_user = "ALERT_USER";
+$alert_password = "ALERT_PASSWORD";
/* Archive DB connection parameters */
-$archive_dbname = "snort_archive";
-$archive_host = "localhost";
-$archive_port = "";
-$archive_user = "root";
-$archive_password = "mypassword";
+$archive_dbname = "ARCHIVE_NAME";
+$archive_host = "ARCHIVE_HOST";
+$archive_port = "ARCHIVE_PORT";
+$archive_user = "ARCHIVE_USER";
+$archive_password = "ARCHIVE_PASSWORD";
/* Type of DB connection to use
* 1 : use a persistant connection (pconnect)
@@ -51,7 +51,7 @@
/* Path to the graphing library
* (Note: DO NOT include a trailing backslash after the directory)
*/
-$ChartLib_path = "";
+$ChartLib_path = "/usr/lib/phplot";
/* File format of charts ('png', 'jpeg', 'gif') */
$chart_file_format = "png";
|