Update config.php.default

Aligned default scanning-based discovery to RFC1918. Tested on 13.10.
This commit is contained in:
Anthony
2013-10-29 11:19:28 +11:00
parent b8f66964a9
commit 41b8ba6be5

View File

@ -34,8 +34,10 @@ $config['snmp']['community'] = array("public");
$config['auth_mechanism'] = "mysql"; # default, other options: ldap, http-auth
#$config['http_auth_guest'] = "guest"; # remember to configure this user if you use http-auth
### List of networks to allow scanning-based discovery
$config['nets'][] = "172.22.0.0/16";
$config['nets'][] = "192.168.0.0/24";
### List of RFC1918 networks to allow scanning-based discovery
$config['nets'][] = "10.0.0.0/8";
$config['nets'][] = "172.16.0.0/12";
$config['nets'][] = "192.168.0.0/16";
?>