Listing 1 hawk.conf.sample
<?php
# Sample php config file for Hawk 0.6
$dbuser = "hawk";
$dbpass = "hawkpassword";
$dbhost = "mysql";
$dbname = "hawk";
$yellowzone = 60 * 60 * 24;
$redzone = 60 * 60 * 24 * 7;
$networks = array (
"Enterprise Network" => "192.168.64.0/22",
"Training Lab" => "192.168.62.0/24",
"QA Lab" => "192.168.73.0/24",
"NY Office" => "192.168.74.0/25",
"Sales Office" => "192.168.74.128/25",
"DMZ" => "192.168.177.192/26",
);
?>
|